Index: Validate External Links/Development/Get script line count.command
===================================================================
--- Validate External Links/Development/Get script line count.command	(revision 1139)
+++ Validate External Links/Development/Get script line count.command	(revision 1139)
@@ -0,0 +1,4 @@
+#!/bin/bash
+
+cd "$(dirname "$0")/.."
+wc -l validate_external_links.sh
Index: Validate External Links/Development/Sample Archive response.txt
===================================================================
--- Validate External Links/Development/Sample Archive response.txt	(revision 1139)
+++ Validate External Links/Development/Sample Archive response.txt	(revision 1139)
@@ -0,0 +1,1 @@
+{"url": "http://www.daz3d.com/i/shop/itemdetails/?item=11042", "archived_snapshots": {"closest": {"status": "200", "available": true, "url": "http://web.archive.org/web/20110802231436/http://www.daz3d.com:80/i/shop/itemdetails/?item=11042", "timestamp": "20110802231436"}}}
Index: Validate External Links/Development/Sample header - OK.txt
===================================================================
--- Validate External Links/Development/Sample header - OK.txt	(revision 1139)
+++ Validate External Links/Development/Sample header - OK.txt	(revision 1139)
@@ -0,0 +1,9 @@
+HTTP/1.1 200 OK
+Date: Wed, 31 May 2017 15:24:09 GMT
+Server: Apache
+Last-Modified: Wed, 31 May 2017 14:20:01 GMT
+ETag: "24439-3fe58-550d29d99a640"
+Accept-Ranges: bytes
+Content-Length: 261720
+Content-Type: text/csv
+
Index: Validate External Links/Development/Sample header - redirect.txt
===================================================================
--- Validate External Links/Development/Sample header - redirect.txt	(revision 1139)
+++ Validate External Links/Development/Sample header - redirect.txt	(revision 1139)
@@ -0,0 +1,22 @@
+HTTP/1.1 302 Found
+Server: Apache
+X-Server-Name: gcweb01@gcappprd033177.c033.digitalriverws.net
+P3P: CP="This is not a P3P policy! See the privacy statement linked from this page for information on privacy practices."
+X_REQUEST_ID: TIME=1501596450171:NODE=gcapp01_gcappprd033177.c033:THREAD=29712
+Pragma: no-cache
+Expires: Wed, 31 Dec 1969 23:59:59 GMT
+Location: https://www.rockstarwarehouse.com/store?Action=pd&Locale=en_US&SiteID=tk2rstar&productID=304297400
+Set-Cookie: JSESSIONID=AFB5CA7BB26452CC091B8369069E9194; Path=/; HttpOnly
+Set-Cookie: VISITOR_ID=971D4E8DFAED4367F30DCC4FF5A12C0E74270F87CEB4535F4459DD9CD2F857A00CDF10188440A69DE7B8D3821BA297F6; Expires=Wed, 01-Aug-2018 19:56:42 GMT; Path=/
+Set-Cookie: X-DR-SHOPPER-tk2rstar=7EBD120910DBCBED4D5E33E797C5B51EA2B0D42E96A987D15DD41A64B81CA2FFCACDD14F6DE7429E670CF166F949272A5C0205F08E57497FB34F257B373818C6; Expires=Wed, 01-Aug-2018 19:56:42 GMT; Path=/
+Set-Cookie: X-DR-LOCALE=en_US; Path=/; HttpOnly
+Set-Cookie: X-DR-CURRENCY=USD; Path=/; HttpOnly
+Set-Cookie: X-DR-THEME=38225800; Path=/; HttpOnly
+Accept-Ranges: bytes
+Date: Tue, 01 Aug 2017 14:07:30 GMT
+X-Varnish: 1301493164
+Age: 0
+Via: 1.1 varnish
+Connection: keep-alive
+Cache-Control: no-cache, no-store, must-revalidate, max-age=0, private
+Set-Cookie: BIGipServerp-gc2-prd-active-c032-m2=494285322.260.0000; path=/; Httponly
Index: Validate External Links/Development/print_agent.php
===================================================================
--- Validate External Links/Development/print_agent.php	(revision 1139)
+++ Validate External Links/Development/print_agent.php	(revision 1139)
@@ -0,0 +1,3 @@
+<?php
+echo $_SERVER['HTTP_USER_AGENT'];
+?>
Index: Validate External Links/Documentation/HTTP codes.txt
===================================================================
--- Validate External Links/Documentation/HTTP codes.txt	(revision 1139)
+++ Validate External Links/Documentation/HTTP codes.txt	(revision 1139)
@@ -0,0 +1,70 @@
+ValExtLinks prints the HTTP response code for each link (except EI and IW links) in parentheses after the OK/NG/RD status of the link. Based on [[wp:List_of_HTTP_status_codes|this Wikipedia list]], following are the codes understood by ValExtLinks. When no HTTP response could be retrieved by the Unix tool 'curl' which queries each link, you'll see "(000-xx)", where the one- or two-digit number after the dash is the [[../Curl codes|'curl' error code]].
+__NOTOC__
+==2xx: Success==
+This class of status codes indicates the action requested by the client was received, understood, accepted, and processed successfully.
+
+;200 OK
+:Standard response for successful HTTP requests.
+
+==3xx: Redirection==
+This class of status code indicates the client must take additional action to complete the request. Many of these status codes are used in URL redirection.
+
+;301 Moved Permanently
+:This and all future requests should be directed to the given URI.
+
+;302 Found
+:This is an example of industry practice contradicting the standard. The HTTP/1.0 specification required the client to perform a temporary redirect (the original describing phrase was "Moved Temporarily"), but popular browsers implemented 302 with the functionality of a 303 See Other. Therefore, HTTP/1.1 added status codes 303 and 307 to distinguish between the two behaviors. However, some Web applications and frameworks use the 302 status code as if it were the 303.
+
+;303 See Other
+:The response to the request can be found under another URI using a GET method.
+
+;307 Temporary Redirect
+:The request should be repeated with another URI; however, future requests should still use the original URI.
+
+;308 Permanent Redirect
+:The request and all future requests should be repeated using another URI.
+
+==4xx: Client Errors==
+This class of status codes is intended for situations in which the client seems to have erred.
+
+;400 Bad Request
+:The server cannot or will not process the request due to an apparent client error (e.g., malformed request syntax).
+
+;401 Unauthorized
+:Similar to 403 Forbidden, but specifically for use when authentication is required and has failed or has not yet been provided.
+
+;403 Forbidden
+:The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource.
+
+;404 Not Found
+:The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible.
+
+;405 Method Not Allowed
+:A request method is not supported for the requested resource; for example, a GET request on a form that requires data to be presented via POST, or a PUT request on a read-only resource.
+
+;406 Not Acceptable
+:The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.
+
+;410 Gone
+:Indicates that the resource requested is no longer available and will not be available again. This should be used when a resource has been intentionally removed and the resource should be purged. Upon receiving a 410 status code, the client should not request the resource in the future.
+
+;418 I'm a teapot
+:This is a joke response code used by some sites. Probably equivalent to a 200.
+
+==5xx: Server Errors==
+These codes mean that the server failed to fulfill an apparently valid request.
+
+;500 Internal Server Error
+:A generic error message, given when an unexpected condition was encountered and no more specific message is suitable.
+
+;501 Not Implemented
+:The server either does not recognize the request method, or it lacks the ability to fulfill the request. Usually this implies future availability (e.g., a new feature of a web-service API).
+
+;502 Bad Gateway
+:The server was acting as a gateway or proxy and received an invalid response from the upstream server.
+
+;503 Service Unavailable
+:The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state.
+
+;530 Site is frozen
+:Some Internet companies use this to indicate that a site is down, but usage is non-standard, so the site will have to be tried again later to see if the outage is due to a frozen account or something else.
Index: Validate External Links/Documentation/License.txt
===================================================================
--- Validate External Links/Documentation/License.txt	(revision 1139)
+++ Validate External Links/Documentation/License.txt	(revision 1139)
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2020 iritscen@yahoo.com
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
Index: Validate External Links/Documentation/curl codes.txt
===================================================================
--- Validate External Links/Documentation/curl codes.txt	(revision 1139)
+++ Validate External Links/Documentation/curl codes.txt	(revision 1139)
@@ -0,0 +1,203 @@
+ValExtLinks uses the Unix tool 'curl' to query each link. These are the return values which can come from 'curl', taken from its man page. These codes appear in parentheses after the three-digit [[../HTTP codes|HTTP response code]] for each link (except EI and IW links).
+
+<pre>EXIT CODES
+       1      Unsupported protocol. This build of curl has no support for this
+              protocol.
+ 
+       2      Failed to initialize.
+ 
+       3      URL malformed. The syntax was not correct.
+ 
+       4      A  feature  or  option  that  was  needed to perform the desired
+              request was not enabled or was  explicitly  disabled  at	build-
+              time.  To  make  curl able to do this, you probably need another
+              build of libcurl!
+ 
+       5      Couldn't resolve proxy.  The  given  proxy  host	could  not  be
+              resolved.
+ 
+       6      Couldn't resolve host. The given remote host was not resolved.
+ 
+       7      Failed to connect to host.
+ 
+       8      Weird server reply. The server sent data curl couldn't parse.
+ 
+       9      FTP  access  denied. The server denied login or denied access to
+              the particular resource or directory you wanted to  reach.  Most
+              often  you  tried to change to a directory that doesn't exist on
+              the server.
+ 
+       10     FTP accept failed. While waiting for the server to connect  back
+              when  an active FTP session is used, an error code was sent over
+              the control connection or similar.
+ 
+       11     FTP weird PASS reply. Curl couldn't parse the reply sent to  the
+              PASS request.
+ 
+       12     During  an  active  FTP  session while waiting for the server to
+              connect back to curl, the timeout expired.
+ 
+       13     FTP weird PASV reply, Curl couldn't parse the reply sent to  the
+              PASV request.
+ 
+       14     FTP  weird  227  format.	Curl  couldn't	parse the 227-line the
+              server sent.
+ 
+       15     FTP can't get host. Couldn't resolve the host IP we got  in  the
+              227-line.
+ 
+       16     HTTP/2 error. A problem was detected in the HTTP2 framing layer.
+              This is somewhat generic and can be one out of several problems,
+              see the error message for details.
+ 
+       17     FTP  couldn't  set  binary.  Couldn't  change transfer method to
+              binary.
+ 
+       18     Partial file. Only a part of the file was transferred.
+ 
+       19     FTP couldn't download/access the given file, the RETR (or  simi-
+              lar) command failed.
+ 
+       21     FTP quote error. A quote command returned error from the server.
+ 
+       22     HTTP page not retrieved. The requested  url  was	not  found  or
+              returned	another  error	with  the HTTP error code being 400 or
+              above. This return code only appears if -f, --fail is used.
+ 
+       23     Write error. Curl couldn't write data to a local	filesystem  or
+              similar.
+ 
+       25     FTP  couldn't  STOR  file. The server denied the STOR operation,
+              used for FTP uploading.
+ 
+       26     Read error. Various reading problems.
+ 
+       27     Out of memory. A memory allocation request failed.
+ 
+       28     Operation timeout. The specified	time-out  period  was  reached
+              according to the conditions.
+ 
+       30     FTP  PORT  failed.  The PORT command failed. Not all FTP servers
+              support the PORT	command,  try  doing  a  transfer  using  PASV
+              instead!
+ 
+       31     FTP  couldn't use REST. The REST command failed. This command is
+              used for resumed FTP transfers.
+ 
+       33     HTTP range error. The range "command" didn't work.
+ 
+       34     HTTP post error. Internal post-request generation error.
+ 
+       35     SSL connect error. The SSL handshaking failed.
+ 
+       36     Bad download resume. Couldn't continue an earlier aborted  down-
+              load.
+ 
+       37     FILE couldn't read file. Failed to open the file. Permissions?
+ 
+       38     LDAP cannot bind. LDAP bind operation failed.
+ 
+       39     LDAP search failed.
+ 
+       41     Function not found. A required LDAP function was not found.
+ 
+       42     Aborted by callback. An application told curl to abort the oper-
+              ation.
+ 
+       43     Internal error. A function was called with a bad parameter.
+ 
+       45     Interface error. A specified outgoing  interface	could  not  be
+              used.
+ 
+       47     Too many redirects. When following redirects, curl hit the maxi-
+              mum amount.
+ 
+       48     Unknown option specified to libcurl.  This  indicates  that  you
+              passed  a weird option to curl that was passed on to libcurl and
+              rejected. Read up in the manual!
+ 
+       49     Malformed telnet option.
+ 
+       51     The peer's SSL certificate or SSH MD5 fingerprint was not OK.
+ 
+       52     The server didn't reply anything, which here  is	considered  an
+              error.
+ 
+       53     SSL crypto engine not found.
+ 
+       54     Cannot set SSL crypto engine as default.
+ 
+       55     Failed sending network data.
+ 
+       56     Failure in receiving network data.
+ 
+       58     Problem with the local certificate.
+ 
+       59     Couldn't use specified SSL cipher.
+ 
+       60     Peer  certificate cannot be authenticated with known CA certifi-
+              cates.
+ 
+       61     Unrecognized transfer encoding.
+ 
+       62     Invalid LDAP URL.
+ 
+       63     Maximum file size exceeded.
+ 
+       64     Requested FTP SSL level failed.
+ 
+       65     Sending the data requires a rewind that failed.
+ 
+       66     Failed to initialise SSL Engine.
+ 
+       67     The user name, password, or similar was not  accepted  and  curl
+              failed to log in.
+ 
+       68     File not found on TFTP server.
+ 
+       69     Permission problem on TFTP server.
+ 
+       70     Out of disk space on TFTP server.
+ 
+       71     Illegal TFTP operation.
+ 
+       72     Unknown TFTP transfer ID.
+ 
+       73     File already exists (TFTP).
+ 
+       74     No such user (TFTP).
+ 
+       75     Character conversion failed.
+ 
+       76     Character conversion functions required.
+ 
+       77     Problem with reading the SSL CA cert (path? access rights?).
+ 
+       78     The resource referenced in the URL does not exist.
+ 
+       79     An unspecified error occurred during the SSH session.
+ 
+       80     Failed to shut down the SSL connection.
+ 
+       82     Could  not  load	CRL  file,  missing  or wrong format (added in
+              7.19.0).
+ 
+       83     Issuer check failed (added in 7.19.0).
+ 
+       84     The FTP PRET command failed
+ 
+       85     RTSP: mismatch of CSeq numbers
+ 
+       86     RTSP: mismatch of Session Identifiers
+ 
+       87     unable to parse FTP file list
+ 
+       88     FTP chunk callback reported error
+ 
+       89     No connection available, the session will be queued
+ 
+       90     SSL public key does not matched pinned public key
+ 
+       91     Invalid SSL certificate status.
+ 
+       92     Stream error in HTTP/2 framing layer.</pre>
Index: Validate External Links/Run validate_external_links.command
===================================================================
--- Validate External Links/Run validate_external_links.command	(revision 1138)
+++ 	(revision )
@@ -1,36 +1,0 @@
-#!/bin/bash
-
-# Runs the Validate External Links script
-# Arguments: --help, --links URL, --exceptions URL, --output DIR, --record-ok-links, --show-added-slashes, --show-https-upgrades, --show-yt-redirects,
-# --suggest-snapshots, --skip-archive-links, --take-screenshots FILE, --start-url NUM, --end-url NUM, --upload FILE
-# Recommended rule:
-# |----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- -----|
-
-# Set variables for any arguments we might use below
-VALEXTLINKS="/path/to/Validate External Links/validate_external_links.sh"
-LINKS_LOCAL="file:///path/to/Validate External Links/Sample files/extlinks.csv"
-LINKS_ONLINE="https://wiki.oni2.net/w/extlinks.csv"
-EXCEPT_LOCAL="file:///path/to/Validate External Links/exceptions.txt"
-EXCEPT_ONLINE="https://wiki.oni2.net/Validate_External_Links/Exceptions"
-REPORT_DIR="/path/to/ValExtLinks reports"
-UPLOAD_INFO="/path/to/Validate External Links/sftp_login.txt"
-CHROME="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
-
-
-# Run with end URL, and record OK codes
-#bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots --end-url 70
-
-# Run with start/end URLs, and record OK codes
-#bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots --start-url 210 --end-url 235
-
-# Run with local extlinks and exceptions, start/end URLs, and record OK codes
-#bash "$VALEXTLINKS" --links "$LINKS_LOCAL" --exceptions "$EXCEPT_LOCAL" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots --skip-archive-links --start-url 1 --end-url 25
-
-# Run with unfinished screenshot feature
-#bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --take-screenshots "$CHROME"
-
-# Normal run with no upload
-#bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --suggest-snapshots
-
-# Normal run
-bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --suggest-snapshots --skip-archive-links --upload "$UPLOAD_INFO"
Index: Validate External Links/Sample files/ValExtLinks report.htm
===================================================================
--- Validate External Links/Sample files/ValExtLinks report.htm	(revision 1138)
+++ Validate External Links/Sample files/ValExtLinks report.htm	(revision 1139)
@@ -5,1696 +5,103 @@
 <body>
 <h2>Validate External Links report</h2>
-<h3>generated Mon, 20 Jul 2020 13:00:20 GMT<br />
-from data of Mon, 20 Jul 2020 06:20:01 GMT
+<h3>generated Wed, 26 Aug 2020 16:43:45 GMT<br />
+from data of Wed, 26 Aug 2020 14:20:01 GMT
 <br />
-script by Iritscen (<a href="https://wiki.oni2.net/User:Iritscen" target="_blank">contact</a>)</h3><br />
+script by Iritscen (<a href="http://iritscen.oni2.net" target="_blank">contact</a>)</h3><br />
+<h3>Startup</h3>
+Downloading list of external links from https://wiki.oni2.net/w/extlinks.csv...
+ success.<br />
+Downloading list of reporting exceptions from https://wiki.oni2.net/Validate_External_Links/Exceptions...
+ success.<br />
+Found 3164 links to process.<br />
+<br />
 <h3>Config</h3>
-Downloading list of external links from https://wiki.oni2.net/w/extlinks.csv.<br />
-Downloading list of reporting exceptions from https://wiki.oni2.net/Validate_External_Links/Exceptions.<br />
-Found 3468 links to process. I will be considering all of them.<br />
-I will be checking the response code of each link but will not take a screenshot of each page. Pages that are OK will not be logged. I will ask the Internet Archive for a suggested snapshot URL for each NG page. I will not report links that are in the exceptions list. I will ignore URLs that simply have ending slashes added onto them. I will ignore URLs that only upgrade from HTTP to HTTPS. I will ignore youtu.be links that are merely being expanded. I will not check the validity of Internet Archive snapshot URLs.<br />
+Links to consider: 
+3164<br />
+Site query timeout: 20 seconds<br />
+Show OK links: 
+No<br />
+Take screenshots: 
+No<br />
+Suggest Archive.org snapshots: 
+Yes<br />
+Ignore slash-adding redirects: 
+Yes<br />
+Ignore HTTPS-upgrading redirects: 
+Yes<br />
+Ignore youtu.be redirects: 
+Yes<br />
+Check archive.org links: 
+No<br />
 A summary of my findings will be found at the <a href="#summary">bottom</a> of the report.<br />
 <br />
 <h3>Legend</h3>
-OK = URL seems to be working.<br />
-NG = URL no longer seems to work. You should click each URL marked as NG before attempting to fix it, because false negatives will occur from time to time due to hiccups in the Internet. Please report any persistent false negatives or other issues to the script's author (see top of report). An NG link should be followed by a link to the Internet Archive's Wayback Machine which may help you repair the link, unless the Archive does not have any snapshots of the site. If the link cannot be repaired, you can delete it from the wiki page, or, if this would disrupt the surrounding material on the page, disable the link by wrapping the URL in nowiki tags.<br />
-RD = The server responding to this URL is saying that the page moved and you should instead use the supplied new URL. Some RD links represent minor adjustments in the organization of a web site, and some are soft 404s (the file/page has been removed and you are being redirected to something like the main page of the web site). You will have to look at the new URL yourself to determine if it represents an OK link and the link on the wiki should be updated to this one, or if the desired file/page is actually gone and we need to replace the wiki link with an Internet Archive snapshot link -- or disable the URL if it has not been archived.<br />
-EI = URL is an external link to an internal page and should be converted to an intrawiki link using the suggested markup.<br />
-IW = URL is an external link to a fellow wiki and should be converted to an interwiki link using the suggested markup.<br />
-(xxx) = Unix tool 'curl' obtained this HTTP response status code (see <a href="http://iritscen.oni2.net/val/http_codes.txt" target="_blank">here</a> for code reference).<br />
-(000-xx) = 'curl' did not get an HTTP response code, but returned this exit code (see <a href="http://iritscen.oni2.net/val/curl_codes.txt" target="_blank">here</a> for code reference).<br />
-IA suggests = Last available snapshot suggested by the Internet Archive.<br />
-Try browsing = The Archive occasionally fails to return a snapshot URL even when one exists, so you will need to check for a snapshot manually using this link to the Wayback Machine before concluding that a site has not been archived.<br />
+(For guidance in fixing these links, see <a href="https://wiki.oni2.net/Validate_External_Links" target="_blank">here</a>.)<br />
+OK = URL seems to be working<br />
+NG = URL no longer seems to work<br />
+RD = URL is redirecting to this new URL<br />
+EI = URL is an external link to an internal page and should be converted to an intrawiki link using the suggested markup<br />
+IW = URL is an external link to a fellow wiki and should be converted to an interwiki link using the suggested markup<br />
+(xxx) = Unix tool 'curl' obtained this HTTP response status code (see <a href="https://wiki.oni2.net/Validate_External_Links/HTTP_codes" target="_blank">here</a> for code reference)<br />
+(000-xx) = 'curl' did not get an HTTP response code, but returned this exit code (see <a href="https://wiki.oni2.net/Validate_External_Links/Curl_codes" target="_blank">here</a> for code reference)<br />
+IA suggests = Last available snapshot returned by the Internet Archive<br />
+Try browsing = The Archive failed to return a snapshot URL, so check for a snapshot manually using this link<br />
 <br />
 <h3>Links</h3>
 <table>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.allgame.com/game.php?id=19306&tab=review" target="_blank">http://www.allgame.com/game.php?id=19306&tab=review</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Reviews" target="_blank">Reviews</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20141114133937/http://www.allgame.com/game.php?id=19306" target="_blank">http://web.archive.org/web/20141114133937/http://www.allgame.com/game.php?id=19306</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/code_cave" target="_blank">http://en.wiktionary.org/wiki/code_cave</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Oni_engine_patches_(Mac_PPC)" target="_blank">Talk:Oni_engine_patches_(Mac_PPC)</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:code_cave]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/attachment.php?item=209" target="_blank">http://oni.bungie.org/community/forum/attachment.php?item=209</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive1" target="_blank">User_talk:Neo/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/attachment.php?item=209" target="_blank">http://oni.bungie.org/forum/attachment.php?item=209</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://www.mediawiki.org/" target="_blank">http://www.mediawiki.org/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OniGalore:About" target="_blank">OniGalore:About</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[mw:]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://wikimediafoundation.org/wiki/Privacy_policy" target="_blank">http://wikimediafoundation.org/wiki/Privacy_policy</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OniGalore:Privacy_policy" target="_blank">OniGalore:Privacy_policy</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikimedia:Privacy_policy]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/temp/case1.zip" target="_blank">http://www.paradox.oni2.net/temp/case1.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OBD_talk:TXMP" target="_blank">OBD_talk:TXMP</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/temp/case1.zip" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/temp/case1.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/temp/case3.zip" target="_blank">http://www.paradox.oni2.net/temp/case3.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OBD_talk:TXMP" target="_blank">OBD_talk:TXMP</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/temp/case3.zip" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/temp/case3.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://de.wikipedia.org/wiki/Spermidin#Vorkommen_in_Nahrungsmitteln" target="_blank">https://de.wikipedia.org/wiki/Spermidin#Vorkommen_in_Nahrungsmitteln</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Paradox-01/brain_dump" target="_blank">User:Paradox-01/brain_dump</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Spermidin#Vorkommen_in_Nahrungsmitteln]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://de.wikipedia.org/wiki/Bill_Gates#Bill_&_Melinda_Gates_Foundation" target="_blank">https://de.wikipedia.org/wiki/Bill_Gates#Bill_&_Melinda_Gates_Foundation</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Paradox-01/brain_dump" target="_blank">User:Paradox-01/brain_dump</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Bill_Gates#Bill_&_Melinda_Gates_Foundation]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/" target="_blank">http://oni.bungie.org/community/forum/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:ChibiOni_Konoko_and_Muro_by_66reddog.png" target="_blank">File:ChibiOni_Konoko_and_Muro_by_66reddog.png</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/" target="_blank">http://oni.bungie.org/forum/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.go-mono.com/mono-downloads/download.html" target="_blank">http://www.go-mono.com/mono-downloads/download.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OniSplit" target="_blank">OniSplit</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.mono-project.com/download/" target="_blank">https://www.mono-project.com/download/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://homepage.ntlworld.com/jane.sampson1/oni/" target="_blank">http://homepage.ntlworld.com/jane.sampson1/oni/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Linework_oni_1600.jpg" target="_blank">File:Linework_oni_1600.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://homepage.ntlworld.com/jane.sampson1/oni/" target="_blank">https://web.archive.org/web/*/http://homepage.ntlworld.com/jane.sampson1/oni/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=188" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=188</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Welcome_to_Oni_bar.jpg" target="_blank">File:Welcome_to_Oni_bar.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=188" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=188</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=193" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=193</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Merry.jpg" target="_blank">File:Merry.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=193" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=193</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://collada.org/public_forum/viewtopic.php?p=3457" target="_blank">https://collada.org/public_forum/viewtopic.php?p=3457</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:OME" target="_blank">Talk:OME</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://forums.khronos.org/301.php?action=post&oldid=3457" target="_blank">https://forums.khronos.org/301.php?action=post&oldid=3457</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://softimage.com/downloads/XSI_Mod_Tool/default.aspx" target="_blank">http://softimage.com/downloads/XSI_Mod_Tool/default.aspx</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:OME" target="_blank">Talk:OME</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.autodesk.com/softimage" target="_blank">https://www.autodesk.com/softimage</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://beta.slashdot.org/story/50267" target="_blank">http://beta.slashdot.org/story/50267</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni" target="_blank">Oni</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://slashdot.org/" target="_blank">https://slashdot.org/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.manuelbastioni.com/index.php" target="_blank">http://www.manuelbastioni.com/index.php</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/Wishlist" target="_blank">Talk:Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.manuelbastioni.com/index.html" target="_blank">http://www.manuelbastioni.com/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewforum.php?id=12" target="_blank">http://oni.bungie.org/community/forum/viewforum.php?id=12</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Anniversary_Edition" target="_blank">Anniversary_Edition</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewforum.php?id=12" target="_blank">http://oni.bungie.org/forum/viewforum.php?id=12</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/User:Iritscen/vector.js" target="_blank">http://wiki.oni2.net/User:Iritscen/vector.js</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Archive1" target="_blank">User_talk:Paradox-01/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[User:Iritscen/vector.js]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/User_talk:Iritscen/Archive2#AI_self-healing" target="_blank">http://wiki.oni2.net/User_talk:Iritscen/Archive2#AI_self-healing</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BSL_talk:Functions" target="_blank">BSL_talk:Functions</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[User_talk:Iritscen/Archive2#AI_self-healing]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/OniSplit#CLI_tips" target="_blank">http://wiki.oni2.net/OniSplit#CLI_tips</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:OniSplit" target="_blank">Talk:OniSplit</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[OniSplit#CLI_tips]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/OBD:BINA/OBJC/CHAR" target="_blank">http://wiki.oni2.net/OBD:BINA/OBJC/CHAR</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Adding_spawnable_characters" target="_blank">Adding_spawnable_characters</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[OBD:BINA/OBJC/CHAR]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.animestocks.com/gallery/category/Full+Metal+Panic!+TSR/Melissa+Mao" target="_blank">http://www.animestocks.com/gallery/category/Full+Metal+Panic!+TSR/Melissa+Mao</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Anime_and_manga" target="_blank">Anime_and_manga</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://animestocks.com/gallery/category/Full+Metal+Panic!+TSR/Melissa+Mao" target="_blank">http://animestocks.com/gallery/category/Full+Metal+Panic!+TSR/Melissa+Mao</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/OBD_talk:TRAC" target="_blank">http://wiki.oni2.net/OBD_talk:TRAC</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Importing_character_models" target="_blank">Talk:Importing_character_models</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[OBD_talk:TRAC]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.kyoto.zaq.ne.jp/mibu/eng/pages/plays/tales.html#Anchor-Ogre-43793" target="_blank">http://www.kyoto.zaq.ne.jp/mibu/eng/pages/plays/tales.html#Anchor-Ogre-43793</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(myth)" target="_blank">Oni_(myth)</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20090814100526/http://www.kyoto.zaq.ne.jp/mibu/eng/pages/plays/tales.html" target="_blank">http://web.archive.org/web/20090814100526/http://www.kyoto.zaq.ne.jp/mibu/eng/pages/plays/tales.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://svn.oni2.net/Vago/trunk/Vago/bgImageWizard/bgimagepagefinal.cpp" target="_blank">http://svn.oni2.net/Vago/trunk/Vago/bgImageWizard/bgimagepagefinal.cpp</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:TXMB" target="_blank">XML_talk:TXMB</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://svn.oni2.net/Vago/trunk/Vago/bgImageWizard/bgimagepagefinal.cpp" target="_blank">https://web.archive.org/web/*/http://svn.oni2.net/Vago/trunk/Vago/bgImageWizard/bgimagepagefinal.cpp</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://docs.unrealengine.com/latest/INT/Engine/LevelStreaming/HowTo/" target="_blank">https://docs.unrealengine.com/latest/INT/Engine/LevelStreaming/HowTo/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.unrealengine.com/en-US/Engine/LevelStreaming/HowTo/index.html" target="_blank">https://docs.unrealengine.com/en-US/Engine/LevelStreaming/HowTo/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Pandora" target="_blank">http://en.wikipedia.org/wiki/Pandora</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Hope" target="_blank">Hope</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Pandora]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.haibane.de/oni/overview.htm" target="_blank">http://www.haibane.de/oni/overview.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2_talk:Hikari" target="_blank">Oni2_talk:Hikari</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.haibane.de/oni/overview.htm" target="_blank">https://web.archive.org/web/*/http://www.haibane.de/oni/overview.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.bungie.net/en-us/AboutUs#page=games&game=10127" target="_blank">http://www.bungie.net/en-us/AboutUs#page=games&game=10127</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Konoko" target="_blank">Konoko</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.bungie.net/en-us/AboutUs" target="_blank">https://www.bungie.net/en-us/AboutUs</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://docs.unrealengine.com/latest/INT/Videos/PLZlv_N0_O1ga0IoRrpI4xkX4qmCrhGu56/index.html" target="_blank">https://docs.unrealengine.com/latest/INT/Videos/PLZlv_N0_O1ga0IoRrpI4xkX4qmCrhGu56/index.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.unrealengine.com/en-US/Videos/PLZlv_N0_O1ga0IoRrpI4xkX4qmCrhGu56/index.html" target="_blank">https://docs.unrealengine.com/en-US/Videos/PLZlv_N0_O1ga0IoRrpI4xkX4qmCrhGu56/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://www.vor.ru/Exclusive/excl_next8884_eng.html" target="_blank">http://www.vor.ru/Exclusive/excl_next8884_eng.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Trivia" target="_blank">Talk:Trivia</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.vor.ru/Exclusive/excl_next8884_eng.html" target="_blank">https://web.archive.org/web/*/http://www.vor.ru/Exclusive/excl_next8884_eng.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=37252#p37252" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=37252#p37252</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=37252" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=37252</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://geyser.oni2.net/OSL/IGMD/Airport/airport_level_logic.bsl" target="_blank">http://geyser.oni2.net/OSL/IGMD/Airport/airport_level_logic.bsl</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/GameDataFolder/IGMD/Airport" target="_blank">Oni_(folder)/GameDataFolder/IGMD/Airport</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://geyser.oni2.net/OSL/IGMD/Airport/airport_level_logic.bsl" target="_blank">https://web.archive.org/web/*/http://geyser.oni2.net/OSL/IGMD/Airport/airport_level_logic.bsl</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=177" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=177</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Crescent_Moon_Kick" target="_blank">Crescent_Moon_Kick</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=177" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=177</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://babelfish.altavista.com/" target="_blank">http://babelfish.altavista.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Trivia" target="_blank">Talk:Trivia</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.yahoo.com/" target="_blank">https://www.yahoo.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.merkur.de/2007_51_Bluehende_Ozeane.25382.0.html?&no_cache=1" target="_blank">http://www.merkur.de/2007_51_Bluehende_Ozeane.25382.0.html?&no_cache=1</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Paradox-01/brain_dump" target="_blank">User:Paradox-01/brain_dump</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.merkur.de/welt/" target="_blank">http://www.merkur.de/welt/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=39787#p39787" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=39787#p39787</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:TRAM" target="_blank">XML:TRAM</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=39787" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=39787</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (503)</td><td align="right">page</td><td><a href="https://www.animenewsnetwork.com/encyclopedia/anime.php?id=42" target="_blank">https://www.animenewsnetwork.com/encyclopedia/anime.php?id=42</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Windows_(CN)_collector's_edition_-_contents.png" target="_blank">File:Windows_(CN)_collector's_edition_-_contents.png</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20200401141542/https://www.animenewsnetwork.com/encyclopedia/anime.php?id=42" target="_blank">http://web.archive.org/web/20200401141542/https://www.animenewsnetwork.com/encyclopedia/anime.php?id=42</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.phantagram.com/" target="_blank">http://www.phantagram.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.phantagram.com:443/" target="_blank">https://www.phantagram.com:443/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://news.teamxbox.com/xbox/3113/Strident-Trailer/" target="_blank">http://news.teamxbox.com/xbox/3113/Strident-Trailer/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20080404000113/http://news.teamxbox.com/xbox/3113/Strident-Trailer/" target="_blank">http://web.archive.org/web/20080404000113/http://news.teamxbox.com/xbox/3113/Strident-Trailer/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://previews.teamxbox.com/xbox/218/Strident/p1/" target="_blank">http://previews.teamxbox.com/xbox/218/Strident/p1/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20061124060457/http://previews.teamxbox.com/xbox/218/Strident/p1/" target="_blank">http://web.archive.org/web/20061124060457/http://previews.teamxbox.com/xbox/218/Strident/p1/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://screenshots.teamxbox.com/gallery/253/Strident/p1/" target="_blank">http://screenshots.teamxbox.com/gallery/253/Strident/p1/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20090303194229/http://screenshots.teamxbox.com/gallery/253/Strident/p1/" target="_blank">http://web.archive.org/web/20090303194229/http://screenshots.teamxbox.com/gallery/253/Strident/p1/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://xboxmovies.teamxbox.com/xbox/194/Strident-trailer/" target="_blank">http://xboxmovies.teamxbox.com/xbox/194/Strident-trailer/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20061123223101/http://xboxmovies.teamxbox.com/xbox/194/Strident-trailer/" target="_blank">http://web.archive.org/web/20061123223101/http://xboxmovies.teamxbox.com/xbox/194/Strident-trailer/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://xbox.ign.com/articles/098/098046p1.html" target="_blank">http://xbox.ign.com/articles/098/098046p1.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.ign.com/xbox" target="_blank">https://www.ign.com/xbox</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://xbox.ign.com/articles/137/137000p1.html" target="_blank">http://xbox.ign.com/articles/137/137000p1.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.ign.com/xbox" target="_blank">https://www.ign.com/xbox</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://media.xbox.ign.com/media/017/017000/imgs_1.html" target="_blank">http://media.xbox.ign.com/media/017/017000/imgs_1.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20080103093615/http://media.xbox.ign.com/media/017/017000/imgs_1.html" target="_blank">http://web.archive.org/web/20080103093615/http://media.xbox.ign.com/media/017/017000/imgs_1.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://media.xbox.ign.com/media/017/017000/vids_1.html" target="_blank">http://media.xbox.ign.com/media/017/017000/vids_1.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20050315145423/http://media.xbox.ign.com/media/017/017000/vids_1.html" target="_blank">http://web.archive.org/web/20050315145423/http://media.xbox.ign.com/media/017/017000/vids_1.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://www.gamenavigator.ru/files/file1214.html" target="_blank">http://www.gamenavigator.ru/files/file1214.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20041019021128/http://gamenavigator.ru/files/file1214.html" target="_blank">http://web.archive.org/web/20041019021128/http://gamenavigator.ru/files/file1214.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://gp.gamenavigator.ru/gallery/screenshots/1786/4956/" target="_blank">http://gp.gamenavigator.ru/gallery/screenshots/1786/4956/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Strident" target="_blank">Strident</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://gp.gamenavigator.ru/gallery/screenshots/1786/4956/" target="_blank">https://web.archive.org/web/*/http://gp.gamenavigator.ru/gallery/screenshots/1786/4956/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.psxseeker.com/screens/synwars.html" target="_blank">http://www.psxseeker.com/screens/synwars.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Syndicate_Wars" target="_blank">Syndicate_Wars</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20041107152220/http://psxseeker.com/screens/synwars.html" target="_blank">http://web.archive.org/web/20041107152220/http://psxseeker.com/screens/synwars.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://www.comicbookresources.com/images/previews/games/bone/big/Bone_RatCreature1.jpg" target="_blank">http://www.comicbookresources.com/images/previews/games/bone/big/Bone_RatCreature1.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:DAZ3D_BeoQuad_concept_2.jpg" target="_blank">File:DAZ3D_BeoQuad_concept_2.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.cbr.com/wordpress/scripts/wp_redirect.php?uri=images/previews/games/bone/big/Bone_RatCreature1.jpg" target="_blank">https://www.cbr.com/wordpress/scripts/wp_redirect.php?uri=images/previews/games/bone/big/Bone_RatCreature1.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://www.comicbookresources.com/images/previews/games/bone/big/Bone_RatCreature1.jpg" target="_blank">http://www.comicbookresources.com/images/previews/games/bone/big/Bone_RatCreature1.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:DAZ3D_BeoQuad_concept_1.jpg" target="_blank">File:DAZ3D_BeoQuad_concept_1.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.cbr.com/wordpress/scripts/wp_redirect.php?uri=images/previews/games/bone/big/Bone_RatCreature1.jpg" target="_blank">https://www.cbr.com/wordpress/scripts/wp_redirect.php?uri=images/previews/games/bone/big/Bone_RatCreature1.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://oniusb.googlepages.com/Daodan.7z" target="_blank">http://oniusb.googlepages.com/Daodan.7z</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:RossyMiles" target="_blank">User_talk:RossyMiles</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://sites.google.com/site/oniusb/Daodan.7z" target="_blank">http://sites.google.com/site/oniusb/Daodan.7z</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2619" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2619</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2619" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2619</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://de.wikipedia.org/wiki/Polypedilum_vanderplanki" target="_blank">http://de.wikipedia.org/wiki/Polypedilum_vanderplanki</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/Technology" target="_blank">Talk:Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Polypedilum_vanderplanki]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (307)</td><td align="right">page</td><td><a href="https://www.allegorithmic.com/products/substance-designer" target="_blank">https://www.allegorithmic.com/products/substance-designer</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Fuse" target="_blank">Fuse</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.substance3d.com/products/substance-designer" target="_blank">https://www.substance3d.com/products/substance-designer</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://en.wikipedia.org/wiki/Aerogel" target="_blank">https://en.wikipedia.org/wiki/Aerogel</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Fragments" target="_blank">Restless_Souls/Fragments</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Aerogel]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=9274#p9274" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=9274#p9274</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OBD_talk:ONGS" target="_blank">OBD_talk:ONGS</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=9274" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=9274</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">file</td><td><a href="http://wiki.oni2.net/File:Button_base.png" target="_blank">http://wiki.oni2.net/File:Button_base.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/MediaWiki:Common.js/edit" target="_blank">MediaWiki:Common.js/edit</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[File:Button_base.png]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/Bilder/blocked_attacks_on_51percent_overpower_plus_daodan-flag_plus_supershield.png" target="_blank">http://paradox.oni2.net/Bilder/blocked_attacks_on_51percent_overpower_plus_daodan-flag_plus_supershield.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OBD:ONCC" target="_blank">OBD:ONCC</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/Bilder/blocked_attacks_on_51percent_overpower_plus_daodan-flag_plus_supershield.png" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/Bilder/blocked_attacks_on_51percent_overpower_plus_daodan-flag_plus_supershield.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/3D/ONCCk4_K.zip" target="_blank">http://edt.oni2.net/3D/ONCCk4_K.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:EdT/Archive1" target="_blank">User_talk:EdT/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/3D/ONCCk4_K.zip" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/3D/ONCCk4_K.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=2856#p2856" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=2856#p2856</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:EdT/Archive1" target="_blank">User_talk:EdT/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=2856" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=2856</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/OBD_talk:TRAC" target="_blank">http://wiki.oni2.net/OBD_talk:TRAC</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[OBD_talk:TRAC]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/mods/mac_shapeshift_test.zip" target="_blank">http://www.paradox.oni2.net/mods/mac_shapeshift_test.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:EdT/Archive1" target="_blank">User_talk:EdT/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/mods/mac_shapeshift_test.zip" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/mods/mac_shapeshift_test.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">file</td><td><a href="http://images.forum-auto.com/mesimages/264800/D8_120S_Pourtout_Aero_1937_9.jpg" target="_blank">http://images.forum-auto.com/mesimages/264800/D8_120S_Pourtout_Aero_1937_9.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:AVATARA" target="_blank">Oni2:AVATARA</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://images.forum-auto.com/mesimages/264800/D8_120S_Pourtout_Aero_1937_9.jpg" target="_blank">https://web.archive.org/web/*/http://images.forum-auto.com/mesimages/264800/D8_120S_Pourtout_Aero_1937_9.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.supercars.net/Pics?vpf2=y&gID=1&fID=0&tID=153655&mID=1144990&l=a" target="_blank">http://www.supercars.net/Pics?vpf2=y&gID=1&fID=0&tID=153655&mID=1144990&l=a</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:AVATARA" target="_blank">Oni2:AVATARA</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.supercars.net/blog/gallery-home/" target="_blank">http://www.supercars.net/blog/gallery-home/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=3308317&l=d" target="_blank">http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=3308317&l=d</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:AVATARA" target="_blank">Oni2:AVATARA</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.supercars.net/blog/gallery-home/" target="_blank">http://www.supercars.net/blog/gallery-home/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=1144990&l=d" target="_blank">http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=1144990&l=d</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:AVATARA" target="_blank">Oni2:AVATARA</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.supercars.net/blog/gallery-home/" target="_blank">http://www.supercars.net/blog/gallery-home/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=1144990&l=c" target="_blank">http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=1144990&l=c</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:AVATARA" target="_blank">Oni2:AVATARA</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.supercars.net/blog/gallery-home/" target="_blank">https://www.supercars.net/blog/gallery-home/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oniusb.googlepages.com/" target="_blank">http://oniusb.googlepages.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:RossyMiles" target="_blank">User:RossyMiles</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://sites.google.com/site/oniusb/" target="_blank">http://sites.google.com/site/oniusb/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://msdn.microsoft.com/en-us/library/bb189722.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/bb189722.aspx</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OBD:PSpc" target="_blank">OBD:PSpc</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20090504113621/http://msdn.microsoft.com/en-us/library/bb189722.aspx" target="_blank">http://web.archive.org/web/20090504113621/http://msdn.microsoft.com/en-us/library/bb189722.aspx</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://sfeli.oni2.net/daodan/current.zip" target="_blank">http://sfeli.oni2.net/daodan/current.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Daodan_DLL" target="_blank">Daodan_DLL</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://sfeli.oni2.net/daodan/current.zip" target="_blank">https://web.archive.org/web/*/http://sfeli.oni2.net/daodan/current.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=508" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=508</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE_talk:OTA" target="_blank">AE_talk:OTA</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=508" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=508</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://www.mediawiki.org/wiki/Extension:ConfirmAccount" target="_blank">http://www.mediawiki.org/wiki/Extension:ConfirmAccount</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:War_on_spam" target="_blank">Talk:War_on_spam</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[mw:Extension:ConfirmAccount]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2438" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2438</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BGI_characters" target="_blank">BGI_characters</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2438" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2438</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.macupdate.com/info.php/id/22750/0xed" target="_blank">http://www.macupdate.com/info.php/id/22750/0xed</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Importing_character_models" target="_blank">Talk:Importing_character_models</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.macupdate.com/app/mac/22750" target="_blank">https://www.macupdate.com/app/mac/22750</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.arte.tv/de/wissen-entdeckung/1630892.html" target="_blank">http://www.arte.tv/de/wissen-entdeckung/1630892.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/BC2" target="_blank">Talk:Restless_Souls/BC2</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.arte.tv/de/wissen-entdeckung/1630892.html" target="_blank">https://web.archive.org/web/*/http://www.arte.tv/de/wissen-entdeckung/1630892.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2423" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2423</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Importing_character_models" target="_blank">Talk:Importing_character_models</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2423" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2423</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://oni.bungie.org/forums/index.php?threadid=9&page=19#post_3410" target="_blank">http://oni.bungie.org/forums/index.php?threadid=9&page=19#post_3410</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/BC2" target="_blank">Talk:Restless_Souls/BC2</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20090511071025/http://oni.bungie.org/forums/index.php?threadid=9" target="_blank">http://web.archive.org/web/20090511071025/http://oni.bungie.org/forums/index.php?threadid=9</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=273#p273" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=273#p273</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=273" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=273</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">file</td><td><a href="http://www.thenewyorkerstore.com/assets/1/120401_m.gif" target="_blank">http://www.thenewyorkerstore.com/assets/1/120401_m.gif</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File_talk:Bureaucat.jpg" target="_blank">File_talk:Bureaucat.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.thenewyorkerstore.com/assets/1/120401_m.gif" target="_blank">https://web.archive.org/web/*/http://www.thenewyorkerstore.com/assets/1/120401_m.gif</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Virus#Genetic_change" target="_blank">http://en.wikipedia.org/wiki/Virus#Genetic_change</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BioCrisis" target="_blank">BioCrisis</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Virus#Genetic_change]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=35562#p35562" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=35562#p35562</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Konoko" target="_blank">Konoko</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=35562" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=35562</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://starwars.wikia.com/wiki/DXR-6_disruptor_rifle" target="_blank">http://starwars.wikia.com/wiki/DXR-6_disruptor_rifle</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Project_Imago" target="_blank">User_talk:Paradox-01/Project_Imago</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://starwars.fandom.com/wiki/DXR-6_disruptor_rifle" target="_blank">https://starwars.fandom.com/wiki/DXR-6_disruptor_rifle</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://www.businessinsider.de/nuclear-bomb-accident-goldsboro-nc-swamp-2017-5?r=US&IR=T" target="_blank">https://www.businessinsider.de/nuclear-bomb-accident-goldsboro-nc-swamp-2017-5?r=US&IR=T</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.businessinsider.com/nuclear-bomb-accident-goldsboro-nc-swamp-2017-5?r=DE&IR=T?r=US&IR=T" target="_blank">https://www.businessinsider.com/nuclear-bomb-accident-goldsboro-nc-swamp-2017-5?r=DE&IR=T?r=US&IR=T</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://colladablender.illusoft.com/cms/content/blogcategory/18/44/" target="_blank">http://colladablender.illusoft.com/cms/content/blogcategory/18/44/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.hugedomains.com/domain_profile.cfm?d=illusoft&e=com" target="_blank">https://www.hugedomains.com/domain_profile.cfm?d=illusoft&e=com</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">file</td><td><a href="http://www6.fh-eberswalde.de/user/dkriesch/onistuff/subfold/text/oni_bina_texture_materials.txt" target="_blank">http://www6.fh-eberswalde.de/user/dkriesch/onistuff/subfold/text/oni_bina_texture_materials.txt</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OBD:BINA/OBJC/TMBD" target="_blank">OBD:BINA/OBJC/TMBD</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www6.fh-eberswalde.de/user/dkriesch/onistuff/subfold/text/oni_bina_texture_materials.txt" target="_blank">https://web.archive.org/web/*/http://www6.fh-eberswalde.de/user/dkriesch/onistuff/subfold/text/oni_bina_texture_materials.txt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.lsesnet.com/blog/?p=35" target="_blank">http://www.lsesnet.com/blog/?p=35</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Iritscen/MainPageTest" target="_blank">User_talk:Iritscen/MainPageTest</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.lsesnet.com/blog/?p=35" target="_blank">https://web.archive.org/web/*/http://www.lsesnet.com/blog/?p=35</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://karakuriya.com/english/doll/shinatama.htm" target="_blank">http://karakuriya.com/english/doll/shinatama.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Shinatama" target="_blank">Talk:Shinatama</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170816043624/http://karakuriya.com/english/doll/shinatama.htm" target="_blank">http://web.archive.org/web/20170816043624/http://karakuriya.com/english/doll/shinatama.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://miksike.com/docs/elehed/4klass/4nuku/elutuba/marionetid/jaapani.htm" target="_blank">http://miksike.com/docs/elehed/4klass/4nuku/elutuba/marionetid/jaapani.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Shinatama" target="_blank">Talk:Shinatama</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://miksike.eu/docs/elehed/4klass/4nuku/elutuba/marionetid/jaapani.htm" target="_blank">http://miksike.eu/docs/elehed/4klass/4nuku/elutuba/marionetid/jaapani.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://video.google.com/videoplay?docid=-3698181664223784657" target="_blank">http://video.google.com/videoplay?docid=-3698181664223784657</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Shinatama" target="_blank">Talk:Shinatama</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20110617050736/http://video.google.com/videoplay?docid=-3698181664223784657" target="_blank">http://web.archive.org/web/20110617050736/http://video.google.com/videoplay?docid=-3698181664223784657</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=19624#p19624" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=19624#p19624</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BGI_characters" target="_blank">BGI_characters</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=19624" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=19624</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://thefree3dmodels.com/stuff/characters/robot_warrior/14-1-0-1497" target="_blank">http://thefree3dmodels.com/stuff/characters/robot_warrior/14-1-0-1497</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BGI_characters" target="_blank">BGI_characters</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://free3d.com/redirect.php?ref=characters/robot_warrior/14-1-0-1497" target="_blank">https://free3d.com/redirect.php?ref=characters/robot_warrior/14-1-0-1497</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://geyser.oni2.net/edition/trailer/intro/oni_logo.png" target="_blank">http://geyser.oni2.net/edition/trailer/intro/oni_logo.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://geyser.oni2.net/edition/trailer/intro/oni_logo.png" target="_blank">https://web.archive.org/web/*/http://geyser.oni2.net/edition/trailer/intro/oni_logo.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://javadl.sun.com/webapps/download/AutoDL?BundleId=78825" target="_blank">https://javadl.sun.com/webapps/download/AutoDL?BundleId=78825</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Playing_in_Linux" target="_blank">Playing_in_Linux</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://javadl.oracle.com/webapps/download/AutoDL?BundleId=78825" target="_blank">https://javadl.oracle.com/webapps/download/AutoDL?BundleId=78825</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://loser.oni2.net/Temporary/Doppelganger_Mukade-fight.wmv" target="_blank">http://loser.oni2.net/Temporary/Doppelganger_Mukade-fight.wmv</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://loser.oni2.net/Temporary/Doppelganger_Mukade-fight.wmv" target="_blank">https://web.archive.org/web/*/http://loser.oni2.net/Temporary/Doppelganger_Mukade-fight.wmv</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://loser.oni2.net/Temporary/Doppelganger_Mukade-Pure_AI2_pwnage.wmv" target="_blank">http://loser.oni2.net/Temporary/Doppelganger_Mukade-Pure_AI2_pwnage.wmv</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://loser.oni2.net/Temporary/Doppelganger_Mukade-Pure_AI2_pwnage.wmv" target="_blank">https://web.archive.org/web/*/http://loser.oni2.net/Temporary/Doppelganger_Mukade-Pure_AI2_pwnage.wmv</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://loser.oni2.net/Temporary/Dead_comrade_alarm.wmv" target="_blank">http://loser.oni2.net/Temporary/Dead_comrade_alarm.wmv</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://loser.oni2.net/Temporary/Dead_comrade_alarm.wmv" target="_blank">https://web.archive.org/web/*/http://loser.oni2.net/Temporary/Dead_comrade_alarm.wmv</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.pingtest.net/" target="_blank">http://www.pingtest.net/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Zukai" target="_blank">Zukai</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170410155819/http://www.pingtest.net/" target="_blank">http://web.archive.org/web/20170410155819/http://www.pingtest.net/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://noneat.me/pdf/oni/ONI%20PC%20Manual%20GER.pdf" target="_blank">http://noneat.me/pdf/oni/ONI%20PC%20Manual%20GER.pdf</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Noneatme" target="_blank">User:Noneatme</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://noneat.me/pdf/oni/ONI%20PC%20Manual%20GER.pdf" target="_blank">https://web.archive.org/web/*/http://noneat.me/pdf/oni/ONI%20PC%20Manual%20GER.pdf</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/TinyMistake.mov" target="_blank">http://edt.oni2.net/AE_Files/TinyMistake.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/TinyMistake.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/TinyMistake.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/weapon1_3.mov" target="_blank">http://edt.oni2.net/AE_Files/weapon1_3.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/weapon1_3.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/weapon1_3.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/Allweapons1.mov" target="_blank">http://edt.oni2.net/AE_Files/Allweapons1.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/Allweapons1.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/Allweapons1.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://geyser.oni2.net/edition/vehicles/delorean/TrailerDeLorean.zip" target="_blank">http://geyser.oni2.net/edition/vehicles/delorean/TrailerDeLorean.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:DeLorean" target="_blank">AE:DeLorean</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://geyser.oni2.net/edition/vehicles/delorean/TrailerDeLorean.zip" target="_blank">https://web.archive.org/web/*/http://geyser.oni2.net/edition/vehicles/delorean/TrailerDeLorean.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=508" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=508</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer/Shapeshifting" target="_blank">AE:Trailer/Shapeshifting</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=508" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=508</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1727" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1727</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/History_of_Oni_modding" target="_blank">History_of_Oni_modding</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1727" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1727</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/spartans1.mov" target="_blank">http://edt.oni2.net/AE_Files/spartans1.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/spartans1.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/spartans1.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/AllChar.mov" target="_blank">http://edt.oni2.net/AE_Files/AllChar.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer/Shapeshifting" target="_blank">AE:Trailer/Shapeshifting</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/AllChar.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/AllChar.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/spartans2.mov" target="_blank">http://edt.oni2.net/AE_Files/spartans2.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/spartans2.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/spartans2.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/spartans3.mov" target="_blank">http://edt.oni2.net/AE_Files/spartans3.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/spartans3.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/spartans3.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/delorean.mov" target="_blank">http://edt.oni2.net/AE_Files/delorean.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/delorean.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/delorean.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/KonokoRoof.mov" target="_blank">http://edt.oni2.net/AE_Files/KonokoRoof.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/KonokoRoof.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/KonokoRoof.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/AE_vid/sniper_mode_(xvid).avi" target="_blank">http://www.paradox.oni2.net/AE_vid/sniper_mode_(xvid).avi</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode" target="_blank">AE_talk:Sniper_scope_and_prone_mode</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/sniper_mode_(xvid).avi" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/sniper_mode_(xvid).avi</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/AE_vid/sniper_zoom_mode.avi" target="_blank">http://www.paradox.oni2.net/AE_vid/sniper_zoom_mode.avi</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode" target="_blank">AE_talk:Sniper_scope_and_prone_mode</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/sniper_zoom_mode.avi" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/sniper_zoom_mode.avi</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/AE_vid/relocating_during_hostile_sniper_fire.avi" target="_blank">http://www.paradox.oni2.net/AE_vid/relocating_during_hostile_sniper_fire.avi</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode" target="_blank">AE_talk:Sniper_scope_and_prone_mode</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/relocating_during_hostile_sniper_fire.avi" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/relocating_during_hostile_sniper_fire.avi</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/AE_vid/two_more_zooms.avi" target="_blank">http://www.paradox.oni2.net/AE_vid/two_more_zooms.avi</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode" target="_blank">AE_talk:Sniper_scope_and_prone_mode</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/two_more_zooms.avi" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/two_more_zooms.avi</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/steambo.mov" target="_blank">http://edt.oni2.net/AE_Files/steambo.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/steambo.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/steambo.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/w27_arh.mov" target="_blank">http://edt.oni2.net/AE_Files/w27_arh.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/w27_arh.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/w27_arh.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/AE_vid/kneeling+sniping_Konoko.avi" target="_blank">http://www.paradox.oni2.net/AE_vid/kneeling+sniping_Konoko.avi</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode" target="_blank">AE_talk:Sniper_scope_and_prone_mode</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/kneeling+sniping_Konoko.avi" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/kneeling+sniping_Konoko.avi</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/AE_vid/relocating_Konoko.avi" target="_blank">http://www.paradox.oni2.net/AE_vid/relocating_Konoko.avi</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode" target="_blank">AE_talk:Sniper_scope_and_prone_mode</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/relocating_Konoko.avi" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/relocating_Konoko.avi</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/Barabus_Jet.mov" target="_blank">http://edt.oni2.net/AE_Files/Barabus_Jet.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/Barabus_Jet.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/Barabus_Jet.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/Barabus_Jet2.mov" target="_blank">http://edt.oni2.net/AE_Files/Barabus_Jet2.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/Barabus_Jet2.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/Barabus_Jet2.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/griffin_out.mov" target="_blank">http://edt.oni2.net/AE_Files/griffin_out.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/griffin_out.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/griffin_out.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/3DLab1.mov" target="_blank">http://edt.oni2.net/AE_Files/3DLab1.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/3DLab1.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/3DLab1.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/3DLab2.mov" target="_blank">http://edt.oni2.net/AE_Files/3DLab2.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/3DLab2.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/3DLab2.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=10487#p10487" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=10487#p10487</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Gumby" target="_blank">User:Gumby</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=10487" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=10487</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=9103#p9103" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=9103#p9103</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Geyser/STFUn00b" target="_blank">User:Geyser/STFUn00b</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=9103" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=9103</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://gumby.oni2.net/Videos/Big%20fat%20OTA%20vid.wmv" target="_blank">http://gumby.oni2.net/Videos/Big%20fat%20OTA%20vid.wmv</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://gumby.oni2.net/Videos/Big%20fat%20OTA%20vid.wmv" target="_blank">https://web.archive.org/web/*/http://gumby.oni2.net/Videos/Big%20fat%20OTA%20vid.wmv</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/AE_Files/pillar.mov" target="_blank">http://edt.oni2.net/AE_Files/pillar.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Trailer" target="_blank">AE:Trailer</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/pillar.mov" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/pillar.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.zbrushcentral.com/showthread.php?163445-Earthquake" target="_blank">http://www.zbrushcentral.com/showthread.php?163445-Earthquake</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Big/Earthquake" target="_blank">Oni2:Big/Earthquake</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://archive.zbrushcentral.com/showthread.php?163445-Earthquake" target="_blank">http://archive.zbrushcentral.com/showthread.php?163445-Earthquake</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=9299#p9299" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=9299#p9299</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=9299" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=9299</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.spieleforum.de/thema/159597-6.html#post1932780" target="_blank">http://www.spieleforum.de/thema/159597-6.html#post1932780</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.spieleforum.de/thema/159597-6.html" target="_blank">https://www.spieleforum.de/thema/159597-6.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/%E6%9D%8E" target="_blank">http://en.wiktionary.org/wiki/%E6%9D%8E</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:%E6%9D%8E]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/%E6%BA%B6" target="_blank">http://en.wiktionary.org/wiki/%E6%BA%B6</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:%E6%BA%B6]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/%E9%8E%AE" target="_blank">http://en.wiktionary.org/wiki/%E9%8E%AE</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:%E9%8E%AE]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/%E6%B2%88" target="_blank">http://en.wiktionary.org/wiki/%E6%B2%88</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:%E6%B2%88]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/%E7%9A%9A" target="_blank">http://en.wiktionary.org/wiki/%E7%9A%9A</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:%E7%9A%9A]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/%E7%80%9B" target="_blank">http://en.wiktionary.org/wiki/%E7%80%9B</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:%E7%80%9B]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/%E6%9C%B1" target="_blank">http://en.wiktionary.org/wiki/%E6%9C%B1</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:%E6%9C%B1]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/%E4%BB%B2" target="_blank">http://en.wiktionary.org/wiki/%E4%BB%B2</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:%E4%BB%B2]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org/wiki/%E8%8B%B1" target="_blank">http://en.wiktionary.org/wiki/%E8%8B%B1</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:%E8%8B%B1]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="https://wiki.oni2.net/MediaWiki:Wantedfiletext-cat-noforeign" target="_blank">https://wiki.oni2.net/MediaWiki:Wantedfiletext-cat-noforeign</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/MediaWiki:Wantedfiletext-cat-noforeign" target="_blank">MediaWiki:Wantedfiletext-cat-noforeign</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[MediaWiki:Wantedfiletext-cat-noforeign]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=674" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=674</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Adding_spawnable_characters" target="_blank">Talk:Adding_spawnable_characters</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=674" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=674</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://docs.unrealengine.com/latest/INT/BlueprintAPI/Utilities/Text/MakeTextfromStringTable_Advanced/" target="_blank">https://docs.unrealengine.com/latest/INT/BlueprintAPI/Utilities/Text/MakeTextfromStringTable_Advanced/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.unrealengine.com/en-US/BlueprintAPI/Utilities/Text/MakeTextfromStringTable_Advanced/index.html" target="_blank">https://docs.unrealengine.com/en-US/BlueprintAPI/Utilities/Text/MakeTextfromStringTable_Advanced/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://docs.unrealengine.com/latest/INT/BlueprintAPI/Utilities/Text/FindStringTableIDandKeyfromText/" target="_blank">https://docs.unrealengine.com/latest/INT/BlueprintAPI/Utilities/Text/FindStringTableIDandKeyfromText/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.unrealengine.com/en-US/BlueprintAPI/Utilities/Text/FindStringTableIDandKeyfromText/index.html" target="_blank">https://docs.unrealengine.com/en-US/BlueprintAPI/Utilities/Text/FindStringTableIDandKeyfromText/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.photoshare.ru/album64678.html" target="_blank">http://www.photoshare.ru/album64678.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://photoshare.ru/album64678.html" target="_blank">http://photoshare.ru/album64678.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://www.unrealengine.com/marketplace/advanced-locomotion-system-v1" target="_blank">https://www.unrealengine.com/marketplace/advanced-locomotion-system-v1</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/UnrealOni/Tutorials" target="_blank">UnrealOni/Tutorials</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.unrealengine.com/marketplace/en-US/advanced-locomotion-system-v1" target="_blank">https://www.unrealengine.com/marketplace/en-US/advanced-locomotion-system-v1</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.3dfx.com/" target="_blank">http://www.3dfx.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/Oni_ReadMe" target="_blank">Oni_(folder)/Oni_ReadMe</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.nvidia.com/en-us/geforce/" target="_blank">https://www.nvidia.com/en-us/geforce/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://support.atitech.ca/" target="_blank">http://support.atitech.ca/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/Oni_ReadMe" target="_blank">Oni_(folder)/Oni_ReadMe</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20051029110731/http://support.atitech.ca/" target="_blank">http://web.archive.org/web/20051029110731/http://support.atitech.ca/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.3dfx.com/" target="_blank">http://www.3dfx.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.nvidia.com/en-us/geforce/" target="_blank">https://www.nvidia.com/en-us/geforce/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://bonusweb.idnes.cz/duality-trailer-0j6-" target="_blank">https://bonusweb.idnes.cz/duality-trailer-0j6-</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Duality" target="_blank">Duality</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.idnes.cz/hry" target="_blank">https://www.idnes.cz/hry</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/" target="_blank">http://oni.bungie.org/community/forum/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Help:Editing" target="_blank">Help:Editing</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/" target="_blank">http://oni.bungie.org/forum/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/mods/mouse_speed.zip" target="_blank">http://www.paradox.oni2.net/mods/mouse_speed.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Gumby" target="_blank">User_talk:Gumby</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/mods/mouse_speed.zip" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/mods/mouse_speed.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://oni.planets.gamespy.com/info/cheats.shtml" target="_blank">http://oni.planets.gamespy.com/info/cheats.shtml</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/History_of_Oni_modding/The_tale_of_Dev_Mode" target="_blank">History_of_Oni_modding/The_tale_of_Dev_Mode</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20090413130244/http://oni.planets.gamespy.com/info/cheats.shtml" target="_blank">http://web.archive.org/web/20090413130244/http://oni.planets.gamespy.com/info/cheats.shtml</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2102" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2102</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni" target="_blank">Oni</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2102" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2102</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Wikipedia:Copyrights" target="_blank">http://en.wikipedia.org/wiki/Wikipedia:Copyrights</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OniGalore:Copyrights" target="_blank">OniGalore:Copyrights</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Wikipedia:Copyrights]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.gnu.org/copyleft/fdl.html" target="_blank">http://www.gnu.org/copyleft/fdl.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OniGalore:Copyrights" target="_blank">OniGalore:Copyrights</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.gnu.org/licenses/fdl-1.3.html" target="_blank">http://www.gnu.org/licenses/fdl-1.3.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Tsearch" target="_blank">http://en.wikipedia.org/wiki/Tsearch</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Iritscen/Archive1" target="_blank">User_talk:Iritscen/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Tsearch]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=48117#p48117" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=48117#p48117</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Iritscen/Archive2" target="_blank">User_talk:Iritscen/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=48117" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=48117</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/TRAM_prog/DAE_demo_files.zip" target="_blank">http://paradox.oni2.net/TRAM_prog/DAE_demo_files.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/TRAM_setup_assistant" target="_blank">TRAM_setup_assistant</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/TRAM_prog/DAE_demo_files.zip" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/TRAM_prog/DAE_demo_files.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Help:Contents" target="_blank">http://en.wikipedia.org/wiki/Help:Contents</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Help_talk:Editing" target="_blank">Help_talk:Editing</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Help:Contents]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wiktionary.org" target="_blank">http://en.wiktionary.org</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Help:Editing" target="_blank">Help:Editing</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wikt:en.wiktionary.org]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/" target="_blank">http://oni.bungie.org/community/forum/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:EdT/Archive1" target="_blank">User_talk:EdT/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/" target="_blank">http://oni.bungie.org/forum/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://www.zapster.it/images/tools/wallpapers/1024x768/oni4.jpg" target="_blank">http://www.zapster.it/images/tools/wallpapers/1024x768/oni4.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Konoko_Crouching_-_Wallpaper_2.jpg" target="_blank">File:Konoko_Crouching_-_Wallpaper_2.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.chili.com/images/tools/wallpapers/1024x768/oni4.jpg" target="_blank">https://www.chili.com/images/tools/wallpapers/1024x768/oni4.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.zapster.it/tools/wallpap.asp" target="_blank">http://www.zapster.it/tools/wallpap.asp</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Konoko_Crouching_-_Wallpaper_2.jpg" target="_blank">File:Konoko_Crouching_-_Wallpaper_2.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.chili.com/tools/wallpap.asp" target="_blank">https://www.chili.com/tools/wallpap.asp</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.gamez.it/videogioco/Oni-PC-Windows" target="_blank">http://www.gamez.it/videogioco/Oni-PC-Windows</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Konoko_Crouching_-_Wallpaper_2.jpg" target="_blank">File:Konoko_Crouching_-_Wallpaper_2.jpg</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.gamez.it/videogioco/Oni-PC-Windows" target="_blank">https://web.archive.org/web/*/http://www.gamez.it/videogioco/Oni-PC-Windows</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.aicanime.com/products/adpolice/tvindex.html" target="_blank">http://www.aicanime.com/products/adpolice/tvindex.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Intro_frame_0431.png" target="_blank">File:Intro_frame_0431.png</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170503233144/http://www.aicanime.com/products/adpolice/tvindex.html" target="_blank">http://web.archive.org/web/20170503233144/http://www.aicanime.com/products/adpolice/tvindex.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://home.luna.nl/~xino/vga/index.html" target="_blank">http://home.luna.nl/~xino/vga/index.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Xenotron" target="_blank">Xenotron</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20160207125614/http://home.luna.nl/~xino/vga/index.html" target="_blank">http://web.archive.org/web/20160207125614/http://home.luna.nl/~xino/vga/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.microsoft.com/downloads/details.aspx?familyid=200B2FD9-AE1A-4A14-984D-389C36F85647&displaylang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?familyid=200B2FD9-AE1A-4A14-984D-389C36F85647&displaylang=en</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive1" target="_blank">User_talk:Neo/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.microsoft.com/en-us/download/details.aspx" target="_blank">http://www.microsoft.com/en-us/download/details.aspx</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://forums.philosophyforums.com/threads/the-mind-and-the-brain-31502-14.html#post523470" target="_blank">http://forums.philosophyforums.com/threads/the-mind-and-the-brain-31502-14.html#post523470</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Konoko" target="_blank">Talk:Konoko</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://forums.philosophyforums.com/threads/the-mind-and-the-brain-31502-14.html#post523470" target="_blank">https://web.archive.org/web/*/http://forums.philosophyforums.com/threads/the-mind-and-the-brain-31502-14.html#post523470</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://support.atitech.ca/" target="_blank">http://support.atitech.ca/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20051029110731/http://support.atitech.ca/" target="_blank">http://web.archive.org/web/20051029110731/http://support.atitech.ca/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.aztechlabs.com/" target="_blank">http://www.aztechlabs.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.hugedomains.com/domain_profile.cfm?d=aztechlabs&e=com" target="_blank">https://www.hugedomains.com/domain_profile.cfm?d=aztechlabs&e=com</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.creativelabs.com/" target="_blank">http://www.creativelabs.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://us.creative.com/" target="_blank">http://us.creative.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.elsa.de/" target="_blank">http://www.elsa.de/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.elsa-germany.org/" target="_blank">https://www.elsa-germany.org/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.iomagic.com/" target="_blank">http://www.iomagic.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://iomagic.com/" target="_blank">http://iomagic.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.leadtek.com/" target="_blank">http://www.leadtek.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.leadtek.com/eng/" target="_blank">https://www.leadtek.com/eng/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.matrox.com/" target="_blank">http://www.matrox.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.matrox.com/en/" target="_blank">https://www.matrox.com/en/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (307)</td><td align="right">page</td><td><a href="http://www.nvidia.com/" target="_blank">http://www.nvidia.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.nvidia.com/en-us/" target="_blank">https://www.nvidia.com/en-us/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.s3.com/" target="_blank">http://www.s3.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://s3.com/" target="_blank">http://s3.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://www.videologic.com/" target="_blank">http://www.videologic.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_(folder)/readme.txt" target="_blank">Oni_(folder)/readme.txt</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20121028095323/http://www.videologic.com/" target="_blank">http://web.archive.org/web/20121028095323/http://www.videologic.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1736" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1736</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/History_of_Oni_modding" target="_blank">History_of_Oni_modding</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1736" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1736</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.gamefaqs.com/console/psx/home/197512.html" target="_blank">http://www.gamefaqs.com/console/psx/home/197512.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/GUNNM" target="_blank">GUNNM</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://gamefaqs.gamespot.com/console/psx/home/197512.html" target="_blank">https://gamefaqs.gamespot.com/console/psx/home/197512.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://anidb.info/perl-bin/animedb.pl?show=anime&aid=1050" target="_blank">http://anidb.info/perl-bin/animedb.pl?show=anime&aid=1050</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Blame!" target="_blank">Blame!</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1050" target="_blank">https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1050</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://ps2.ign.com/objects/016/016405.html" target="_blank">http://ps2.ign.com/objects/016/016405.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/State_of_Emergency" target="_blank">State_of_Emergency</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.ign.com/games/maximum-action-state-of-emergency-serious-sam-gold/ps2-16405" target="_blank">http://www.ign.com/games/maximum-action-state-of-emergency-serious-sam-gold/ps2-16405</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://xbox.ign.com/objects/608/608771.html" target="_blank">http://xbox.ign.com/objects/608/608771.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/State_of_Emergency" target="_blank">State_of_Emergency</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.ign.com/xbox" target="_blank">https://www.ign.com/xbox</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://center.spoke.com/info/p5r3WYd/PatrickShettlesworth" target="_blank">http://center.spoke.com/info/p5r3WYd/PatrickShettlesworth</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/PolyKarbon" target="_blank">PolyKarbon</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.spoke.com/" target="_blank">http://www.spoke.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://training.sessions.edu/resources/free-tutorials/adobe-illustrator-tutorials/live-trace-live-paint.asp" target="_blank">http://training.sessions.edu/resources/free-tutorials/adobe-illustrator-tutorials/live-trace-live-paint.asp</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/PolyKarbon" target="_blank">PolyKarbon</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.sessions.edu/" target="_blank">https://www.sessions.edu/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://bards.fr/orgkom/wupper2008.jpg" target="_blank">http://bards.fr/orgkom/wupper2008.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Geyser/Artwork" target="_blank">User:Geyser/Artwork</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20081112044140/http://bards.fr/orgkom/wupper2008.jpg" target="_blank">http://web.archive.org/web/20081112044140/http://bards.fr/orgkom/wupper2008.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://bards.fr/pics/twilight.jpg" target="_blank">http://bards.fr/pics/twilight.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Geyser/Artwork" target="_blank">User:Geyser/Artwork</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://bards.fr/pics/twilight.jpg" target="_blank">https://web.archive.org/web/*/http://bards.fr/pics/twilight.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://bards.fr/pics/twilight2.jpg" target="_blank">http://bards.fr/pics/twilight2.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Geyser/Artwork" target="_blank">User:Geyser/Artwork</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://bards.fr/pics/twilight2.jpg" target="_blank">https://web.archive.org/web/*/http://bards.fr/pics/twilight2.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (500)</td><td align="right">page</td><td><a href="http://carnage.bungie.org/oniresforum/onires.archive.pl?read=35" target="_blank">http://carnage.bungie.org/oniresforum/onires.archive.pl?read=35</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/History_of_Oni_modding" target="_blank">History_of_Oni_modding</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://carnage.bungie.org/oniresforum/onires.archive.pl?read=35" target="_blank">https://web.archive.org/web/*/http://carnage.bungie.org/oniresforum/onires.archive.pl?read=35</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=15fb9169-4a25-4dca-bf40-9c497568f102&DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=15fb9169-4a25-4dca-bf40-9c497568f102&DisplayLang=en</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive1" target="_blank">User_talk:Neo/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.microsoft.com/en-us/download/details.aspx" target="_blank">http://www.microsoft.com/en-us/download/details.aspx</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=702" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=702</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Gumby" target="_blank">User:Gumby</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=702" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=702</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (500)</td><td align="right">page</td><td><a href="http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1188140623&rangeend=1188147823&nochange=1#114292" target="_blank">http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1188140623&rangeend=1188147823&nochange=1#114292</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1188140623&rangeend=1188147823&nochange=1#114292" target="_blank">https://web.archive.org/web/*/http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1188140623&rangeend=1188147823&nochange=1#114292</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://recaptcha.net/" target="_blank">http://recaptcha.net/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Geyser" target="_blank">User_talk:Geyser</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20100619202914/http://recaptcha.net/" target="_blank">http://web.archive.org/web/20100619202914/http://recaptcha.net/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://discord.gg/eqDMnkD" target="_blank">https://discord.gg/eqDMnkD</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OniGalore:Community_portal" target="_blank">OniGalore:Community_portal</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://discord.com/invite/eqDMnkD" target="_blank">https://discord.com/invite/eqDMnkD</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://docs.unrealengine.com/latest/INT/Engine/Matinee/HowTo/MHT_7/index.html" target="_blank">https://docs.unrealengine.com/latest/INT/Engine/Matinee/HowTo/MHT_7/index.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.unrealengine.com/en-US/Engine/Matinee/HowTo/MHT_7/index.html" target="_blank">https://docs.unrealengine.com/en-US/Engine/Matinee/HowTo/MHT_7/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://myjavaserver.com/~kuchumovn/ome/" target="_blank">http://myjavaserver.com/~kuchumovn/ome/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:OME" target="_blank">Talk:OME</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://myjavaserver.com/~kuchumovn/ome/" target="_blank">https://web.archive.org/web/*/http://myjavaserver.com/~kuchumovn/ome/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">file</td><td><a href="https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg" target="_blank">https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[File:28686-CALIG.TXMP000.jpg]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.destineerstudios.com/macsoftgames/" target="_blank">http://www.destineerstudios.com/macsoftgames/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Rights" target="_blank">Rights</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20160412220936/http://www.destineerstudios.com/macsoftgames/" target="_blank">http://web.archive.org/web/20160412220936/http://www.destineerstudios.com/macsoftgames/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://anidb.info/perl-bin/animedb.pl?show=anime&aid=1312" target="_blank">http://anidb.info/perl-bin/animedb.pl?show=anime&aid=1312</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Appleseed" target="_blank">Appleseed</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1312" target="_blank">https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1312</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://starwars.wikia.com/wiki/DXR-6_disruptor_rifle" target="_blank">http://starwars.wikia.com/wiki/DXR-6_disruptor_rifle</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Geyser/DoxProjectImagoTalkBackup" target="_blank">User_talk:Geyser/DoxProjectImagoTalkBackup</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://starwars.fandom.com/wiki/DXR-6_disruptor_rifle" target="_blank">https://starwars.fandom.com/wiki/DXR-6_disruptor_rifle</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">file</td><td><a href="http://wiki.oni2.net/File:Dream_obj_images_spawned.jpg" target="_blank">http://wiki.oni2.net/File:Dream_obj_images_spawned.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:OBAN" target="_blank">XML:OBAN</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[File:Dream_obj_images_spawned.jpg]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=45791#p45791" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=45791#p45791</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Anniversary_Edition/To-do" target="_blank">Anniversary_Edition/To-do</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=45791" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=45791</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-7)</td><td align="right">page</td><td><a href="http://membres.lycos.fr/feena/rpg/grandia2/" target="_blank">http://membres.lycos.fr/feena/rpg/grandia2/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Hikari" target="_blank">Oni2:Hikari</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20050902092952/http://membres.lycos.fr/feena/rpg/grandia2/" target="_blank">http://web.archive.org/web/20050902092952/http://membres.lycos.fr/feena/rpg/grandia2/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=149" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=149</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=149" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=149</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=746" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=746</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=746" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=746</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=767" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=767</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=767" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=767</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=801" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=801</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=801" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=801</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=824" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=824</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=824" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=824</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=907" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=907</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=907" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=907</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=937" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=937</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=937" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=937</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=970" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=970</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=970" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=970</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=766" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=766</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=766" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=766</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a7da4763-6807-4bd5-8d18-18c60c437f93&DisplayLang=en%7CXNA" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=a7da4763-6807-4bd5-8d18-18c60c437f93&DisplayLang=en%7CXNA</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive1" target="_blank">User_talk:Neo/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.microsoft.com/en-us/download/details.aspx" target="_blank">http://www.microsoft.com/en-us/download/details.aspx</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.microsoft.com/visualstudio/express" target="_blank">http://www.microsoft.com/visualstudio/express</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:XML_Modding_Lessons" target="_blank">XML:XML_Modding_Lessons</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://visualstudio.microsoft.com/" target="_blank">https://visualstudio.microsoft.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (500)</td><td align="right">page</td><td><a href="http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189348501&rangeend=1189355701&nochange=1#121507" target="_blank">http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189348501&rangeend=1189355701&nochange=1#121507</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189348501&rangeend=1189355701&nochange=1#121507" target="_blank">https://web.archive.org/web/*/http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189348501&rangeend=1189355701&nochange=1#121507</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (500)</td><td align="right">page</td><td><a href="http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189961817&rangeend=1189969017&nochange=1#123453" target="_blank">http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189961817&rangeend=1189969017&nochange=1#123453</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189961817&rangeend=1189969017&nochange=1#123453" target="_blank">https://web.archive.org/web/*/http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189961817&rangeend=1189969017&nochange=1#123453</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.go-mono.com/mono-downloads/download.html" target="_blank">http://www.go-mono.com/mono-downloads/download.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:Basic_tutorial" target="_blank">XML_talk:Basic_tutorial</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.mono-project.com/download/" target="_blank">https://www.mono-project.com/download/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://msdn.microsoft.com/en-us/library/cc677007(VS.85,loband).aspx" target="_blank">http://msdn.microsoft.com/en-us/library/cc677007(VS.85,loband).aspx</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OBD:SNDD/wav" target="_blank">OBD:SNDD/wav</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://msdn.microsoft.com/en-us/library/cc677007(VS.85,loband).aspx" target="_blank">https://web.archive.org/web/*/http://msdn.microsoft.com/en-us/library/cc677007(VS.85,loband).aspx</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/mods/level0_Final.dat.zip" target="_blank">http://edt.oni2.net/mods/level0_Final.dat.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mac_mods" target="_blank">Mac_mods</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20071020142835/http://edt.oni2.net/mods/level0_Final.dat.zip" target="_blank">http://web.archive.org/web/20071020142835/http://edt.oni2.net/mods/level0_Final.dat.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://wiki.unrealengine.com/Category:Tutorials" target="_blank">https://wiki.unrealengine.com/Category:Tutorials</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/Wishlist" target="_blank">Talk:Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://forums.unrealengine.com:443/unreal-engine/announcements-and-releases/1745504-a-new-community-hosted-unreal-engine-wiki" target="_blank">https://forums.unrealengine.com:443/unreal-engine/announcements-and-releases/1745504-a-new-community-hosted-unreal-engine-wiki</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.filefront.com/14467713/images.rar/" target="_blank">http://www.filefront.com/14467713/images.rar/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Bobbysoon" target="_blank">User_talk:Bobbysoon</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.gamefront.com/14467713/images.rar/" target="_blank">http://www.gamefront.com/14467713/images.rar/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/ID_sounds.zip" target="_blank">http://iritscen.oni2.net/temp/ID_sounds.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Bobbysoon" target="_blank">User_talk:Bobbysoon</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/ID_sounds.zip" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/ID_sounds.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.filefront.com/14467707/_IronDemon-dae.rar/" target="_blank">http://www.filefront.com/14467707/_IronDemon-dae.rar/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Bobbysoon" target="_blank">User_talk:Bobbysoon</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.gamefront.com/14467707/_IronDemon-dae.rar/" target="_blank">http://www.gamefront.com/14467707/_IronDemon-dae.rar/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="https://www.raywenderlich.com/u/TommyTran" target="_blank">https://www.raywenderlich.com/u/TommyTran</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/Wishlist" target="_blank">Talk:Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20171018100642/https://www.raywenderlich.com/u/TommyTran" target="_blank">http://web.archive.org/web/20171018100642/https://www.raywenderlich.com/u/TommyTran</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/temp/Iron_Demon_Package.zip" target="_blank">http://edt.oni2.net/temp/Iron_Demon_Package.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Bobbysoon" target="_blank">User_talk:Bobbysoon</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/temp/Iron_Demon_Package.zip" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/temp/Iron_Demon_Package.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://jxb.oxfordjournals.org/cgi/content/abstract/59/5/1109" target="_blank">http://jxb.oxfordjournals.org/cgi/content/abstract/59/5/1109</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://academic.oup.com/jxb/article-abstract/59/5/1109/538568" target="_blank">https://academic.oup.com/jxb/article-abstract/59/5/1109/538568</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.rcn.montana.edu/pubs/pdf/2007/science%202007.pdf" target="_blank">http://www.rcn.montana.edu/pubs/pdf/2007/science%202007.pdf</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.rcn.montana.edu/pubs/pdf/2007/science%202007.pdf" target="_blank">https://web.archive.org/web/*/http://www.rcn.montana.edu/pubs/pdf/2007/science%202007.pdf</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://www.filefront.com/14485651/ID%20TRBS%20dae%20TXMP_chest.rar" target="_blank">http://www.filefront.com/14485651/ID%20TRBS%20dae%20TXMP_chest.rar</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Bobbysoon" target="_blank">User_talk:Bobbysoon</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.gamefront.com/14485651/ID%20TRBS%20dae%20TXMP_chest.rar" target="_blank">http://www.gamefront.com/14485651/ID%20TRBS%20dae%20TXMP_chest.rar</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.filefront.com/14488981/level0_Final.rar/" target="_blank">http://www.filefront.com/14488981/level0_Final.rar/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Bobbysoon" target="_blank">User_talk:Bobbysoon</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.gamefront.com/14488981/level0_Final.rar/" target="_blank">http://www.gamefront.com/14488981/level0_Final.rar/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/temp/TXMPID_mid.zip" target="_blank">http://paradox.oni2.net/temp/TXMPID_mid.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Bobbysoon" target="_blank">User_talk:Bobbysoon</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/temp/TXMPID_mid.zip" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/temp/TXMPID_mid.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/BSL:Functions#ai2" target="_blank">http://wiki.oni2.net/BSL:Functions#ai2</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BSL:Functions" target="_blank">BSL:Functions</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[BSL:Functions#ai2]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://www.filefront.com/14507129/dae.rar" target="_blank">http://www.filefront.com/14507129/dae.rar</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo" target="_blank">User_talk:Neo</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.gamefront.com/14507129/dae.rar" target="_blank">http://www.gamefront.com/14507129/dae.rar</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://www.filefront.com/14507115/ID%20walking.xaf" target="_blank">http://www.filefront.com/14507115/ID%20walking.xaf</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo" target="_blank">User_talk:Neo</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.gamefront.com/14507115/ID%20walking.xaf" target="_blank">http://www.gamefront.com/14507115/ID%20walking.xaf</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://www.driverheaven.net/mobility-radeon-drivers-support/76736-ati-mobility-firegl-t2-hp-nw8000.html" target="_blank">http://www.driverheaven.net/mobility-radeon-drivers-support/76736-ati-mobility-firegl-t2-hp-nw8000.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20090614031049/http://www.driverheaven.net/mobility-radeon-drivers-support/76736-ati-mobility-firegl-t2-hp-nw8000.html" target="_blank">http://web.archive.org/web/20090614031049/http://www.driverheaven.net/mobility-radeon-drivers-support/76736-ati-mobility-firegl-t2-hp-nw8000.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://1drv.ms/t/s!Asn4fV_yvODigUIEKdkZj6rFdo1o" target="_blank">https://1drv.ms/t/s!Asn4fV_yvODigUIEKdkZj6rFdo1o</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!194&authkey=!AAQp2RmPqsV2jWg&ithint=file%2ctxt" target="_blank">https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!194&authkey=!AAQp2RmPqsV2jWg&ithint=file%2ctxt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://1drv.ms/t/s!Asn4fV_yvODigUFiFR2WCYIsvnl0" target="_blank">https://1drv.ms/t/s!Asn4fV_yvODigUFiFR2WCYIsvnl0</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!193&authkey=!AGIVHZYJgiy-eXQ&ithint=file%2ctxt" target="_blank">https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!193&authkey=!AGIVHZYJgiy-eXQ&ithint=file%2ctxt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://1drv.ms/t/s!Asn4fV_yvODigUPgtVd9c21Szk68" target="_blank">https://1drv.ms/t/s!Asn4fV_yvODigUPgtVd9c21Szk68</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!195&authkey=!AOC1V31zbVLOTrw&ithint=file%2ctxt" target="_blank">https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!195&authkey=!AOC1V31zbVLOTrw&ithint=file%2ctxt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://1drv.ms/t/s!Asn4fV_yvODigUAfQ-spWYnvi1pV" target="_blank">https://1drv.ms/t/s!Asn4fV_yvODigUAfQ-spWYnvi1pV</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!192&authkey=!AB9D6ylZie-LWlU&ithint=file%2ctxt" target="_blank">https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!192&authkey=!AB9D6ylZie-LWlU&ithint=file%2ctxt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://1drv.ms/t/s!Asn4fV_yvODigT8xJ35jXaxFlD35" target="_blank">https://1drv.ms/t/s!Asn4fV_yvODigT8xJ35jXaxFlD35</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!191&authkey=!ADEnfmNdrEWUPfk&ithint=file%2ctxt" target="_blank">https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!191&authkey=!ADEnfmNdrEWUPfk&ithint=file%2ctxt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://1drv.ms/t/s!Asn4fV_yvODigUSQY6R4bhXJqRFi" target="_blank">https://1drv.ms/t/s!Asn4fV_yvODigUSQY6R4bhXJqRFi</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!196&authkey=!AJBjpHhuFcmpEWI&ithint=file%2ctxt" target="_blank">https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!196&authkey=!AJBjpHhuFcmpEWI&ithint=file%2ctxt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.nersc.gov/vendor_docs/ibm/asm/mastertoc.htm#mtoc" target="_blank">http://www.nersc.gov/vendor_docs/ibm/asm/mastertoc.htm#mtoc</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.nersc.gov/vendor_docs/ibm/asm/mastertoc.htm" target="_blank">https://www.nersc.gov/vendor_docs/ibm/asm/mastertoc.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/OS/MCKonoko.blend" target="_blank">http://edt.oni2.net/OS/MCKonoko.blend</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/OS/MCKonoko.blend" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/OS/MCKonoko.blend</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/OS/MCKonoko.dae" target="_blank">http://edt.oni2.net/OS/MCKonoko.dae</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/OS/MCKonoko.dae" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/OS/MCKonoko.dae</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/3D/Motoko.zip" target="_blank">http://edt.oni2.net/3D/Motoko.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/3D/Motoko.zip" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/3D/Motoko.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://ja.wikipedia.org/wiki/%E8%9B%B9" target="_blank">http://ja.wikipedia.org/wiki/%E8%9B%B9</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Daodan_Chrysalis_in_Chinese.png" target="_blank">File:Daodan_Chrysalis_in_Chinese.png</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:%E8%9B%B9]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/beta/OniBeta4.zip" target="_blank">http://edt.oni2.net/beta/OniBeta4.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/beta/OniBeta4.zip" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/beta/OniBeta4.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://developer.apple.com/documentation/DeveloperTools/CompilersDebuggers-date.html#//apple_ref/doc/uid/TP30000440-TP30000436-TP30001025" target="_blank">http://developer.apple.com/documentation/DeveloperTools/CompilersDebuggers-date.html#//apple_ref/doc/uid/TP30000440-TP30000436-TP30001025</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.developer.apple.com/documentation/DeveloperTools/CompilersDebuggers-date.html" target="_blank">https://docs.developer.apple.com/documentation/DeveloperTools/CompilersDebuggers-date.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://the.wall.riscom.net/books/proc/ppc/cwg/cwg_toc.html" target="_blank">http://the.wall.riscom.net/books/proc/ppc/cwg/cwg_toc.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20080705115313/http://the.wall.riscom.net/books/proc/ppc/cwg/cwg_toc.html" target="_blank">http://web.archive.org/web/20080705115313/http://the.wall.riscom.net/books/proc/ppc/cwg/cwg_toc.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://zh.wikipedia.org/wiki/%E8%9B%B9" target="_blank">http://zh.wikipedia.org/wiki/%E8%9B%B9</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Daodan_Chrysalis_in_Chinese.png" target="_blank">File:Daodan_Chrysalis_in_Chinese.png</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:%E8%9B%B9]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/particle_bug_report.rar" target="_blank">http://paradox.oni2.net/particle_bug_report.rar</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive3" target="_blank">User_talk:Neo/Archive3</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/particle_bug_report.rar" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/particle_bug_report.rar</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/particle_bug_report_2.rar" target="_blank">http://paradox.oni2.net/particle_bug_report_2.rar</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive3" target="_blank">User_talk:Neo/Archive3</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/particle_bug_report_2.rar" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/particle_bug_report_2.rar</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://demoskratos.ifolder.ru/7931537" target="_blank">http://demoskratos.ifolder.ru/7931537</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive3" target="_blank">User_talk:Neo/Archive3</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://holm.ru/7931537" target="_blank">https://holm.ru/7931537</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=7390" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=7390</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive3" target="_blank">User_talk:Neo/Archive3</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=7390" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=7390</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.autoitscript.com/autoit3/" target="_blank">http://www.autoitscript.com/autoit3/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive3" target="_blank">User_talk:Neo/Archive3</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.autoitscript.com/site/autoit/" target="_blank">https://www.autoitscript.com/site/autoit/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://gumby701.googlepages.com/gui.exe" target="_blank">http://gumby701.googlepages.com/gui.exe</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive3" target="_blank">User_talk:Neo/Archive3</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://sites.google.com/site/gumby701/gui.exe" target="_blank">http://sites.google.com/site/gumby701/gui.exe</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=8417" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=8417</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive3" target="_blank">User_talk:Neo/Archive3</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=8417" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=8417</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=4897#p4897" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=4897#p4897</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=4897" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=4897</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://loser.oni2.net/Videos/Projectile_dodge_issue.wmv" target="_blank">http://loser.oni2.net/Videos/Projectile_dodge_issue.wmv</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://loser.oni2.net/Videos/Projectile_dodge_issue.wmv" target="_blank">https://web.archive.org/web/*/http://loser.oni2.net/Videos/Projectile_dodge_issue.wmv</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/IGSt_bug.zip" target="_blank">http://www.paradox.oni2.net/IGSt_bug.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/IGSt_bug.zip" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/IGSt_bug.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/Oni-BadShadows1.jpg" target="_blank">http://iritscen.oni2.net/temp/Oni-BadShadows1.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows1.jpg" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows1.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/Oni-BadShadows2.jpg" target="_blank">http://iritscen.oni2.net/temp/Oni-BadShadows2.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows2.jpg" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows2.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/Oni-BadShadows3.jpg" target="_blank">http://iritscen.oni2.net/temp/Oni-BadShadows3.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows3.jpg" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows3.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/Oni-BadShadows4.jpg" target="_blank">http://iritscen.oni2.net/temp/Oni-BadShadows4.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows4.jpg" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows4.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/Marathon-GoodShadows1.jpg" target="_blank">http://iritscen.oni2.net/temp/Marathon-GoodShadows1.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Marathon-GoodShadows1.jpg" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Marathon-GoodShadows1.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/Marathon-GoodShadows2.jpg" target="_blank">http://iritscen.oni2.net/temp/Marathon-GoodShadows2.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Marathon-GoodShadows2.jpg" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Marathon-GoodShadows2.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://gumby701.googlepages.com/bomber.wmv" target="_blank">http://gumby701.googlepages.com/bomber.wmv</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive4" target="_blank">User_talk:Neo/Archive4</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://sites.google.com/site/gumby701/bomber.wmv" target="_blank">http://sites.google.com/site/gumby701/bomber.wmv</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.paradox.oni2.net/mods/Ed's_music_test.zip" target="_blank">http://www.paradox.oni2.net/mods/Ed's_music_test.zip</a></td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/search?uq=0263839835352743695331922" target="_blank">http://sketchup.google.com/3dwarehouse/search?uq=0263839835352743695331922</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/search?uq%3D0263839835352743695331922&followup=http://sketchup.google.com/3dwarehouse/search?uq%3D0263839835352743695331922" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/search?uq%3D0263839835352743695331922&followup=http://sketchup.google.com/3dwarehouse/search?uq%3D0263839835352743695331922</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/cldetails?mid=236901867937c4ed5fbaf4019d18db23" target="_blank">http://sketchup.google.com/3dwarehouse/cldetails?mid=236901867937c4ed5fbaf4019d18db23</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/cldetails?mid%3D236901867937c4ed5fbaf4019d18db23&followup=http://sketchup.google.com/3dwarehouse/cldetails?mid%3D236901867937c4ed5fbaf4019d18db23" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/cldetails?mid%3D236901867937c4ed5fbaf4019d18db23&followup=http://sketchup.google.com/3dwarehouse/cldetails?mid%3D236901867937c4ed5fbaf4019d18db23</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/details?mid=837b929c0e1e600495ff232cd38210b4" target="_blank">http://sketchup.google.com/3dwarehouse/details?mid=837b929c0e1e600495ff232cd38210b4</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:ONIrules" target="_blank">User_talk:ONIrules</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D837b929c0e1e600495ff232cd38210b4&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D837b929c0e1e600495ff232cd38210b4" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D837b929c0e1e600495ff232cd38210b4&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D837b929c0e1e600495ff232cd38210b4</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/details?mid=1b95ba95fbde8c64fcace4d823343363" target="_blank">http://sketchup.google.com/3dwarehouse/details?mid=1b95ba95fbde8c64fcace4d823343363</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:ONIrules" target="_blank">User_talk:ONIrules</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D1b95ba95fbde8c64fcace4d823343363&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D1b95ba95fbde8c64fcace4d823343363" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D1b95ba95fbde8c64fcace4d823343363&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D1b95ba95fbde8c64fcace4d823343363</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/search?uq=07853225406317038571" target="_blank">http://sketchup.google.com/3dwarehouse/search?uq=07853225406317038571</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive5" target="_blank">User_talk:Neo/Archive5</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.paradox.oni2.net/mods/Ed's_music_test.zip" target="_blank">https://web.archive.org/web/*/http://www.paradox.oni2.net/mods/Ed's_music_test.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/mus_tranc.zip" target="_blank">http://iritscen.oni2.net/temp/mus_tranc.zip</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/search?uq%3D07853225406317038571&followup=http://sketchup.google.com/3dwarehouse/search?uq%3D07853225406317038571" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/search?uq%3D07853225406317038571&followup=http://sketchup.google.com/3dwarehouse/search?uq%3D07853225406317038571</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/details?mid=4e64820c9e369b6017ace7d0b43b4dfb" target="_blank">http://sketchup.google.com/3dwarehouse/details?mid=4e64820c9e369b6017ace7d0b43b4dfb</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive5" target="_blank">User_talk:Neo/Archive5</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/mus_tranc.zip" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/mus_tranc.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/OniSplit/SNDDBurn.zip" target="_blank">http://edt.oni2.net/OniSplit/SNDDBurn.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive5" target="_blank">User_talk:Neo/Archive5</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/OniSplit/SNDDBurn.zip" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/OniSplit/SNDDBurn.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://halo.wikia.com/wiki/Main_Page" target="_blank">http://halo.wikia.com/wiki/Main_Page</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Category:Art_by_Lorraine" target="_blank">Category:Art_by_Lorraine</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://halo.fandom.com/wiki/Halo_Alpha" target="_blank">https://halo.fandom.com/wiki/Halo_Alpha</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://halo.wikia.com/wiki/Main_Page" target="_blank">http://halo.wikia.com/wiki/Main_Page</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Black_Spartan_from_Halo.png" target="_blank">File:Black_Spartan_from_Halo.png</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://halo.fandom.com/wiki/Halo_Alpha" target="_blank">https://halo.fandom.com/wiki/Halo_Alpha</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=848" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=848</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/History_of_Mac_Oni" target="_blank">History_of_Mac_Oni</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=848" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=848</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">file</td><td><a href="http://wiki.oni2.net/Image:Dream_1_murder_or_mercy.jpg" target="_blank">http://wiki.oni2.net/Image:Dream_1_murder_or_mercy.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Hasegawa" target="_blank">Talk:Hasegawa</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[Image:Dream_1_murder_or_mercy.jpg]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/User:Paradox-01/quotes_chef_1" target="_blank">http://wiki.oni2.net/User:Paradox-01/quotes_chef_1</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Archive1" target="_blank">User_talk:Paradox-01/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[User:Paradox-01/quotes_chef_1]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/06000MissingSoundsOcc.zip" target="_blank">http://iritscen.oni2.net/temp/06000MissingSoundsOcc.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo" target="_blank">User_talk:Neo</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/06000MissingSoundsOcc.zip" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/06000MissingSoundsOcc.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (410)</td><td align="right">page</td><td><a href="http://www.codegeek.io/20170409-animate-makehuman-character-in-mixamo/" target="_blank">http://www.codegeek.io/20170409-animate-makehuman-character-in-mixamo/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/Wishlist" target="_blank">Talk:Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170920190459/http://www.codegeek.io/20170409-animate-makehuman-character-in-mixamo/" target="_blank">http://web.archive.org/web/20170920190459/http://www.codegeek.io/20170409-animate-makehuman-character-in-mixamo/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=297" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=297</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Script_10k" target="_blank">User:Script_10k</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=297" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=297</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/Restless_Souls/Technology#Full_body_simulations" target="_blank">http://wiki.oni2.net/Restless_Souls/Technology#Full_body_simulations</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Summary" target="_blank">Restless_Souls/Summary</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[Restless_Souls/Technology#Full_body_simulations]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/RPG_Maker" target="_blank">http://en.wikipedia.org/wiki/RPG_Maker</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_RPG" target="_blank">Oni_RPG</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:RPG_Maker]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://www.macworld.com/article/3010613/software-graphics/hands-on-adobe-s-new-fuse-cc-lets-beginners-take-baby-steps-into-3d-modeling.html" target="_blank">https://www.macworld.com/article/3010613/software-graphics/hands-on-adobe-s-new-fuse-cc-lets-beginners-take-baby-steps-into-3d-modeling.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Fuse" target="_blank">Fuse</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.macworld.com/article/3010613/hands-on-adobe-s-new-fuse-cc-lets-beginners-take-baby-steps-into-3d-modeling.html" target="_blank">https://www.macworld.com/article/3010613/hands-on-adobe-s-new-fuse-cc-lets-beginners-take-baby-steps-into-3d-modeling.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">file</td><td><a href="http://wiki.oni2.net/File:GuidoArt-Pandora_vs._Mukade.jpg" target="_blank">http://wiki.oni2.net/File:GuidoArt-Pandora_vs._Mukade.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[File:GuidoArt-Pandora_vs._Mukade.jpg]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/Oni2:Storyline" target="_blank">http://wiki.oni2.net/Oni2:Storyline</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Ikimas" target="_blank">Restless_Souls/Ikimas</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[Oni2:Storyline]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://www.mediawiki.org/wiki/Version_lifecycle" target="_blank">https://www.mediawiki.org/wiki/Version_lifecycle</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Iritscen/WikiFuture" target="_blank">User:Iritscen/WikiFuture</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[mw:Version_lifecycle]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.zbrushcentral.com/showthread.php?163445-Earthquake" target="_blank">http://www.zbrushcentral.com/showthread.php?163445-Earthquake</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Earthquake_(Samurai_Shodown)_ZBrush_model_(clay).jpg" target="_blank">File:Earthquake_(Samurai_Shodown)_ZBrush_model_(clay).jpg</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://archive.zbrushcentral.com/showthread.php?163445-Earthquake" target="_blank">http://archive.zbrushcentral.com/showthread.php?163445-Earthquake</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?v=BqWrUGTQXn0#t=0m03s" target="_blank">http://www.youtube.com/watch?v=BqWrUGTQXn0#t=0m03s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL" target="_blank">Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?v=BqWrUGTQXn0" target="_blank">https://www.youtube.com/watch?v=BqWrUGTQXn0</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?v=BqWrUGTQXn0#t=0m47s" target="_blank">http://www.youtube.com/watch?v=BqWrUGTQXn0#t=0m47s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL" target="_blank">Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?v=BqWrUGTQXn0" target="_blank">https://www.youtube.com/watch?v=BqWrUGTQXn0</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?v=BqWrUGTQXn0#t=1m26s" target="_blank">http://www.youtube.com/watch?v=BqWrUGTQXn0#t=1m26s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL" target="_blank">Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?v=BqWrUGTQXn0" target="_blank">https://www.youtube.com/watch?v=BqWrUGTQXn0</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?v=BqWrUGTQXn0#t=1m46s" target="_blank">http://www.youtube.com/watch?v=BqWrUGTQXn0#t=1m46s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL" target="_blank">Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?v=BqWrUGTQXn0" target="_blank">https://www.youtube.com/watch?v=BqWrUGTQXn0</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?v=BqWrUGTQXn0#t=2m07s" target="_blank">http://www.youtube.com/watch?v=BqWrUGTQXn0#t=2m07s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL" target="_blank">Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?v=BqWrUGTQXn0" target="_blank">https://www.youtube.com/watch?v=BqWrUGTQXn0</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?v=BqWrUGTQXn0#t=2m22s" target="_blank">http://www.youtube.com/watch?v=BqWrUGTQXn0#t=2m22s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL" target="_blank">Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?v=BqWrUGTQXn0" target="_blank">https://www.youtube.com/watch?v=BqWrUGTQXn0</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/index.php" target="_blank">http://oni.bungie.org/community/forum/index.php</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Tieria_Erde" target="_blank">User_talk:Tieria_Erde</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/index.php" target="_blank">http://oni.bungie.org/forum/index.php</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/06000MissingSoundsNoOcc.zip" target="_blank">http://iritscen.oni2.net/temp/06000MissingSoundsNoOcc.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo" target="_blank">User_talk:Neo</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/06000MissingSoundsNoOcc.zip" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/06000MissingSoundsNoOcc.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/GearsTestWindows.mp4" target="_blank">http://iritscen.oni2.net/temp/GearsTestWindows.mp4</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo" target="_blank">User_talk:Neo</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/GearsTestWindows.mp4" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/GearsTestWindows.mp4</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/temp/70000NewScreens.zip" target="_blank">http://edt.oni2.net/temp/70000NewScreens.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:EdT/temp" target="_blank">User:EdT/temp</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/temp/70000NewScreens.zip" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/temp/70000NewScreens.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://www.unrealengine.com/en-US/what-is-unreal-engine-4" target="_blank">https://www.unrealengine.com/en-US/what-is-unreal-engine-4</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.unrealengine.com/en-US/" target="_blank">https://www.unrealengine.com/en-US/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">file</td><td><a href="http://en.wikipedia.org/wiki/File:FragariaHybrid.jpg" target="_blank">http://en.wikipedia.org/wiki/File:FragariaHybrid.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Fragments" target="_blank">Restless_Souls/Fragments</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:File:FragariaHybrid.jpg]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/XML_talk:TRAM#Problem_with_exporting_a_textured_character_with_non-native_TRAC_animation" target="_blank">http://wiki.oni2.net/XML_talk:TRAM#Problem_with_exporting_a_textured_character_with_non-native_TRAC_animation</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Archive1" target="_blank">User_talk:Paradox-01/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[XML_talk:TRAM#Problem_with_exporting_a_textured_character_with_non-native_TRAC_animation]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://de.wikipedia.org/wiki/Regeneration_(Biologie)" target="_blank">http://de.wikipedia.org/wiki/Regeneration_(Biologie)</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/Technology" target="_blank">Talk:Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Regeneration_(Biologie)]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://turbosquid.com" target="_blank">http://turbosquid.com</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.turbosquid.com/" target="_blank">https://www.turbosquid.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.photoshare.ru/album9528.html" target="_blank">http://www.photoshare.ru/album9528.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://photoshare.ru/album9528.html" target="_blank">http://photoshare.ru/album9528.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.photoshare.ru/album23608.html" target="_blank">http://www.photoshare.ru/album23608.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://photoshare.ru/album23608.html" target="_blank">http://photoshare.ru/album23608.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.photoshare.ru/album107891.html" target="_blank">http://www.photoshare.ru/album107891.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://photoshare.ru/album107891.html" target="_blank">http://photoshare.ru/album107891.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.cad.ru/ru/territory/sapr/index.php?page=blog&blog=socially_business_center" target="_blank">http://www.cad.ru/ru/territory/sapr/index.php?page=blog&blog=socially_business_center</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://cad.ru/ru/territory/sapr/index.php?page=blog&blog=socially_business_center" target="_blank">https://cad.ru/ru/territory/sapr/index.php?page=blog&blog=socially_business_center</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://deusex.wikia.com/wiki/Helios" target="_blank">http://deusex.wikia.com/wiki/Helios</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Paradox-01/brain_dump" target="_blank">User:Paradox-01/brain_dump</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://deusex.fandom.com/wiki/Helios" target="_blank">https://deusex.fandom.com/wiki/Helios</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://meta.wikimedia.org/wiki/MediaWiki:Common.css" target="_blank">http://meta.wikimedia.org/wiki/MediaWiki:Common.css</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/MediaWiki:Common.css" target="_blank">MediaWiki:Common.css</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[metawikimedia:MediaWiki:Common.css]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/index.php" target="_blank">http://oni.bungie.org/community/forum/index.php</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/History_of_the_Oni_community" target="_blank">History_of_the_Oni_community</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/index.php" target="_blank">http://oni.bungie.org/forum/index.php</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (500)</td><td align="right">page</td><td><a href="http://carnage.bungie.org/oniresforum/onires.archive.pl" target="_blank">http://carnage.bungie.org/oniresforum/onires.archive.pl</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/History_of_the_Oni_community" target="_blank">History_of_the_Oni_community</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20171113022224/http://carnage.bungie.org/oniresforum/onires.archive.pl" target="_blank">http://web.archive.org/web/20171113022224/http://carnage.bungie.org/oniresforum/onires.archive.pl</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/temp/GearsTestMac.mp4" target="_blank">http://iritscen.oni2.net/temp/GearsTestMac.mp4</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo" target="_blank">User_talk:Neo</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/temp/GearsTestMac.mp4" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/temp/GearsTestMac.mp4</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=29967#p29967" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=29967#p29967</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:TXMP" target="_blank">XML:TXMP</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=29967" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=29967</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=798" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=798</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:SNDD" target="_blank">XML:SNDD</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=798" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=798</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.glixel.com/interviews/oni-bungies-classic-inspired-by-ghost-in-the-shell-w474297" target="_blank">http://www.glixel.com/interviews/oni-bungies-classic-inspired-by-ghost-in-the-shell-w474297</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Pre-beta_features" target="_blank">Pre-beta_features</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.rollingstone.com/glixel/interviews/oni-bungies-classic-inspired-by-ghost-in-the-shell-w474297" target="_blank">http://www.rollingstone.com/glixel/interviews/oni-bungies-classic-inspired-by-ghost-in-the-shell-w474297</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://manual.audacityteam.org/man/faq_installation_and_plug_ins.html#How_do_I_download_and_install_the_FFmpeg_Import.2FExport_Library.3F" target="_blank">http://manual.audacityteam.org/man/faq_installation_and_plug_ins.html#How_do_I_download_and_install_the_FFmpeg_Import.2FExport_Library.3F</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:SNDD" target="_blank">XML:SNDD</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://manual.audacityteam.org/man/faq_installation_and_plug_ins.html" target="_blank">https://manual.audacityteam.org/man/faq_installation_and_plug_ins.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://audacity.sourceforge.net/download/beta_windows#recdown" target="_blank">http://audacity.sourceforge.net/download/beta_windows#recdown</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:SNDD" target="_blank">XML:SNDD</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://sourceforge.net/projects/audacity/" target="_blank">http://sourceforge.net/projects/audacity/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.westwoodventa.com/vivienne-westwood-espana.html" target="_blank">http://www.westwoodventa.com/vivienne-westwood-espana.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170102163212/http://www.westwoodventa.com/vivienne-westwood-espana.html" target="_blank">http://web.archive.org/web/20170102163212/http://www.westwoodventa.com/vivienne-westwood-espana.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.westwoodventa.com/autentica-vivienne-westwood.html" target="_blank">http://www.westwoodventa.com/autentica-vivienne-westwood.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20190923024638/http://www.westwoodventa.com/autentica-vivienne-westwood.html" target="_blank">http://web.archive.org/web/20190923024638/http://www.westwoodventa.com/autentica-vivienne-westwood.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.westwoodventa.com/vivienne-westwood-encantos.html" target="_blank">http://www.westwoodventa.com/vivienne-westwood-encantos.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20190923024714/http://www.westwoodventa.com/vivienne-westwood-encantos.html" target="_blank">http://web.archive.org/web/20190923024714/http://www.westwoodventa.com/vivienne-westwood-encantos.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.westwoodventa.com/vivienne-westwood-gemelos.html" target="_blank">http://www.westwoodventa.com/vivienne-westwood-gemelos.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20111018172452/http://www.westwoodventa.com/vivienne-westwood-gemelos.html" target="_blank">http://web.archive.org/web/20111018172452/http://www.westwoodventa.com/vivienne-westwood-gemelos.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.westwoodventa.com/vivienne-westwood-anillos.html" target="_blank">http://www.westwoodventa.com/vivienne-westwood-anillos.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20120102130911/http://www.westwoodventa.com/vivienne-westwood-anillos.html" target="_blank">http://web.archive.org/web/20120102130911/http://www.westwoodventa.com/vivienne-westwood-anillos.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.chanel-onlinesale.com/cheap-replica-chanel.html" target="_blank">http://www.chanel-onlinesale.com/cheap-replica-chanel.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20120221093551/http://www.chanel-onlinesale.com/cheap-replica-chanel.html" target="_blank">http://web.archive.org/web/20120221093551/http://www.chanel-onlinesale.com/cheap-replica-chanel.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.chanel-onlinesale.com/replica-chanel-online.html" target="_blank">http://www.chanel-onlinesale.com/replica-chanel-online.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20110305054017/http://www.chanel-onlinesale.com/replica-chanel-online.html" target="_blank">http://web.archive.org/web/20110305054017/http://www.chanel-onlinesale.com/replica-chanel-online.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.chanel-onlinesale.com/buy-replica-chanel.html" target="_blank">http://www.chanel-onlinesale.com/buy-replica-chanel.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20110508032556/http://www.chanel-onlinesale.com/buy-replica-chanel.html" target="_blank">http://web.archive.org/web/20110508032556/http://www.chanel-onlinesale.com/buy-replica-chanel.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.chanel-onlinesale.com/replica-chanel-usa.html" target="_blank">http://www.chanel-onlinesale.com/replica-chanel-usa.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20110305054037/http://www.chanel-onlinesale.com/replica-chanel-usa.html" target="_blank">http://web.archive.org/web/20110305054037/http://www.chanel-onlinesale.com/replica-chanel-usa.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.chanel-onlinesale.com/bags/leather-goods/bags.html" target="_blank">http://www.chanel-onlinesale.com/bags/leather-goods/bags.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Hua220" target="_blank">User_talk:Hua220</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20120313025052/http://www.chanel-onlinesale.com/bags/leather-goods/bags.html" target="_blank">http://web.archive.org/web/20120313025052/http://www.chanel-onlinesale.com/bags/leather-goods/bags.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/AE:Barabas#General_instructions" target="_blank">http://wiki.oni2.net/AE:Barabas#General_instructions</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Neo/Archive2" target="_blank">User_talk:Neo/Archive2</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[AE:Barabas#General_instructions]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://meta.wikimedia.org" target="_blank">http://meta.wikimedia.org</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Help:Editing" target="_blank">Help:Editing</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[metawikimedia:meta.wikimedia.org]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://www.mediawiki.org/wiki/Extension:Inputbox" target="_blank">http://www.mediawiki.org/wiki/Extension:Inputbox</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Help:Editing" target="_blank">Help:Editing</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[mw:Extension:Inputbox]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://www.mediawiki.org/wiki/Extension:EasyTimeline/syntax" target="_blank">http://www.mediawiki.org/wiki/Extension:EasyTimeline/syntax</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Help:Editing" target="_blank">Help:Editing</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[mw:syntax]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://www.mediawiki.org/wiki/Help:Magic_words" target="_blank">http://www.mediawiki.org/wiki/Help:Magic_words</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Help:Editing" target="_blank">Help:Editing</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[mw:Help:Magic_words]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://www.mediawiki.org/wiki/Manual:Administrators#Protection" target="_blank">http://www.mediawiki.org/wiki/Manual:Administrators#Protection</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Help:Editing" target="_blank">Help:Editing</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[mw:Manual:Administrators#Protection]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2087" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2087</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2087" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2087</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?v=rW4w_7GRUPE#t=0m53s" target="_blank">http://www.youtube.com/watch?v=rW4w_7GRUPE#t=0m53s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Pre-beta_features" target="_blank">Pre-beta_features</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?v=rW4w_7GRUPE" target="_blank">https://www.youtube.com/watch?v=rW4w_7GRUPE</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?v=rW4w_7GRUPE#t=1m14s" target="_blank">http://www.youtube.com/watch?v=rW4w_7GRUPE#t=1m14s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Pre-beta_features" target="_blank">Pre-beta_features</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?v=rW4w_7GRUPE" target="_blank">https://www.youtube.com/watch?v=rW4w_7GRUPE</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1282" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1282</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Kojiro" target="_blank">Kojiro</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1282" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1282</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1262" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1262</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Casey" target="_blank">Casey</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1262" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1262</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.example.com/example.mov" target="_blank">http://www.example.com/example.mov</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/MediaWiki:Common" target="_blank">MediaWiki:Common</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.example.com/example.mov" target="_blank">https://web.archive.org/web/*/http://www.example.com/example.mov</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://www.example.com/example.mp3" target="_blank">http://www.example.com/example.mp3</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/MediaWiki:Common" target="_blank">MediaWiki:Common</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.example.com/example.mp3" target="_blank">https://web.archive.org/web/*/http://www.example.com/example.mp3</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://www.deviantart.com/hinxlinx/gallery/?catpath=/&edit=0&q=oni" target="_blank">https://www.deviantart.com/hinxlinx/gallery/?catpath=/&edit=0&q=oni</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_2_(Angel_Studios)" target="_blank">Oni_2_(Angel_Studios)</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.deviantart.com/hinxlinx/gallery?catpath=/&edit=0&q=oni" target="_blank">https://www.deviantart.com/hinxlinx/gallery?catpath=/&edit=0&q=oni</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.plosone.org/article/fetchFirstRepresentation.action?uri=info:doi/10.1371/journal.pone.0002276.s001" target="_blank">http://www.plosone.org/article/fetchFirstRepresentation.action?uri=info:doi/10.1371/journal.pone.0002276.s001</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20080928122544/http://www.plosone.org/article/fetchFirstRepresentation.action?uri=info:doi/10.1371/journal.pone.0002276.s001" target="_blank">http://web.archive.org/web/20080928122544/http://www.plosone.org/article/fetchFirstRepresentation.action?uri=info:doi/10.1371/journal.pone.0002276.s001</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://konokoffin.bungie.org/forums/index.php?threadid=9&page=16#post_3171" target="_blank">http://konokoffin.bungie.org/forums/index.php?threadid=9&page=16#post_3171</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Polylectiloquy" target="_blank">Oni2:Slaves_of_War/Polylectiloquy</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://konokoffin.bungie.org/forums/index.php?threadid=9&page=16#post_3171" target="_blank">https://web.archive.org/web/*/http://konokoffin.bungie.org/forums/index.php?threadid=9&page=16#post_3171</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://www.types-of-flowers.org/pictures/resurrection_plant.jpg" target="_blank">http://www.types-of-flowers.org/pictures/resurrection_plant.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.types-of-flowers.org/wp-content/uploads/2019/06/postpage-3.jpg" target="_blank">https://www.types-of-flowers.org/wp-content/uploads/2019/06/postpage-3.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1506" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1506</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1506" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1506</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1736" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1736</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1736" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1736</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1957" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1957</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1957" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1957</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1938" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1938</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1938" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1938</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2001" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2001</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2001" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2001</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2000" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2000</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2000" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2000</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2003" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2003</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2003" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2003</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1515" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1515</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1515" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1515</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=33838" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=33838</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=33838" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=33838</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://sketchfab.com/models/17d6910f28ac44b3bef7a4c69d0f09d9" target="_blank">https://sketchfab.com/models/17d6910f28ac44b3bef7a4c69d0f09d9</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Geyser/IonEyes" target="_blank">User_talk:Geyser/IonEyes</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://sketchfab.com/3d-models/chigaru-beyond-human-artstation-challenge-17d6910f28ac44b3bef7a4c69d0f09d9" target="_blank">https://sketchfab.com/3d-models/chigaru-beyond-human-artstation-challenge-17d6910f28ac44b3bef7a4c69d0f09d9</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2723" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2723</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Music/Ingame" target="_blank">Music/Ingame</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2723" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2723</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/images/tnl/Oni-BadShadows3.jpg" target="_blank">http://iritscen.oni2.net/images/tnl/Oni-BadShadows3.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Oni/Positioning" target="_blank">Talk:Oni/Positioning</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/images/tnl/Oni-BadShadows3.jpg" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/images/tnl/Oni-BadShadows3.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://iritscen.oni2.net/images/tnl/Oni-Ch2LobbyLights1999.png" target="_blank">http://iritscen.oni2.net/images/tnl/Oni-Ch2LobbyLights1999.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Oni/Positioning" target="_blank">Talk:Oni/Positioning</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/images/tnl/Oni-Ch2LobbyLights1999.png" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/images/tnl/Oni-Ch2LobbyLights1999.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/OniGalore/BINACJBOTrigger.oni" target="_blank">http://paradox.oni2.net/OniGalore/BINACJBOTrigger.oni</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:BINA/OBJC/TRIG" target="_blank">XML:BINA/OBJC/TRIG</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOTrigger.oni" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOTrigger.oni</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/OniGalore/BINACJBOTurret.oni" target="_blank">http://paradox.oni2.net/OniGalore/BINACJBOTurret.oni</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:BINA/OBJC/TURR" target="_blank">XML:BINA/OBJC/TURR</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOTurret.oni" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOTurret.oni</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/OniGalore/BINACJBOWeapon.oni" target="_blank">http://paradox.oni2.net/OniGalore/BINACJBOWeapon.oni</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:BINA/OBJC/WEAP" target="_blank">XML:BINA/OBJC/WEAP</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOWeapon.oni" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOWeapon.oni</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/OniGalore/BINADBMTTextureMaterials.oni" target="_blank">http://paradox.oni2.net/OniGalore/BINADBMTTextureMaterials.oni</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:BINA/TMBD" target="_blank">XML:BINA/TMBD</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINADBMTTextureMaterials.oni" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINADBMTTextureMaterials.oni</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=27093#p27093" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=27093#p27093</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:BINA/TMBD" target="_blank">XML:BINA/TMBD</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=27093" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=27093</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/OniGalore/BINACJBOPatrol%20Path.oni" target="_blank">http://paradox.oni2.net/OniGalore/BINACJBOPatrol%20Path.oni</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:BINA/OBJC/PATR" target="_blank">XML:BINA/OBJC/PATR</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOPatrol%20Path.oni" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOPatrol%20Path.oni</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://cl.ly/3E0t0S2I1m0q1N3N3b1l/Invisible.png" target="_blank">http://cl.ly/3E0t0S2I1m0q1N3N3b1l/Invisible.png</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D4e64820c9e369b6017ace7d0b43b4dfb&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D4e64820c9e369b6017ace7d0b43b4dfb" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D4e64820c9e369b6017ace7d0b43b4dfb&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D4e64820c9e369b6017ace7d0b43b4dfb</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/details?mid=6a1d00e2085b561c6372c627cab660a9" target="_blank">http://sketchup.google.com/3dwarehouse/details?mid=6a1d00e2085b561c6372c627cab660a9</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:BGI" target="_blank">AE:BGI</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D6a1d00e2085b561c6372c627cab660a9&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D6a1d00e2085b561c6372c627cab660a9" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D6a1d00e2085b561c6372c627cab660a9&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D6a1d00e2085b561c6372c627cab660a9</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/details?mid=9dbabc507f6044978a58c51e0b0b06c2" target="_blank">http://sketchup.google.com/3dwarehouse/details?mid=9dbabc507f6044978a58c51e0b0b06c2</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:BGI" target="_blank">AE:BGI</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D9dbabc507f6044978a58c51e0b0b06c2&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D9dbabc507f6044978a58c51e0b0b06c2" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D9dbabc507f6044978a58c51e0b0b06c2&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D9dbabc507f6044978a58c51e0b0b06c2</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/details?mid=44f382eff4d3e9e879539d8b3db35fd0" target="_blank">http://sketchup.google.com/3dwarehouse/details?mid=44f382eff4d3e9e879539d8b3db35fd0</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:BGI" target="_blank">AE:BGI</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D44f382eff4d3e9e879539d8b3db35fd0&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D44f382eff4d3e9e879539d8b3db35fd0" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D44f382eff4d3e9e879539d8b3db35fd0&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D44f382eff4d3e9e879539d8b3db35fd0</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/details?mid=59f0ac893106f7cc51cfdb4c9f126c12" target="_blank">http://sketchup.google.com/3dwarehouse/details?mid=59f0ac893106f7cc51cfdb4c9f126c12</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:BGI" target="_blank">AE:BGI</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D59f0ac893106f7cc51cfdb4c9f126c12&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D59f0ac893106f7cc51cfdb4c9f126c12" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D59f0ac893106f7cc51cfdb4c9f126c12&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D59f0ac893106f7cc51cfdb4c9f126c12</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/details?mid=33b2c337108275568c09573a9753f4fd" target="_blank">http://sketchup.google.com/3dwarehouse/details?mid=33b2c337108275568c09573a9753f4fd</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D33b2c337108275568c09573a9753f4fd&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D33b2c337108275568c09573a9753f4fd" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D33b2c337108275568c09573a9753f4fd&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D33b2c337108275568c09573a9753f4fd</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/search?uq=0920076976514168017734253" target="_blank">http://sketchup.google.com/3dwarehouse/search?uq=0920076976514168017734253</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/search?uq%3D0920076976514168017734253&followup=http://sketchup.google.com/3dwarehouse/search?uq%3D0920076976514168017734253" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/search?uq%3D0920076976514168017734253&followup=http://sketchup.google.com/3dwarehouse/search?uq%3D0920076976514168017734253</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://sketchup.google.com/3dwarehouse/details?mid=34838cda1690ce4425ddf6e8265c857c" target="_blank">http://sketchup.google.com/3dwarehouse/details?mid=34838cda1690ce4425ddf6e8265c857c</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D34838cda1690ce4425ddf6e8265c857c&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D34838cda1690ce4425ddf6e8265c857c" target="_blank">https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D34838cda1690ce4425ddf6e8265c857c&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D34838cda1690ce4425ddf6e8265c857c</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">NG (503)</td><td align="right">page</td><td><a href="http://cl.ly/3f3r2b2S0x0A370T3g06" target="_blank">http://cl.ly/3f3r2b2S0x0A370T3g06</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/SketchUp_tutorials_and_tips" target="_blank">SketchUp_tutorials_and_tips</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://my.cl.ly/content/3E0t0S2I1m0q1N3N3b1l" target="_blank">https://my.cl.ly/content/3E0t0S2I1m0q1N3N3b1l</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.develop-online.net/news/36183/Ex-Bungie-dev-Apple-got-close-to-buying-us" target="_blank">http://www.develop-online.net/news/36183/Ex-Bungie-dev-Apple-got-close-to-buying-us</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni" target="_blank">Oni</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.mcvuk.com/news/36183/Ex-Bungie-dev-Apple-got-close-to-buying-us" target="_blank">https://www.mcvuk.com/news/36183/Ex-Bungie-dev-Apple-got-close-to-buying-us</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.develop-online.net/news/36173/Steve-Jobs-raged-at-Microsoft-over-game-studio-sale" target="_blank">http://www.develop-online.net/news/36173/Steve-Jobs-raged-at-Microsoft-over-game-studio-sale</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni" target="_blank">Oni</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.mcvuk.com/news/36173/Steve-Jobs-raged-at-Microsoft-over-game-studio-sale" target="_blank">https://www.mcvuk.com/news/36173/Steve-Jobs-raged-at-Microsoft-over-game-studio-sale</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?v=Zy59xjF21Rs#t=2m44s" target="_blank">http://www.youtube.com/watch?v=Zy59xjF21Rs#t=2m44s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:A_Storyline/PostSummary1" target="_blank">Oni2:A_Storyline/PostSummary1</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?v=Zy59xjF21Rs" target="_blank">https://www.youtube.com/watch?v=Zy59xjF21Rs</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.haibane.de/oni/" target="_blank">http://www.haibane.de/oni/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:A_Storyline/PostSummary1" target="_blank">Oni2:A_Storyline/PostSummary1</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20081019100930/http://www.haibane.de/oni/" target="_blank">http://web.archive.org/web/20081019100930/http://www.haibane.de/oni/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2024" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2024</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/History_of_Oni_modding" target="_blank">History_of_Oni_modding</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2024" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2024</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.photoshare.ru/user/karasevarchi/" target="_blank">http://www.photoshare.ru/user/karasevarchi/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://photoshare.ru/user/karasevarchi/" target="_blank">http://photoshare.ru/user/karasevarchi/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (308)</td><td align="right">page</td><td><a href="https://pcgamingwiki.com/wiki/Oni#Choppy_mouse.2Fkeyboard_control" target="_blank">https://pcgamingwiki.com/wiki/Oni#Choppy_mouse.2Fkeyboard_control</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mouse_control_issues" target="_blank">Mouse_control_issues</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.pcgamingwiki.com/wiki/Oni" target="_blank">https://www.pcgamingwiki.com/wiki/Oni</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://forums.unrealengine.com/unreal-engine/marketplace/107921-advanced-locomotion-system-v3?p=1488046#post1488046" target="_blank">https://forums.unrealengine.com/unreal-engine/marketplace/107921-advanced-locomotion-system-v3?p=1488046#post1488046</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/UnrealOni/ALS" target="_blank">UnrealOni/ALS</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://forums.unrealengine.com/unreal-engine/marketplace/107921-advanced-locomotion-system-v3/page30#post1488046" target="_blank">https://forums.unrealengine.com/unreal-engine/marketplace/107921-advanced-locomotion-system-v3/page30#post1488046</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://sketchfab.com/models/05c43504dfbe4a4ca438f91d44a24b4e" target="_blank">https://sketchfab.com/models/05c43504dfbe4a4ca438f91d44a24b4e</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Geyser/IonEyes" target="_blank">User_talk:Geyser/IonEyes</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://sketchfab.com/3d-models/robot-wr1-05c43504dfbe4a4ca438f91d44a24b4e" target="_blank">https://sketchfab.com/3d-models/robot-wr1-05c43504dfbe4a4ca438f91d44a24b4e</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://sketchfab.com/models/cf7e6db618d64b9cb573df4409327e63" target="_blank">https://sketchfab.com/models/cf7e6db618d64b9cb573df4409327e63</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Geyser/IonEyes" target="_blank">User_talk:Geyser/IonEyes</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://sketchfab.com/3d-models/mh07-cf7e6db618d64b9cb573df4409327e63" target="_blank">https://sketchfab.com/3d-models/mh07-cf7e6db618d64b9cb573df4409327e63</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://sketchfab.com/models/daeecbd492f34f619944f5a3004cae11" target="_blank">https://sketchfab.com/models/daeecbd492f34f619944f5a3004cae11</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Geyser/IonEyes" target="_blank">User_talk:Geyser/IonEyes</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://sketchfab.com/3d-models/hazard-unit-free-model-daeecbd492f34f619944f5a3004cae11" target="_blank">https://sketchfab.com/3d-models/hazard-unit-free-model-daeecbd492f34f619944f5a3004cae11</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://sketchfab.com/models/f71780758a79469d9988793e3a4a0f74" target="_blank">https://sketchfab.com/models/f71780758a79469d9988793e3a4a0f74</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Geyser/IonEyes" target="_blank">User_talk:Geyser/IonEyes</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://sketchfab.com/3d-models/robot-f71780758a79469d9988793e3a4a0f74" target="_blank">https://sketchfab.com/3d-models/robot-f71780758a79469d9988793e3a4a0f74</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://sketchfab.com/models/0215653cb41547b68f71ea2e42320f91" target="_blank">https://sketchfab.com/models/0215653cb41547b68f71ea2e42320f91</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Geyser/IonEyes" target="_blank">User_talk:Geyser/IonEyes</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://sketchfab.com/3d-models/shelly-0215653cb41547b68f71ea2e42320f91" target="_blank">https://sketchfab.com/3d-models/shelly-0215653cb41547b68f71ea2e42320f91</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://script10k.oni2.net/wikifiles/main_not_working_without_commenting_commands(functions_split).zip" target="_blank">http://script10k.oni2.net/wikifiles/main_not_working_without_commenting_commands(functions_split).zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Modding_errors" target="_blank">Modding_errors</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://script10k.oni2.net/wikifiles/main_not_working_without_commenting_commands(functions_split).zip" target="_blank">https://web.archive.org/web/*/http://script10k.oni2.net/wikifiles/main_not_working_without_commenting_commands(functions_split).zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://script10k.oni2.net/wikifiles/main_split_in_two_files.zip" target="_blank">http://script10k.oni2.net/wikifiles/main_split_in_two_files.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Modding_errors" target="_blank">Modding_errors</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://script10k.oni2.net/wikifiles/main_split_in_two_files.zip" target="_blank">https://web.archive.org/web/*/http://script10k.oni2.net/wikifiles/main_split_in_two_files.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (307)</td><td align="right">page</td><td><a href="https://share.allegorithmic.com/libraries?by_category_type_id=4" target="_blank">https://share.allegorithmic.com/libraries?by_category_type_id=4</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Fuse" target="_blank">Fuse</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://share.substance3d.com/libraries?by_category_type_id=4" target="_blank">https://share.substance3d.com/libraries?by_category_type_id=4</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://mods.oni2.net/node/131" target="_blank">http://mods.oni2.net/node/131</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Anniversary_Edition/To-do" target="_blank">Anniversary_Edition/To-do</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20191103180225/http://mods.oni2.net/node/131" target="_blank">http://web.archive.org/web/20191103180225/http://mods.oni2.net/node/131</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://forums.epicgames.com/threads/603122-Remus-high-resolution-skydome-texture-pack" target="_blank">http://forums.epicgames.com/threads/603122-Remus-high-resolution-skydome-texture-pack</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://forums.epicgames.com:443/threads/603122-Remus-high-resolution-skydome-texture-pack" target="_blank">https://forums.epicgames.com:443/threads/603122-Remus-high-resolution-skydome-texture-pack</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.cgtextures.com/" target="_blank">http://www.cgtextures.com/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.textures.com/" target="_blank">http://www.textures.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://de.wikipedia.org/wiki/Synthetische_Biologie#Ein_neues_R.C3.BCckgrat" target="_blank">http://de.wikipedia.org/wiki/Synthetische_Biologie#Ein_neues_R.C3.BCckgrat</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Synthetische_Biologie#Ein_neues_R.C3.BCckgrat]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=36760#p36760" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=36760#p36760</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=36760" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=36760</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.kxcad.net/Softimage_XSI/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm" target="_blank">http://www.kxcad.net/Softimage_XSI/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm" target="_blank">http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)" target="_blank">http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_%28XSISDK%29" target="_blank">http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_%28XSISDK%29</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm" target="_blank">http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm" target="_blank">http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=19297#p19297" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=19297#p19297</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/AE:Modifying_textures" target="_blank">AE:Modifying_textures</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=19297" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=19297</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1229" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1229</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1229" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1229</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/temp/China_8_4.zip" target="_blank">http://edt.oni2.net/temp/China_8_4.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Script_10k" target="_blank">User_talk:Script_10k</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/temp/China_8_4.zip" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/temp/China_8_4.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/xsidocs/config_envirovars.htm" target="_blank">http://softimage.wiki.softimage.com/xsidocs/config_envirovars.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170309190841/http://softimage.wiki.softimage.com/xsidocs/config_envirovars.htm" target="_blank">http://web.archive.org/web/20170309190841/http://softimage.wiki.softimage.com/xsidocs/config_envirovars.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/xsidocs/EnvVars_SettingandUsingEnvironmentVariables.htm" target="_blank">http://softimage.wiki.softimage.com/xsidocs/EnvVars_SettingandUsingEnvironmentVariables.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20180416194626/http://softimage.wiki.softimage.com/xsidocs/EnvVars_SettingandUsingEnvironmentVariables.htm" target="_blank">http://web.archive.org/web/20180416194626/http://softimage.wiki.softimage.com/xsidocs/EnvVars_SettingandUsingEnvironmentVariables.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/xsidocs/EnvVars_EnvironmentVariableReference.htm" target="_blank">http://softimage.wiki.softimage.com/xsidocs/EnvVars_EnvironmentVariableReference.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170617095054/http://softimage.wiki.softimage.com/xsidocs/EnvVars_EnvironmentVariableReference.htm" target="_blank">http://web.archive.org/web/20170617095054/http://softimage.wiki.softimage.com/xsidocs/EnvVars_EnvironmentVariableReference.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/sdkdocs/cus_addons_WalkthroughBuildinganAddon.htm" target="_blank">http://softimage.wiki.softimage.com/sdkdocs/cus_addons_WalkthroughBuildinganAddon.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://softimage.wiki.softimage.com/sdkdocs/cus_addons_WalkthroughBuildinganAddon.htm" target="_blank">https://web.archive.org/web/*/http://softimage.wiki.softimage.com/sdkdocs/cus_addons_WalkthroughBuildinganAddon.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropbox.com/u/139715/OniGalore/ModToolScript/Oni_env_vars.txt" target="_blank">https://dl.dropbox.com/u/139715/OniGalore/ModToolScript/Oni_env_vars.txt</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropbox.com/u/139715/OniGalore/ModToolScript/Oni_env_vars.txt" target="_blank">https://web.archive.org/web/*/https://dl.dropbox.com/u/139715/OniGalore/ModToolScript/Oni_env_vars.txt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/" target="_blank">http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/" target="_blank">https://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://blogs.technet.com/b/heyscriptingguy/archive/2006/12/08/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script.aspx" target="_blank">http://blogs.technet.com/b/heyscriptingguy/archive/2006/12/08/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script.aspx</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.microsoft.com/en-us/archive/blogs/heyscriptingguy/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script" target="_blank">https://docs.microsoft.com/en-us/archive/blogs/heyscriptingguy/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2357" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2357</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2357" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2357</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.gamefaqs.com/pc/62551-messiah/critic" target="_blank">http://www.gamefaqs.com/pc/62551-messiah/critic</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Oni/Positioning" target="_blank">Talk:Oni/Positioning</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://gamefaqs.gamespot.com/pc/62551-messiah/critic" target="_blank">https://gamefaqs.gamespot.com/pc/62551-messiah/critic</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">file</td><td><a href="http://wiki.oni2.net/File:Changed_Load_Menu.png" target="_blank">http://wiki.oni2.net/File:Changed_Load_Menu.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:WMDD" target="_blank">XML:WMDD</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[File:Changed_Load_Menu.png]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1807" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1807</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Samer" target="_blank">User:Samer</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1807" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1807</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1240" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1240</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Shinatama_Bot" target="_blank">Shinatama_Bot</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1240" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1240</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.youtube.com/watch?feature=player_detailpage&v=YLZ2hJZvrmo#t=82s" target="_blank">http://www.youtube.com/watch?feature=player_detailpage&v=YLZ2hJZvrmo#t=82s</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Casual_Tankers" target="_blank">Casual_Tankers</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.youtube.com/watch?feature=player_detailpage&v=YLZ2hJZvrmo" target="_blank">https://www.youtube.com/watch?feature=player_detailpage&v=YLZ2hJZvrmo</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2416" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2416</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Casual_Tankers" target="_blank">Casual_Tankers</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2416" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2416</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test.zip" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:ONLV" target="_blank">XML_talk:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test.zip" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2640" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2640</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2640" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2640</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2423" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2423</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Samer" target="_blank">User:Samer</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2423" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2423</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1317" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1317</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Regenerating_Fury" target="_blank">Regenerating_Fury</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1317" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1317</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2046" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2046</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Regenerating_Tanker" target="_blank">Regenerating_Tanker</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2046" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2046</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=46869#p46869" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=46869#p46869</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Sarai" target="_blank">Sarai</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=46869" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=46869</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=16272#p16272" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=16272#p16272</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Sarai" target="_blank">Sarai</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=16272" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=16272</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2445" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2445</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BGI_characters" target="_blank">BGI_characters</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2445" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2445</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=1329" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=1329</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BGI_characters" target="_blank">BGI_characters</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=1329" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=1329</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.mwusers.com/forums/showthread.php?18647-onclick-in-wikitext&s=4573f23d960e24c3c6523e4a072b4ba9&p=61594&viewfull=1#post61594" target="_blank">http://www.mwusers.com/forums/showthread.php?18647-onclick-in-wikitext&s=4573f23d960e24c3c6523e4a072b4ba9&p=61594&viewfull=1#post61594</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Archive1" target="_blank">User_talk:Paradox-01/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://mwusers.com/forums/showthread.php?18647-onclick-in-wikitext&s=4573f23d960e24c3c6523e4a072b4ba9&p=61594&viewfull=1" target="_blank">http://mwusers.com/forums/showthread.php?18647-onclick-in-wikitext&s=4573f23d960e24c3c6523e4a072b4ba9&p=61594&viewfull=1</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropbox.com/u/139715/temp/ssg_overviews_wikified.txt" target="_blank">https://dl.dropbox.com/u/139715/temp/ssg_overviews_wikified.txt</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Archive1" target="_blank">User_talk:Paradox-01/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropbox.com/u/139715/temp/ssg_overviews_wikified.txt" target="_blank">https://web.archive.org/web/*/https://dl.dropbox.com/u/139715/temp/ssg_overviews_wikified.txt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/Level_19_reimport.zip" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/Level_19_reimport.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/Level_19_reimport.zip" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/Level_19_reimport.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/OniGalore/automatic_rigging_test_files.zip" target="_blank">http://paradox.oni2.net/OniGalore/automatic_rigging_test_files.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/Rigging" target="_blank">Mod_Tool/Rigging</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/automatic_rigging_test_files.zip" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/automatic_rigging_test_files.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2723" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2723</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Music/CD" target="_blank">Music/CD</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2723" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2723</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/mods/lab_main.bsl" target="_blank">http://edt.oni2.net/mods/lab_main.bsl</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mac_mods" target="_blank">Mac_mods</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/mods/lab_main.bsl" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/mods/lab_main.bsl</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="https://dl.dropbox.com/u/139715/temp/explanation_fixed_to_screen.htm" target="_blank">https://dl.dropbox.com/u/139715/temp/explanation_fixed_to_screen.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Archive1" target="_blank">User_talk:Paradox-01/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropbox.com/u/139715/temp/explanation_fixed_to_screen.htm" target="_blank">https://web.archive.org/web/*/https://dl.dropbox.com/u/139715/temp/explanation_fixed_to_screen.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/mods/level0_Final.sep.zip" target="_blank">http://edt.oni2.net/mods/level0_Final.sep.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mac_mods" target="_blank">Mac_mods</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20071020142729/http://edt.oni2.net/mods/level0_Final.sep.zip" target="_blank">http://web.archive.org/web/20071020142729/http://edt.oni2.net/mods/level0_Final.sep.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/temp/snipers.dae" target="_blank">https://dl.dropboxusercontent.com/u/139715/temp/snipers.dae</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:ONLV" target="_blank">XML_talk:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/temp/snipers.dae" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/temp/snipers.dae</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://docs.unrealengine.com/latest/INT/Engine/Audio/index.html" target="_blank">https://docs.unrealengine.com/latest/INT/Engine/Audio/index.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.unrealengine.com/en-US/Engine/Audio/index.html" target="_blank">https://docs.unrealengine.com/en-US/Engine/Audio/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=36174#p36174" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=36174#p36174</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Anniversary_Edition/To-do" target="_blank">Anniversary_Edition/To-do</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=36174" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=36174</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=27161#p27161" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=27161#p27161</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Anniversary_Edition/To-do" target="_blank">Anniversary_Edition/To-do</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=27161" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=27161</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=43490#p43490" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=43490#p43490</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Anniversary_Edition/To-do" target="_blank">Anniversary_Edition/To-do</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=43490" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=43490</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/CRSA_wip.txt" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/CRSA_wip.txt</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:ONLV" target="_blank">XML_talk:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/CRSA_wip.txt" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/CRSA_wip.txt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/global.png" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/global.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:ONLV" target="_blank">XML_talk:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/global.png" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/global.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/OniMatrix_src.zip" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/OniMatrix_src.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:ONLV" target="_blank">XML_talk:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniMatrix_src.zip" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniMatrix_src.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_manually_imported.png" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_manually_imported.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:ONLV" target="_blank">XML_talk:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_manually_imported.png" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_manually_imported.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=29089#p29089" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=29089#p29089</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=29089" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=29089</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2302" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2302</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2302" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2302</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=6839916" target="_blank">http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=6839916</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:OniSplit/Archive1" target="_blank">Talk:OniSplit/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.autodesk.com/" target="_blank">https://www.autodesk.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/3D/MCfiles.zip" target="_blank">http://edt.oni2.net/3D/MCfiles.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:OniSplit/Archive1" target="_blank">Talk:OniSplit/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/3D/MCfiles.zip" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/3D/MCfiles.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://edt.oni2.net/3D/MC_crash.zip" target="_blank">http://edt.oni2.net/3D/MC_crash.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:OniSplit/Archive1" target="_blank">Talk:OniSplit/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://edt.oni2.net/3D/MC_crash.zip" target="_blank">https://web.archive.org/web/*/http://edt.oni2.net/3D/MC_crash.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2698" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2698</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/History_of_Oni_modding" target="_blank">History_of_Oni_modding</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2698" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2698</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2525" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2525</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Anniversary_Edition/Installer" target="_blank">Anniversary_Edition/Installer</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2525" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2525</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2242" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2242</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2242" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2242</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2235" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2235</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2235" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2235</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="http://paradox.oni2.net/OniGalore/experimental_auto_rigging.png" target="_blank">http://paradox.oni2.net/OniGalore/experimental_auto_rigging.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/Rigging" target="_blank">Mod_Tool/Rigging</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/experimental_auto_rigging.png" target="_blank">https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/experimental_auto_rigging.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=46869#p46869" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=46869#p46869</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BGI_characters" target="_blank">BGI_characters</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=46869" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=46869</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2490" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2490</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BGI_characters" target="_blank">BGI_characters</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2490" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2490</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test_2.zip" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test_2.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:ONLV" target="_blank">XML_talk:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test_2.zip" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test_2.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://wiki.unrealengine.com/Unreal_Motion_Graphics_(UMG)_UI_-_Inventory_Tutorial_Playlist" target="_blank">https://wiki.unrealengine.com/Unreal_Motion_Graphics_(UMG)_UI_-_Inventory_Tutorial_Playlist</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://forums.unrealengine.com:443/unreal-engine/announcements-and-releases/1745504-a-new-community-hosted-unreal-engine-wiki" target="_blank">https://forums.unrealengine.com:443/unreal-engine/announcements-and-releases/1745504-a-new-community-hosted-unreal-engine-wiki</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://docs.unrealengine.com/latest/INT/Videos/PLZlv_N0_O1gZalvQWYs8sc7RP_-8eSr3i/" target="_blank">https://docs.unrealengine.com/latest/INT/Videos/PLZlv_N0_O1gZalvQWYs8sc7RP_-8eSr3i/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.unrealengine.com/en-US/Videos/PLZlv_N0_O1gZalvQWYs8sc7RP_-8eSr3i/index.html" target="_blank">https://docs.unrealengine.com/en-US/Videos/PLZlv_N0_O1gZalvQWYs8sc7RP_-8eSr3i/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/xsidocs/audio_LoadingAudioFilesintheAnimationMixer.htm#Rdy36984" target="_blank">http://softimage.wiki.softimage.com/xsidocs/audio_LoadingAudioFilesintheAnimationMixer.htm#Rdy36984</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20150908065116/http://softimage.wiki.softimage.com/xsidocs/audio_LoadingAudioFilesintheAnimationMixer.htm" target="_blank">http://web.archive.org/web/20150908065116/http://softimage.wiki.softimage.com/xsidocs/audio_LoadingAudioFilesintheAnimationMixer.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/xsidocs/nla_mixer.htm#Rdw10200" target="_blank">http://softimage.wiki.softimage.com/xsidocs/nla_mixer.htm#Rdw10200</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20150623002735/http://softimage.wiki.softimage.com/xsidocs/nla_mixer.htm" target="_blank">http://web.archive.org/web/20150623002735/http://softimage.wiki.softimage.com/xsidocs/nla_mixer.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/Model.vbs" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/Model.vbs</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/Model.vbs" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/Model.vbs</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/xsidocs/tex_vcolor_CreatingColoratVerticesCAVMaps.htm" target="_blank">http://softimage.wiki.softimage.com/xsidocs/tex_vcolor_CreatingColoratVerticesCAVMaps.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170529111607/http://softimage.wiki.softimage.com/xsidocs/tex_vcolor_CreatingColoratVerticesCAVMaps.htm" target="_blank">http://web.archive.org/web/20170529111607/http://softimage.wiki.softimage.com/xsidocs/tex_vcolor_CreatingColoratVerticesCAVMaps.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2656" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2656</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2656" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2656</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2271" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2271</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2271" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2271</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2024" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2024</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2024" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2024</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/local_correct_pelvis.png" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/local_correct_pelvis.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:ONLV" target="_blank">XML_talk:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/local_correct_pelvis.png" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/local_correct_pelvis.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/extract_ENVP.vbs" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/extract_ENVP.vbs</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/extract_ENVP.vbs" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/extract_ENVP.vbs</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2657" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2657</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2657" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2657</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/euler_to_matrix_to_euler.txt" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/euler_to_matrix_to_euler.txt</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/Oni_level_rebuilder" target="_blank">Mod_Tool/Oni_level_rebuilder</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/euler_to_matrix_to_euler.txt" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/euler_to_matrix_to_euler.txt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=47612#p47612" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=47612#p47612</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/Oni_level_rebuilder" target="_blank">Mod_Tool/Oni_level_rebuilder</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=47612" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=47612</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://paperpedia.fandom.com/it/wiki/PK2" target="_blank">https://paperpedia.fandom.com/it/wiki/PK2</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Birgit_Q" target="_blank">Birgit_Q</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://paperpedia.fandom.com/it/wiki/PK%C2%B2" target="_blank">https://paperpedia.fandom.com/it/wiki/PK%C2%B2</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://dot3d.blogspot.de/2009/10/softimage-ice-tree-building-step-by.html" target="_blank">http://dot3d.blogspot.de/2009/10/softimage-ice-tree-building-step-by.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://dot3d.blogspot.com/2009/10/softimage-ice-tree-building-step-by.html" target="_blank">http://dot3d.blogspot.com/2009/10/softimage-ice-tree-building-step-by.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://support.solidangle.com/display/SItoAUG/ICE" target="_blank">https://support.solidangle.com/display/SItoAUG/ICE</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool" target="_blank">Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.arnoldrenderer.com/display/SItoAUG/ICE" target="_blank">https://docs.arnoldrenderer.com/display/SItoAUG/ICE</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_to_Mod_Tool_wip.png" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_to_Mod_Tool_wip.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_to_Mod_Tool_wip.png" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_to_Mod_Tool_wip.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/temp/CRSA_to_Mod_Tool.txt" target="_blank">https://dl.dropboxusercontent.com/u/139715/temp/CRSA_to_Mod_Tool.txt</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/temp/CRSA_to_Mod_Tool.txt" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/temp/CRSA_to_Mod_Tool.txt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.w3.org/TR/xpath/" target="_blank">http://www.w3.org/TR/xpath/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XmlTools" target="_blank">XmlTools</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.w3.org/TR/xpath/all/" target="_blank">https://www.w3.org/TR/xpath/all/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2698" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2698</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2698" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2698</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.redsorceress.com/skybox.html" target="_blank">http://www.redsorceress.com/skybox.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:ONLV" target="_blank">XML:ONLV</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.redsorceress.com/" target="_blank">http://www.redsorceress.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.petetracey.com/jsxml/index.html" target="_blank">http://www.petetracey.com/jsxml/index.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XmlTools/Full_documentation" target="_blank">XmlTools/Full_documentation</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.petetracey.com/jsxml/index.html" target="_blank">https://web.archive.org/web/*/http://www.petetracey.com/jsxml/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.petetracey.com/jsxml/documentation.html" target="_blank">http://www.petetracey.com/jsxml/documentation.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XmlTools/Full_documentation" target="_blank">XmlTools/Full_documentation</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.petetracey.com/jsxml/documentation.html" target="_blank">https://web.archive.org/web/*/http://www.petetracey.com/jsxml/documentation.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/temp/DoorClassMaker_wip.txt" target="_blank">https://dl.dropboxusercontent.com/u/139715/temp/DoorClassMaker_wip.txt</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:DOOR" target="_blank">XML:DOOR</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20160225034500/https://dl.dropboxusercontent.com/u/139715/temp/DoorClassMaker_wip.txt" target="_blank">http://web.archive.org/web/20160225034500/https://dl.dropboxusercontent.com/u/139715/temp/DoorClassMaker_wip.txt</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://de.wikipedia.org/wiki/Streptomyces" target="_blank">http://de.wikipedia.org/wiki/Streptomyces</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Streptomyces]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.allgame.com/game.php?id=24182&tab=review" target="_blank">http://www.allgame.com/game.php?id=24182&tab=review</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Reviews" target="_blank">Reviews</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20141115004950/http://www.allgame.com/game.php?id=24182" target="_blank">http://web.archive.org/web/20141115004950/http://www.allgame.com/game.php?id=24182</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.eurogamer.net/articles/r_oni" target="_blank">http://www.eurogamer.net/articles/r_oni</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Reviews" target="_blank">Reviews</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.eurogamer.net:443/articles/r_oni" target="_blank">https://www.eurogamer.net:443/articles/r_oni</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-6)</td><td align="right">page</td><td><a href="http://www.haibane.de/oni" target="_blank">http://www.haibane.de/oni</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Category:Art_by_owldreamer" target="_blank">Category:Art_by_owldreamer</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20081019100930/http://www.haibane.de/oni/" target="_blank">http://web.archive.org/web/20081019100930/http://www.haibane.de/oni/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?id=2657" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?id=2657</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/OniTools_addon" target="_blank">Mod_Tool/OniTools_addon</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?id=2657" target="_blank">http://oni.bungie.org/forum/viewtopic.php?id=2657</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://oni.bungie.org/community/forum/viewtopic.php?pid=48310#p48310" target="_blank">http://oni.bungie.org/community/forum/viewtopic.php?pid=48310#p48310</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/OniTools_addon" target="_blank">Mod_Tool/OniTools_addon</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://oni.bungie.org/forum/viewtopic.php?pid=48310" target="_blank">http://oni.bungie.org/forum/viewtopic.php?pid=48310</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://phys.org/news/2014-08-tiny-chip-mimics-brain-supercomputer.html#ajTabs" target="_blank">http://phys.org/news/2014-08-tiny-chip-mimics-brain-supercomputer.html#ajTabs</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://phys.org/news/2014-08-tiny-chip-mimics-brain-supercomputer.html" target="_blank">https://phys.org/news/2014-08-tiny-chip-mimics-brain-supercomputer.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://portforward.com/english/routers/port_forwarding/routerindex.htm" target="_blank">http://portforward.com/english/routers/port_forwarding/routerindex.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Zukai" target="_blank">Zukai</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://portforward.com/routers.htm" target="_blank">https://portforward.com/routers.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://github.com/jp9000/obs-studio/releases" target="_blank">https://github.com/jp9000/obs-studio/releases</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Capturing_game_footage" target="_blank">Capturing_game_footage</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://github.com/obsproject/obs-studio/releases" target="_blank">https://github.com/obsproject/obs-studio/releases</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)" target="_blank">http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/Scripting" target="_blank">Mod_Tool/Scripting</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_%28XSISDK%29" target="_blank">http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_%28XSISDK%29</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (403)</td><td align="right">page</td><td><a href="http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm" target="_blank">http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/Scripting" target="_blank">Mod_Tool/Scripting</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm" target="_blank">http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/" target="_blank">http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/Scripting" target="_blank">Mod_Tool/Scripting</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/" target="_blank">https://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.kxcad.net/Softimage_XSI/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm" target="_blank">http://www.kxcad.net/Softimage_XSI/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/Scripting" target="_blank">Mod_Tool/Scripting</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm" target="_blank">http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://blogs.technet.com/b/heyscriptingguy/archive/2006/12/08/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script.aspx" target="_blank">http://blogs.technet.com/b/heyscriptingguy/archive/2006/12/08/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script.aspx</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Mod_Tool/Scripting" target="_blank">Mod_Tool/Scripting</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.microsoft.com/en-us/archive/blogs/heyscriptingguy/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script" target="_blank">https://docs.microsoft.com/en-us/archive/blogs/heyscriptingguy/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://docs.microsoft.com/en-us/windows/desktop/sysinfo/registry-value-types" target="_blank">https://docs.microsoft.com/en-us/windows/desktop/sysinfo/registry-value-types</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Windows_Shell_Extension" target="_blank">Talk:Windows_Shell_Extension</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.microsoft.com/en-us/windows/win32/sysinfo/registry-value-types" target="_blank">https://docs.microsoft.com/en-us/windows/win32/sysinfo/registry-value-types</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/VanillaTURRs.jpg" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/VanillaTURRs.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Mod_Tool/OniTools_addon" target="_blank">Talk:Mod_Tool/OniTools_addon</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/VanillaTURRs.jpg" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/VanillaTURRs.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/LevelBuilder/characters.zip" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/LevelBuilder/characters.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Mod_Tool/OniTools_addon" target="_blank">Talk:Mod_Tool/OniTools_addon</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/LevelBuilder/characters.zip" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/LevelBuilder/characters.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/BINA3RAP_Talk/BINA3RAPh2h_powerup_e01a.xml" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/BINA3RAP_Talk/BINA3RAPh2h_powerup_e01a.xml</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:BINA/PAR3" target="_blank">XML_talk:BINA/PAR3</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/BINA3RAP_Talk/BINA3RAPh2h_powerup_e01a.xml" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/BINA3RAP_Talk/BINA3RAPh2h_powerup_e01a.xml</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://1drv.ms/u/s!AjLkf0bK7POzgpI-McvVNAPeU5Cz2w" target="_blank">https://1drv.ms/u/s!AjLkf0bK7POzgpI-McvVNAPeU5Cz2w</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Mod_Tool/OniTools_addon" target="_blank">Talk:Mod_Tool/OniTools_addon</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://onedrive.live.com/redir?resid=B3F3ECCA467FE432!35134&authkey=!ADHL1TQD3lOQs9s" target="_blank">https://onedrive.live.com/redir?resid=B3F3ECCA467FE432!35134&authkey=!ADHL1TQD3lOQs9s</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (303)</td><td align="right">page</td><td><a href="https://www.nature.com/articles/s41586-019-1119-1" target="_blank">https://www.nature.com/articles/s41586-019-1119-1</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Technology" target="_blank">Restless_Souls/Technology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://idp.nature.com/authorize?response_type=cookie&client_id=grover&redirect_uri=https%3A%2F%2Fwww.nature.com%2Farticles%2Fs41586-019-1119-1" target="_blank">https://idp.nature.com/authorize?response_type=cookie&client_id=grover&redirect_uri=https%3A%2F%2Fwww.nature.com%2Farticles%2Fs41586-019-1119-1</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/OniSplit_source_code_v0.9.99.0.zip" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/OniSplit_source_code_v0.9.99.0.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Archive1" target="_blank">User_talk:Paradox-01/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/OniSplit_source_code_v0.9.99.0.zip" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/OniSplit_source_code_v0.9.99.0.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/JustDecompile.png" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/JustDecompile.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Archive1" target="_blank">User_talk:Paradox-01/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/JustDecompile.png" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/JustDecompile.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/VisualStudioCommunity.png" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/VisualStudioCommunity.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Paradox-01/Archive1" target="_blank">User_talk:Paradox-01/Archive1</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/VisualStudioCommunity.png" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/VisualStudioCommunity.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP_animated.png" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP_animated.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:TXMP" target="_blank">XML:TXMP</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP_animated.png" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP_animated.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP.png" target="_blank">https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML:TXMP" target="_blank">XML:TXMP</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP.png" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP.png</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">file</td><td><a href="https://dl.dropboxusercontent.com/u/143726/temp/IntroImageLevel2Problem.zip" target="_blank">https://dl.dropboxusercontent.com/u/143726/temp/IntroImageLevel2Problem.zip</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:TXMB" target="_blank">XML_talk:TXMB</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/143726/temp/IntroImageLevel2Problem.zip" target="_blank">https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/143726/temp/IntroImageLevel2Problem.zip</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://genius.com/10788822" target="_blank">http://genius.com/10788822</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls" target="_blank">Talk:Restless_Souls</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://genius.com/Zack-hemsey-no-mans-land-lyrics?referent_id=10788822#note-10788822" target="_blank">https://genius.com/Zack-hemsey-no-mans-land-lyrics?referent_id=10788822#note-10788822</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.devasp.net/net/articles/display/139.html" target="_blank">http://www.devasp.net/net/articles/display/139.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:TSFF" target="_blank">XML_talk:TSFF</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20180117132342/http://www.devasp.net/net/articles/display/139.html" target="_blank">http://web.archive.org/web/20180117132342/http://www.devasp.net/net/articles/display/139.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (500)</td><td align="right">page</td><td><a href="http://carnage.bungie.org/oniresforum/onires.archive.pl?read=107" target="_blank">http://carnage.bungie.org/oniresforum/onires.archive.pl?read=107</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User_talk:Script_10k" target="_blank">User_talk:Script_10k</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://carnage.bungie.org/oniresforum/onires.archive.pl?read=107" target="_blank">https://web.archive.org/web/*/http://carnage.bungie.org/oniresforum/onires.archive.pl?read=107</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://ghostintheshell.wikia.com/wiki/Operator" target="_blank">http://ghostintheshell.wikia.com/wiki/Operator</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Ghost_in_the_Shell" target="_blank">Ghost_in_the_Shell</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://ghostintheshell.fandom.com/wiki/Operator" target="_blank">https://ghostintheshell.fandom.com/wiki/Operator</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://www.mediawiki.org/wiki/Release_notes" target="_blank">https://www.mediawiki.org/wiki/Release_notes</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Iritscen/WikiFuture" target="_blank">User:Iritscen/WikiFuture</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[mw:Release_notes]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/New_BGI_Characters#BGI_Hammer" target="_blank">http://wiki.oni2.net/New_BGI_Characters#BGI_Hammer</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Samer" target="_blank">User:Samer</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[New_BGI_Characters#BGI_Hammer]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/New_BGI_Characters#BGI_Agents" target="_blank">http://wiki.oni2.net/New_BGI_Characters#BGI_Agents</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Samer" target="_blank">User:Samer</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[New_BGI_Characters#BGI_Agents]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/New_BGI_Characters#BGI_NinjaBot" target="_blank">http://wiki.oni2.net/New_BGI_Characters#BGI_NinjaBot</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Samer" target="_blank">User:Samer</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[New_BGI_Characters#BGI_NinjaBot]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/New_BGI_Characters#BGI_Heavy_Bot" target="_blank">http://wiki.oni2.net/New_BGI_Characters#BGI_Heavy_Bot</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Samer" target="_blank">User:Samer</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[New_BGI_Characters#BGI_Heavy_Bot]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/AE:BGI#Candidate" target="_blank">http://wiki.oni2.net/AE:BGI#Candidate</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Samer" target="_blank">User:Samer</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[AE:BGI#Candidate]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/Joint_Story" target="_blank">http://wiki.oni2.net/Joint_Story</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Samer" target="_blank">User:Samer</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[Joint_Story]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/AE:BGI#Executives" target="_blank">http://wiki.oni2.net/AE:BGI#Executives</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BGI_characters" target="_blank">BGI_characters</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[AE:BGI#Executives]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/AE:BGI#Candidate" target="_blank">http://wiki.oni2.net/AE:BGI#Candidate</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/BGI_characters" target="_blank">BGI_characters</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[AE:BGI#Candidate]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/Mod_Tool#Rendering" target="_blank">http://wiki.oni2.net/Mod_Tool#Rendering</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Mod_Tool" target="_blank">Talk:Mod_Tool</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[Mod_Tool#Rendering]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">file</td><td><a href="http://wiki.oni2.net/File:Intro_frame_0562.png" target="_blank">http://wiki.oni2.net/File:Intro_frame_0562.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Anime_and_manga" target="_blank">Talk:Anime_and_manga</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[File:Intro_frame_0562.png]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">file</td><td><a href="http://wiki.oni2.net/File:Intro_frame_0553.png" target="_blank">http://wiki.oni2.net/File:Intro_frame_0553.png</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Anime_and_manga" target="_blank">Talk:Anime_and_manga</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[File:Intro_frame_0553.png]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/XML:TXMP" target="_blank">http://wiki.oni2.net/XML:TXMP</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/XML_talk:TXMB" target="_blank">XML_talk:TXMB</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[XML:TXMP]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="http://wiki.oni2.net/Quotes/Weapons#ph_stream" target="_blank">http://wiki.oni2.net/Quotes/Weapons#ph_stream</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2_talk:The_Hasegawa_Journal" target="_blank">Oni2_talk:The_Hasegawa_Journal</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[Quotes/Weapons#ph_stream]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://usa.autodesk.com/adsk/servlet/pc/item?siteID=123112&id=22694909" target="_blank">http://usa.autodesk.com/adsk/servlet/pc/item?siteID=123112&id=22694909</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Wishlist" target="_blank">Restless_Souls/Wishlist</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.autodesk.com/" target="_blank">https://www.autodesk.com/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://blenderartists.org/forum/showthread.php?208794-Can-we-toggle-between-face-edge-vert-select-modes-with-hotkeys&s=b38da8b5a0b20011e8850462988d8e3c&p=1990947&viewfull=1#post1990947" target="_blank">https://blenderartists.org/forum/showthread.php?208794-Can-we-toggle-between-face-edge-vert-select-modes-with-hotkeys&s=b38da8b5a0b20011e8850462988d8e3c&p=1990947&viewfull=1#post1990947</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Blender" target="_blank">Blender</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://blenderartists.org/t/can-we-toggle-between-face-edge-vert-select-modes-with-hotkeys/498635" target="_blank">https://blenderartists.org/t/can-we-toggle-between-face-edge-vert-select-modes-with-hotkeys/498635</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="https://docs.blender.org/manual/en/dev/modeling/meshes/editing/faces.html" target="_blank">https://docs.blender.org/manual/en/dev/modeling/meshes/editing/faces.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Blender" target="_blank">Blender</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20190422232539/https://docs.blender.org/manual/en/dev/modeling/meshes/editing/faces.html" target="_blank">http://web.archive.org/web/20190422232539/https://docs.blender.org/manual/en/dev/modeling/meshes/editing/faces.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://www.unrealengine.com/marketplace/female-movement-animset-pro" target="_blank">https://www.unrealengine.com/marketplace/female-movement-animset-pro</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:KatiaVersusKonokoFront.png" target="_blank">File:KatiaVersusKonokoFront.png</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro" target="_blank">https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://www.unrealengine.com/marketplace/female-movement-animset-pro" target="_blank">https://www.unrealengine.com/marketplace/female-movement-animset-pro</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Geyser/CharacterTutorialMakeHumanToUE4" target="_blank">User:Geyser/CharacterTutorialMakeHumanToUE4</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro" target="_blank">https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://docs.unrealengine.com/en-us/Engine/Animation/AnimHowTo/LayerEditing" target="_blank">https://docs.unrealengine.com/en-us/Engine/Animation/AnimHowTo/LayerEditing</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/UnrealOni/Tutorials" target="_blank">UnrealOni/Tutorials</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.unrealengine.com/en-US/Engine/Animation/AnimHowTo/LayerEditing/index.html" target="_blank">https://docs.unrealengine.com/en-US/Engine/Animation/AnimHowTo/LayerEditing/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://en.wikipedia.org/wiki/Oni_(video_game)" target="_blank">https://en.wikipedia.org/wiki/Oni_(video_game)</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OniGalore:Community_portal" target="_blank">OniGalore:Community_portal</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Oni_(video_game)]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://en.wikipedia.org/wiki/Slovak_declension" target="_blank">https://en.wikipedia.org/wiki/Slovak_declension</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Slovak_Oni_game_manual" target="_blank">Slovak_Oni_game_manual</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Slovak_declension]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://docs.microsoft.com/en-us/windows/desktop/sysinfo/structure-of-the-registry" target="_blank">https://docs.microsoft.com/en-us/windows/desktop/sysinfo/structure-of-the-registry</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Windows_Shell_Extension" target="_blank">Talk:Windows_Shell_Extension</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://docs.microsoft.com/en-us/windows/win32/sysinfo/structure-of-the-registry" target="_blank">https://docs.microsoft.com/en-us/windows/win32/sysinfo/structure-of-the-registry</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://cl.ly/3f3r2b2S0x0A370T3g06" target="_blank">https://web.archive.org/web/*/http://cl.ly/3f3r2b2S0x0A370T3g06</a></td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">EI</td><td align="right">page</td><td><a href="https://wiki.oni2.net/Special:ListFiles?limit=500&ilsearch=Fallen" target="_blank">https://wiki.oni2.net/Special:ListFiles?limit=500&ilsearch=Fallen</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:Fallen_Enemies.jpg" target="_blank">File:Fallen_Enemies.jpg</a></td></tr>
 <tr><td colspan="2" align="right">Just use</td><td>[[Special:ListFiles?limit=500&ilsearch=Fallen]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">EI</td><td align="right">file</td><td><a href="https://wiki.oni2.net/File:Art_for_E3_Banner_-_Konoko_puts_an_Elite_Striker_through_a_window.jpg" target="_blank">https://wiki.oni2.net/File:Art_for_E3_Banner_-_Konoko_puts_an_Elite_Striker_through_a_window.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Paradox-01/Colors" target="_blank">User:Paradox-01/Colors</a></td></tr>
-<tr><td colspan="2" align="right">Just use</td><td>[[File:Art_for_E3_Banner_-_Konoko_puts_an_Elite_Striker_through_a_window.jpg]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (500)</td><td align="right">page</td><td><a href="http://www.alhexx.com/releases/games/oni.html" target="_blank">http://www.alhexx.com/releases/games/oni.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Category:Modding_tools" target="_blank">Category:Modding_tools</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20101130143740/http://www.alhexx.com/releases/games/oni.html" target="_blank">http://web.archive.org/web/20101130143740/http://www.alhexx.com/releases/games/oni.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www23.brinkster.com/onichars/Downloads/files/" target="_blank">http://www23.brinkster.com/onichars/Downloads/files/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Category:Modding_tools" target="_blank">Category:Modding_tools</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20071116050049/http://www23.brinkster.com/onichars/Downloads/files/" target="_blank">http://web.archive.org/web/20071116050049/http://www23.brinkster.com/onichars/Downloads/files/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://en.wikipedia.org/wiki/Selous_Game_Reserve" target="_blank">https://en.wikipedia.org/wiki/Selous_Game_Reserve</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/Summary" target="_blank">Talk:Restless_Souls/Summary</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Selous_Game_Reserve]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://en.wikipedia.org/wiki/Persecution_of_people_with_albinism" target="_blank">https://en.wikipedia.org/wiki/Persecution_of_people_with_albinism</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Caged_Birds" target="_blank">Oni2:Caged_Birds</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Persecution_of_people_with_albinism]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://tcrf.net" target="_blank">https://tcrf.net</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni_2_(Angel_Studios)/Running" target="_blank">Oni_2_(Angel_Studios)/Running</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://tcrf.net/The_Cutting_Room_Floor" target="_blank">https://tcrf.net/The_Cutting_Room_Floor</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (530)</td><td align="right">page</td><td><a href="http://www.lifeslittlemysteries.com/2649-bone-eating-zombie-worms-strange-snapshots.html" target="_blank">http://www.lifeslittlemysteries.com/2649-bone-eating-zombie-worms-strange-snapshots.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20130329151717/http://www.lifeslittlemysteries.com/2649-bone-eating-zombie-worms-strange-snapshots.html?" target="_blank">http://web.archive.org/web/20130329151717/http://www.lifeslittlemysteries.com/2649-bone-eating-zombie-worms-strange-snapshots.html?</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (503)</td><td align="right">page</td><td><a href="http://www.grindtv.com/outdoor/nature/post/alien-like-creature-is-a-feeding-brydes-whale/" target="_blank">http://www.grindtv.com/outdoor/nature/post/alien-like-creature-is-a-feeding-brydes-whale/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20140905185006/http://www.grindtv.com/outdoor/nature/post/alien-like-creature-is-a-feeding-brydes-whale/" target="_blank">http://web.archive.org/web/20140905185006/http://www.grindtv.com/outdoor/nature/post/alien-like-creature-is-a-feeding-brydes-whale/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://24.media.tumblr.com/2ba3cf9b5711d7c9ff550e8ad7e579a5/tumblr_mis93qKMwM1s3yrubo1_1280.jpg" target="_blank">http://24.media.tumblr.com/2ba3cf9b5711d7c9ff550e8ad7e579a5/tumblr_mis93qKMwM1s3yrubo1_1280.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://64.media.tumblr.com/2ba3cf9b5711d7c9ff550e8ad7e579a5/tumblr_mis93qKMwM1s3yrubo1_1280.jpg" target="_blank">https://64.media.tumblr.com/2ba3cf9b5711d7c9ff550e8ad7e579a5/tumblr_mis93qKMwM1s3yrubo1_1280.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://25.media.tumblr.com/8b8273434501f8e80c1b40f45e847f74/tumblr_mk2o3hbVxJ1s3yrubo1_1280.jpg" target="_blank">http://25.media.tumblr.com/8b8273434501f8e80c1b40f45e847f74/tumblr_mk2o3hbVxJ1s3yrubo1_1280.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://64.media.tumblr.com/8b8273434501f8e80c1b40f45e847f74/tumblr_mk2o3hbVxJ1s3yrubo1_1280.jpg" target="_blank">https://64.media.tumblr.com/8b8273434501f8e80c1b40f45e847f74/tumblr_mk2o3hbVxJ1s3yrubo1_1280.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://24.media.tumblr.com/a20370b212c1ec4bbe3a08d02a26e4ef/tumblr_mlsc8eVAm51s3yrubo1_1280.jpg" target="_blank">http://24.media.tumblr.com/a20370b212c1ec4bbe3a08d02a26e4ef/tumblr_mlsc8eVAm51s3yrubo1_1280.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://64.media.tumblr.com/a20370b212c1ec4bbe3a08d02a26e4ef/tumblr_mlsc8eVAm51s3yrubo1_1280.jpg" target="_blank">https://64.media.tumblr.com/a20370b212c1ec4bbe3a08d02a26e4ef/tumblr_mlsc8eVAm51s3yrubo1_1280.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.futurity.org/science-technology/robo-squirrel-flags-snakes-with-infrared-tail/" target="_blank">http://www.futurity.org/science-technology/robo-squirrel-flags-snakes-with-infrared-tail/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.futurity.org/robo-squirrel-flags-snakes-with-infrared-tail/" target="_blank">https://www.futurity.org/robo-squirrel-flags-snakes-with-infrared-tail/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://24.media.tumblr.com/3e8ed38fbb46c34148a7516c1e3a8b42/tumblr_mgxo8qk4iO1s3yrubo1_r1_1280.jpg" target="_blank">http://24.media.tumblr.com/3e8ed38fbb46c34148a7516c1e3a8b42/tumblr_mgxo8qk4iO1s3yrubo1_r1_1280.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://64.media.tumblr.com/3e8ed38fbb46c34148a7516c1e3a8b42/tumblr_mgxo8qk4iO1s3yrubo1_r1_1280.jpg" target="_blank">https://64.media.tumblr.com/3e8ed38fbb46c34148a7516c1e3a8b42/tumblr_mgxo8qk4iO1s3yrubo1_r1_1280.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (503)</td><td align="right">page</td><td><a href="http://www.grindtv.com/wildlife/rare-photo-shows-crow-riding-atop-a-flying-bald-eagle" target="_blank">http://www.grindtv.com/wildlife/rare-photo-shows-crow-riding-atop-a-flying-bald-eagle</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20171031060501/http://www.grindtv.com/wildlife/rare-photo-shows-crow-riding-atop-a-flying-bald-eagle/" target="_blank">http://web.archive.org/web/20171031060501/http://www.grindtv.com/wildlife/rare-photo-shows-crow-riding-atop-a-flying-bald-eagle/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://arstechnica.com/science/2016/12/researchers-use-radar-to-track-3-5-trillion-insects-migrating-over-england/" target="_blank">http://arstechnica.com/science/2016/12/researchers-use-radar-to-track-3-5-trillion-insects-migrating-over-england/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://arstechnica.com:443/science/2016/12/researchers-use-radar-to-track-3-5-trillion-insects-migrating-over-england/" target="_blank">https://arstechnica.com:443/science/2016/12/researchers-use-radar-to-track-3-5-trillion-insects-migrating-over-england/</a></td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="https://www.nationalgeographic.com/news/2012/11/121102-korean-speaking-elephant-talk-human-science-weird-animals/" target="_blank">https://www.nationalgeographic.com/news/2012/11/121102-korean-speaking-elephant-talk-human-science-weird-animals/</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
 <tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://www.nationalgeographic.com/news/2012/11/121102-korean-speaking-elephant-talk-human-science-weird-animals/" target="_blank">https://web.archive.org/web/*/https://www.nationalgeographic.com/news/2012/11/121102-korean-speaking-elephant-talk-human-science-weird-animals/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.today.com/video/today/49579010#49579010" target="_blank">http://www.today.com/video/today/49579010#49579010</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.today.com/video/today/49579010" target="_blank">https://www.today.com/video/today/49579010</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://digitaljournal.com/article/319493" target="_blank">http://digitaljournal.com/article/319493</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.digitaljournal.com/article/319493" target="_blank">http://www.digitaljournal.com/article/319493</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://news.google.co.uk/newspapers?id=m7caAAAAIBAJ&sjid=iUkEAAAAIBAJ&pg=576,1832140&dq=animal-suicide" target="_blank">http://news.google.co.uk/newspapers?id=m7caAAAAIBAJ&sjid=iUkEAAAAIBAJ&pg=576,1832140&dq=animal-suicide</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://news.google.co.uk/newspapers?id=m7caAAAAIBAJ&sjid=iUkEAAAAIBAJ&pg=576,1832140&dq=animal-suicide&hl=en" target="_blank">https://news.google.co.uk/newspapers?id=m7caAAAAIBAJ&sjid=iUkEAAAAIBAJ&pg=576,1832140&dq=animal-suicide&hl=en</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.mnn.com/earth-matters/animals/stories/are-bears-purposely-committing-suicide-to-protest-the-horror-of-bile-f" target="_blank">http://www.mnn.com/earth-matters/animals/stories/are-bears-purposely-committing-suicide-to-protest-the-horror-of-bile-f</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.treehugger.com:443/earth-matters/animals/stories/are-bears-purposely-committing-suicide-to-protest-the-horror-of-bile-f" target="_blank">https://www.treehugger.com:443/earth-matters/animals/stories/are-bears-purposely-committing-suicide-to-protest-the-horror-of-bile-f</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://blogs.discovermagazine.com/notrocketscience/2012/02/28/when-meeting-up-at-sea-bottlenose-dolphins-exchange-name-like-whistles/" target="_blank">http://blogs.discovermagazine.com/notrocketscience/2012/02/28/when-meeting-up-at-sea-bottlenose-dolphins-exchange-name-like-whistles/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://blogs.discovermagazine.com:443/notrocketscience/2012/02/28/when-meeting-up-at-sea-bottlenose-dolphins-exchange-name-like-whistles/" target="_blank">https://blogs.discovermagazine.com:443/notrocketscience/2012/02/28/when-meeting-up-at-sea-bottlenose-dolphins-exchange-name-like-whistles/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Kanzi" target="_blank">http://en.wikipedia.org/wiki/Kanzi</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Kanzi]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Cholla_the_painting_horse" target="_blank">http://en.wikipedia.org/wiki/Cholla_the_painting_horse</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Cholla_the_painting_horse]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Washoe_(chimpanzee)" target="_blank">http://en.wikipedia.org/wiki/Washoe_(chimpanzee)</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Washoe_(chimpanzee)]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Alex_(parrot)" target="_blank">http://en.wikipedia.org/wiki/Alex_(parrot)</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Alex_(parrot)]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/N'kisi" target="_blank">http://en.wikipedia.org/wiki/N'kisi</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:N'kisi]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Koko_(gorilla)" target="_blank">http://en.wikipedia.org/wiki/Koko_(gorilla)</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Koko_(gorilla)]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://today.msnbc.msn.com/id/21689083/ns/today-today_people/t/dolphins-save-surfer-becoming-sharks-bait/#.UIcnbYbUzt0" target="_blank">http://today.msnbc.msn.com/id/21689083/ns/today-today_people/t/dolphins-save-surfer-becoming-sharks-bait/#.UIcnbYbUzt0</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.msn.com/" target="_blank">http://www.msn.com/</a></td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://channel.nationalgeographic.com/wild/caught-in-the-act/videos/stoffel-dont-give-a/" target="_blank">http://channel.nationalgeographic.com/wild/caught-in-the-act/videos/stoffel-dont-give-a/</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
 <tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.nationalgeographic.com/tv/" target="_blank">https://www.nationalgeographic.com/tv/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (530)</td><td align="right">page</td><td><a href="http://www.myhealthnewsdaily.com/1966-personality-traits-affect-smell.html" target="_blank">http://www.myhealthnewsdaily.com/1966-personality-traits-affect-smell.html</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20130213134105/http://www.myhealthnewsdaily.com/1966-personality-traits-affect-smell.html" target="_blank">http://web.archive.org/web/20130213134105/http://www.myhealthnewsdaily.com/1966-personality-traits-affect-smell.html</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.guardian.co.uk/science/2008/dec/04/smell-fear-research-pheromone" target="_blank">http://www.guardian.co.uk/science/2008/dec/04/smell-fear-research-pheromone</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://www.theguardian.com/science/2008/dec/04/smell-fear-research-pheromone" target="_blank">http://www.theguardian.com/science/2008/dec/04/smell-fear-research-pheromone</a></td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="https://commonfund.nih.gov/hmp/" target="_blank">https://commonfund.nih.gov/hmp/</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20200117232033/http://commonfund.nih.gov/Hmp/" target="_blank">http://web.archive.org/web/20200117232033/http://commonfund.nih.gov/Hmp/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">file</td><td><a href="http://25.media.tumblr.com/3608367d74544df070a5a8c3acf2d4af/tumblr_mt2f1cXXY81s3yrubo1_r1_1280.jpg" target="_blank">http://25.media.tumblr.com/3608367d74544df070a5a8c3acf2d4af/tumblr_mt2f1cXXY81s3yrubo1_r1_1280.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology" target="_blank">Oni2:Slaves_of_War/Neo-Biology</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://64.media.tumblr.com/3608367d74544df070a5a8c3acf2d4af/tumblr_mt2f1cXXY81s3yrubo1_r1_1280.jpg" target="_blank">https://64.media.tumblr.com/3608367d74544df070a5a8c3acf2d4af/tumblr_mt2f1cXXY81s3yrubo1_r1_1280.jpg</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20200813045337/http://commonfund.nih.gov/hmp" target="_blank">http://web.archive.org/web/20200813045337/http://commonfund.nih.gov/hmp</a></td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="https://www.turnerconstruction.com/experience/project/12AC/charlotte-douglas-international-airport-daily-parking-deck" target="_blank">https://www.turnerconstruction.com/experience/project/12AC/charlotte-douglas-international-airport-daily-parking-deck</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
@@ -1706,16 +113,7 @@
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
 <tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20150131031730/http://theworldofenvy.com/hotels/the-peninsula-hong-kong" target="_blank">http://web.archive.org/web/20150131031730/http://theworldofenvy.com/hotels/the-peninsula-hong-kong</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.contemporan.com/company/sketch-3/" target="_blank">http://www.contemporan.com/company/sketch-3/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://contemporan.com/company/sketch-3/" target="_blank">http://contemporan.com/company/sketch-3/</a></td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="http://www.strangebuildings.com/solar-furnace-odeillo-france/" target="_blank">http://www.strangebuildings.com/solar-furnace-odeillo-france/</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
 <tr><td colspan="2" align="right">Server suggests</td><td><a href="https://strangebuildings.com/solar-furnace-odeillo-france/" target="_blank">https://strangebuildings.com/solar-furnace-odeillo-france/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">file</td><td><a href="http://en.wikipedia.org/wiki/File:Tokyo_sky_tree.jpg" target="_blank">http://en.wikipedia.org/wiki/File:Tokyo_sky_tree.jpg</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:File:Tokyo_sky_tree.jpg]]</td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://en.wikipedia.org/wiki/Stockwell_Garage" target="_blank">https://en.wikipedia.org/wiki/Stockwell_Garage</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Stockwell_Garage]]</td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://www.travelandleisure.com/thingtodo/nature/mels-hole" target="_blank">http://www.travelandleisure.com/thingtodo/nature/mels-hole</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
@@ -1810,5 +208,5 @@
 <tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://www.chinasolarcity.cn/Html/dezhou/index.html" target="_blank">http://www.chinasolarcity.cn/Html/dezhou/index.html</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20120812052257/http://www.chinasolarcity.cn/Html/dezhou/index.html" target="_blank">http://web.archive.org/web/20120812052257/http://www.chinasolarcity.cn/Html/dezhou/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://www.chinasolarcity.cn/Html/dezhou/index.html" target="_blank">https://web.archive.org/web/*/http://www.chinasolarcity.cn/Html/dezhou/index.html</a></td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="http://en.wikipedia.org/wiki/Sky_City_1000" target="_blank">http://en.wikipedia.org/wiki/Sky_City_1000</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
@@ -1853,13 +251,10 @@
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Story" target="_blank">Oni2:Slaves_of_War/Story</a></td></tr>
 <tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.envisioningtech.com/envisioning2012/" target="_blank">https://www.envisioningtech.com/envisioning2012/</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (301)</td><td align="right">page</td><td><a href="https://www.handwerksblatt.de/unternehmensfuhrung/eu-zwingt-hersteller-ersatzteile-zu-liefern" target="_blank">https://www.handwerksblatt.de/unternehmensfuhrung/eu-zwingt-hersteller-ersatzteile-zu-liefern</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Paradox-01/brain_dump" target="_blank">User:Paradox-01/brain_dump</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.handwerksblatt.de/betriebsfuehrung/eu-zwingt-hersteller-ersatzteile-zu-liefern" target="_blank">https://www.handwerksblatt.de/betriebsfuehrung/eu-zwingt-hersteller-ersatzteile-zu-liefern</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://www.handelsblatt.com/politik/international/rohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert/22794738.html?ticket=ST-225376-Fa3A1GfurE11JdPrOnyX-ap6" target="_blank">https://www.handelsblatt.com/politik/international/rohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert/22794738.html?ticket=ST-225376-Fa3A1GfurE11JdPrOnyX-ap6</a></td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://www.handelsblatt.com/politik/international/rohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert/22794738.html" target="_blank">https://www.handelsblatt.com/politik/international/rohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert/22794738.html</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Paradox-01/brain_dump" target="_blank">User:Paradox-01/brain_dump</a></td></tr>
 <tr><td colspan="2" align="right">Server suggests</td><td><a href="https://id.handelsblatt.com/login?service=https%3A%2F%2Fwww.handelsblatt.com%2Fpolitik%2Finternational%2Frohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert%2F22794738.html&gateway=true" target="_blank">https://id.handelsblatt.com/login?service=https%3A%2F%2Fwww.handelsblatt.com%2Fpolitik%2Finternational%2Frohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert%2F22794738.html&gateway=true</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="https://3dbrute.com/homunculus-loxodontus/" target="_blank">https://3dbrute.com/homunculus-loxodontus/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2_talk:Truth_Number_Zero/Course_Of_Events" target="_blank">Oni2_talk:Truth_Number_Zero/Course_Of_Events</a></td></tr>
-<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://3dbrute.com/homunculus-loxodontus/" target="_blank">https://web.archive.org/web/*/https://3dbrute.com/homunculus-loxodontus/</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="https://www.spektrum.de/news/weitere-resistenz-gegen-hiv/340309" target="_blank">https://www.spektrum.de/news/weitere-resistenz-gegen-hiv/340309</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Paradox-01/brain_dump" target="_blank">User:Paradox-01/brain_dump</a></td></tr>
+<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20190717161550/https://www.spektrum.de/news/weitere-resistenz-gegen-hiv/340309" target="_blank">http://web.archive.org/web/20190717161550/https://www.spektrum.de/news/weitere-resistenz-gegen-hiv/340309</a></td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://ssg.oni2.net/oni_%7B%7B%7Btype%7D%7D%7D.htm" target="_blank">http://ssg.oni2.net/oni_%7B%7B%7Btype%7D%7D%7D.htm</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Template:OBD_OBJC_Header" target="_blank">Template:OBD_OBJC_Header</a></td></tr>
@@ -1871,7 +266,4 @@
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Summary" target="_blank">Restless_Souls/Summary</a></td></tr>
 <tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.cfr.org/backgrounder/demographics-us-military" target="_blank">https://www.cfr.org/backgrounder/demographics-us-military</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">IW</td><td align="right">page</td><td><a href="https://en.wikipedia.org/wiki/Concern_(business)" target="_blank">https://en.wikipedia.org/wiki/Concern_(business)</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Restless_Souls/Summary" target="_blank">Restless_Souls/Summary</a></td></tr>
-<tr><td colspan="2" align="right">You can use</td><td>[[wp:Concern_(business)]]</td></tr><tr><td>&nbsp;</td></tr>
 <tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://ssg.oni2.net/oni_mele.htm" target="_blank">http://ssg.oni2.net/oni_mele.htm</a></td></tr>
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OBD:BINA/OBJC/MELE" target="_blank">OBD:BINA/OBJC/MELE</a></td></tr>
@@ -1880,33 +272,47 @@
 <tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/OBD:BINA/OBJC/CHAR" target="_blank">OBD:BINA/OBJC/CHAR</a></td></tr>
 <tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://ssg.oni2.net/oni_char.htm" target="_blank">https://web.archive.org/web/*/http://ssg.oni2.net/oni_char.htm</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="http://photoshare.ru/user/karasevarchi/" target="_blank">http://photoshare.ru/user/karasevarchi/</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/File:NoGlass_Import_Test_1.jpg" target="_blank">File:NoGlass_Import_Test_1.jpg</a></td></tr>
-<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20130601222919/http://photoshare.ru/user/karasevarchi" target="_blank">http://web.archive.org/web/20130601222919/http://photoshare.ru/user/karasevarchi</a></td></tr><tr><td>&nbsp;</td></tr>
-<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="http://www.archive.org" target="_blank">http://www.archive.org</a></td></tr>
-<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Validate_External_Links" target="_blank">Validate_External_Links</a></td></tr>
-<tr><td colspan="2" align="right">Server suggests</td><td><a href="http://archive.org/index.php" target="_blank">http://archive.org/index.php</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">NG (000-28)</td><td align="right">page</td><td><a href="https://www.supercars.net/blog/1947-rolls-royce-phantom-iii-labourdette-vutotal-cabriolet/" target="_blank">https://www.supercars.net/blog/1947-rolls-royce-phantom-iii-labourdette-vutotal-cabriolet/</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:AVATARA" target="_blank">Oni2:AVATARA</a></td></tr>
+<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://www.supercars.net/blog/1947-rolls-royce-phantom-iii-labourdette-vutotal-cabriolet/" target="_blank">https://web.archive.org/web/*/https://www.supercars.net/blog/1947-rolls-royce-phantom-iii-labourdette-vutotal-cabriolet/</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">NG (500)</td><td align="right">page</td><td><a href="http://photoshare.ru/album64678.html" target="_blank">http://photoshare.ru/album64678.html</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/New_levels" target="_blank">New_levels</a></td></tr>
+<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20110915075204/http://www.photoshare.ru/album64678.html" target="_blank">http://web.archive.org/web/20110915075204/http://www.photoshare.ru/album64678.html</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="https://www.ue4community.wiki/Category:Tutorials" target="_blank">https://www.ue4community.wiki/Category:Tutorials</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Talk:Restless_Souls/Wishlist" target="_blank">Talk:Restless_Souls/Wishlist</a></td></tr>
+<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/https://www.ue4community.wiki/Category:Tutorials" target="_blank">https://web.archive.org/web/*/https://www.ue4community.wiki/Category:Tutorials</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro" target="_blank">https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/User:Geyser/CharacterTutorialMakeHumanToUE4" target="_blank">User:Geyser/CharacterTutorialMakeHumanToUE4</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://www.unrealengine.com/marketplace/en-US/product/female-movement-animset-pro" target="_blank">https://www.unrealengine.com/marketplace/en-US/product/female-movement-animset-pro</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://iritscen.oni2.net/wiki/Vadell" target="_blank">http://iritscen.oni2.net/wiki/Vadell</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Music/Ingame" target="_blank">Music/Ingame</a></td></tr>
+<tr><td colspan="2" align="right">Try browsing</td><td><a href="https://web.archive.org/web/*/http://iritscen.oni2.net/wiki/Vadell" target="_blank">https://web.archive.org/web/*/http://iritscen.oni2.net/wiki/Vadell</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">NG (404)</td><td align="right">page</td><td><a href="http://contemporan.com/company/sketch-3/" target="_blank">http://contemporan.com/company/sketch-3/</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Oni2:Slaves_of_War/Settings" target="_blank">Oni2:Slaves_of_War/Settings</a></td></tr>
+<tr><td colspan="2" align="right">IA suggests</td><td><a href="http://web.archive.org/web/20171216103914/http://www.contemporan.com/company/sketch-3/" target="_blank">http://web.archive.org/web/20171216103914/http://www.contemporan.com/company/sketch-3/</a></td></tr><tr><td>&nbsp;</td></tr>
+<tr><td style="white-space:nowrap">RD (302)</td><td align="right">page</td><td><a href="https://javadl.oracle.com/webapps/download/AutoDL?BundleId=78825" target="_blank">https://javadl.oracle.com/webapps/download/AutoDL?BundleId=78825</a></td></tr>
+<tr><td colspan="2" align="right">linked from</td><td><a href="https://wiki.oni2.net/Playing_in_Linux" target="_blank">Playing_in_Linux</a></td></tr>
+<tr><td colspan="2" align="right">Server suggests</td><td><a href="https://sdlc-esd.oracle.com/ESD6/JSCDL/jdk/7u25-b16/jre-7u25-windows-i586.exe?GroupName=JSC&FilePath=/ESD6/JSCDL/jdk/7u25-b16/jre-7u25-windows-i586.exe&BHost=javadl.sun.com&File=jre-7u25-windows-i586.exe&AuthParam=1598462647_efb59755f896fc791ff84d1608fb2c72&ext=.exe" target="_blank">https://sdlc-esd.oracle.com/ESD6/JSCDL/jdk/7u25-b16/jre-7u25-windows-i586.exe?GroupName=JSC&FilePath=/ESD6/JSCDL/jdk/7u25-b16/jre-7u25-windows-i586.exe&BHost=javadl.sun.com&File=jre-7u25-windows-i586.exe&AuthParam=1598462647_efb59755f896fc791ff84d1608fb2c72&ext=.exe</a></td></tr><tr><td>&nbsp;</td></tr>
 </table><br /><br />
-<h3><span id="summary">Summary (25 min. 29 sec. elapsed)</span></h3>
-I finished processing 3468 of 3468 links (there were 842 file links and 2466 page links).<br />
-3468 processed links:<br />
-- 10 links could not be processed<br />
-- 150 Archive.org links were not checked<br />
-- 624 processed links had issues<br />
-&nbsp;&nbsp;(excepted 5 links from report)<br />
-- 2684 processed links were OK<br />
-&nbsp;&nbsp;(counted 709 trivial redirections as OK)<br />
-5 links excepted (see RTF or TXT report for specific links):<br />
-- 4/238 NG links<br />
-- 1/35 external internal links<br />
-10 link errors (see RTF or TXT report for specific links):<br />
+<h3><span id="summary">Summary (20 min. 20 sec. elapsed)</span></h3>
+I finished processing 3164 of 3164 links (there were 702 file links and 2244 page links).<br />
+3164 processed links:<br />
+- 8 links could not be processed<br />
+- 210 Archive.org links were not checked<br />
+- 92 processed links had issues<br />
+&nbsp;&nbsp;(excepted 11 links from report)<br />
+- 2854 processed links were OK<br />
+&nbsp;&nbsp;(counted 677 trivial redirections as OK)<br />
+11 links excepted (see RTF or TXT report for specific links):<br />
+- 9/43 NG links<br />
+- 1/2 external internal links<br />
+- 1/7 potential intrawiki links<br />
+8 link errors (see RTF or TXT report for specific links):<br />
 - 2 missing/unknown namespaces<br />
 - 6 links on JavaScript pages<br />
-- 1 illegal URL<br />
-- 1 unknown URL suffix<br />
-624 link issues:<br />
-- 238 NG links<br />
-- 294 redirections<br />
-- 35 links that could be intrawiki<br />
-- 57 links that could be interwiki<br />
+92 link issues:<br />
+- 43 NG links<br />
+- 40 redirections<br />
+- 2 links that could be intrawiki<br />
+- 7 links that could be interwiki<br />
 ValExtLinks says goodbye.<br />
 </body>
Index: Validate External Links/Sample files/ValExtLinks report.txt
===================================================================
--- Validate External Links/Sample files/ValExtLinks report.txt	(revision 1138)
+++ Validate External Links/Sample files/ValExtLinks report.txt	(revision 1139)
@@ -1,24 +1,35 @@
 Validate External Links report
-generated Mon, 20 Jul 2020 13:00:20 GMT
-from data of Mon, 20 Jul 2020 06:20:01 GMT
-script by Iritscen (contact: https://wiki.oni2.net/User:Iritscen)
+generated Wed, 26 Aug 2020 16:43:45 GMT
+from data of Wed, 26 Aug 2020 14:20:01 GMT
+script by Iritscen (contact: http://iritscen.oni2.net)
+
+Startup:
+Downloading list of external links from https://wiki.oni2.net/w/extlinks.csv... success.
+Downloading list of reporting exceptions from https://wiki.oni2.net/Validate_External_Links/Exceptions... success.
+Found 3164 links to process.
 
 Config:
-Downloading list of external links from https://wiki.oni2.net/w/extlinks.csv.
-Downloading list of reporting exceptions from https://wiki.oni2.net/Validate_External_Links/Exceptions.
-Found 3468 links to process. I will be considering all of them.
-I will be checking the response code of each link but will not take a screenshot of each page. Pages that are OK will not be logged. I will ask the Internet Archive for a suggested snapshot URL for each NG page. I will not report links that are in the exceptions list. I will ignore URLs that simply have ending slashes added onto them. I will ignore URLs that only upgrade from HTTP to HTTPS. I will ignore youtu.be links that are merely being expanded. I will not check the validity of Internet Archive snapshot URLs.
+Links to consider: 3164
+Site query timeout: 20 seconds
+Show OK links: No
+Take screenshots: No
+Suggest Archive.org snapshots: Yes
+Ignore slash-adding redirects: Yes
+Ignore HTTPS-upgrading redirects: Yes
+Ignore youtu.be redirects: Yes
+Check archive.org links: No
 A summary of my findings will be found at the bottom of the report.
 
 Legend:
-OK = URL seems to be working.
-NG = URL no longer seems to work. You should click each URL marked as NG before attempting to fix it, because false negatives will occur from time to time due to hiccups in the Internet. Please report any persistent false negatives or other issues to the script's author (see top of report). An NG link should be followed by a link to the Internet Archive's Wayback Machine which may help you repair the link, unless the Archive does not have any snapshots of the site. If the link cannot be repaired, you can delete it from the wiki page, or, if this would disrupt the surrounding material on the page, disable the link by wrapping the URL in nowiki tags.
-RD = The server responding to this URL is saying that the page moved and you should instead use the supplied new URL. Some RD links represent minor adjustments in the organization of a web site, and some are soft 404s (the file/page has been removed and you are being redirected to something like the main page of the web site). You will have to look at the new URL yourself to determine if it represents an OK link and the link on the wiki should be updated to this one, or if the desired file/page is actually gone and we need to replace the wiki link with an Internet Archive snapshot link -- or disable the URL if it has not been archived.
-EI = URL is an external link to an internal page and should be converted to an intrawiki link using the suggested markup.
-IW = URL is an external link to a fellow wiki and should be converted to an interwiki link using the suggested markup.
-(xxx) = Unix tool 'curl' obtained this HTTP response status code (see here for code reference: http://iritscen.oni2.net/val/http_codes.txt).
-(000-xx) = 'curl' did not get an HTTP response code, but returned this exit code (see here for code reference: http://iritscen.oni2.net/val/curl_codes.txt).
-IA suggests = Last available snapshot suggested by the Internet Archive.
-Try browsing = The Archive occasionally fails to return a snapshot URL even when one exists, so you will need to check for a snapshot manually using this link to the Wayback Machine before concluding that a site has not been archived.
+(For guidance in fixing these links, see https://wiki.oni2.net/Validate_External_Links.)
+OK = URL seems to be working
+NG = URL no longer seems to work
+RD = URL is redirecting to this new URL
+EI = URL is an external link to an internal page and should be converted to an intrawiki link using the suggested markup
+IW = URL is an external link to a fellow wiki and should be converted to an interwiki link using the suggested markup
+(xxx) = Unix tool 'curl' obtained this HTTP response status code (see here for code reference: https://wiki.oni2.net/Validate_External_Links/HTTP_codes)
+(000-xx) = 'curl' did not get an HTTP response code, but returned this exit code (see here for code reference: https://wiki.oni2.net/Validate_External_Links/Curl_codes)
+IA suggests = Last available snapshot returned by the Internet Archive
+Try browsing = The Archive failed to return a snapshot URL, so check for a snapshot manually using this link
 
 Links:
@@ -103,6 +114,4 @@
 Skipping URL 'https://web.archive.org/web/20130310151925/http://www.pbs.org/wnet/religionandethics/week622/hedges.html' (found on page 'Geyser/Test2') because I have been asked not to check Wayback Machine links.
 
-Skipping URL 'http://ssg.oni2.net/oni_{{{onistuff}}}.htm' (found on page 'OBD_BINA_Header') because it contains characters illegal in a URL.
-
 Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/285129' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/285129'.
 
@@ -255,5 +264,5 @@
 Skipping URL 'http://www.imdb.com/title/tt0055774/' (found on page 'Barabas') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.imdb.com/title/tt0055774/'.
 
-Skipping URL 'http://wiki.oni2.net/w/images/1/10/Separator.png'' on line 470 because it was found on JavaScript page 'Common.js'.
+Skipping URL 'http://wiki.oni2.net/w/images/1/10/Separator.png'' on line 468 because it was found on JavaScript page 'Common.js'.
 
 Skipping URL 'http://wiki.oni2.net/w/index.php?title=Special:PrefixIndex&prefix=Divstyle&namespace=10' (found on page 'Divbox') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/index.php?title=Special:PrefixIndex&prefix=Divstyle&namespace=10'.
@@ -359,4 +368,6 @@
 Skipping URL 'http://web.archive.org/web/20081101053908/http://www.polykarbon.com/gallery/superpoly.htm' (found on page 'Purple_hair_etc') because I have been asked not to check Wayback Machine links.
 
+Skipping URL 'http://web.archive.org/web/20130313152232/http://www.applegeeks.com/gallery/index.php?galleryID=12' (found on page 'Purple_hair_etc') because I have been asked not to check Wayback Machine links.
+
 Skipping URL 'http://undergroundracer57.deviantart.com/art/Matrix-Mai-9243433' (found on page 'Purple_hair_etc') because I have not been asked to show http->https upgrades, and I was redirected to 'https://undergroundracer57.deviantart.com/art/Matrix-Mai-9243433'.
 
@@ -465,50 +476,14 @@
 Skipping URL 'http://www.youtube.com/watch?v=YLZ2hJZvrmo&fmt=6' (found on page 'Trailers') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=YLZ2hJZvrmo&fmt=6'.
 
-NG (404) page http://www.allgame.com/game.php?id=19306&tab=review
-  linked from https://wiki.oni2.net/Reviews
-  IA suggests http://web.archive.org/web/20141114133937/http://www.allgame.com/game.php?id=19306
-
-Skipping URL 'http://dl.dropbox.com/u/139715/OniGalore/talk/simple_hex_model_walk_test.wmv' (found on page 'TRBS') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/OniGalore/talk/simple_hex_model_walk_test.wmv'.
+Skipping URL 'http://web.archive.org/web/20141115004950/http://www.allgame.com/game.php?id=24182&tab=review' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.youtube.com/watch?v=YLZ2hJZvrmo' (found on page 'Bobbysoon') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=YLZ2hJZvrmo'.
 
-IW       page http://en.wiktionary.org/wiki/code_cave
-  linked from https://wiki.oni2.net/Talk:Oni_engine_patches_(Mac_PPC)
-  You can use [[wikt:code_cave]]
-
 Skipping URL 'http://web.archive.org/web/20000817095745/www.bungie.com/btv/archive/' (found on page 'Ssg') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://bahamutrex.deviantart.com/art/konoko-16338459' (found on page 'Konoko_by_bahamutrex.jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://bahamutrex.deviantart.com/art/konoko-16338459'.
 
-RD (301) page http://oni.bungie.org/community/forum/attachment.php?item=209
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive1
-  Server suggests http://oni.bungie.org/forum/attachment.php?item=209
-
 Skipping URL 'http://web.archive.org/web/20020221045402/http://www.fgnonline.com/pc/news/17352.html' (found on page 'Oni') because I have been asked not to check Wayback Machine links.
 
-IW       page http://www.mediawiki.org/
-  linked from https://wiki.oni2.net/OniGalore:About
-  You can use [[mw:]]
-
-IW       page http://wikimediafoundation.org/wiki/Privacy_policy
-  linked from https://wiki.oni2.net/OniGalore:Privacy_policy
-  You can use [[wikimedia:Privacy_policy]]
-
-NG (404) file http://www.paradox.oni2.net/temp/case1.zip
-  linked from https://wiki.oni2.net/OBD_talk:TXMP
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/temp/case1.zip
-
-NG (404) file http://www.paradox.oni2.net/temp/case3.zip
-  linked from https://wiki.oni2.net/OBD_talk:TXMP
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/temp/case3.zip
-
-IW       page https://de.wikipedia.org/wiki/Spermidin#Vorkommen_in_Nahrungsmitteln
-  linked from https://wiki.oni2.net/User:Paradox-01/brain_dump
-  You can use [[wp:Spermidin#Vorkommen_in_Nahrungsmitteln]]
-
-IW       page https://de.wikipedia.org/wiki/Bill_Gates#Bill_&_Melinda_Gates_Foundation
-  linked from https://wiki.oni2.net/User:Paradox-01/brain_dump
-  You can use [[wp:Bill_Gates#Bill_&_Melinda_Gates_Foundation]]
-
 Skipping URL 'http://www.youtube.com/watch?v=jrpOCqwW3Rw' (found on page 'Heavy_weapons') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=jrpOCqwW3Rw'.
 
@@ -533,8 +508,4 @@
 Skipping URL 'http://66reddog.deviantart.com/art/ChibiOni-Konoko-and-Muro-72503743' (found on page 'ChibiOni_Konoko_and_Muro_by_66reddog.png') because I have not been asked to show http->https upgrades, and I was redirected to 'https://66reddog.deviantart.com/art/ChibiOni-Konoko-and-Muro-72503743'.
 
-RD (301) page http://oni.bungie.org/community/forum/
-  linked from https://wiki.oni2.net/File:ChibiOni_Konoko_and_Muro_by_66reddog.png
-  Server suggests http://oni.bungie.org/forum/
-
 Skipping URL 'http://66reddog.deviantart.com/art/Oniscketch-Sinatama-and-Barabu-75143926' (found on page 'Onisketch_Shinatama_and_Barabas_by_66reddog.png') because I have not been asked to show http->https upgrades, and I was redirected to 'https://66reddog.deviantart.com/art/Oniscketch-Sinatama-and-Barabu-75143926'.
 
@@ -545,16 +516,8 @@
 Skipping URL 'http://genian.deviantart.com/art/not-cr0ss-th3-lin3-26103116' (found on page 'Not_cr0ss_th3_lin3_by_genian.jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://genian.deviantart.com/art/not-cr0ss-th3-lin3-26103116'.
 
-RD (301) page http://www.go-mono.com/mono-downloads/download.html
-  linked from https://wiki.oni2.net/OniSplit
-  Server suggests https://www.mono-project.com/download/
-
 Skipping URL 'http://genian.deviantart.com/art/konoko-strik3s-b4ck-25087699' (found on page 'Konoko_strik3s_b4ck_by_genian.jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://genian.deviantart.com/art/konoko-strik3s-b4ck-25087699'.
 
 Skipping URL 'http://undergroundracer57.deviantart.com/art/Matrix-Mai-9243433' (found on page 'Matrix_Mai.jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://undergroundracer57.deviantart.com/art/Matrix-Mai-9243433'.
 
-NG (000-28) page http://homepage.ntlworld.com/jane.sampson1/oni/
-  linked from https://wiki.oni2.net/File:Linework_oni_1600.jpg
- Try browsing https://web.archive.org/web/*/http://homepage.ntlworld.com/jane.sampson1/oni/
-
 Skipping URL 'http://mbjvx.deviantart.com/art/Konoko-21136818' (found on page 'Konoko_by_mbjvx.jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://mbjvx.deviantart.com/art/Konoko-21136818'.
 
@@ -563,12 +526,4 @@
 Skipping URL 'http://mbjvx.deviantart.com/art/Oni-2-21187666' (found on page 'Oni_2_by_mbjvx.jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://mbjvx.deviantart.com/art/Oni-2-21187666'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=188
-  linked from https://wiki.oni2.net/File:Welcome_to_Oni_bar.jpg
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=188
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=193
-  linked from https://wiki.oni2.net/File:Merry.jpg
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=193
-
 Skipping URL 'http://winterknight.deviantart.com/art/Heroine-Addict-62777499' (found on page 'Heroine_Addict_by_winterknight.jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://winterknight.deviantart.com/art/Heroine-Addict-62777499'.
 
@@ -577,60 +532,12 @@
 Skipping URL 'http://agent-elrond.deviantart.com/' (found on page 'ArofaTamahn_-_That_thing_has_too_many_HP.jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://agent-elrond.deviantart.com/'.
 
-RD (302) page https://collada.org/public_forum/viewtopic.php?p=3457
-  linked from https://wiki.oni2.net/Talk:OME
-  Server suggests https://forums.khronos.org/301.php?action=post&oldid=3457
-
 Skipping URL 'http://sourceforge.net/projects/colladaloader/' (found on page 'OME') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sourceforge.net/projects/colladaloader/'.
 
-RD (301) page http://softimage.com/downloads/XSI_Mod_Tool/default.aspx
-  linked from https://wiki.oni2.net/Talk:OME
-  Server suggests https://www.autodesk.com/softimage
-
 Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/356026' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/356026'.
 
-RD (301) page http://beta.slashdot.org/story/50267
-  linked from https://wiki.oni2.net/Oni
-  Server suggests https://slashdot.org/
-
-RD (302) page http://www.manuelbastioni.com/index.php
-  linked from https://wiki.oni2.net/Talk:Restless_Souls/Wishlist
-  Server suggests http://www.manuelbastioni.com/index.html
-
-RD (301) page http://oni.bungie.org/community/forum/viewforum.php?id=12
-  linked from https://wiki.oni2.net/Anniversary_Edition
-  Server suggests http://oni.bungie.org/forum/viewforum.php?id=12
-
-EI       page http://wiki.oni2.net/User:Iritscen/vector.js
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Archive1
-  Just use [[User:Iritscen/vector.js]]
-
-EI       page http://wiki.oni2.net/User_talk:Iritscen/Archive2#AI_self-healing
-  linked from https://wiki.oni2.net/BSL_talk:Functions
-  Just use [[User_talk:Iritscen/Archive2#AI_self-healing]]
-
-EI       page http://wiki.oni2.net/OniSplit#CLI_tips
-  linked from https://wiki.oni2.net/Talk:OniSplit
-  Just use [[OniSplit#CLI_tips]]
-
-EI       page http://wiki.oni2.net/OBD:BINA/OBJC/CHAR
-  linked from https://wiki.oni2.net/Adding_spawnable_characters
-  Just use [[OBD:BINA/OBJC/CHAR]]
-
 Skipping URL 'http://www.n-tv.de/913309.html' (found on page 'Heavy_weapons') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.n-tv.de/913309.html'.
 
 Skipping URL 'http://www.youtube.com/watch?v=4OqlTXwLG40' (found on page 'Heavy_weapons') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=4OqlTXwLG40'.
 
-RD (301) page http://www.animestocks.com/gallery/category/Full+Metal+Panic!+TSR/Melissa+Mao
-  linked from https://wiki.oni2.net/Anime_and_manga
-  Server suggests http://animestocks.com/gallery/category/Full+Metal+Panic!+TSR/Melissa+Mao
-
-EI       page http://wiki.oni2.net/OBD_talk:TRAC
-  linked from https://wiki.oni2.net/Talk:Importing_character_models
-  Just use [[OBD_talk:TRAC]]
-
-NG (000-6) page http://www.kyoto.zaq.ne.jp/mibu/eng/pages/plays/tales.html#Anchor-Ogre-43793
-  linked from https://wiki.oni2.net/Oni_(myth)
-  IA suggests http://web.archive.org/web/20090814100526/http://www.kyoto.zaq.ne.jp/mibu/eng/pages/plays/tales.html
-
 Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/308701' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/308701'.
 
@@ -639,35 +546,13 @@
 Skipping URL 'http://www.stopforumspam.com/forum/f1-General-Discussion' (found on page 'War_on_spam') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.stopforumspam.com/forum/f1-General-Discussion'.
 
-NG (404) file http://svn.oni2.net/Vago/trunk/Vago/bgImageWizard/bgimagepagefinal.cpp
-  linked from https://wiki.oni2.net/XML_talk:TXMB
- Try browsing https://web.archive.org/web/*/http://svn.oni2.net/Vago/trunk/Vago/bgImageWizard/bgimagepagefinal.cpp
-
 Skipping URL 'http://stackoverflow.com/questions/28831765/pass-command-line-to-first-instance-of-a-single-instance-app' (found on page 'Visual_Basic_.NET') because I have not been asked to show http->https upgrades, and I was redirected to 'https://stackoverflow.com/questions/28831765/pass-command-line-to-first-instance-of-a-single-instance-app'.
 
-RD (302) page https://docs.unrealengine.com/latest/INT/Engine/LevelStreaming/HowTo/
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://docs.unrealengine.com/en-US/Engine/LevelStreaming/HowTo/index.html
-
-IW       page http://en.wikipedia.org/wiki/Pandora
-  linked from https://wiki.oni2.net/Hope
-  You can use [[wp:Pandora]]
-
 Skipping URL 'http://www.physics.hku.hk/~tboyce/ss/topics/prometheus.html' (found on page 'Hope') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.physics.hku.hk/~tboyce/ss/topics/prometheus.html'.
 
-NG (000-6) page http://www.haibane.de/oni/overview.htm
-  linked from https://wiki.oni2.net/Oni2_talk:Hikari
- Try browsing https://web.archive.org/web/*/http://www.haibane.de/oni/overview.htm
-
-RD (302) page http://www.bungie.net/en-us/AboutUs#page=games&game=10127
-  linked from https://wiki.oni2.net/Konoko
-  Server suggests https://www.bungie.net/en-us/AboutUs
-
 Skipping URL 'http://www.youtube.com/watch?v=nmMgyUzR4T8' (found on page 'Crescent_Moon_Kick') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=nmMgyUzR4T8'.
 
 Skipping URL 'http://www.cherryblossom-garden.com/1/aiko4.html' (found on page 'Trivia') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.cherryblossom-garden.com/1/aiko4.html'.
 
-RD (302) page https://docs.unrealengine.com/latest/INT/Videos/PLZlv_N0_O1ga0IoRrpI4xkX4qmCrhGu56/index.html
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://docs.unrealengine.com/en-US/Videos/PLZlv_N0_O1ga0IoRrpI4xkX4qmCrhGu56/index.html
+Skipping URL 'https://youtu.be/cxTz30YOPhc' (found on page 'List_of_built-in_commands') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=cxTz30YOPhc&feature=youtu.be'.
 
 Skipping URL 'http://shadowoni.deviantart.com/' (found on page 'Leader_of_the_Pack.jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://shadowoni.deviantart.com/'.
@@ -677,8 +562,4 @@
 Skipping URL 'http://www.spc.int/coastfish/news/BDM/19/BDM_19.pdf' (found on page 'Trivia') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.spc.int/coastfish/news/BDM/19/BDM_19.pdf'.
 
-NG (000-28) page http://www.vor.ru/Exclusive/excl_next8884_eng.html
-  linked from https://wiki.oni2.net/Talk:Trivia
- Try browsing https://web.archive.org/web/*/http://www.vor.ru/Exclusive/excl_next8884_eng.html
-
 Skipping URL 'http://www.imdb.com/title/tt0228493/fullcredits' (found on page 'Trivia') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.imdb.com/title/tt0228493/fullcredits'.
 
@@ -689,8 +570,4 @@
 Skipping URL 'http://www.freedict.com/onldict/jap.html' (found on page 'Konoko') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.freedict.com/onldict/jap.html'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=37252#p37252
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=37252
-
 Skipping URL 'http://www.youtube.com/watch?v=9kJF7HSJl04' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=9kJF7HSJl04'.
 
@@ -699,18 +576,6 @@
 Skipping URL 'http://www.sasugabooks.com/product_info.php?products_id=30417' (found on page 'Trivia') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.sasugabooks.com/product_info.php?products_id=30417'.
 
-NG (404) file http://geyser.oni2.net/OSL/IGMD/Airport/airport_level_logic.bsl
-  linked from https://wiki.oni2.net/Oni_(folder)/GameDataFolder/IGMD/Airport
- Try browsing https://web.archive.org/web/*/http://geyser.oni2.net/OSL/IGMD/Airport/airport_level_logic.bsl
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=177
-  linked from https://wiki.oni2.net/Crescent_Moon_Kick
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=177
-
 Skipping URL 'http://www.youtube.com/watch?v=rV1j0q63KFg' (found on page 'Crescent_Moon_Kick') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=rV1j0q63KFg'.
 
-RD (301) page http://babelfish.altavista.com/
-  linked from https://wiki.oni2.net/Talk:Trivia
-  Server suggests https://www.yahoo.com/
-
 Skipping URL 'http://www.imdb.com/name/nm0619958/' (found on page 'Trivia') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.imdb.com/name/nm0619958/'.
 
@@ -721,8 +586,4 @@
 Skipping URL 'http://www.heise.de/tp/r4/artikel/24/24859/1.html' (found on page 'Paradox-01/brain_dump') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.heise.de/tp/r4/artikel/24/24859/1.html'.
 
-RD (301) page http://www.merkur.de/2007_51_Bluehende_Ozeane.25382.0.html?&no_cache=1
-  linked from https://wiki.oni2.net/User:Paradox-01/brain_dump
-  Server suggests http://www.merkur.de/welt/
-
 Skipping URL 'https://youtu.be/CkzguNxjGEs' (found on page 'BINA/OBJC/CMBT') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=CkzguNxjGEs&feature=youtu.be'.
 
@@ -739,61 +600,13 @@
 Skipping URL 'http://web.archive.org/web/20090109135349/http://www.3dactionplanet.com/features/articles/heroines/' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=39787#p39787
-  linked from https://wiki.oni2.net/XML:TRAM
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=39787
-
 Skipping URL 'http://youtube.com/watch?v=SltOy_F6ZII' (found on page 'Paradox-01/brain_dump') because I have not been asked to show http->https upgrades, and I was redirected to 'https://youtube.com/watch?v=SltOy_F6ZII'.
 
-NG (503) page https://www.animenewsnetwork.com/encyclopedia/anime.php?id=42
-  linked from https://wiki.oni2.net/File:Windows_(CN)_collector's_edition_-_contents.png
-  IA suggests http://web.archive.org/web/20200401141542/https://www.animenewsnetwork.com/encyclopedia/anime.php?id=42
-
 Skipping URL 'http://kotaku.com/bungie-s-cult-classic-oni-almost-had-a-sequel-1789693658' (found on page 'Oni_2_(Angel_Studios)') because I have not been asked to show http->https upgrades, and I was redirected to 'https://kotaku.com/bungie-s-cult-classic-oni-almost-had-a-sequel-1789693658'.
 
 Skipping URL 'http://en.wikipedia.org/w/index.php?title=Special:Search&profile=advanced&search=vector.js&fulltext=Search&ns2=1&profile=advanced' (found on page 'About') because I have not been asked to show http->https upgrades, and I was redirected to 'https://en.wikipedia.org/w/index.php?title=Special:Search&profile=advanced&search=vector.js&fulltext=Search&ns2=1&profile=advanced'.
 
-RD (301) page http://www.phantagram.com/
-  linked from https://wiki.oni2.net/Strident
-  Server suggests https://www.phantagram.com:443/
-
-NG (404) page http://news.teamxbox.com/xbox/3113/Strident-Trailer/
-  linked from https://wiki.oni2.net/Strident
-  IA suggests http://web.archive.org/web/20080404000113/http://news.teamxbox.com/xbox/3113/Strident-Trailer/
-
-NG (404) page http://previews.teamxbox.com/xbox/218/Strident/p1/
-  linked from https://wiki.oni2.net/Strident
-  IA suggests http://web.archive.org/web/20061124060457/http://previews.teamxbox.com/xbox/218/Strident/p1/
-
-NG (404) page http://screenshots.teamxbox.com/gallery/253/Strident/p1/
-  linked from https://wiki.oni2.net/Strident
-  IA suggests http://web.archive.org/web/20090303194229/http://screenshots.teamxbox.com/gallery/253/Strident/p1/
-
-NG (404) page http://xboxmovies.teamxbox.com/xbox/194/Strident-trailer/
-  linked from https://wiki.oni2.net/Strident
-  IA suggests http://web.archive.org/web/20061123223101/http://xboxmovies.teamxbox.com/xbox/194/Strident-trailer/
-
-RD (302) page http://xbox.ign.com/articles/098/098046p1.html
-  linked from https://wiki.oni2.net/Strident
-  Server suggests https://www.ign.com/xbox
-
-RD (302) page http://xbox.ign.com/articles/137/137000p1.html
-  linked from https://wiki.oni2.net/Strident
-  Server suggests https://www.ign.com/xbox
-
-NG (000-6) page http://media.xbox.ign.com/media/017/017000/imgs_1.html
-  linked from https://wiki.oni2.net/Strident
-  IA suggests http://web.archive.org/web/20080103093615/http://media.xbox.ign.com/media/017/017000/imgs_1.html
-
-NG (000-6) page http://media.xbox.ign.com/media/017/017000/vids_1.html
-  linked from https://wiki.oni2.net/Strident
-  IA suggests http://web.archive.org/web/20050315145423/http://media.xbox.ign.com/media/017/017000/vids_1.html
-
-NG (000-28) page http://www.gamenavigator.ru/files/file1214.html
-  linked from https://wiki.oni2.net/Strident
-  IA suggests http://web.archive.org/web/20041019021128/http://gamenavigator.ru/files/file1214.html
-
-NG (000-28) page http://gp.gamenavigator.ru/gallery/screenshots/1786/4956/
-  linked from https://wiki.oni2.net/Strident
- Try browsing https://web.archive.org/web/*/http://gp.gamenavigator.ru/gallery/screenshots/1786/4956/
+Skipping URL 'https://web.archive.org/web/20050418125243/http://xbox.ign.com/articles/098/098046p1.html' (found on page 'Strident') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20061124060457/http://previews.teamxbox.com/xbox/218/Strident/p1/' (found on page 'Strident') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.youtube.com/watch?v=CrruSboN1bQ' (found on page 'Syndicate_Wars') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=CrruSboN1bQ'.
@@ -809,30 +622,6 @@
 Skipping URL 'http://www.rottentomatoes.com/g/playstation/syndicate_wars/images.php' (found on page 'Syndicate_Wars') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.rottentomatoes.com/g/playstation/syndicate_wars/images.php'.
 
-NG (404) page http://www.psxseeker.com/screens/synwars.html
-  linked from https://wiki.oni2.net/Syndicate_Wars
-  IA suggests http://web.archive.org/web/20041107152220/http://psxseeker.com/screens/synwars.html
-
-RD (301) file http://www.comicbookresources.com/images/previews/games/bone/big/Bone_RatCreature1.jpg
-  linked from https://wiki.oni2.net/File:DAZ3D_BeoQuad_concept_2.jpg
-  Server suggests https://www.cbr.com/wordpress/scripts/wp_redirect.php?uri=images/previews/games/bone/big/Bone_RatCreature1.jpg
-
-RD (301) file http://www.comicbookresources.com/images/previews/games/bone/big/Bone_RatCreature1.jpg
-  linked from https://wiki.oni2.net/File:DAZ3D_BeoQuad_concept_1.jpg
-  Server suggests https://www.cbr.com/wordpress/scripts/wp_redirect.php?uri=images/previews/games/bone/big/Bone_RatCreature1.jpg
-
 Skipping URL 'http://www.metacritic.com/game/pc/oni' (found on page 'Oni') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.metacritic.com/game/pc/oni'.
 
-RD (301) file http://oniusb.googlepages.com/Daodan.7z
-  linked from https://wiki.oni2.net/User_talk:RossyMiles
-  Server suggests http://sites.google.com/site/oniusb/Daodan.7z
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2619
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2619
-
-IW       page http://de.wikipedia.org/wiki/Polypedilum_vanderplanki
-  linked from https://wiki.oni2.net/Talk:Restless_Souls/Technology
-  You can use [[wp:Polypedilum_vanderplanki]]
-
 Skipping URL 'http://wiki.oni2.net/w/index.php?title=Special:Search&redirs=1&search=vector.css&fulltext=Search&ns2=1&title=Special:Search&advanced=1&fulltext=Advanced+search' (found on page 'About') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/index.php?title=Special:Search&redirs=1&search=vector.css&fulltext=Search&ns2=1&title=Special:Search&advanced=1&fulltext=Advanced+search'.
 
@@ -851,155 +640,27 @@
 Skipping URL 'http://www.blender.org/' (found on page 'Importing_character_models') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.blender.org/'.
 
-RD (307) page https://www.allegorithmic.com/products/substance-designer
-  linked from https://wiki.oni2.net/Fuse
-  Server suggests https://www.substance3d.com/products/substance-designer
-
-IW       page https://en.wikipedia.org/wiki/Aerogel
-  linked from https://wiki.oni2.net/Restless_Souls/Fragments
-  You can use [[wp:Aerogel]]
-
 Skipping URL 'https://web.archive.org/web/20130520191527/http://cs.fit.edu/~wds/classes/graphics/PTOC/ptoc/' (found on page 'Graphics') because I have been asked not to check Wayback Machine links.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=9274#p9274
-  linked from https://wiki.oni2.net/OBD_talk:ONGS
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=9274
-
-EI       file http://wiki.oni2.net/File:Button_base.png
-  linked from https://wiki.oni2.net/MediaWiki:Common.js/edit
-  Just use [[File:Button_base.png]]
-
 Skipping URL 'http://geyser.oni2.net/edition/celshading' (found on page 'Importing_character_models') because I have not been asked to show added trailing slashes, and I was redirected to 'http://geyser.oni2.net/edition/celshading/'.
 
-NG (404) file http://paradox.oni2.net/Bilder/blocked_attacks_on_51percent_overpower_plus_daodan-flag_plus_supershield.png
-  linked from https://wiki.oni2.net/OBD:ONCC
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/Bilder/blocked_attacks_on_51percent_overpower_plus_daodan-flag_plus_supershield.png
-
-NG (404) file http://edt.oni2.net/3D/ONCCk4_K.zip
-  linked from https://wiki.oni2.net/User_talk:EdT/Archive1
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/3D/ONCCk4_K.zip
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=2856#p2856
-  linked from https://wiki.oni2.net/User_talk:EdT/Archive1
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=2856
-
-EI       page http://wiki.oni2.net/OBD_talk:TRAC
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
-  Just use [[OBD_talk:TRAC]]
-
 Skipping URL 'http://geyser.oni2.net/EXE/pc.east' (found on page 'EdT/Archive1') because I have not been asked to show added trailing slashes, and I was redirected to 'http://geyser.oni2.net/EXE/pc.east/'.
 
-NG (404) file http://www.paradox.oni2.net/mods/mac_shapeshift_test.zip
-  linked from https://wiki.oni2.net/User_talk:EdT/Archive1
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/mods/mac_shapeshift_test.zip
-
 Skipping URL 'http://www.swo.com' (found on page 'Geyser/STFUn00b') because I have not been asked to show added trailing slashes, and I was redirected to 'https://www.swo.com/'.
 
 Skipping URL 'http://www.1999.co.jp/dbimages/user/hobby/itbig/10051368a.jpg' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.1999.co.jp/dbimages/user/hobby/itbig/10051368a.jpg'.
 
-NG (000-6) file http://images.forum-auto.com/mesimages/264800/D8_120S_Pourtout_Aero_1937_9.jpg
-  linked from https://wiki.oni2.net/Oni2:AVATARA
- Try browsing https://web.archive.org/web/*/http://images.forum-auto.com/mesimages/264800/D8_120S_Pourtout_Aero_1937_9.jpg
-
-RD (302) page http://www.supercars.net/Pics?vpf2=y&gID=1&fID=0&tID=153655&mID=1144990&l=a
-  linked from https://wiki.oni2.net/Oni2:AVATARA
-  Server suggests http://www.supercars.net/blog/gallery-home/
-
-RD (302) page http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=3308317&l=d
-  linked from https://wiki.oni2.net/Oni2:AVATARA
-  Server suggests http://www.supercars.net/blog/gallery-home/
-
-RD (302) page http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=1144990&l=d
-  linked from https://wiki.oni2.net/Oni2:AVATARA
-  Server suggests http://www.supercars.net/blog/gallery-home/
-
-RD (302) page http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=1144990&l=c
-  linked from https://wiki.oni2.net/Oni2:AVATARA
-  Server suggests https://www.supercars.net/blog/gallery-home/
-
 Skipping URL 'http://www.carbodydesign.com/archive/2008/02/13-morgan-lifecar-concept-preview/' (found on page 'AVATARA') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.carbodydesign.com/archive/2008/02/13-morgan-lifecar-concept-preview/'.
 
-RD (301) page http://oniusb.googlepages.com/
-  linked from https://wiki.oni2.net/User:RossyMiles
-  Server suggests http://sites.google.com/site/oniusb/
-
 Skipping URL 'http://phys.org/news/2015-10-team-hacks-off-the-shelf-d-printer.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2015-10-team-hacks-off-the-shelf-d-printer.html'.
 
 Skipping URL 'http://phys.org/news/2015-07-hacking-food-chain-silicon-valley.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2015-07-hacking-food-chain-silicon-valley.html'.
 
-Skipping URL 'http://www.gamedev.net/reference/programming/features/welzlminsphere/default.asp' (found on page 'PNTA') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.gamedev.net/reference/programming/features/welzlminsphere/default.asp'.
-
-NG (403) page http://msdn.microsoft.com/en-us/library/bb189722.aspx
-  linked from https://wiki.oni2.net/OBD:PSpc
-  IA suggests http://web.archive.org/web/20090504113621/http://msdn.microsoft.com/en-us/library/bb189722.aspx
-
-NG (404) file http://sfeli.oni2.net/daodan/current.zip
-  linked from https://wiki.oni2.net/Daodan_DLL
- Try browsing https://web.archive.org/web/*/http://sfeli.oni2.net/daodan/current.zip
-
 Skipping URL 'http://youtube.com/watch?v=iU4T1Qpu-8U' (found on page 'Easter_eggs') because I have not been asked to show http->https upgrades, and I was redirected to 'https://youtube.com/watch?v=iU4T1Qpu-8U'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=508
-  linked from https://wiki.oni2.net/AE_talk:OTA
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=508
-
-IW       page http://www.mediawiki.org/wiki/Extension:ConfirmAccount
-  linked from https://wiki.oni2.net/Talk:War_on_spam
-  You can use [[mw:Extension:ConfirmAccount]]
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2438
-  linked from https://wiki.oni2.net/BGI_characters
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2438
-
 Skipping URL 'http://www.youtube.com/watch?v=zcY9yGTJ0zY' (found on page 'Mukade') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=zcY9yGTJ0zY'.
 
-RD (301) page http://www.macupdate.com/info.php/id/22750/0xed
-  linked from https://wiki.oni2.net/Talk:Importing_character_models
-  Server suggests https://www.macupdate.com/app/mac/22750
-
-NG (404) page http://www.arte.tv/de/wissen-entdeckung/1630892.html
-  linked from https://wiki.oni2.net/Talk:Restless_Souls/BC2
- Try browsing https://web.archive.org/web/*/http://www.arte.tv/de/wissen-entdeckung/1630892.html
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2423
-  linked from https://wiki.oni2.net/Talk:Importing_character_models
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2423
-
-NG (404) page http://oni.bungie.org/forums/index.php?threadid=9&page=19#post_3410
-  linked from https://wiki.oni2.net/Talk:Restless_Souls/BC2
-  IA suggests http://web.archive.org/web/20090511071025/http://oni.bungie.org/forums/index.php?threadid=9
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=273#p273
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=273
-
-NG (000-28) file http://www.thenewyorkerstore.com/assets/1/120401_m.gif
-  linked from https://wiki.oni2.net/File_talk:Bureaucat.jpg
- Try browsing https://web.archive.org/web/*/http://www.thenewyorkerstore.com/assets/1/120401_m.gif
-
-Skipping URL 'http://wiki.oni2.net/w/images/e/ec/Button_base.png' (found on page 'Common.js/edit') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/images/e/ec/Button_base.png'.
-
-Skipping URL 'http://dl.getdropbox.com/u/60508/FloatingDots.BINA' (found on page 'Paradox-01/Project_Imago') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.getdropbox.com/u/60508/FloatingDots.BINA'.
-
-IW       page http://en.wikipedia.org/wiki/Virus#Genetic_change
-  linked from https://wiki.oni2.net/BioCrisis
-  You can use [[wp:Virus#Genetic_change]]
-
-Skipping URL 'http://dl.getdropbox.com/u/60508/BarabusPowerups.rar' (found on page 'Paradox-01/Project_Imago') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.getdropbox.com/u/60508/BarabusPowerups.rar'.
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=35562#p35562
-  linked from https://wiki.oni2.net/Konoko
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=35562
-
 Skipping URL 'http://www.imdb.com/name/nm0000881/' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.imdb.com/name/nm0000881/'.
 
-Skipping URL 'http://www.turbosquid.com/3d-models/3d-laser-rifle/361983' (found on page 'Paradox-01/Project_Imago') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/3d-models/3d-laser-rifle/361983'.
-
-Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/221645' (found on page 'Paradox-01/Project_Imago') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/221645'.
-
-Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/180387' (found on page 'Paradox-01/Project_Imago') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/180387'.
-
-RD (301) page http://starwars.wikia.com/wiki/DXR-6_disruptor_rifle
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Project_Imago
-  Server suggests https://starwars.fandom.com/wiki/DXR-6_disruptor_rifle
+Skipping URL 'https://youtu.be/XqX5wh4YeRw?t=46' (found on page 'Blender') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=XqX5wh4YeRw&feature=youtu.be&t=46'.
 
 Skipping URL 'http://fraps.com' (found on page 'Capturing_game_footage') because I have not been asked to show added trailing slashes, and I was redirected to 'https://fraps.com/'.
@@ -1009,28 +670,8 @@
 Skipping URL 'http://www.perian.org' (found on page 'Capturing_game_footage') because I have not been asked to show added trailing slashes, and I was redirected to 'https://www.perian.org/'.
 
-RD (301) page https://www.businessinsider.de/nuclear-bomb-accident-goldsboro-nc-swamp-2017-5?r=US&IR=T
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
-  Server suggests https://www.businessinsider.com/nuclear-bomb-accident-goldsboro-nc-swamp-2017-5?r=DE&IR=T?r=US&IR=T
-
-Skipping URL 'http://www.speedtest.net' (found on page 'Zukai') because I have not been asked to show added trailing slashes, and I was redirected to 'https://www.speedtest.net/'.
-
 Skipping URL 'http://phys.org/news/2015-06-method-quantum-entanglement-vastly-photon.html' (found on page 'Restless_Souls/Summary') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2015-06-method-quantum-entanglement-vastly-photon.html'.
 
 Skipping URL 'http://www.shinywhitebox.com/' (found on page 'Capturing_game_footage') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.shinywhitebox.com/'.
 
-RD (302) page http://colladablender.illusoft.com/cms/content/blogcategory/18/44/
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
-  Server suggests https://www.hugedomains.com/domain_profile.cfm?d=illusoft&e=com
-
-NG (000-28) file http://www6.fh-eberswalde.de/user/dkriesch/onistuff/subfold/text/oni_bina_texture_materials.txt
-  linked from https://wiki.oni2.net/OBD:BINA/OBJC/TMBD
- Try browsing https://web.archive.org/web/*/http://www6.fh-eberswalde.de/user/dkriesch/onistuff/subfold/text/oni_bina_texture_materials.txt
-
-NG (000-6) page http://www.lsesnet.com/blog/?p=35
-  linked from https://wiki.oni2.net/User_talk:Iritscen/MainPageTest
- Try browsing https://web.archive.org/web/*/http://www.lsesnet.com/blog/?p=35
-
-Skipping URL 'http://www.theguardian.com/technology/2015/nov/05/robot-revolution-rise-machines-could-displace-third-of-uk-jobs' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.theguardian.com/technology/2015/nov/05/robot-revolution-rise-machines-could-displace-third-of-uk-jobs'.
-
 Skipping URL 'http://i.imgur.com/NGwIbni.jpg' (found on page 'Iritscen') because I have not been asked to show http->https upgrades, and I was redirected to 'https://i.imgur.com/NGwIbni.jpg'.
 
@@ -1049,30 +690,8 @@
 Skipping URL 'http://tvtropes.org/pmwiki/pmwiki.php/Main/LampshadeHanging' (found on page 'Shinatama') because I have not been asked to show http->https upgrades, and I was redirected to 'https://tvtropes.org/pmwiki/pmwiki.php/Main/LampshadeHanging'.
 
-NG (404) page http://karakuriya.com/english/doll/shinatama.htm
-  linked from https://wiki.oni2.net/Talk:Shinatama
-  IA suggests http://web.archive.org/web/20170816043624/http://karakuriya.com/english/doll/shinatama.htm
-
 Skipping URL 'http://www.imperioanime.com/karakuri-ningyo-munecas.html' (found on page 'Shinatama') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.imperioanime.com/karakuri-ningyo-munecas.html'.
 
-RD (302) page http://miksike.com/docs/elehed/4klass/4nuku/elutuba/marionetid/jaapani.htm
-  linked from https://wiki.oni2.net/Talk:Shinatama
-  Server suggests http://miksike.eu/docs/elehed/4klass/4nuku/elutuba/marionetid/jaapani.htm
-
-NG (404) page http://video.google.com/videoplay?docid=-3698181664223784657
-  linked from https://wiki.oni2.net/Talk:Shinatama
-  IA suggests http://web.archive.org/web/20110617050736/http://video.google.com/videoplay?docid=-3698181664223784657
-
 Skipping URL 'http://www.youtube.com/watch?v=RNPNluRIUBs' (found on page 'Shinatama') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=RNPNluRIUBs'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=19624#p19624
-  linked from https://wiki.oni2.net/BGI_characters
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=19624
-
-Skipping URL 'http://dl.dropbox.com/u/139715/temp/talk/TRAMKONCOMcomb_p_p.oni' (found on page 'Neo') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/temp/talk/TRAMKONCOMcomb_p_p.oni'.
-
-RD (301) page http://thefree3dmodels.com/stuff/characters/robot_warrior/14-1-0-1497
-  linked from https://wiki.oni2.net/BGI_characters
-  Server suggests https://free3d.com/redirect.php?ref=characters/robot_warrior/14-1-0-1497
-
 Skipping URL 'http://www.youtube.com/user/ONIrules7777' (found on page 'ONIrules') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/user/ONIrules7777'.
 
@@ -1083,46 +702,4 @@
 Skipping URL 'http://www.turbosquid.com/3d-models/3d-model-robot/262162' (found on page 'Iron_Demon') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/3d-models/3d-model-robot/262162'.
 
-NG (404) file http://geyser.oni2.net/edition/trailer/intro/oni_logo.png
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://geyser.oni2.net/edition/trailer/intro/oni_logo.png
-
-Skipping URL 'https://www.biorxiv.org/content/10.1101/2020.04.15.997254v1.full' (found on page 'Paradox-01/brain_dump') because I encountered the unknown URL ending 'full'. Please add this ending to the appropriate array in this script, HTTP_FILES or HTTP_TLDS_AND_PAGES.
-
-RD (302) page https://javadl.sun.com/webapps/download/AutoDL?BundleId=78825
-  linked from https://wiki.oni2.net/Playing_in_Linux
-  Server suggests https://javadl.oracle.com/webapps/download/AutoDL?BundleId=78825
-
-NG (404) file http://loser.oni2.net/Temporary/Doppelganger_Mukade-fight.wmv
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://loser.oni2.net/Temporary/Doppelganger_Mukade-fight.wmv
-
-NG (404) file http://loser.oni2.net/Temporary/Doppelganger_Mukade-Pure_AI2_pwnage.wmv
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://loser.oni2.net/Temporary/Doppelganger_Mukade-Pure_AI2_pwnage.wmv
-
-NG (404) file http://loser.oni2.net/Temporary/Dead_comrade_alarm.wmv
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://loser.oni2.net/Temporary/Dead_comrade_alarm.wmv
-
-NG (404) page http://www.pingtest.net/
-  linked from https://wiki.oni2.net/Zukai
-  IA suggests http://web.archive.org/web/20170410155819/http://www.pingtest.net/
-
-NG (404) file http://noneat.me/pdf/oni/ONI%20PC%20Manual%20GER.pdf
-  linked from https://wiki.oni2.net/User:Noneatme
- Try browsing https://web.archive.org/web/*/http://noneat.me/pdf/oni/ONI%20PC%20Manual%20GER.pdf
-
-NG (404) file http://edt.oni2.net/AE_Files/TinyMistake.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/TinyMistake.mov
-
-NG (404) file http://edt.oni2.net/AE_Files/weapon1_3.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/weapon1_3.mov
-
-NG (404) file http://edt.oni2.net/AE_Files/Allweapons1.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/Allweapons1.mov
-
 Skipping URL 'http://www.youtube.com/watch?v=hauhR29Cz4E' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=hauhR29Cz4E'.
 
@@ -1131,62 +708,18 @@
 Skipping URL 'http://www.youtube.com/watch?v=SOusNEMmxz4' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=SOusNEMmxz4'.
 
-NG (404) file http://geyser.oni2.net/edition/vehicles/delorean/TrailerDeLorean.zip
-  linked from https://wiki.oni2.net/AE:DeLorean
- Try browsing https://web.archive.org/web/*/http://geyser.oni2.net/edition/vehicles/delorean/TrailerDeLorean.zip
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=508
-  linked from https://wiki.oni2.net/AE:Trailer/Shapeshifting
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=508
-
 Skipping URL 'http://www.youtube.com/watch?v=rwF0FynUhgQ' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=rwF0FynUhgQ'.
 
 Skipping URL 'http://www.youtube.com/watch?v=Hqk8OlFsg7Y' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=Hqk8OlFsg7Y'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1727
-  linked from https://wiki.oni2.net/History_of_Oni_modding
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1727
-
 Skipping URL 'http://www.pochta.ru/download.php/?file=:trail.rar&host=ghk.nm.ru/flashcard&user=ghk&lng=ru' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.pochta.ru/download.php/?file=:trail.rar&host=ghk.nm.ru/flashcard&user=ghk&lng=ru'.
 
-NG (404) file http://edt.oni2.net/AE_Files/spartans1.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/spartans1.mov
-
 Skipping URL 'http://www.swo.com/disclaimer.shtml' (found on page 'Geyser/STFUn00b') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.swo.com/disclaimer.shtml'.
 
 Skipping URL 'https://youtu.be/3z0gnXgK8Do?t=535' (found on page 'Paradox-01/brain_dump') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=3z0gnXgK8Do&feature=youtu.be&t=535'.
 
-NG (404) file http://edt.oni2.net/AE_Files/AllChar.mov
-  linked from https://wiki.oni2.net/AE:Trailer/Shapeshifting
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/AllChar.mov
-
-NG (404) file http://edt.oni2.net/AE_Files/spartans2.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/spartans2.mov
-
-NG (404) file http://edt.oni2.net/AE_Files/spartans3.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/spartans3.mov
-
-NG (404) file http://edt.oni2.net/AE_Files/delorean.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/delorean.mov
-
 Skipping URL 'http://dl.getdropbox.com/u/139715/sniper_mode_(xvid).avi' (found on page 'Sniper_scope_and_prone_mode') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.getdropbox.com/u/139715/sniper_mode_(xvid).avi'.
 
 Skipping URL 'http://dl.getdropbox.com/u/139715/sniper_zoom_mode.avi' (found on page 'Sniper_scope_and_prone_mode') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.getdropbox.com/u/139715/sniper_zoom_mode.avi'.
 
-NG (404) file http://edt.oni2.net/AE_Files/KonokoRoof.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/KonokoRoof.mov
-
-NG (404) file http://www.paradox.oni2.net/AE_vid/sniper_mode_(xvid).avi
-  linked from https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/sniper_mode_(xvid).avi
-
-NG (404) file http://www.paradox.oni2.net/AE_vid/sniper_zoom_mode.avi
-  linked from https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/sniper_zoom_mode.avi
-
 Skipping URL 'http://www.youtube.com/watch?v=6GKAbX1BB9I' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=6GKAbX1BB9I'.
 
@@ -1195,60 +728,10 @@
 Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/271119' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/271119'.
 
-NG (404) file http://www.paradox.oni2.net/AE_vid/relocating_during_hostile_sniper_fire.avi
-  linked from https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/relocating_during_hostile_sniper_fire.avi
-
-NG (404) file http://www.paradox.oni2.net/AE_vid/two_more_zooms.avi
-  linked from https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/two_more_zooms.avi
-
-NG (404) file http://edt.oni2.net/AE_Files/steambo.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/steambo.mov
-
-NG (404) file http://edt.oni2.net/AE_Files/w27_arh.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/w27_arh.mov
-
 Skipping URL 'http://www.youtube.com/watch?v=9rErY_BwwLw' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=9rErY_BwwLw'.
 
-NG (404) file http://www.paradox.oni2.net/AE_vid/kneeling+sniping_Konoko.avi
-  linked from https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/kneeling+sniping_Konoko.avi
-
-NG (404) file http://www.paradox.oni2.net/AE_vid/relocating_Konoko.avi
-  linked from https://wiki.oni2.net/AE_talk:Sniper_scope_and_prone_mode
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/AE_vid/relocating_Konoko.avi
-
 Skipping URL 'https://youtu.be/QzZcmebn5L4' (found on page 'TRAC') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=QzZcmebn5L4&feature=youtu.be'.
 
 Skipping URL 'https://youtu.be/9elZeliNOYc' (found on page 'TRAC') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=9elZeliNOYc&feature=youtu.be'.
 
-NG (404) file http://edt.oni2.net/AE_Files/Barabus_Jet.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/Barabus_Jet.mov
-
-NG (404) file http://edt.oni2.net/AE_Files/Barabus_Jet2.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/Barabus_Jet2.mov
-
-NG (404) file http://edt.oni2.net/AE_Files/griffin_out.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/griffin_out.mov
-
-Skipping URL 'http://babbage.cs.qc.edu/IEEE-754/' (found on page 'TRAM') because I have not been asked to show http->https upgrades, and I was redirected to 'https://babbage.cs.qc.edu/IEEE-754/'.
-
-NG (404) file http://edt.oni2.net/AE_Files/3DLab1.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/3DLab1.mov
-
-NG (404) file http://edt.oni2.net/AE_Files/3DLab2.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/3DLab2.mov
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=10487#p10487
-  linked from https://wiki.oni2.net/User:Gumby
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=10487
-
 Skipping URL 'http://messenger.yahoo.com/' (found on page 'General_disclaimer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://messenger.yahoo.com/'.
 
@@ -1257,105 +740,25 @@
 Skipping URL 'http://www.apple.com/getamac/ads/' (found on page 'Geyser/STFUn00b') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.apple.com/getamac/ads/'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=9103#p9103
-  linked from https://wiki.oni2.net/User:Geyser/STFUn00b
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=9103
-
 Skipping URL 'http://www.turbosquid.com/3d-models/siva-spyder-ma/370243' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/3d-models/siva-spyder-ma/370243'.
 
-NG (404) file http://gumby.oni2.net/Videos/Big%20fat%20OTA%20vid.wmv
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://gumby.oni2.net/Videos/Big%20fat%20OTA%20vid.wmv
-
-NG (404) file http://edt.oni2.net/AE_Files/pillar.mov
-  linked from https://wiki.oni2.net/AE:Trailer
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/AE_Files/pillar.mov
-
 Skipping URL 'http://www.youtube.com/watch?v=HckmJHKyYl4&fmt=6' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=HckmJHKyYl4&fmt=6'.
 
-RD (301) page http://www.zbrushcentral.com/showthread.php?163445-Earthquake
-  linked from https://wiki.oni2.net/Oni2:Big/Earthquake
-  Server suggests http://archive.zbrushcentral.com/showthread.php?163445-Earthquake
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=9299#p9299
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=9299
-
-RD (301) page http://www.spieleforum.de/thema/159597-6.html#post1932780
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  Server suggests https://www.spieleforum.de/thema/159597-6.html
-
-IW       page http://en.wiktionary.org/wiki/%E6%9D%8E
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  You can use [[wikt:%E6%9D%8E]]
-
-IW       page http://en.wiktionary.org/wiki/%E6%BA%B6
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  You can use [[wikt:%E6%BA%B6]]
-
-IW       page http://en.wiktionary.org/wiki/%E9%8E%AE
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  You can use [[wikt:%E9%8E%AE]]
-
-IW       page http://en.wiktionary.org/wiki/%E6%B2%88
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  You can use [[wikt:%E6%B2%88]]
-
-IW       page http://en.wiktionary.org/wiki/%E7%9A%9A
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  You can use [[wikt:%E7%9A%9A]]
-
-IW       page http://en.wiktionary.org/wiki/%E7%80%9B
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  You can use [[wikt:%E7%80%9B]]
-
-IW       page http://en.wiktionary.org/wiki/%E6%9C%B1
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  You can use [[wikt:%E6%9C%B1]]
-
-IW       page http://en.wiktionary.org/wiki/%E4%BB%B2
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  You can use [[wikt:%E4%BB%B2]]
-
-IW       page http://en.wiktionary.org/wiki/%E8%8B%B1
-  linked from https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  You can use [[wikt:%E8%8B%B1]]
-
-EI       page https://wiki.oni2.net/MediaWiki:Wantedfiletext-cat-noforeign
-  linked from https://wiki.oni2.net/MediaWiki:Wantedfiletext-cat-noforeign
-  Just use [[MediaWiki:Wantedfiletext-cat-noforeign]]
+Skipping URL 'https://web.archive.org/web/20140907004224/http://www.ign.com/images/games/state-of-emergency-2-xbox-608771' (found on page 'State_of_Emergency') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'https://youtu.be/LxX5dbYGZow' (found on page 'AI') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=LxX5dbYGZow&feature=youtu.be'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=674
-  linked from https://wiki.oni2.net/Talk:Adding_spawnable_characters
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=674
-
-RD (302) page https://docs.unrealengine.com/latest/INT/BlueprintAPI/Utilities/Text/MakeTextfromStringTable_Advanced/
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://docs.unrealengine.com/en-US/BlueprintAPI/Utilities/Text/MakeTextfromStringTable_Advanced/index.html
-
-RD (302) page https://docs.unrealengine.com/latest/INT/BlueprintAPI/Utilities/Text/FindStringTableIDandKeyfromText/
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://docs.unrealengine.com/en-US/BlueprintAPI/Utilities/Text/FindStringTableIDandKeyfromText/index.html
-
-Skipping URL 'http://www.asus.com/' (found on page 'Oni_(folder)/readme.txt') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.asus.com/'.
-
 Skipping URL 'http://bioethicsbytes.wordpress.com/2008/06/30/epigenetics-the-ghost-in-your-genes/' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://bioethicsbytes.wordpress.com/2008/06/30/epigenetics-the-ghost-in-your-genes/'.
 
 Skipping URL 'http://i.imgur.com/xti8qZC.png' (found on page 'Iritscen') because I have not been asked to show http->https upgrades, and I was redirected to 'https://i.imgur.com/xti8qZC.png'.
 
-RD (301) page http://www.photoshare.ru/album64678.html
+Skipping URL 'http://www.turbosquid.com/3d-models/3dsmax-exhibition-building/345449' (found on page 'New_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/3d-models/3dsmax-exhibition-building/345449'.
+
+RD (302) page http://sketchup.google.com/3dwarehouse/search?uq=0263839835352743695331922
   linked from https://wiki.oni2.net/New_levels
-  Server suggests http://photoshare.ru/album64678.html
-
-Skipping URL 'http://www.turbosquid.com/3d-models/3dsmax-exhibition-building/345449' (found on page 'New_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/3d-models/3dsmax-exhibition-building/345449'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/search?uq=0263839835352743695331922' (found on page 'New_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/search?uq=0263839835352743695331922'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/cldetails?mid=236901867937c4ed5fbaf4019d18db23' (found on page 'New_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/cldetails?mid=236901867937c4ed5fbaf4019d18db23'.
-
-RD (302) page https://www.unrealengine.com/marketplace/advanced-locomotion-system-v1
-  linked from https://wiki.oni2.net/UnrealOni/Tutorials
-  Server suggests https://www.unrealengine.com/marketplace/en-US/advanced-locomotion-system-v1
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/search?uq%3D0263839835352743695331922&followup=http://sketchup.google.com/3dwarehouse/search?uq%3D0263839835352743695331922
+
+RD (302) page http://sketchup.google.com/3dwarehouse/cldetails?mid=236901867937c4ed5fbaf4019d18db23
+  linked from https://wiki.oni2.net/New_levels
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/cldetails?mid%3D236901867937c4ed5fbaf4019d18db23&followup=http://sketchup.google.com/3dwarehouse/cldetails?mid%3D236901867937c4ed5fbaf4019d18db23
 
 Skipping URL 'http://www.youtube.com/watch?v=8Okn7u_-oVs' (found on page 'General_disclaimer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=8Okn7u_-oVs'.
@@ -1369,188 +772,38 @@
 Skipping URL 'http://www.youtube.com/watch?v=-yFJXsywOII' (found on page 'Trailer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=-yFJXsywOII'.
 
-RD (301) page http://www.3dfx.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/Oni_ReadMe
-  Server suggests https://www.nvidia.com/en-us/geforce/
-
-NG (000-28) page http://support.atitech.ca/
-  linked from https://wiki.oni2.net/Oni_(folder)/Oni_ReadMe
-  IA suggests http://web.archive.org/web/20051029110731/http://support.atitech.ca/
-
-RD (301) page http://www.3dfx.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  Server suggests https://www.nvidia.com/en-us/geforce/
-
-RD (302) page https://bonusweb.idnes.cz/duality-trailer-0j6-
-  linked from https://wiki.oni2.net/Duality
-  Server suggests https://www.idnes.cz/hry
-
 Skipping URL 'http://www.encyclopedia.com/doc/1O8-polylectic.html' (found on page 'Slaves_of_War/Polylectiloquy') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.encyclopedia.com/doc/1O8-polylectic.html'.
 
 Skipping URL 'http://www.youtube.com/watch?v=Zcbv7y5HvRI' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=Zcbv7y5HvRI'.
 
-RD (301) page http://oni.bungie.org/community/forum/
-  linked from https://wiki.oni2.net/Help:Editing
-  Server suggests http://oni.bungie.org/forum/
-
-NG (404) file http://www.paradox.oni2.net/mods/mouse_speed.zip
-  linked from https://wiki.oni2.net/User_talk:Gumby
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/mods/mouse_speed.zip
-
 Skipping URL 'http://www.youtube.com/watch?v=rSYJqcsD_bo' (found on page 'Modding_brainstorms') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=rSYJqcsD_bo'.
 
-NG (000-6) page http://oni.planets.gamespy.com/info/cheats.shtml
-  linked from https://wiki.oni2.net/History_of_Oni_modding/The_tale_of_Dev_Mode
-  IA suggests http://web.archive.org/web/20090413130244/http://oni.planets.gamespy.com/info/cheats.shtml
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2102
-  linked from https://wiki.oni2.net/Oni
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2102
-
 Skipping URL 'http://www.youtube.com/watch?v=j0v-hZZ_ofk' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=j0v-hZZ_ofk'.
 
-IW       page http://en.wikipedia.org/wiki/Wikipedia:Copyrights
-  linked from https://wiki.oni2.net/OniGalore:Copyrights
-  You can use [[wp:Wikipedia:Copyrights]]
-
-RD (302) page http://www.gnu.org/copyleft/fdl.html
-  linked from https://wiki.oni2.net/OniGalore:Copyrights
-  Server suggests http://www.gnu.org/licenses/fdl-1.3.html
-
 Skipping URL 'http://www.usatoday.com/money/industries/food/2008-06-02-starbucks-wifi_N.htm' (found on page 'Iritscen/Archive1') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.usatoday.com/money/industries/food/2008-06-02-starbucks-wifi_N.htm'.
 
 Skipping URL 'http://www.wififreespot.com/' (found on page 'Iritscen/Archive1') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.wififreespot.com/'.
 
-IW       page http://en.wikipedia.org/wiki/Tsearch
-  linked from https://wiki.oni2.net/User_talk:Iritscen/Archive1
-  You can use [[wp:Tsearch]]
-
 Skipping URL 'http://www.sendspace.com/file/rl6zre' (found on page 'Iritscen/Archive1') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.sendspace.com/file/rl6zre'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=48117#p48117
-  linked from https://wiki.oni2.net/User_talk:Iritscen/Archive2
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=48117
-
-NG (404) file http://paradox.oni2.net/TRAM_prog/DAE_demo_files.zip
-  linked from https://wiki.oni2.net/TRAM_setup_assistant
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/TRAM_prog/DAE_demo_files.zip
-
-IW       page http://en.wikipedia.org/wiki/Help:Contents
-  linked from https://wiki.oni2.net/Help_talk:Editing
-  You can use [[wp:Help:Contents]]
-
-IW       page http://en.wiktionary.org
-  linked from https://wiki.oni2.net/Help:Editing
-  You can use [[wikt:en.wiktionary.org]]
-
 Skipping URL 'http://www.gamewallpapers.com/wallpapers.php?titel=Oni' (found on page 'Konoko_Crouching_by_Craig_Mullins_after_Lorraine_(landscape).jpg') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.gamewallpapers.com/wallpapers.php?titel=Oni'.
 
 Skipping URL 'http://web.archive.org/web/20010727151534/www.insidemacgames.com/features/00/lebel/' (found on page 'Oni') because I have been asked not to check Wayback Machine links.
 
-RD (301) page http://oni.bungie.org/community/forum/
-  linked from https://wiki.oni2.net/User_talk:EdT/Archive1
-  Server suggests http://oni.bungie.org/forum/
-
-RD (301) file http://www.zapster.it/images/tools/wallpapers/1024x768/oni4.jpg
-  linked from https://wiki.oni2.net/File:Konoko_Crouching_-_Wallpaper_2.jpg
-  Server suggests https://www.chili.com/images/tools/wallpapers/1024x768/oni4.jpg
-
-RD (301) page http://www.zapster.it/tools/wallpap.asp
-  linked from https://wiki.oni2.net/File:Konoko_Crouching_-_Wallpaper_2.jpg
-  Server suggests https://www.chili.com/tools/wallpap.asp
-
-NG (404) page http://www.gamez.it/videogioco/Oni-PC-Windows
-  linked from https://wiki.oni2.net/File:Konoko_Crouching_-_Wallpaper_2.jpg
- Try browsing https://web.archive.org/web/*/http://www.gamez.it/videogioco/Oni-PC-Windows
-
-NG (404) page http://www.aicanime.com/products/adpolice/tvindex.html
-  linked from https://wiki.oni2.net/File:Intro_frame_0431.png
-  IA suggests http://web.archive.org/web/20170503233144/http://www.aicanime.com/products/adpolice/tvindex.html
-
 Skipping URL 'http://web.archive.org/web/20110820102502/http://home.luna.nl/~xino/times2/funtower.htm' (found on page 'Xenotron') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://web.archive.org/web/20110820102507/http://home.luna.nl/~xino/fonts/xenotron/radio.html' (found on page 'Xenotron') because I have been asked not to check Wayback Machine links.
 
-NG (404) page http://home.luna.nl/~xino/vga/index.html
-  linked from https://wiki.oni2.net/Xenotron
-  IA suggests http://web.archive.org/web/20160207125614/http://home.luna.nl/~xino/vga/index.html
-
-RD (301) page http://www.microsoft.com/downloads/details.aspx?familyid=200B2FD9-AE1A-4A14-984D-389C36F85647&displaylang=en
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive1
-  Server suggests http://www.microsoft.com/en-us/download/details.aspx
-
 Skipping URL 'http://www.unknown.nu/futurism/architecture.html' (found on page 'WCG') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.unknown.nu/futurism/architecture.html'.
 
-NG (000-6) page http://forums.philosophyforums.com/threads/the-mind-and-the-brain-31502-14.html#post523470
-  linked from https://wiki.oni2.net/Talk:Konoko
- Try browsing https://web.archive.org/web/*/http://forums.philosophyforums.com/threads/the-mind-and-the-brain-31502-14.html#post523470
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/details?mid=837b929c0e1e600495ff232cd38210b4' (found on page 'ONIrules') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/details?mid=837b929c0e1e600495ff232cd38210b4'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/details?mid=1b95ba95fbde8c64fcace4d823343363' (found on page 'ONIrules') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/details?mid=1b95ba95fbde8c64fcace4d823343363'.
-
-NG (000-28) page http://support.atitech.ca/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  IA suggests http://web.archive.org/web/20051029110731/http://support.atitech.ca/
-
-RD (302) page http://www.aztechlabs.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  Server suggests https://www.hugedomains.com/domain_profile.cfm?d=aztechlabs&e=com
-
-RD (301) page http://www.creativelabs.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  Server suggests http://us.creative.com/
-
-Skipping URL 'http://www.diamondmm.com/' (found on page 'Oni_(folder)/readme.txt') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.diamondmm.com/'.
-
-RD (301) page http://www.elsa.de/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  Server suggests https://www.elsa-germany.org/
-
-Skipping URL 'http://www.guillemot.com/' (found on page 'Oni_(folder)/readme.txt') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.guillemot.com/'.
-
-RD (301) page http://www.iomagic.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  Server suggests http://iomagic.com/
-
-RD (302) page http://www.leadtek.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  Server suggests https://www.leadtek.com/eng/
-
-RD (301) page http://www.matrox.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  Server suggests https://www.matrox.com/en/
-
-RD (307) page http://www.nvidia.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  Server suggests https://www.nvidia.com/en-us/
-
-RD (301) page http://www.s3.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  Server suggests http://s3.com/
-
-Skipping URL 'http://www.sis.com.tw/' (found on page 'Oni_(folder)/readme.txt') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.sis.com.tw/'.
-
-Skipping URL 'http://www.viatech.com/' (found on page 'Oni_(folder)/readme.txt') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.viatech.com/'.
-
-NG (000-28) page http://www.videologic.com/
-  linked from https://wiki.oni2.net/Oni_(folder)/readme.txt
-  IA suggests http://web.archive.org/web/20121028095323/http://www.videologic.com/
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1736
-  linked from https://wiki.oni2.net/History_of_Oni_modding
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1736
-
-RD (301) page http://www.gamefaqs.com/console/psx/home/197512.html
-  linked from https://wiki.oni2.net/GUNNM
-  Server suggests https://gamefaqs.gamespot.com/console/psx/home/197512.html
+RD (302) page http://sketchup.google.com/3dwarehouse/details?mid=837b929c0e1e600495ff232cd38210b4
+  linked from https://wiki.oni2.net/User_talk:ONIrules
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D837b929c0e1e600495ff232cd38210b4&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D837b929c0e1e600495ff232cd38210b4
+
+RD (302) page http://sketchup.google.com/3dwarehouse/details?mid=1b95ba95fbde8c64fcace4d823343363
+  linked from https://wiki.oni2.net/User_talk:ONIrules
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D1b95ba95fbde8c64fcace4d823343363&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D1b95ba95fbde8c64fcace4d823343363
 
 Skipping URL 'https://web.archive.org/web/20100909135036/http://www.battleangel.info/' (found on page 'GUNNM') because I have been asked not to check Wayback Machine links.
 
-Skipping URL 'http://dl.dropbox.com/u/139715/OniGalore/OniSplit_0.9.41.0.zip' (found on page 'Modding_errors') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/OniGalore/OniSplit_0.9.41.0.zip'.
-
-RD (301) page http://anidb.info/perl-bin/animedb.pl?show=anime&aid=1050
-  linked from https://wiki.oni2.net/Blame!
-  Server suggests https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1050
-
 Skipping URL 'http://www.rockstargames.com/stateofemergency/' (found on page 'State_of_Emergency') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.rockstargames.com/stateofemergency/'.
 
@@ -1611,46 +864,10 @@
 Skipping URL 'http://www.rockstargames.com/stateofemergency/movies/strategy5.mov' (found on page 'State_of_Emergency') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.rockstargames.com/stateofemergency/movies/strategy5.mov'.
 
-RD (301) page http://ps2.ign.com/objects/016/016405.html
-  linked from https://wiki.oni2.net/State_of_Emergency
-  Server suggests http://www.ign.com/games/maximum-action-state-of-emergency-serious-sam-gold/ps2-16405
-
-RD (302) page http://xbox.ign.com/objects/608/608771.html
-  linked from https://wiki.oni2.net/State_of_Emergency
-  Server suggests https://www.ign.com/xbox
-
 Skipping URL 'http://www.swo.com' (found on page 'Main_Page/Archive1') because I have not been asked to show added trailing slashes, and I was redirected to 'https://www.swo.com/'.
 
 Skipping URL 'http://www.swo.com/disclaimer.shtml' (found on page 'Main_Page/Archive1') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.swo.com/disclaimer.shtml'.
 
-RD (301) page http://center.spoke.com/info/p5r3WYd/PatrickShettlesworth
-  linked from https://wiki.oni2.net/PolyKarbon
-  Server suggests http://www.spoke.com/
-
-RD (301) page http://training.sessions.edu/resources/free-tutorials/adobe-illustrator-tutorials/live-trace-live-paint.asp
-  linked from https://wiki.oni2.net/PolyKarbon
-  Server suggests https://www.sessions.edu/
-
-NG (404) file http://bards.fr/orgkom/wupper2008.jpg
-  linked from https://wiki.oni2.net/User:Geyser/Artwork
-  IA suggests http://web.archive.org/web/20081112044140/http://bards.fr/orgkom/wupper2008.jpg
-
-NG (404) file http://bards.fr/pics/twilight.jpg
-  linked from https://wiki.oni2.net/User:Geyser/Artwork
- Try browsing https://web.archive.org/web/*/http://bards.fr/pics/twilight.jpg
-
-NG (404) file http://bards.fr/pics/twilight2.jpg
-  linked from https://wiki.oni2.net/User:Geyser/Artwork
- Try browsing https://web.archive.org/web/*/http://bards.fr/pics/twilight2.jpg
-
-NG (500) page http://carnage.bungie.org/oniresforum/onires.archive.pl?read=35
-  linked from https://wiki.oni2.net/History_of_Oni_modding
- Try browsing https://web.archive.org/web/*/http://carnage.bungie.org/oniresforum/onires.archive.pl?read=35
-
 Skipping URL 'http://www.bungie.net/Forums/posts.aspx?postID=27807403' (found on page 'Daodan_overpower_and_upgrades') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.bungie.net/Forums/posts.aspx?postID=27807403'.
 
-RD (301) page http://www.microsoft.com/downloads/details.aspx?FamilyID=15fb9169-4a25-4dca-bf40-9c497568f102&DisplayLang=en
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive1
-  Server suggests http://www.microsoft.com/en-us/download/details.aspx
-
 Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/221645' (found on page 'New_weapons') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/221645'.
 
@@ -1659,40 +876,14 @@
 Skipping URL 'http://www.turbosquid.com/3d-models/3d-iron-man-helmet-model/424900' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/3d-models/3d-iron-man-helmet-model/424900'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=702
-  linked from https://wiki.oni2.net/User:Gumby
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=702
-
 Skipping URL 'http://www.take2games.com/' (found on page 'Rights') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.take2games.com/'.
 
-NG (500) page http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1188140623&rangeend=1188147823&nochange=1#114292
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
- Try browsing https://web.archive.org/web/*/http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1188140623&rangeend=1188147823&nochange=1#114292
-
-NG (404) page http://recaptcha.net/
-  linked from https://wiki.oni2.net/User_talk:Geyser
-  IA suggests http://web.archive.org/web/20100619202914/http://recaptcha.net/
-
 Skipping URL 'http://www.rockstargames.com/' (found on page 'Rights') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.rockstargames.com/'.
 
 Skipping URL 'http://www.omnigroup.com/' (found on page 'Rights') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.omnigroup.com/'.
 
-RD (301) page https://discord.gg/eqDMnkD
-  linked from https://wiki.oni2.net/OniGalore:Community_portal
-  Server suggests https://discord.com/invite/eqDMnkD
+Skipping URL 'https://discord.gg/eqDMnkD' (found on page 'Community_portal') because its expected result, '301', is in the exceptions list.
 
 Skipping URL 'http://www.youtube.com/watch?v=cxzMmTYHzCo' (found on page 'Bobbysoon/Animation_Discussion') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=cxzMmTYHzCo'.
 
-RD (302) page https://docs.unrealengine.com/latest/INT/Engine/Matinee/HowTo/MHT_7/index.html
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://docs.unrealengine.com/en-US/Engine/Matinee/HowTo/MHT_7/index.html
-
-NG (404) page http://myjavaserver.com/~kuchumovn/ome/
-  linked from https://wiki.oni2.net/Talk:OME
- Try browsing https://web.archive.org/web/*/http://myjavaserver.com/~kuchumovn/ome/
-
-EI       file https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
-  Just use [[File:28686-CALIG.TXMP000.jpg]]
-
 Skipping URL 'http://www.youtube.com/watch?v=YLZ2hJZvrmo' (found on page 'Bobbysoon') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=YLZ2hJZvrmo'.
 
@@ -1701,74 +892,12 @@
 Skipping URL 'http://forum.unity3d.com/viewtopic.php?t=36467' (found on page 'Lightmapping_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://forum.unity3d.com/viewtopic.php?t=36467'.
 
-NG (404) page http://www.destineerstudios.com/macsoftgames/
-  linked from https://wiki.oni2.net/Rights
-  IA suggests http://web.archive.org/web/20160412220936/http://www.destineerstudios.com/macsoftgames/
-
-RD (301) page http://anidb.info/perl-bin/animedb.pl?show=anime&aid=1312
-  linked from https://wiki.oni2.net/Appleseed
-  Server suggests https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1312
-
-RD (301) page http://starwars.wikia.com/wiki/DXR-6_disruptor_rifle
-  linked from https://wiki.oni2.net/User_talk:Geyser/DoxProjectImagoTalkBackup
-  Server suggests https://starwars.fandom.com/wiki/DXR-6_disruptor_rifle
-
 Skipping URL 'http://dl.getdropbox.com/u/60508/BarabusPowerups.rar' (found on page 'Geyser/DoxProjectImagoTalkBackup') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.getdropbox.com/u/60508/BarabusPowerups.rar'.
 
-Skipping URL 'http://dl.dropbox.com/u/139715/OniGalore/TRAM_macro.zip' (found on page 'TRAM') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/OniGalore/TRAM_macro.zip'.
-
 Skipping URL 'http://youtu.be/wxzJ8ahjP8k' (found on page 'TRAM') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=wxzJ8ahjP8k&feature=youtu.be'.
 
-EI       file http://wiki.oni2.net/File:Dream_obj_images_spawned.jpg
-  linked from https://wiki.oni2.net/XML:OBAN
-  Just use [[File:Dream_obj_images_spawned.jpg]]
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=45791#p45791
-  linked from https://wiki.oni2.net/Anniversary_Edition/To-do
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=45791
-
-NG (000-7) page http://membres.lycos.fr/feena/rpg/grandia2/
-  linked from https://wiki.oni2.net/Oni2:Hikari
-  IA suggests http://web.archive.org/web/20050902092952/http://membres.lycos.fr/feena/rpg/grandia2/
-
 Skipping URL 'http://dl.getdropbox.com/u/139715/sound_detection.avi' (found on page 'Modding_brainstorms') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.getdropbox.com/u/139715/sound_detection.avi'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=149
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=149
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=746
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=746
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=767
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=767
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=801
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=801
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=824
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=824
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=907
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=907
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=937
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=937
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=970
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=970
-
 Skipping URL 'http://www.nvidia.com/Download/index.aspx?lang=en-us' (found on page 'Mouse_control_issues') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.nvidia.com/Download/index.aspx?lang=en-us'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=766
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=766
-
 Skipping URL 'http://www.turbosquid.com/3d-models/3d-model-robot/262162' (found on page 'Iron_Demon') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/3d-models/3d-model-robot/262162'.
 
@@ -1777,12 +906,4 @@
 Skipping URL 'https://web.archive.org/web/20000422020741/http://pc.ign.com:80/news/5839.html' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
 
-RD (301) page http://www.microsoft.com/downloads/details.aspx?FamilyID=a7da4763-6807-4bd5-8d18-18c60c437f93&DisplayLang=en%7CXNA
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive1
-  Server suggests http://www.microsoft.com/en-us/download/details.aspx
-
-RD (301) page http://www.microsoft.com/visualstudio/express
-  linked from https://wiki.oni2.net/XML:XML_Modding_Lessons
-  Server suggests https://visualstudio.microsoft.com/
-
 Skipping URL 'http://developer.apple.com/technology/Xcode.html' (found on page 'XML_Modding_Lessons') because I have not been asked to show http->https upgrades, and I was redirected to 'https://developer.apple.com/technology/Xcode.html'.
 
@@ -1791,24 +912,8 @@
 Skipping URL 'http://phys.org/news/2015-06-scientists-molecular-key-potential-gmos.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2015-06-scientists-molecular-key-potential-gmos.html'.
 
-NG (500) page http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189348501&rangeend=1189355701&nochange=1#121507
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
- Try browsing https://web.archive.org/web/*/http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189348501&rangeend=1189355701&nochange=1#121507
-
-NG (500) page http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189961817&rangeend=1189969017&nochange=1#123453
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
- Try browsing https://web.archive.org/web/*/http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189961817&rangeend=1189969017&nochange=1#123453
-
 Skipping URL 'http://www.youtube.com/watch?v=9VlUBaQWuXg' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=9VlUBaQWuXg'.
 
 Skipping URL 'http://www.youtube.com/watch?v=sa-h6lXQ-p4' (found on page 'Bobbysoon') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=sa-h6lXQ-p4'.
 
-RD (301) page http://www.go-mono.com/mono-downloads/download.html
-  linked from https://wiki.oni2.net/XML_talk:Basic_tutorial
-  Server suggests https://www.mono-project.com/download/
-
-NG (403) page http://msdn.microsoft.com/en-us/library/cc677007(VS.85,loband).aspx
-  linked from https://wiki.oni2.net/OBD:SNDD/wav
- Try browsing https://web.archive.org/web/*/http://msdn.microsoft.com/en-us/library/cc677007(VS.85,loband).aspx
-
 Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/308701' (found on page 'New_weapons') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/308701'.
 
@@ -1823,131 +928,19 @@
 Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/180387' (found on page 'New_weapons') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/180387'.
 
-NG (404) file http://edt.oni2.net/mods/level0_Final.dat.zip
-  linked from https://wiki.oni2.net/Mac_mods
-  IA suggests http://web.archive.org/web/20071020142835/http://edt.oni2.net/mods/level0_Final.dat.zip
-
-Skipping URL 'https://youtu.be/-AxaiojcAQU' (found on page 'Restless_Souls/Wishlist') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=-AxaiojcAQU&feature=youtu.be'.
-
-RD (302) page https://wiki.unrealengine.com/Category:Tutorials
-  linked from https://wiki.oni2.net/Talk:Restless_Souls/Wishlist
-  Server suggests https://forums.unrealengine.com:443/unreal-engine/announcements-and-releases/1745504-a-new-community-hosted-unreal-engine-wiki
-
-RD (301) page http://www.filefront.com/14467713/images.rar/
-  linked from https://wiki.oni2.net/User_talk:Bobbysoon
-  Server suggests http://www.gamefront.com/14467713/images.rar/
-
-NG (404) file http://iritscen.oni2.net/temp/ID_sounds.zip
-  linked from https://wiki.oni2.net/User_talk:Bobbysoon
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/ID_sounds.zip
-
-RD (301) page http://www.filefront.com/14467707/_IronDemon-dae.rar/
-  linked from https://wiki.oni2.net/User_talk:Bobbysoon
-  Server suggests http://www.gamefront.com/14467707/_IronDemon-dae.rar/
-
-NG (404) page https://www.raywenderlich.com/u/TommyTran
-  linked from https://wiki.oni2.net/Talk:Restless_Souls/Wishlist
-  IA suggests http://web.archive.org/web/20171018100642/https://www.raywenderlich.com/u/TommyTran
-
-NG (404) file http://edt.oni2.net/temp/Iron_Demon_Package.zip
-  linked from https://wiki.oni2.net/User_talk:Bobbysoon
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/temp/Iron_Demon_Package.zip
-
-RD (301) page http://jxb.oxfordjournals.org/cgi/content/abstract/59/5/1109
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
-  Server suggests https://academic.oup.com/jxb/article-abstract/59/5/1109/538568
+Skipping URL 'http://web.archive.org/web/20171018100642/https://www.raywenderlich.com/u/TommyTran' (found on page 'Restless_Souls/Wishlist') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.sciencemag.org/cgi/content/abstract/315/5811/513' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.sciencemag.org/cgi/content/abstract/315/5811/513'.
 
-NG (404) file http://www.rcn.montana.edu/pubs/pdf/2007/science%202007.pdf
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
- Try browsing https://web.archive.org/web/*/http://www.rcn.montana.edu/pubs/pdf/2007/science%202007.pdf
-
 Skipping URL 'http://www.youtube.com/watch?v=ht7KrEaImzo' (found on page 'Bobbysoon') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=ht7KrEaImzo'.
 
-RD (301) file http://www.filefront.com/14485651/ID%20TRBS%20dae%20TXMP_chest.rar
-  linked from https://wiki.oni2.net/User_talk:Bobbysoon
-  Server suggests http://www.gamefront.com/14485651/ID%20TRBS%20dae%20TXMP_chest.rar
-
-RD (301) page http://www.filefront.com/14488981/level0_Final.rar/
-  linked from https://wiki.oni2.net/User_talk:Bobbysoon
-  Server suggests http://www.gamefront.com/14488981/level0_Final.rar/
-
-NG (404) file http://paradox.oni2.net/temp/TXMPID_mid.zip
-  linked from https://wiki.oni2.net/User_talk:Bobbysoon
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/temp/TXMPID_mid.zip
-
-EI       page http://wiki.oni2.net/BSL:Functions#ai2
-  linked from https://wiki.oni2.net/BSL:Functions
-  Just use [[BSL:Functions#ai2]]
+Skipping URL 'https://web.archive.org/web/20131017074815/http://forum.halomaps.org/index.cfm?page=topic&topicID=24629' (found on page 'Bobbysoon') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.youtube.com/watch?v=STMMqcpJuB0' (found on page 'Bobbysoon') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=STMMqcpJuB0'.
 
-RD (301) file http://www.filefront.com/14507129/dae.rar
-  linked from https://wiki.oni2.net/User_talk:Neo
-  Server suggests http://www.gamefront.com/14507129/dae.rar
-
-RD (301) file http://www.filefront.com/14507115/ID%20walking.xaf
-  linked from https://wiki.oni2.net/User_talk:Neo
-  Server suggests http://www.gamefront.com/14507115/ID%20walking.xaf
-
-NG (000-28) page http://www.driverheaven.net/mobility-radeon-drivers-support/76736-ati-mobility-firegl-t2-hp-nw8000.html
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
-  IA suggests http://web.archive.org/web/20090614031049/http://www.driverheaven.net/mobility-radeon-drivers-support/76736-ati-mobility-firegl-t2-hp-nw8000.html
-
 Skipping URL 'http://www.youtube.com/watch?v=gS8Iiy2_Z-g' (found on page 'Bobbysoon/Animation_Discussion') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=gS8Iiy2_Z-g'.
 
-RD (301) page https://1drv.ms/t/s!Asn4fV_yvODigUIEKdkZj6rFdo1o
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!194&authkey=!AAQp2RmPqsV2jWg&ithint=file%2ctxt
-
 Skipping URL 'https://youtu.be/y4sxRP-GrVQ' (found on page 'Restless_Souls/Wishlist') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=y4sxRP-GrVQ&feature=youtu.be'.
 
-RD (301) page https://1drv.ms/t/s!Asn4fV_yvODigUFiFR2WCYIsvnl0
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!193&authkey=!AGIVHZYJgiy-eXQ&ithint=file%2ctxt
-
-RD (301) page https://1drv.ms/t/s!Asn4fV_yvODigUPgtVd9c21Szk68
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!195&authkey=!AOC1V31zbVLOTrw&ithint=file%2ctxt
-
-RD (301) page https://1drv.ms/t/s!Asn4fV_yvODigUAfQ-spWYnvi1pV
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!192&authkey=!AB9D6ylZie-LWlU&ithint=file%2ctxt
-
-RD (301) page https://1drv.ms/t/s!Asn4fV_yvODigT8xJ35jXaxFlD35
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!191&authkey=!ADEnfmNdrEWUPfk&ithint=file%2ctxt
-
-RD (301) page https://1drv.ms/t/s!Asn4fV_yvODigUSQY6R4bhXJqRFi
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://onedrive.live.com/redir?resid=E2E0BCF25F7DF8C9!196&authkey=!AJBjpHhuFcmpEWI&ithint=file%2ctxt
-
-RD (301) page http://www.nersc.gov/vendor_docs/ibm/asm/mastertoc.htm#mtoc
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
-  Server suggests https://www.nersc.gov/vendor_docs/ibm/asm/mastertoc.htm
-
-NG (404) file http://edt.oni2.net/OS/MCKonoko.blend
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/OS/MCKonoko.blend
-
-NG (404) file http://edt.oni2.net/OS/MCKonoko.dae
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/OS/MCKonoko.dae
-
-NG (404) file http://edt.oni2.net/3D/Motoko.zip
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/3D/Motoko.zip
-
-IW       page http://ja.wikipedia.org/wiki/%E8%9B%B9
-  linked from https://wiki.oni2.net/File:Daodan_Chrysalis_in_Chinese.png
-  You can use [[wp:%E8%9B%B9]]
-
-NG (404) file http://edt.oni2.net/beta/OniBeta4.zip
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/beta/OniBeta4.zip
-
-RD (301) page http://developer.apple.com/documentation/DeveloperTools/CompilersDebuggers-date.html#//apple_ref/doc/uid/TP30000440-TP30000436-TP30001025
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
-  Server suggests https://docs.developer.apple.com/documentation/DeveloperTools/CompilersDebuggers-date.html
+Skipping URL 'https://web.archive.org/web/20090622125037/https://developer.apple.com/documentation/DeveloperTools/CompilersDebuggers-date.html' (found on page 'Neo/Archive2') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.ibm.com/developerworks/linux/library/l-ppc/' (found on page 'Neo/Archive2') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.ibm.com/developerworks/linux/library/l-ppc/'.
@@ -1955,170 +948,34 @@
 Skipping URL 'http://www.cs.uaf.edu/2006/fall/cs301/support/ppc/progenv.pdf' (found on page 'Neo/Archive2') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.cs.uaf.edu/2006/fall/cs301/support/ppc/progenv.pdf'.
 
-NG (000-6) page http://the.wall.riscom.net/books/proc/ppc/cwg/cwg_toc.html
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
-  IA suggests http://web.archive.org/web/20080705115313/http://the.wall.riscom.net/books/proc/ppc/cwg/cwg_toc.html
-
-IW       page http://zh.wikipedia.org/wiki/%E8%9B%B9
-  linked from https://wiki.oni2.net/File:Daodan_Chrysalis_in_Chinese.png
-  You can use [[wp:%E8%9B%B9]]
+Skipping URL 'http://web.archive.org/web/20080705115313/http://the.wall.riscom.net/books/proc/ppc/cwg/cwg_toc.html' (found on page 'Neo/Archive2') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.youtube.com/watch?v=rwF0FynUhgQ' (found on page 'Neo/Archive3') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=rwF0FynUhgQ'.
 
-NG (404) file http://paradox.oni2.net/particle_bug_report.rar
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive3
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/particle_bug_report.rar
-
-NG (404) file http://paradox.oni2.net/particle_bug_report_2.rar
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive3
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/particle_bug_report_2.rar
-
-RD (301) page http://demoskratos.ifolder.ru/7931537
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive3
-  Server suggests https://holm.ru/7931537
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=7390
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive3
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=7390
-
-RD (301) page http://www.autoitscript.com/autoit3/
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive3
-  Server suggests https://www.autoitscript.com/site/autoit/
-
-RD (301) file http://gumby701.googlepages.com/gui.exe
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive3
-  Server suggests http://sites.google.com/site/gumby701/gui.exe
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=8417
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive3
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=8417
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=4897#p4897
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=4897
-
-NG (404) file http://loser.oni2.net/Videos/Projectile_dodge_issue.wmv
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
- Try browsing https://web.archive.org/web/*/http://loser.oni2.net/Videos/Projectile_dodge_issue.wmv
-
-NG (404) file http://www.paradox.oni2.net/IGSt_bug.zip
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/IGSt_bug.zip
+Skipping URL 'http://sites.google.com/site/gumby701/gui.exe' (found on page 'Neo/Archive3') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sites.google.com/site/gumby701/gui.exe'.
 
 Skipping URL 'http://www.hex-rays.com/idapro/idadownfreeware.htm' (found on page 'Neo/Archive4') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.hex-rays.com/idapro/idadownfreeware.htm'.
 
-NG (404) file http://iritscen.oni2.net/temp/Oni-BadShadows1.jpg
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows1.jpg
-
-NG (404) file http://iritscen.oni2.net/temp/Oni-BadShadows2.jpg
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows2.jpg
-
-NG (404) file http://iritscen.oni2.net/temp/Oni-BadShadows3.jpg
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows3.jpg
-
-NG (404) file http://iritscen.oni2.net/temp/Oni-BadShadows4.jpg
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Oni-BadShadows4.jpg
-
-NG (404) file http://iritscen.oni2.net/temp/Marathon-GoodShadows1.jpg
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Marathon-GoodShadows1.jpg
-
-NG (404) file http://iritscen.oni2.net/temp/Marathon-GoodShadows2.jpg
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/Marathon-GoodShadows2.jpg
-
-RD (301) file http://gumby701.googlepages.com/bomber.wmv
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive4
-  Server suggests http://sites.google.com/site/gumby701/bomber.wmv
-
 Skipping URL 'http://www.youtube.com/watch?v=C8zpfiHeR_s' (found on page 'Neo/Archive4') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=C8zpfiHeR_s'.
 
-Skipping URL 'http://sketchup.google.com/3dwarehouse/search?uq=07853225406317038571' (found on page 'Neo/Archive5') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/search?uq=07853225406317038571'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/details?mid=4e64820c9e369b6017ace7d0b43b4dfb' (found on page 'Neo/Archive5') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/details?mid=4e64820c9e369b6017ace7d0b43b4dfb'.
-
-NG (404) file http://www.paradox.oni2.net/mods/Ed's_music_test.zip
+RD (302) page http://sketchup.google.com/3dwarehouse/search?uq=07853225406317038571
   linked from https://wiki.oni2.net/User_talk:Neo/Archive5
- Try browsing https://web.archive.org/web/*/http://www.paradox.oni2.net/mods/Ed's_music_test.zip
-
-NG (404) file http://iritscen.oni2.net/temp/mus_tranc.zip
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/search?uq%3D07853225406317038571&followup=http://sketchup.google.com/3dwarehouse/search?uq%3D07853225406317038571
+
+RD (302) page http://sketchup.google.com/3dwarehouse/details?mid=4e64820c9e369b6017ace7d0b43b4dfb
   linked from https://wiki.oni2.net/User_talk:Neo/Archive5
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/mus_tranc.zip
-
-NG (404) file http://edt.oni2.net/OniSplit/SNDDBurn.zip
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive5
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/OniSplit/SNDDBurn.zip
-
-RD (301) page http://halo.wikia.com/wiki/Main_Page
-  linked from https://wiki.oni2.net/Category:Art_by_Lorraine
-  Server suggests https://halo.fandom.com/wiki/Halo_Alpha
-
-RD (301) page http://halo.wikia.com/wiki/Main_Page
-  linked from https://wiki.oni2.net/File:Black_Spartan_from_Halo.png
-  Server suggests https://halo.fandom.com/wiki/Halo_Alpha
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D4e64820c9e369b6017ace7d0b43b4dfb&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D4e64820c9e369b6017ace7d0b43b4dfb
 
 Skipping URL 'http://www.gimp.org/' (found on page 'Modding_Oni') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.gimp.org/'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=848
-  linked from https://wiki.oni2.net/History_of_Mac_Oni
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=848
-
-EI       file http://wiki.oni2.net/Image:Dream_1_murder_or_mercy.jpg
-  linked from https://wiki.oni2.net/Talk:Hasegawa
-  Just use [[Image:Dream_1_murder_or_mercy.jpg]]
-
 Skipping URL 'http://vi-wer.de.tl/Lightmap-Tutorial.htm' (found on page 'Lightmapping_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://vi-wer.de.tl/Lightmap-Tutorial.htm'.
 
-EI       page http://wiki.oni2.net/User:Paradox-01/quotes_chef_1
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Archive1
-  Just use [[User:Paradox-01/quotes_chef_1]]
-
 Skipping URL 'http://www.youtube.com/user/Script10k' (found on page 'Script_10k') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/user/Script10k'.
 
-NG (404) file http://iritscen.oni2.net/temp/06000MissingSoundsOcc.zip
-  linked from https://wiki.oni2.net/User_talk:Neo
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/06000MissingSoundsOcc.zip
-
-NG (410) page http://www.codegeek.io/20170409-animate-makehuman-character-in-mixamo/
-  linked from https://wiki.oni2.net/Talk:Restless_Souls/Wishlist
-  IA suggests http://web.archive.org/web/20170920190459/http://www.codegeek.io/20170409-animate-makehuman-character-in-mixamo/
-
 Skipping URL 'http://www.oldapps.com/ati.php' (found on page 'Troubleshooting') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.oldapps.com/ati.php'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=297
-  linked from https://wiki.oni2.net/User:Script_10k
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=297
-
 Skipping URL 'http://www.youtube.com/watch?v=_z6I8YUM-Lo' (found on page 'Script_10k') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=_z6I8YUM-Lo'.
 
 Skipping URL 'http://www.youtube.com/watch?v=ziOn_Iou0Kg' (found on page 'Script_10k') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=ziOn_Iou0Kg'.
 
-EI       page http://wiki.oni2.net/Restless_Souls/Technology#Full_body_simulations
-  linked from https://wiki.oni2.net/Restless_Souls/Summary
-  Just use [[Restless_Souls/Technology#Full_body_simulations]]
-
-IW       page http://en.wikipedia.org/wiki/RPG_Maker
-  linked from https://wiki.oni2.net/Oni_RPG
-  You can use [[wp:RPG_Maker]]
-
-RD (301) page https://www.macworld.com/article/3010613/software-graphics/hands-on-adobe-s-new-fuse-cc-lets-beginners-take-baby-steps-into-3d-modeling.html
-  linked from https://wiki.oni2.net/Fuse
-  Server suggests https://www.macworld.com/article/3010613/hands-on-adobe-s-new-fuse-cc-lets-beginners-take-baby-steps-into-3d-modeling.html
-
-EI       file http://wiki.oni2.net/File:GuidoArt-Pandora_vs._Mukade.jpg
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
-  Just use [[File:GuidoArt-Pandora_vs._Mukade.jpg]]
-
-EI       page http://wiki.oni2.net/Oni2:Storyline
-  linked from https://wiki.oni2.net/Restless_Souls/Ikimas
-  Just use [[Oni2:Storyline]]
-
-IW       page https://www.mediawiki.org/wiki/Version_lifecycle
-  linked from https://wiki.oni2.net/User:Iritscen/WikiFuture
-  You can use [[mw:Version_lifecycle]]
-
 Skipping URL 'http://dl.dropbox.com/u/143726/scripts/Airport.zip' (found on page 'Script_10k') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/143726/scripts/Airport.zip'.
 
@@ -2131,7 +988,5 @@
 Skipping URL 'http://dl.dropbox.com/u/143726/scripts/warehouse_main.bsl' (found on page 'Script_10k') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/143726/scripts/warehouse_main.bsl'.
 
-RD (301) page http://www.zbrushcentral.com/showthread.php?163445-Earthquake
-  linked from https://wiki.oni2.net/File:Earthquake_(Samurai_Shodown)_ZBrush_model_(clay).jpg
-  Server suggests http://archive.zbrushcentral.com/showthread.php?163445-Earthquake
+Skipping URL 'http://www.zbrushcentral.com/showthread.php?163445-Earthquake' (found on page 'Earthquake_(Samurai_Shodown)_ZBrush_model_(clay).jpg') because its expected result, '301', is in the exceptions list.
 
 Skipping URL 'http://www.youtube.com/watch?v=5Xz_WaOfWkc' (found on page 'Walkthrough/CHAPTER_12_._SINS_OF_THE_FATHER') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=5Xz_WaOfWkc'.
@@ -2139,60 +994,16 @@
 Skipping URL 'http://www.youtube.com/watch?v=xbYGEqGG8Kc' (found on page 'Walkthrough/CHAPTER_12_._SINS_OF_THE_FATHER') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=xbYGEqGG8Kc'.
 
-RD (301) page http://www.youtube.com/watch?v=BqWrUGTQXn0#t=0m03s
-  linked from https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL
-  Server suggests https://www.youtube.com/watch?v=BqWrUGTQXn0
-
-RD (301) page http://www.youtube.com/watch?v=BqWrUGTQXn0#t=0m47s
-  linked from https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL
-  Server suggests https://www.youtube.com/watch?v=BqWrUGTQXn0
-
-RD (301) page http://www.youtube.com/watch?v=BqWrUGTQXn0#t=1m26s
-  linked from https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL
-  Server suggests https://www.youtube.com/watch?v=BqWrUGTQXn0
-
-RD (301) page http://www.youtube.com/watch?v=BqWrUGTQXn0#t=1m46s
-  linked from https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL
-  Server suggests https://www.youtube.com/watch?v=BqWrUGTQXn0
-
-RD (301) page http://www.youtube.com/watch?v=BqWrUGTQXn0#t=2m07s
-  linked from https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL
-  Server suggests https://www.youtube.com/watch?v=BqWrUGTQXn0
-
-RD (301) page http://www.youtube.com/watch?v=BqWrUGTQXn0#t=2m22s
-  linked from https://wiki.oni2.net/Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL
-  Server suggests https://www.youtube.com/watch?v=BqWrUGTQXn0
-
-RD (301) page http://oni.bungie.org/community/forum/index.php
-  linked from https://wiki.oni2.net/User_talk:Tieria_Erde
-  Server suggests http://oni.bungie.org/forum/index.php
-
-Skipping URL 'http://dl.dropbox.com/u/139715/TRAM/KONCOM_ko_throw.zip' (found on page 'Neo') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/TRAM/KONCOM_ko_throw.zip'.
-
-NG (404) file http://iritscen.oni2.net/temp/06000MissingSoundsNoOcc.zip
-  linked from https://wiki.oni2.net/User_talk:Neo
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/06000MissingSoundsNoOcc.zip
-
-NG (404) file http://iritscen.oni2.net/temp/GearsTestWindows.mp4
-  linked from https://wiki.oni2.net/User_talk:Neo
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/GearsTestWindows.mp4
-
-NG (404) file http://edt.oni2.net/temp/70000NewScreens.zip
-  linked from https://wiki.oni2.net/User:EdT/temp
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/temp/70000NewScreens.zip
-
-RD (302) page https://www.unrealengine.com/en-US/what-is-unreal-engine-4
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://www.unrealengine.com/en-US/
+Skipping URL 'https://youtu.be/BqWrUGTQXn0?t=2m22s' (found on page 'Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=BqWrUGTQXn0&feature=youtu.be&t=2m22s'.
+
+Skipping URL 'https://youtu.be/BqWrUGTQXn0?t=2m07s' (found on page 'Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=BqWrUGTQXn0&feature=youtu.be&t=2m07s'.
+
+Skipping URL 'https://youtu.be/BqWrUGTQXn0?t=1m46s' (found on page 'Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=BqWrUGTQXn0&feature=youtu.be&t=1m46s'.
+
+Skipping URL 'https://youtu.be/BqWrUGTQXn0?t=1m26s' (found on page 'Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=BqWrUGTQXn0&feature=youtu.be&t=1m26s'.
+
+Skipping URL 'https://youtu.be/BqWrUGTQXn0?t=47s' (found on page 'Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=BqWrUGTQXn0&feature=youtu.be&t=47s'.
 
 Skipping URL 'http://www.weltderphysik.de/de/2444.php' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.weltderphysik.de/de/2444.php'.
 
-IW       file http://en.wikipedia.org/wiki/File:FragariaHybrid.jpg
-  linked from https://wiki.oni2.net/Restless_Souls/Fragments
-  You can use [[wp:File:FragariaHybrid.jpg]]
-
-EI       page http://wiki.oni2.net/XML_talk:TRAM#Problem_with_exporting_a_textured_character_with_non-native_TRAC_animation
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Archive1
-  Just use [[XML_talk:TRAM#Problem_with_exporting_a_textured_character_with_non-native_TRAC_animation]]
-
 Skipping URL 'http://www.turbosquid.com/FullPreview/Index.cfm/ID/221645' (found on page 'Geyser/DoxProjectImagoTalkBackup') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.turbosquid.com/FullPreview/Index.cfm/ID/221645'.
 
@@ -2205,25 +1016,31 @@
 Skipping URL 'http://www.wundzentrum-hamburg.de/download/Barbara_Temme_05062008.pdf' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.wundzentrum-hamburg.de/download/Barbara_Temme_05062008.pdf'.
 
-IW       page http://de.wikipedia.org/wiki/Regeneration_(Biologie)
-  linked from https://wiki.oni2.net/Talk:Restless_Souls/Technology
-  You can use [[wp:Regeneration_(Biologie)]]
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/details?mid=6a1d00e2085b561c6372c627cab660a9' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/details?mid=6a1d00e2085b561c6372c627cab660a9'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/details?mid=9dbabc507f6044978a58c51e0b0b06c2' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/details?mid=9dbabc507f6044978a58c51e0b0b06c2'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/details?mid=44f382eff4d3e9e879539d8b3db35fd0' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/details?mid=44f382eff4d3e9e879539d8b3db35fd0'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/details?mid=59f0ac893106f7cc51cfdb4c9f126c12' (found on page 'BGI') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/details?mid=59f0ac893106f7cc51cfdb4c9f126c12'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/details?mid=33b2c337108275568c09573a9753f4fd' (found on page 'New_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/details?mid=33b2c337108275568c09573a9753f4fd'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/search?uq=0920076976514168017734253' (found on page 'New_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/search?uq=0920076976514168017734253'.
-
-Skipping URL 'http://sketchup.google.com/3dwarehouse/details?mid=34838cda1690ce4425ddf6e8265c857c' (found on page 'New_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sketchup.google.com/3dwarehouse/details?mid=34838cda1690ce4425ddf6e8265c857c'.
-
-RD (301) page http://turbosquid.com
+RD (302) page http://sketchup.google.com/3dwarehouse/details?mid=6a1d00e2085b561c6372c627cab660a9
+  linked from https://wiki.oni2.net/AE:BGI
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D6a1d00e2085b561c6372c627cab660a9&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D6a1d00e2085b561c6372c627cab660a9
+
+RD (302) page http://sketchup.google.com/3dwarehouse/details?mid=9dbabc507f6044978a58c51e0b0b06c2
+  linked from https://wiki.oni2.net/AE:BGI
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D9dbabc507f6044978a58c51e0b0b06c2&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D9dbabc507f6044978a58c51e0b0b06c2
+
+RD (302) page http://sketchup.google.com/3dwarehouse/details?mid=44f382eff4d3e9e879539d8b3db35fd0
+  linked from https://wiki.oni2.net/AE:BGI
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D44f382eff4d3e9e879539d8b3db35fd0&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D44f382eff4d3e9e879539d8b3db35fd0
+
+RD (302) page http://sketchup.google.com/3dwarehouse/details?mid=59f0ac893106f7cc51cfdb4c9f126c12
+  linked from https://wiki.oni2.net/AE:BGI
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D59f0ac893106f7cc51cfdb4c9f126c12&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D59f0ac893106f7cc51cfdb4c9f126c12
+
+RD (302) page http://sketchup.google.com/3dwarehouse/details?mid=33b2c337108275568c09573a9753f4fd
   linked from https://wiki.oni2.net/New_levels
-  Server suggests https://www.turbosquid.com/
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D33b2c337108275568c09573a9753f4fd&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D33b2c337108275568c09573a9753f4fd
+
+RD (302) page http://sketchup.google.com/3dwarehouse/search?uq=0920076976514168017734253
+  linked from https://wiki.oni2.net/New_levels
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/search?uq%3D0920076976514168017734253&followup=http://sketchup.google.com/3dwarehouse/search?uq%3D0920076976514168017734253
+
+RD (302) page http://sketchup.google.com/3dwarehouse/details?mid=34838cda1690ce4425ddf6e8265c857c
+  linked from https://wiki.oni2.net/New_levels
+  Server suggests https://www.google.com/accounts/ServiceLogin?service=warehouse&passive=1209600&continue=http://sketchup.google.com/3dwarehouse/details?mid%3D34838cda1690ce4425ddf6e8265c857c&followup=http://sketchup.google.com/3dwarehouse/details?mid%3D34838cda1690ce4425ddf6e8265c857c
 
 Skipping URL 'http://www.daz3d.com/i/shop/catbrowse?cat=349' (found on page 'New_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.daz3d.com/i/shop/catbrowse?cat=349'.
@@ -2241,32 +1058,8 @@
 Skipping URL 'http://www.daz3d.com/i/shop/popup/jpg?item=4130&num=4&h=675&_m=d' (found on page 'New_levels') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.daz3d.com/i/shop/popup/jpg?item=4130&num=4&h=675&_m=d'.
 
-RD (301) page http://www.photoshare.ru/album9528.html
-  linked from https://wiki.oni2.net/New_levels
-  Server suggests http://photoshare.ru/album9528.html
-
-RD (301) page http://www.photoshare.ru/album23608.html
-  linked from https://wiki.oni2.net/New_levels
-  Server suggests http://photoshare.ru/album23608.html
-
-RD (301) page http://www.photoshare.ru/album107891.html
-  linked from https://wiki.oni2.net/New_levels
-  Server suggests http://photoshare.ru/album107891.html
-
-RD (301) page http://www.cad.ru/ru/territory/sapr/index.php?page=blog&blog=socially_business_center
-  linked from https://wiki.oni2.net/New_levels
-  Server suggests https://cad.ru/ru/territory/sapr/index.php?page=blog&blog=socially_business_center
-
-RD (301) page http://deusex.wikia.com/wiki/Helios
-  linked from https://wiki.oni2.net/User:Paradox-01/brain_dump
-  Server suggests https://deusex.fandom.com/wiki/Helios
-
-IW       page http://meta.wikimedia.org/wiki/MediaWiki:Common.css
-  linked from https://wiki.oni2.net/MediaWiki:Common.css
-  You can use [[metawikimedia:MediaWiki:Common.css]]
+Skipping URL 'http://meta.wikimedia.org/wiki/MediaWiki:Common.css' (found on page 'Common.css') because its expected result, 'IW', is in the exceptions list.
 
 Skipping URL 'http://www.youtube.com/watch?v=TrKJAojmB1Y' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=TrKJAojmB1Y'.
 
-Skipping URL 'http://dl.dropbox.com/u/139715/temp/do_we_have_this.png' (found on page 'Oni_concept_art') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/temp/do_we_have_this.png'.
-
 Skipping URL 'http://web.archive.org/web/20020106131940/http://oni.bungie.org/index.html' (found on page 'OC_logo_until_2006.jpg') because I have been asked not to check Wayback Machine links.
 
@@ -2275,135 +1068,17 @@
 Skipping URL 'http://www.youtube.com/watch?v=-Na9-jV_OJI' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=-Na9-jV_OJI'.
 
-RD (301) page http://oni.bungie.org/community/forum/index.php
-  linked from https://wiki.oni2.net/History_of_the_Oni_community
-  Server suggests http://oni.bungie.org/forum/index.php
-
-NG (500) page http://carnage.bungie.org/oniresforum/onires.archive.pl
-  linked from https://wiki.oni2.net/History_of_the_Oni_community
-  IA suggests http://web.archive.org/web/20171113022224/http://carnage.bungie.org/oniresforum/onires.archive.pl
-
-NG (404) file http://iritscen.oni2.net/temp/GearsTestMac.mp4
-  linked from https://wiki.oni2.net/User_talk:Neo
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/temp/GearsTestMac.mp4
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=29967#p29967
-  linked from https://wiki.oni2.net/XML:TXMP
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=29967
-
 Skipping URL 'http://www.youtube.com/watch?v=GMeWr11QVjU' (found on page 'Multiplayer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=GMeWr11QVjU'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=798
-  linked from https://wiki.oni2.net/XML:SNDD
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=798
-
-RD (301) page http://www.glixel.com/interviews/oni-bungies-classic-inspired-by-ghost-in-the-shell-w474297
-  linked from https://wiki.oni2.net/Pre-beta_features
-  Server suggests http://www.rollingstone.com/glixel/interviews/oni-bungies-classic-inspired-by-ghost-in-the-shell-w474297
-
-RD (301) page http://manual.audacityteam.org/man/faq_installation_and_plug_ins.html#How_do_I_download_and_install_the_FFmpeg_Import.2FExport_Library.3F
-  linked from https://wiki.oni2.net/XML:SNDD
-  Server suggests https://manual.audacityteam.org/man/faq_installation_and_plug_ins.html
-
-RD (301) page http://audacity.sourceforge.net/download/beta_windows#recdown
-  linked from https://wiki.oni2.net/XML:SNDD
-  Server suggests http://sourceforge.net/projects/audacity/
-
 Skipping URL 'http://www.youtube.com/watch?v=1UuesYUvyAk' (found on page 'TRBS') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=1UuesYUvyAk'.
 
-Skipping URL 'http://dl.dropbox.com/u/139715/OniGalore/talk/20_body_parts.rar' (found on page 'TRBS') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/OniGalore/talk/20_body_parts.rar'.
-
-Skipping URL 'http://dl.dropbox.com/u/139715/OniGalore/talk/hex.h-test.zip' (found on page 'TRBS') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/OniGalore/talk/hex.h-test.zip'.
-
-NG (000-6) page http://www.westwoodventa.com/vivienne-westwood-espana.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20170102163212/http://www.westwoodventa.com/vivienne-westwood-espana.html
-
-NG (000-6) page http://www.westwoodventa.com/autentica-vivienne-westwood.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20190923024638/http://www.westwoodventa.com/autentica-vivienne-westwood.html
-
-NG (000-6) page http://www.westwoodventa.com/vivienne-westwood-encantos.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20190923024714/http://www.westwoodventa.com/vivienne-westwood-encantos.html
-
-NG (000-6) page http://www.westwoodventa.com/vivienne-westwood-gemelos.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20111018172452/http://www.westwoodventa.com/vivienne-westwood-gemelos.html
-
-NG (000-6) page http://www.westwoodventa.com/vivienne-westwood-anillos.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20120102130911/http://www.westwoodventa.com/vivienne-westwood-anillos.html
-
-NG (000-6) page http://www.chanel-onlinesale.com/cheap-replica-chanel.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20120221093551/http://www.chanel-onlinesale.com/cheap-replica-chanel.html
-
-NG (000-6) page http://www.chanel-onlinesale.com/replica-chanel-online.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20110305054017/http://www.chanel-onlinesale.com/replica-chanel-online.html
-
-NG (000-6) page http://www.chanel-onlinesale.com/buy-replica-chanel.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20110508032556/http://www.chanel-onlinesale.com/buy-replica-chanel.html
-
-NG (000-6) page http://www.chanel-onlinesale.com/replica-chanel-usa.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20110305054037/http://www.chanel-onlinesale.com/replica-chanel-usa.html
-
-NG (000-6) page http://www.chanel-onlinesale.com/bags/leather-goods/bags.html
-  linked from https://wiki.oni2.net/User_talk:Hua220
-  IA suggests http://web.archive.org/web/20120313025052/http://www.chanel-onlinesale.com/bags/leather-goods/bags.html
-
-Skipping URL 'http://dl.dropbox.com/u/139715/temp/talk/combo_tests.zip' (found on page 'Neo') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/temp/talk/combo_tests.zip'.
-
-EI       page http://wiki.oni2.net/AE:Barabas#General_instructions
-  linked from https://wiki.oni2.net/User_talk:Neo/Archive2
-  Just use [[AE:Barabas#General_instructions]]
-
-Skipping URL 'http://dl.dropbox.com/u/139715/OniGalore/RS_T_Sources/1109.full.pdf' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/OniGalore/RS_T_Sources/1109.full.pdf'.
-
 Skipping URL 'http://idw-online.de/pages/de/attachmentdata8851.pdf' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://idw-online.de/pages/de/attachmentdata8851.pdf'.
 
-Skipping URL 'http://dl.dropbox.com/u/139715/OniGalore/RS_T_Sources/attachmentdata8851.pdf' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.dropbox.com/u/139715/OniGalore/RS_T_Sources/attachmentdata8851.pdf'.
-
-IW       page http://meta.wikimedia.org
-  linked from https://wiki.oni2.net/Help:Editing
-  You can use [[metawikimedia:meta.wikimedia.org]]
-
-IW       page http://www.mediawiki.org/wiki/Extension:Inputbox
-  linked from https://wiki.oni2.net/Help:Editing
-  You can use [[mw:Extension:Inputbox]]
-
-IW       page http://www.mediawiki.org/wiki/Extension:EasyTimeline/syntax
-  linked from https://wiki.oni2.net/Help:Editing
-  You can use [[mw:syntax]]
-
-IW       page http://www.mediawiki.org/wiki/Help:Magic_words
-  linked from https://wiki.oni2.net/Help:Editing
-  You can use [[mw:Help:Magic_words]]
-
-IW       page http://www.mediawiki.org/wiki/Manual:Administrators#Protection
-  linked from https://wiki.oni2.net/Help:Editing
-  You can use [[mw:Manual:Administrators#Protection]]
-
-Skipping URL 'http://www.google.com/search'' on line 2224 because it was found on JavaScript page 'Common.js/search.js'.
-
-Skipping URL 'http://search.yahoo.com/search'' on line 2225 because it was found on JavaScript page 'Common.js/search.js'.
-
-Skipping URL 'http://www.bing.com/search'' on line 2226 because it was found on JavaScript page 'Common.js/search.js'.
-
-Skipping URL 'http://wiki.oni2.net'' on line 2227 because it was found on JavaScript page 'Common.js/search.js'.
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2087
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2087
-
-RD (301) page http://www.youtube.com/watch?v=rW4w_7GRUPE#t=0m53s
-  linked from https://wiki.oni2.net/Pre-beta_features
-  Server suggests https://www.youtube.com/watch?v=rW4w_7GRUPE
-
-RD (301) page http://www.youtube.com/watch?v=rW4w_7GRUPE#t=1m14s
-  linked from https://wiki.oni2.net/Pre-beta_features
-  Server suggests https://www.youtube.com/watch?v=rW4w_7GRUPE
+Skipping URL 'http://www.google.com/search'' on line 1862 because it was found on JavaScript page 'Common.js/search.js'.
+
+Skipping URL 'http://search.yahoo.com/search'' on line 1863 because it was found on JavaScript page 'Common.js/search.js'.
+
+Skipping URL 'http://www.bing.com/search'' on line 1864 because it was found on JavaScript page 'Common.js/search.js'.
+
+Skipping URL 'http://wiki.oni2.net'' on line 1865 because it was found on JavaScript page 'Common.js/search.js'.
 
 Skipping URL 'http://www.youtube.com/watch?v=LUmmLTjSaqQ' (found on page 'Pre-beta_features') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=LUmmLTjSaqQ'.
@@ -2411,12 +1086,4 @@
 Skipping URL 'http://www.youtube.com/watch?v=Te9yKA4UR18' (found on page 'Pre-beta_features') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=Te9yKA4UR18'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1282
-  linked from https://wiki.oni2.net/Kojiro
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1282
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1262
-  linked from https://wiki.oni2.net/Casey
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1262
-
 Skipping URL 'http://www.freshpatents.com/Multilayered-composite-for-organ-augmentation-and-repair-dt20080403ptan20080081362.php' (found on page 'Slaves_of_War/Polylectiloquy') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.freshpatents.com/Multilayered-composite-for-organ-augmentation-and-repair-dt20080403ptan20080081362.php'.
 
@@ -2427,15 +1094,7 @@
 Skipping URL 'http://www.imdb.com/title/tt0080391/' (found on page 'Slaves_of_War/Polylectiloquy') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.imdb.com/title/tt0080391/'.
 
-NG (404) file http://www.example.com/example.mov
-  linked from https://wiki.oni2.net/MediaWiki:Common
- Try browsing https://web.archive.org/web/*/http://www.example.com/example.mov
-
-NG (404) file http://www.example.com/example.mp3
-  linked from https://wiki.oni2.net/MediaWiki:Common
- Try browsing https://web.archive.org/web/*/http://www.example.com/example.mp3
-
-RD (301) page https://www.deviantart.com/hinxlinx/gallery/?catpath=/&edit=0&q=oni
-  linked from https://wiki.oni2.net/Oni_2_(Angel_Studios)
-  Server suggests https://www.deviantart.com/hinxlinx/gallery?catpath=/&edit=0&q=oni
+Skipping URL 'http://www.example.com/example.mov' (found on page 'Common') because its expected result, '404', is in the exceptions list.
+
+Skipping URL 'http://www.example.com/example.mp3' (found on page 'Common') because its expected result, '404', is in the exceptions list.
 
 Skipping URL 'http://tvtropes.org/pmwiki/pmwiki.php/Main/HandWave' (found on page 'Slaves_of_War/Polylectiloquy') because I have not been asked to show http->https upgrades, and I was redirected to 'https://tvtropes.org/pmwiki/pmwiki.php/Main/HandWave'.
@@ -2443,14 +1102,8 @@
 Skipping URL 'http://scienceblogs.com/loom/2006/08/01/a_nation_of_cowards_blame_the.php' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://scienceblogs.com/loom/2006/08/01/a_nation_of_cowards_blame_the.php'.
 
-NG (404) page http://www.plosone.org/article/fetchFirstRepresentation.action?uri=info:doi/10.1371/journal.pone.0002276.s001
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  IA suggests http://web.archive.org/web/20080928122544/http://www.plosone.org/article/fetchFirstRepresentation.action?uri=info:doi/10.1371/journal.pone.0002276.s001
+Skipping URL 'http://web.archive.org/web/20080928122544/http://www.plosone.org/article/fetchFirstRepresentation.action?uri=info:doi/10.1371/journal.pone.0002276.s001' (found on page 'Slaves_of_War/Neo-Biology') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.youtube.com/watch?v=dTljaIVseTc' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=dTljaIVseTc'.
 
-NG (404) page http://konokoffin.bungie.org/forums/index.php?threadid=9&page=16#post_3171
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Polylectiloquy
- Try browsing https://web.archive.org/web/*/http://konokoffin.bungie.org/forums/index.php?threadid=9&page=16#post_3171
-
 Skipping URL 'http://www.nature.com/nature/journal/v450/n7172/full/nature06350.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.nature.com/nature/journal/v450/n7172/full/nature06350.html'.
 
@@ -2487,8 +1140,4 @@
 Skipping URL 'http://web.williams.edu/Biology/explodingflower/movies.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://web.williams.edu/Biology/explodingflower/movies.html'.
 
-RD (301) file http://www.types-of-flowers.org/pictures/resurrection_plant.jpg
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://www.types-of-flowers.org/wp-content/uploads/2019/06/postpage-3.jpg
-
 Skipping URL 'http://news.yahoo.com/carnivorous-plants-employ-bodyguard-ants-213207637.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://news.yahoo.com/carnivorous-plants-employ-bodyguard-ants-213207637.html'.
 
@@ -2505,40 +1154,4 @@
 Skipping URL 'http://www.wired.com/2015/02/absurd-creature-of-the-week-notothenioids/' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.wired.com/2015/02/absurd-creature-of-the-week-notothenioids/'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1506
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1506
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1736
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1736
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1957
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1957
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1938
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1938
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2001
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2001
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2000
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2000
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2003
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2003
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1515
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1515
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=33838
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=33838
-
 Skipping URL 'http://web.archive.org/web/20000824120335/http://www.gamepen.com/preview/PC/08_12_1999_750_1.asp' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
 
@@ -2571,14 +1184,6 @@
 Skipping URL 'http://scifi.stackexchange.com/questions/18406/why-are-droids-tortured' (found on page 'CHAPTER_07_._A_FRIEND_IN_NEED') because I have not been asked to show http->https upgrades, and I was redirected to 'https://scifi.stackexchange.com/questions/18406/why-are-droids-tortured'.
 
-RD (301) page https://sketchfab.com/models/17d6910f28ac44b3bef7a4c69d0f09d9
-  linked from https://wiki.oni2.net/User_talk:Geyser/IonEyes
-  Server suggests https://sketchfab.com/3d-models/chigaru-beyond-human-artstation-challenge-17d6910f28ac44b3bef7a4c69d0f09d9
-
 Skipping URL 'http://www.youtube.com/watch?v=kY8uH5vRt3Q' (found on page 'BINA/PAR3') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=kY8uH5vRt3Q'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2723
-  linked from https://wiki.oni2.net/Music/Ingame
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2723
-
 Skipping URL 'http://www.youtube.com/watch?v=HFwnABhkGHo' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=HFwnABhkGHo'.
 
@@ -2593,39 +1198,7 @@
 Skipping URL 'http://www.adobe.com/products/fuse.html' (found on page 'Restless_Souls/Wishlist') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.adobe.com/products/fuse.html'.
 
-NG (404) file http://iritscen.oni2.net/images/tnl/Oni-BadShadows3.jpg
-  linked from https://wiki.oni2.net/Talk:Oni/Positioning
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/images/tnl/Oni-BadShadows3.jpg
-
-NG (404) file http://iritscen.oni2.net/images/tnl/Oni-Ch2LobbyLights1999.png
-  linked from https://wiki.oni2.net/Talk:Oni/Positioning
- Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/images/tnl/Oni-Ch2LobbyLights1999.png
-
-NG (404) file http://paradox.oni2.net/OniGalore/BINACJBOTrigger.oni
-  linked from https://wiki.oni2.net/XML:BINA/OBJC/TRIG
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOTrigger.oni
-
-NG (404) file http://paradox.oni2.net/OniGalore/BINACJBOTurret.oni
-  linked from https://wiki.oni2.net/XML:BINA/OBJC/TURR
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOTurret.oni
-
-NG (404) file http://paradox.oni2.net/OniGalore/BINACJBOWeapon.oni
-  linked from https://wiki.oni2.net/XML:BINA/OBJC/WEAP
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOWeapon.oni
-
-NG (404) file http://paradox.oni2.net/OniGalore/BINADBMTTextureMaterials.oni
-  linked from https://wiki.oni2.net/XML:BINA/TMBD
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINADBMTTextureMaterials.oni
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=27093#p27093
-  linked from https://wiki.oni2.net/XML:BINA/TMBD
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=27093
-
-NG (404) file http://paradox.oni2.net/OniGalore/BINACJBOPatrol%20Path.oni
-  linked from https://wiki.oni2.net/XML:BINA/OBJC/PATR
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/BINACJBOPatrol%20Path.oni
-
-RD (301) file http://cl.ly/3E0t0S2I1m0q1N3N3b1l/Invisible.png
+NG (503) page http://cl.ly/3f3r2b2S0x0A370T3g06
   linked from https://wiki.oni2.net/SketchUp_tutorials_and_tips
-  Server suggests https://my.cl.ly/content/3E0t0S2I1m0q1N3N3b1l
+ Try browsing https://web.archive.org/web/*/http://cl.ly/3f3r2b2S0x0A370T3g06
 
 Skipping URL 'http://web.archive.org/web/20031229194904/http://www.gamespot.com/features/gs/oni_pre/index.html' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
@@ -2635,12 +1208,4 @@
 Skipping URL 'http://web.archive.org/web/20080821123808/http://www.3dactionplanet.com/features/firstlooks/oni2/' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
 
-RD (301) page http://www.develop-online.net/news/36183/Ex-Bungie-dev-Apple-got-close-to-buying-us
-  linked from https://wiki.oni2.net/Oni
-  Server suggests https://www.mcvuk.com/news/36183/Ex-Bungie-dev-Apple-got-close-to-buying-us
-
-RD (301) page http://www.develop-online.net/news/36173/Steve-Jobs-raged-at-Microsoft-over-game-studio-sale
-  linked from https://wiki.oni2.net/Oni
-  Server suggests https://www.mcvuk.com/news/36173/Steve-Jobs-raged-at-Microsoft-over-game-studio-sale
-
 Skipping URL 'http://web.archive.org/web/19990824063223/http://avault.com/previews/preview_temp.asp?game=oni&page=1' (found on page 'Oni') because I have been asked not to check Wayback Machine links.
 
@@ -2659,18 +1224,6 @@
 Skipping URL 'http://web.archive.org/web/20050807011518/http://en.wikibooks.org/wiki/Oni_d20' (found on page 'A_Storyline/PostSummary2') because I have been asked not to check Wayback Machine links.
 
-RD (301) page http://www.youtube.com/watch?v=Zy59xjF21Rs#t=2m44s
-  linked from https://wiki.oni2.net/Oni2:A_Storyline/PostSummary1
-  Server suggests https://www.youtube.com/watch?v=Zy59xjF21Rs
-
-NG (000-6) page http://www.haibane.de/oni/
-  linked from https://wiki.oni2.net/Oni2:A_Storyline/PostSummary1
-  IA suggests http://web.archive.org/web/20081019100930/http://www.haibane.de/oni/
-
 Skipping URL 'http://store.steampowered.com/app/257400/Fuse/' (found on page 'Restless_Souls/Wishlist') because I have not been asked to show http->https upgrades, and I was redirected to 'https://store.steampowered.com/app/257400/Fuse/'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2024
-  linked from https://wiki.oni2.net/History_of_Oni_modding
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2024
-
 Skipping URL 'http://www.sec.gov/Archives/edgar/data/946581/000112528202003845/b320556.htm' (found on page 'Oni') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.sec.gov/Archives/edgar/data/946581/000112528202003845/b320556.htm'.
 
@@ -2679,82 +1232,22 @@
 Skipping URL 'http://phys.org/news/2014-10-leak-sensitive-isolated-air-gap-mobile.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2014-10-leak-sensitive-isolated-air-gap-mobile.html'.
 
-RD (301) page http://www.photoshare.ru/user/karasevarchi/
-  linked from https://wiki.oni2.net/New_levels
-  Server suggests http://photoshare.ru/user/karasevarchi/
-
-RD (308) page https://pcgamingwiki.com/wiki/Oni#Choppy_mouse.2Fkeyboard_control
-  linked from https://wiki.oni2.net/Mouse_control_issues
-  Server suggests https://www.pcgamingwiki.com/wiki/Oni
-
-RD (301) page https://forums.unrealengine.com/unreal-engine/marketplace/107921-advanced-locomotion-system-v3?p=1488046#post1488046
-  linked from https://wiki.oni2.net/UnrealOni/ALS
-  Server suggests https://forums.unrealengine.com/unreal-engine/marketplace/107921-advanced-locomotion-system-v3/page30#post1488046
-
 Skipping URL 'https://youtu.be/AMG2V3FiQ4U' (found on page 'UnrealOni/ALS') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=AMG2V3FiQ4U&feature=youtu.be'.
 
 Skipping URL 'https://youtu.be/yTniZCOCY7o' (found on page 'UnrealOni/ALS') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=yTniZCOCY7o&feature=youtu.be'.
 
-Skipping line 2438 ('NULL,NULL,https://www.youtube.com/watch?v=zvhmG0Bg0Cw&t=2m8s') because the namespace (and probably the page too) is 'NULL'. Probably the link is no longer in existence on the wiki.
-
-RD (301) page https://sketchfab.com/models/05c43504dfbe4a4ca438f91d44a24b4e
-  linked from https://wiki.oni2.net/User_talk:Geyser/IonEyes
-  Server suggests https://sketchfab.com/3d-models/robot-wr1-05c43504dfbe4a4ca438f91d44a24b4e
-
-RD (301) page https://sketchfab.com/models/cf7e6db618d64b9cb573df4409327e63
-  linked from https://wiki.oni2.net/User_talk:Geyser/IonEyes
-  Server suggests https://sketchfab.com/3d-models/mh07-cf7e6db618d64b9cb573df4409327e63
-
-RD (301) page https://sketchfab.com/models/daeecbd492f34f619944f5a3004cae11
-  linked from https://wiki.oni2.net/User_talk:Geyser/IonEyes
-  Server suggests https://sketchfab.com/3d-models/hazard-unit-free-model-daeecbd492f34f619944f5a3004cae11
-
-RD (301) page https://sketchfab.com/models/f71780758a79469d9988793e3a4a0f74
-  linked from https://wiki.oni2.net/User_talk:Geyser/IonEyes
-  Server suggests https://sketchfab.com/3d-models/robot-f71780758a79469d9988793e3a4a0f74
-
-RD (301) page https://sketchfab.com/models/0215653cb41547b68f71ea2e42320f91
-  linked from https://wiki.oni2.net/User_talk:Geyser/IonEyes
-  Server suggests https://sketchfab.com/3d-models/shelly-0215653cb41547b68f71ea2e42320f91
-
-NG (404) file http://script10k.oni2.net/wikifiles/main_not_working_without_commenting_commands(functions_split).zip
-  linked from https://wiki.oni2.net/Modding_errors
- Try browsing https://web.archive.org/web/*/http://script10k.oni2.net/wikifiles/main_not_working_without_commenting_commands(functions_split).zip
-
-NG (404) file http://script10k.oni2.net/wikifiles/main_split_in_two_files.zip
-  linked from https://wiki.oni2.net/Modding_errors
- Try browsing https://web.archive.org/web/*/http://script10k.oni2.net/wikifiles/main_split_in_two_files.zip
-
-RD (307) page https://share.allegorithmic.com/libraries?by_category_type_id=4
-  linked from https://wiki.oni2.net/Fuse
-  Server suggests https://share.substance3d.com/libraries?by_category_type_id=4
+Skipping line 2050 ('NULL,NULL,https://www.youtube.com/watch?v=zvhmG0Bg0Cw&t=2m8s') because the namespace (and probably the page too) is 'NULL'. Probably the link is no longer in existence on the wiki.
 
 Skipping URL 'http://www.imdb.com/title/tt0437086/?ref_=nv_sr_1' (found on page 'GUNNM') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.imdb.com/title/tt0437086/?ref_=nv_sr_1'.
 
-NG (404) page http://mods.oni2.net/node/131
-  linked from https://wiki.oni2.net/Anniversary_Edition/To-do
-  IA suggests http://web.archive.org/web/20191103180225/http://mods.oni2.net/node/131
-
 Skipping URL 'http://www.youtube.com/watch?v=qgJUbPWX5yE' (found on page 'ONLV') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=qgJUbPWX5yE'.
 
-RD (301) page http://forums.epicgames.com/threads/603122-Remus-high-resolution-skydome-texture-pack
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests https://forums.epicgames.com:443/threads/603122-Remus-high-resolution-skydome-texture-pack
-
 Skipping URL 'http://blenderartists.org/forum/showthread.php?224065-New-High-resolution-sky-pack-for-Blender' (found on page 'ONLV') because I have not been asked to show http->https upgrades, and I was redirected to 'https://blenderartists.org/forum/showthread.php?224065-New-High-resolution-sky-pack-for-Blender'.
 
 Skipping URL 'http://blenderartists.org/forum/showthread.php?24038-Free-high-res-skymaps-(Massive-07-update!)' (found on page 'ONLV') because I have not been asked to show http->https upgrades, and I was redirected to 'https://blenderartists.org/forum/showthread.php?24038-Free-high-res-skymaps-(Massive-07-update!)'.
 
-RD (301) page http://www.cgtextures.com/
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://www.textures.com/
-
 Skipping URL 'http://www.hsph.harvard.edu/news/press-releases/2012-releases/human-microbiome-project.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.hsph.harvard.edu/news/press-releases/2012-releases/human-microbiome-project.html'.
 
 Skipping URL 'http://web.archive.org/web/20030422190238/http://www.multiplayer.it:80/oniimpact/' (found on page 'Birgit_Q') because I have been asked not to check Wayback Machine links.
 
-IW       page http://de.wikipedia.org/wiki/Synthetische_Biologie#Ein_neues_R.C3.BCckgrat
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
-  You can use [[wp:Synthetische_Biologie#Ein_neues_R.C3.BCckgrat]]
-
 Skipping URL 'http://phys.org/news/2012-07-scientists-fingerprint-nanoscale-viruses.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2012-07-scientists-fingerprint-nanoscale-viruses.html'.
 
@@ -2763,47 +1256,15 @@
 Skipping URL 'http://youtu.be/vfKPzP5hiCo' (found on page 'ONLV') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=vfKPzP5hiCo&feature=youtu.be'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=36760#p36760
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=36760
-
-NG (404) page http://www.kxcad.net/Softimage_XSI/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm
-  linked from https://wiki.oni2.net/Mod_Tool
-  IA suggests http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm
-
-NG (403) page http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)
-  linked from https://wiki.oni2.net/Mod_Tool
-  IA suggests http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_%28XSISDK%29
-
-NG (403) page http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm
-  linked from https://wiki.oni2.net/Mod_Tool
-  IA suggests http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=19297#p19297
-  linked from https://wiki.oni2.net/AE:Modifying_textures
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=19297
+Skipping URL 'http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)' (found on page 'Mod_Tool') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20170617095054/http://softimage.wiki.softimage.com/xsidocs/EnvVars_EnvironmentVariableReference.htm' (found on page 'Mod_Tool') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.youtube.com/watch?v=RjGgk6SqdeQ' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=RjGgk6SqdeQ'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1229
-  linked from https://wiki.oni2.net/Mod_Tool
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1229
-
-NG (404) file http://edt.oni2.net/temp/China_8_4.zip
-  linked from https://wiki.oni2.net/User_talk:Script_10k
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/temp/China_8_4.zip
-
 Skipping URL 'http://www.w3schools.com/vbscript/vbscript_ref_functions.asp' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.w3schools.com/vbscript/vbscript_ref_functions.asp'.
 
-NG (403) page http://softimage.wiki.softimage.com/xsidocs/config_envirovars.htm
-  linked from https://wiki.oni2.net/Mod_Tool
-  IA suggests http://web.archive.org/web/20170309190841/http://softimage.wiki.softimage.com/xsidocs/config_envirovars.htm
-
-NG (403) page http://softimage.wiki.softimage.com/xsidocs/EnvVars_SettingandUsingEnvironmentVariables.htm
-  linked from https://wiki.oni2.net/Mod_Tool
-  IA suggests http://web.archive.org/web/20180416194626/http://softimage.wiki.softimage.com/xsidocs/EnvVars_SettingandUsingEnvironmentVariables.htm
-
-NG (403) page http://softimage.wiki.softimage.com/xsidocs/EnvVars_EnvironmentVariableReference.htm
-  linked from https://wiki.oni2.net/Mod_Tool
-  IA suggests http://web.archive.org/web/20170617095054/http://softimage.wiki.softimage.com/xsidocs/EnvVars_EnvironmentVariableReference.htm
+Skipping URL 'http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm' (found on page 'Mod_Tool') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20150504221146/http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/' (found on page 'Mod_Tool') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://dl.getdropbox.com/u/60508/FloatingDots.BINA' (found on page 'Geyser/DoxProjectImagoTalkBackup') because I have not been asked to show http->https upgrades, and I was redirected to 'https://dl.getdropbox.com/u/60508/FloatingDots.BINA'.
@@ -2813,68 +1274,18 @@
 Skipping URL 'http://www.youtube.com/watch?v=Sd09YP_Bl9M&t=1m15s' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=Sd09YP_Bl9M&t=1m15s'.
 
-NG (403) page http://softimage.wiki.softimage.com/sdkdocs/cus_addons_WalkthroughBuildinganAddon.htm
-  linked from https://wiki.oni2.net/Mod_Tool
- Try browsing https://web.archive.org/web/*/http://softimage.wiki.softimage.com/sdkdocs/cus_addons_WalkthroughBuildinganAddon.htm
-
-NG (404) file https://dl.dropbox.com/u/139715/OniGalore/ModToolScript/Oni_env_vars.txt
-  linked from https://wiki.oni2.net/Mod_Tool
- Try browsing https://web.archive.org/web/*/https://dl.dropbox.com/u/139715/OniGalore/ModToolScript/Oni_env_vars.txt
+Skipping URL 'http://web.archive.org/web/20170309190841/http://softimage.wiki.softimage.com/xsidocs/config_envirovars.htm' (found on page 'Mod_Tool') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20180416194626/http://softimage.wiki.softimage.com/xsidocs/EnvVars_SettingandUsingEnvironmentVariables.htm' (found on page 'Mod_Tool') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/filesfolders/files/' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/filesfolders/files/'.
 
-RD (301) page http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/
-  linked from https://wiki.oni2.net/Mod_Tool
-  Server suggests https://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/
-
-RD (301) page http://blogs.technet.com/b/heyscriptingguy/archive/2006/12/08/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script.aspx
-  linked from https://wiki.oni2.net/Mod_Tool
-  Server suggests https://docs.microsoft.com/en-us/archive/blogs/heyscriptingguy/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script
-
 Skipping URL 'http://www.moddb.com/downloads/autodesk-softimage-mod-tool-75' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.moddb.com/downloads/autodesk-softimage-mod-tool-75'.
 
 Skipping URL 'http://support.microsoft.com/kb/152457' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://support.microsoft.com/kb/152457'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2357
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2357
-
-RD (301) page http://www.gamefaqs.com/pc/62551-messiah/critic
-  linked from https://wiki.oni2.net/Talk:Oni/Positioning
-  Server suggests https://gamefaqs.gamespot.com/pc/62551-messiah/critic
-
-EI       file http://wiki.oni2.net/File:Changed_Load_Menu.png
-  linked from https://wiki.oni2.net/XML:WMDD
-  Just use [[File:Changed_Load_Menu.png]]
-
-Skipping URL 'https://youtu.be/RZSeUP-cCVA' (found on page 'Restless_Souls/Wishlist') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=RZSeUP-cCVA&feature=youtu.be'.
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1807
-  linked from https://wiki.oni2.net/User:Samer
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1807
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1240
-  linked from https://wiki.oni2.net/Shinatama_Bot
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1240
-
-RD (301) page http://www.youtube.com/watch?feature=player_detailpage&v=YLZ2hJZvrmo#t=82s
-  linked from https://wiki.oni2.net/Casual_Tankers
-  Server suggests https://www.youtube.com/watch?feature=player_detailpage&v=YLZ2hJZvrmo
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2416
-  linked from https://wiki.oni2.net/Casual_Tankers
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2416
-
 Skipping URL 'http://m.facebook.com/groups/186656799756?refid=27' (found on page 'Samer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://m.facebook.com/groups/186656799756?refid=27'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test.zip
-  linked from https://wiki.oni2.net/XML_talk:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test.zip
-
 Skipping URL 'http://www.youtube.com/channel/UCtTcOh2t7wRZ5rXzMmWt6xA' (found on page 'Samer') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/channel/UCtTcOh2t7wRZ5rXzMmWt6xA'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2640
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2640
-
 Skipping URL 'http://www.nature.com/nm/journal/v5/n12/abs/nm1299_1410.html' (found on page 'Bertram_Navarre') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.nature.com/nm/journal/v5/n12/abs/nm1299_1410.html'.
 
@@ -2883,32 +1294,4 @@
 Skipping URL 'http://www.sciencedaily.com/releases/2013/01/130110121020.htm' (found on page 'Bertram_Navarre') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.sciencedaily.com/releases/2013/01/130110121020.htm'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2423
-  linked from https://wiki.oni2.net/User:Samer
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2423
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1317
-  linked from https://wiki.oni2.net/Regenerating_Fury
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1317
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2046
-  linked from https://wiki.oni2.net/Regenerating_Tanker
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2046
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=46869#p46869
-  linked from https://wiki.oni2.net/Sarai
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=46869
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=16272#p16272
-  linked from https://wiki.oni2.net/Sarai
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=16272
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2445
-  linked from https://wiki.oni2.net/BGI_characters
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2445
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=1329
-  linked from https://wiki.oni2.net/BGI_characters
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=1329
-
 Skipping URL 'http://www.youtube.com/watch?v=4-P82ctyS2E' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=4-P82ctyS2E'.
 
@@ -2925,12 +1308,4 @@
 Skipping URL 'http://www.youtube.com/watch?v=yD6Ai8uufJI' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=yD6Ai8uufJI'.
 
-RD (301) page http://www.mwusers.com/forums/showthread.php?18647-onclick-in-wikitext&s=4573f23d960e24c3c6523e4a072b4ba9&p=61594&viewfull=1#post61594
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Archive1
-  Server suggests http://mwusers.com/forums/showthread.php?18647-onclick-in-wikitext&s=4573f23d960e24c3c6523e4a072b4ba9&p=61594&viewfull=1
-
-NG (404) file https://dl.dropbox.com/u/139715/temp/ssg_overviews_wikified.txt
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Archive1
- Try browsing https://web.archive.org/web/*/https://dl.dropbox.com/u/139715/temp/ssg_overviews_wikified.txt
-
 Skipping URL 'http://www.youtube.com/watch?v=ANQWWqECzI8' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=ANQWWqECzI8'.
 
@@ -2979,20 +1354,8 @@
 Skipping URL 'http://www.youtube.com/watch?v=XoE3cBDOAhQ' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=XoE3cBDOAhQ'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/Level_19_reimport.zip
-  linked from https://wiki.oni2.net/XML:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/Level_19_reimport.zip
-
 Skipping URL 'http://www.youtube.com/watch?v=0onq6m7oius' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=0onq6m7oius'.
 
 Skipping URL 'http://www.youtube.com/watch?v=Wv1IG6QXTMs' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=Wv1IG6QXTMs'.
 
-NG (404) file http://paradox.oni2.net/OniGalore/automatic_rigging_test_files.zip
-  linked from https://wiki.oni2.net/Mod_Tool/Rigging
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/automatic_rigging_test_files.zip
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2723
-  linked from https://wiki.oni2.net/Music/CD
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2723
-
 Skipping URL 'http://web.archive.org/web/20070401000000*/http://ssg.oni2.net' (found on page 'History_of_Oni_modding') because I have been asked not to check Wayback Machine links.
 
@@ -3021,26 +1384,6 @@
 Skipping URL 'http://www.youtube.com/watch?v=Ci44KaCq7UY' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=Ci44KaCq7UY'.
 
-NG (404) file http://edt.oni2.net/mods/lab_main.bsl
-  linked from https://wiki.oni2.net/Mac_mods
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/mods/lab_main.bsl
-
-NG (404) page https://dl.dropbox.com/u/139715/temp/explanation_fixed_to_screen.htm
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Archive1
- Try browsing https://web.archive.org/web/*/https://dl.dropbox.com/u/139715/temp/explanation_fixed_to_screen.htm
-
 Skipping URL 'http://www.youtube.com/playlist?list=PLFasmrd0ZfRm80eHfK3g_eDAXJWb0PM5I' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/playlist?list=PLFasmrd0ZfRm80eHfK3g_eDAXJWb0PM5I'.
 
-NG (404) file http://edt.oni2.net/mods/level0_Final.sep.zip
-  linked from https://wiki.oni2.net/Mac_mods
-  IA suggests http://web.archive.org/web/20071020142729/http://edt.oni2.net/mods/level0_Final.sep.zip
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/temp/snipers.dae
-  linked from https://wiki.oni2.net/XML_talk:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/temp/snipers.dae
-
-RD (302) page https://docs.unrealengine.com/latest/INT/Engine/Audio/index.html
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://docs.unrealengine.com/en-US/Engine/Audio/index.html
-
 Skipping URL 'http://www.youtube.com/watch?v=oOBl_6nDVG4' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=oOBl_6nDVG4'.
 
@@ -3051,80 +1394,16 @@
 Skipping URL 'http://phys.org/news/2015-04-human-technical-ingenuity-required-defeat.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2015-04-human-technical-ingenuity-required-defeat.html'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=36174#p36174
-  linked from https://wiki.oni2.net/Anniversary_Edition/To-do
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=36174
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=27161#p27161
-  linked from https://wiki.oni2.net/Anniversary_Edition/To-do
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=27161
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=43490#p43490
-  linked from https://wiki.oni2.net/Anniversary_Edition/To-do
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=43490
-
 Skipping URL 'http://youtu.be/Em6wa5JTQNM' (found on page 'ONLV') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=Em6wa5JTQNM&feature=youtu.be'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/CRSA_wip.txt
-  linked from https://wiki.oni2.net/XML_talk:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/CRSA_wip.txt
-
 Skipping URL 'http://www.youtube.com/watch?v=CDuQHITARk4' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=CDuQHITARk4'.
 
 Skipping URL 'http://youtu.be/eq91flq6YkU' (found on page 'ONWC') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=eq91flq6YkU&feature=youtu.be'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/global.png
-  linked from https://wiki.oni2.net/XML_talk:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/global.png
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/OniMatrix_src.zip
-  linked from https://wiki.oni2.net/XML_talk:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniMatrix_src.zip
-
 Skipping URL 'http://www.youtube.com/watch?v=YICB7qugrtc' (found on page 'ONLV') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=YICB7qugrtc'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_manually_imported.png
-  linked from https://wiki.oni2.net/XML_talk:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_manually_imported.png
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=29089#p29089
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=29089
-
 Skipping URL 'http://phys.org/news/2012-10-scientists-defects-materials.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2012-10-scientists-defects-materials.html'.
 
 Skipping URL 'http://www.mono-project.com/download/' (found on page 'Anniversary_Edition') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.mono-project.com/download/'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2302
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2302
-
-RD (301) page http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=6839916
-  linked from https://wiki.oni2.net/Talk:OniSplit/Archive1
-  Server suggests https://www.autodesk.com/
-
-NG (404) file http://edt.oni2.net/3D/MCfiles.zip
-  linked from https://wiki.oni2.net/Talk:OniSplit/Archive1
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/3D/MCfiles.zip
-
-NG (404) file http://edt.oni2.net/3D/MC_crash.zip
-  linked from https://wiki.oni2.net/Talk:OniSplit/Archive1
- Try browsing https://web.archive.org/web/*/http://edt.oni2.net/3D/MC_crash.zip
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2698
-  linked from https://wiki.oni2.net/History_of_Oni_modding
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2698
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2525
-  linked from https://wiki.oni2.net/Anniversary_Edition/Installer
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2525
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2242
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2242
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2235
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2235
-
 Skipping URL 'http://www.youtube.com/watch?v=RbfE6k2ulW4' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=RbfE6k2ulW4'.
 
@@ -3133,8 +1412,4 @@
 Skipping URL 'http://www.youtube.com/watch?v=MArbspInwiM' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=MArbspInwiM'.
 
-NG (404) file http://paradox.oni2.net/OniGalore/experimental_auto_rigging.png
-  linked from https://wiki.oni2.net/Mod_Tool/Rigging
- Try browsing https://web.archive.org/web/*/http://paradox.oni2.net/OniGalore/experimental_auto_rigging.png
-
 Skipping URL 'http://www.youtube.com/watch?v=oHCnoThNL2c' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=oHCnoThNL2c'.
 
@@ -3143,32 +1418,8 @@
 Skipping URL 'http://www.youtube.com/watch?v=bib24bRXuhQ' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=bib24bRXuhQ'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=46869#p46869
-  linked from https://wiki.oni2.net/BGI_characters
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=46869
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2490
-  linked from https://wiki.oni2.net/BGI_characters
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2490
-
 Skipping URL 'http://youtu.be/vfKPzP5hiCo' (found on page 'ONLV') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=vfKPzP5hiCo&feature=youtu.be'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test_2.zip
-  linked from https://wiki.oni2.net/XML_talk:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test_2.zip
-
 Skipping URL 'http://www.youtube.com/watch?v=Yj3ptZnZtx0' (found on page 'ONLV') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=Yj3ptZnZtx0'.
 
-RD (302) page https://wiki.unrealengine.com/Unreal_Motion_Graphics_(UMG)_UI_-_Inventory_Tutorial_Playlist
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://forums.unrealengine.com:443/unreal-engine/announcements-and-releases/1745504-a-new-community-hosted-unreal-engine-wiki
-
-RD (302) page https://docs.unrealengine.com/latest/INT/Videos/PLZlv_N0_O1gZalvQWYs8sc7RP_-8eSr3i/
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://docs.unrealengine.com/en-US/Videos/PLZlv_N0_O1gZalvQWYs8sc7RP_-8eSr3i/index.html
-
-NG (403) page http://softimage.wiki.softimage.com/xsidocs/audio_LoadingAudioFilesintheAnimationMixer.htm#Rdy36984
-  linked from https://wiki.oni2.net/Mod_Tool
-  IA suggests http://web.archive.org/web/20150908065116/http://softimage.wiki.softimage.com/xsidocs/audio_LoadingAudioFilesintheAnimationMixer.htm
-
 Skipping URL 'http://www.youtube.com/watch?v=-xC31Q7zpM0' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=-xC31Q7zpM0'.
 
@@ -3177,8 +1428,4 @@
 Skipping URL 'http://www.youtube.com/watch?v=PRDZaEo5CGo' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=PRDZaEo5CGo'.
 
-NG (403) page http://softimage.wiki.softimage.com/xsidocs/nla_mixer.htm#Rdw10200
-  linked from https://wiki.oni2.net/Mod_Tool
-  IA suggests http://web.archive.org/web/20150623002735/http://softimage.wiki.softimage.com/xsidocs/nla_mixer.htm
-
 Skipping URL 'http://www.youtube.com/watch?v=Yj3ptZnZtx0' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=Yj3ptZnZtx0'.
 
@@ -3187,104 +1434,20 @@
 Skipping URL 'http://phys.org/news/2013-09-hardware-trojans-undetectable.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2013-09-hardware-trojans-undetectable.html'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/Model.vbs
-  linked from https://wiki.oni2.net/Mod_Tool
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/Model.vbs
-
 Skipping URL 'http://www.spektrum.de/inhaltsverzeichnis/spezial-physik-mathematik-technik-3-2013/1169804' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.spektrum.de/inhaltsverzeichnis/spezial-physik-mathematik-technik-3-2013/1169804'.
 
-Skipping URL 'http://youtu.be/zWT0-LsjjBU' (found on page 'ONLV') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=zWT0-LsjjBU&feature=youtu.be'.
-
-NG (403) page http://softimage.wiki.softimage.com/xsidocs/tex_vcolor_CreatingColoratVerticesCAVMaps.htm
-  linked from https://wiki.oni2.net/XML:ONLV
-  IA suggests http://web.archive.org/web/20170529111607/http://softimage.wiki.softimage.com/xsidocs/tex_vcolor_CreatingColoratVerticesCAVMaps.htm
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2656
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2656
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2271
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2271
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2024
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2024
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/local_correct_pelvis.png
-  linked from https://wiki.oni2.net/XML_talk:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/local_correct_pelvis.png
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/extract_ENVP.vbs
-  linked from https://wiki.oni2.net/XML:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/extract_ENVP.vbs
-
-Skipping URL 'http://youtu.be/8HbPeNYqdY0' (found on page 'ONLV') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=8HbPeNYqdY0&feature=youtu.be'.
-
 Skipping URL 'http://www.game-artist.net/forums/support-tech-discussion/5622-burning-shadows-onto-texture-xsi.html' (found on page 'ONLV') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.game-artist.net/forums/support-tech-discussion/5622-burning-shadows-onto-texture-xsi.html'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2657
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2657
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/euler_to_matrix_to_euler.txt
-  linked from https://wiki.oni2.net/Mod_Tool/Oni_level_rebuilder
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/euler_to_matrix_to_euler.txt
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=47612#p47612
-  linked from https://wiki.oni2.net/Mod_Tool/Oni_level_rebuilder
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=47612
-
 Skipping URL 'http://youtu.be/2_3xo8-31-U' (found on page 'Mod_Tool/OniTools_addon') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=2_3xo8-31-U&feature=youtu.be'.
 
-RD (301) page https://paperpedia.fandom.com/it/wiki/PK2
-  linked from https://wiki.oni2.net/Birgit_Q
-  Server suggests https://paperpedia.fandom.com/it/wiki/PK%C2%B2
-
 Skipping URL 'http://www.youtube.com/watch?v=ioMQ2rBVO4g' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=ioMQ2rBVO4g'.
 
-RD (302) page http://dot3d.blogspot.de/2009/10/softimage-ice-tree-building-step-by.html
-  linked from https://wiki.oni2.net/Mod_Tool
-  Server suggests http://dot3d.blogspot.com/2009/10/softimage-ice-tree-building-step-by.html
-
-RD (301) page https://support.solidangle.com/display/SItoAUG/ICE
-  linked from https://wiki.oni2.net/Mod_Tool
-  Server suggests https://docs.arnoldrenderer.com/display/SItoAUG/ICE
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_to_Mod_Tool_wip.png
-  linked from https://wiki.oni2.net/XML:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_to_Mod_Tool_wip.png
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/temp/CRSA_to_Mod_Tool.txt
-  linked from https://wiki.oni2.net/XML:ONLV
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/temp/CRSA_to_Mod_Tool.txt
-
-RD (301) page http://www.w3.org/TR/xpath/
-  linked from https://wiki.oni2.net/XmlTools
-  Server suggests https://www.w3.org/TR/xpath/all/
+Skipping URL 'http://web.archive.org/web/20170529111607/http://softimage.wiki.softimage.com/xsidocs/tex_vcolor_CreatingColoratVerticesCAVMaps.htm' (found on page 'ONLV') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_04.html' (found on page 'XmlTools') because I have not been asked to show http->https upgrades, and I was redirected to 'https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_04.html'.
 
 Skipping URL 'http://www.youtube.com/playlist?list=PLZQupCr62BGlWdKfx6QV-jArcjDgU64Fs' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/playlist?list=PLZQupCr62BGlWdKfx6QV-jArcjDgU64Fs'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2698
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2698
-
-RD (301) page http://www.redsorceress.com/skybox.html
-  linked from https://wiki.oni2.net/XML:ONLV
-  Server suggests http://www.redsorceress.com/
-
 Skipping URL 'http://www.w3schools.com/xml/xml_whatis.asp' (found on page 'XmlTools') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.w3schools.com/xml/xml_whatis.asp'.
 
-NG (000-6) page http://www.petetracey.com/jsxml/index.html
-  linked from https://wiki.oni2.net/XmlTools/Full_documentation
- Try browsing https://web.archive.org/web/*/http://www.petetracey.com/jsxml/index.html
-
-NG (000-6) page http://www.petetracey.com/jsxml/documentation.html
-  linked from https://wiki.oni2.net/XmlTools/Full_documentation
- Try browsing https://web.archive.org/web/*/http://www.petetracey.com/jsxml/documentation.html
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/temp/DoorClassMaker_wip.txt
-  linked from https://wiki.oni2.net/XML:DOOR
-  IA suggests http://web.archive.org/web/20160225034500/https://dl.dropboxusercontent.com/u/139715/temp/DoorClassMaker_wip.txt
-
 Skipping URL 'http://www.youtube.com/watch?v=IxJ8vp3vTW0' (found on page 'Oni') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=IxJ8vp3vTW0'.
 
@@ -3293,24 +1456,12 @@
 Skipping URL 'http://www.youtube.com/playlist?list=PLFa3CejQbQ2IAihiuD58DLPUraoSccuOt' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/playlist?list=PLFa3CejQbQ2IAihiuD58DLPUraoSccuOt'.
 
-IW       page http://de.wikipedia.org/wiki/Streptomyces
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
-  You can use [[wp:Streptomyces]]
-
 Skipping URL 'http://www.sciencedaily.com/releases/2014/04/140414154450.htm' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.sciencedaily.com/releases/2014/04/140414154450.htm'.
 
 Skipping URL 'http://phys.org/news/2014-11-natural-gut-viruses-bacterial-cousins.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2014-11-natural-gut-viruses-bacterial-cousins.html'.
 
-NG (404) page http://www.allgame.com/game.php?id=24182&tab=review
-  linked from https://wiki.oni2.net/Reviews
-  IA suggests http://web.archive.org/web/20141115004950/http://www.allgame.com/game.php?id=24182
-
 Skipping URL 'http://web.archive.org/web/20071001025651/http://www.cincinnati.com/freetime/games/reviews/030701_oni.html' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://web.archive.org/web/20010421185552/http://www.zdnet.com/egm/stories/main/0,11589,2685291,00.html' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
 
-RD (301) page http://www.eurogamer.net/articles/r_oni
-  linked from https://wiki.oni2.net/Reviews
-  Server suggests https://www.eurogamer.net:443/articles/r_oni
-
 Skipping URL 'http://www.gamerevolution.com/review/oni' (found on page 'Reviews') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.gamerevolution.com/review/oni'.
 
@@ -3337,24 +1488,8 @@
 Skipping URL 'http://web.archive.org/web/20011018164207/http://www.playboy.com/sports/games/oni/index.html' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
 
-NG (000-6) page http://www.haibane.de/oni
-  linked from https://wiki.oni2.net/Category:Art_by_owldreamer
-  IA suggests http://web.archive.org/web/20081019100930/http://www.haibane.de/oni/
-
 Skipping URL 'http://www.autodesk.com/education/free-software/softimage' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.autodesk.com/education/free-software/softimage'.
 
 Skipping URL 'http://www.autodesk.com/products/softimage/overview' (found on page 'Mod_Tool') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.autodesk.com/products/softimage/overview'.
 
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?id=2657
-  linked from https://wiki.oni2.net/Mod_Tool/OniTools_addon
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?id=2657
-
-RD (301) page http://oni.bungie.org/community/forum/viewtopic.php?pid=48310#p48310
-  linked from https://wiki.oni2.net/Mod_Tool/OniTools_addon
-  Server suggests http://oni.bungie.org/forum/viewtopic.php?pid=48310
-
-RD (301) page http://phys.org/news/2014-08-tiny-chip-mimics-brain-supercomputer.html#ajTabs
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
-  Server suggests https://phys.org/news/2014-08-tiny-chip-mimics-brain-supercomputer.html
-
 Skipping URL 'http://phys.org/news/2014-08-optalysys-prototype-optical-processor.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2014-08-optalysys-prototype-optical-processor.html'.
 
@@ -3375,23 +1510,11 @@
 Skipping URL 'http://www.noip.com/' (found on page 'Zukai') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.noip.com/'.
 
-RD (301) page http://portforward.com/english/routers/port_forwarding/routerindex.htm
-  linked from https://wiki.oni2.net/Zukai
-  Server suggests https://portforward.com/routers.htm
-
-RD (301) page https://github.com/jp9000/obs-studio/releases
-  linked from https://wiki.oni2.net/Capturing_game_footage
-  Server suggests https://github.com/obsproject/obs-studio/releases
-
 Skipping URL 'http://www.rogueamoeba.com/audiohijack/' (found on page 'Capturing_game_footage') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.rogueamoeba.com/audiohijack/'.
 
 Skipping URL 'http://www.w3schools.com/vbscript/vbscript_ref_functions.asp' (found on page 'Mod_Tool/Scripting') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.w3schools.com/vbscript/vbscript_ref_functions.asp'.
 
-NG (403) page http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)
-  linked from https://wiki.oni2.net/Mod_Tool/Scripting
-  IA suggests http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_%28XSISDK%29
-
-NG (403) page http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm
-  linked from https://wiki.oni2.net/Mod_Tool/Scripting
-  IA suggests http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm
+Skipping URL 'https://web.archive.org/web/20150504221146/http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/' (found on page 'Mod_Tool/Scripting') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm' (found on page 'Mod_Tool/Scripting') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://ss64.com/vb/' (found on page 'Mod_Tool/Scripting') because I have not been asked to show http->https upgrades, and I was redirected to 'https://ss64.com/vb/'.
@@ -3399,42 +1522,12 @@
 Skipping URL 'http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/filesfolders/files/' (found on page 'Mod_Tool/Scripting') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/filesfolders/files/'.
 
-RD (301) page http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/
-  linked from https://wiki.oni2.net/Mod_Tool/Scripting
-  Server suggests https://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/
-
-NG (404) page http://www.kxcad.net/Softimage_XSI/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm
-  linked from https://wiki.oni2.net/Mod_Tool/Scripting
-  IA suggests http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm
-
-RD (301) page http://blogs.technet.com/b/heyscriptingguy/archive/2006/12/08/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script.aspx
-  linked from https://wiki.oni2.net/Mod_Tool/Scripting
-  Server suggests https://docs.microsoft.com/en-us/archive/blogs/heyscriptingguy/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script
+Skipping URL 'http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm' (found on page 'Mod_Tool/Scripting') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://phys.org/news/2015-05-cicadas-military-swarm-mini-drones.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2015-05-cicadas-military-swarm-mini-drones.html'.
 
-RD (301) page https://docs.microsoft.com/en-us/windows/desktop/sysinfo/registry-value-types
-  linked from https://wiki.oni2.net/Talk:Windows_Shell_Extension
-  Server suggests https://docs.microsoft.com/en-us/windows/win32/sysinfo/registry-value-types
-
 Skipping URL 'http://www.feralinteractive.com/en/' (found on page 'Rights') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.feralinteractive.com/en/'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/VanillaTURRs.jpg
-  linked from https://wiki.oni2.net/Talk:Mod_Tool/OniTools_addon
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/VanillaTURRs.jpg
-
 Skipping URL 'http://www.chicagoreader.com/chicago/monsters-in-a-box/Content?oid=901762' (found on page 'Oni') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.chicagoreader.com/chicago/monsters-in-a-box/Content?oid=901762'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/LevelBuilder/characters.zip
-  linked from https://wiki.oni2.net/Talk:Mod_Tool/OniTools_addon
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/LevelBuilder/characters.zip
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/BINA3RAP_Talk/BINA3RAPh2h_powerup_e01a.xml
-  linked from https://wiki.oni2.net/XML_talk:BINA/PAR3
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/BINA3RAP_Talk/BINA3RAPh2h_powerup_e01a.xml
-
-RD (301) page https://1drv.ms/u/s!AjLkf0bK7POzgpI-McvVNAPeU5Cz2w
-  linked from https://wiki.oni2.net/Talk:Mod_Tool/OniTools_addon
-  Server suggests https://onedrive.live.com/redir?resid=B3F3ECCA467FE432!35134&authkey=!ADHL1TQD3lOQs9s
-
 Skipping URL 'http://phys.org/news/2012-03-laser-lightning-rod-electricity.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2012-03-laser-lightning-rod-electricity.html'.
 
@@ -3445,28 +1538,4 @@
 Skipping URL 'http://nele-diel.deviantart.com/art/Forest-Glade-425986033' (found on page 'Restless_Souls') because I have not been asked to show http->https upgrades, and I was redirected to 'https://nele-diel.deviantart.com/art/Forest-Glade-425986033'.
 
-RD (303) page https://www.nature.com/articles/s41586-019-1119-1
-  linked from https://wiki.oni2.net/Restless_Souls/Technology
-  Server suggests https://idp.nature.com/authorize?response_type=cookie&client_id=grover&redirect_uri=https%3A%2F%2Fwww.nature.com%2Farticles%2Fs41586-019-1119-1
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/OniSplit_source_code_v0.9.99.0.zip
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Archive1
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/OniSplit_source_code_v0.9.99.0.zip
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/JustDecompile.png
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Archive1
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/JustDecompile.png
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/VisualStudioCommunity.png
-  linked from https://wiki.oni2.net/User_talk:Paradox-01/Archive1
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/VisualStudioCommunity.png
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP_animated.png
-  linked from https://wiki.oni2.net/XML:TXMP
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP_animated.png
-
-NG (404) file https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP.png
-  linked from https://wiki.oni2.net/XML:TXMP
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP.png
-
 Skipping URL 'http://phys.org/news/2016-08-single-celled-fungi-alien-like-fusing-cells.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2016-08-single-celled-fungi-alien-like-fusing-cells.html'.
 
@@ -3475,24 +1544,12 @@
 Skipping URL 'http://phys.org/news/2016-09-microwaves-high-quality-graphene.html' (found on page 'Restless_Souls/Summary') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2016-09-microwaves-high-quality-graphene.html'.
 
-NG (404) file https://dl.dropboxusercontent.com/u/143726/temp/IntroImageLevel2Problem.zip
-  linked from https://wiki.oni2.net/XML_talk:TXMB
- Try browsing https://web.archive.org/web/*/https://dl.dropboxusercontent.com/u/143726/temp/IntroImageLevel2Problem.zip
-
-RD (301) page http://genius.com/10788822
-  linked from https://wiki.oni2.net/Talk:Restless_Souls
-  Server suggests https://genius.com/Zack-hemsey-no-mans-land-lyrics?referent_id=10788822#note-10788822
+Skipping URL 'http://web.archive.org/web/20180117132342/http://www.devasp.net/net/articles/display/139.html' (found on page 'TSFF') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://genius.com/10788822' (found on page 'Restless_Souls') because its expected result, '301', is in the exceptions list.
 
 Skipping URL 'http://phys.org/news/2016-11-quantum-physics-factor.html' (found on page 'Restless_Souls/Technology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2016-11-quantum-physics-factor.html'.
 
-NG (404) page http://www.devasp.net/net/articles/display/139.html
-  linked from https://wiki.oni2.net/XML_talk:TSFF
-  IA suggests http://web.archive.org/web/20180117132342/http://www.devasp.net/net/articles/display/139.html
-
 Skipping URL 'http://www.acutesystems.com/fonts.htm' (found on page 'TSFF') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.acutesystems.com/fonts.htm'.
 
-NG (500) page http://carnage.bungie.org/oniresforum/onires.archive.pl?read=107
-  linked from https://wiki.oni2.net/User_talk:Script_10k
- Try browsing https://web.archive.org/web/*/http://carnage.bungie.org/oniresforum/onires.archive.pl?read=107
-
 Skipping URL 'http://phys.org/news/2016-11-scientists-similarity-human-cells-neutron.html' (found on page 'Outside_the_box') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2016-11-scientists-similarity-human-cells-neutron.html'.
 
@@ -3503,47 +1560,9 @@
 Skipping URL 'https://youtu.be/4v_elVuwx0c?t=11m38s' (found on page 'Jello-cam') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=4v_elVuwx0c&feature=youtu.be&t=11m38s'.
 
-RD (301) page http://ghostintheshell.wikia.com/wiki/Operator
-  linked from https://wiki.oni2.net/Ghost_in_the_Shell
-  Server suggests https://ghostintheshell.fandom.com/wiki/Operator
-
-IW       page https://www.mediawiki.org/wiki/Release_notes
-  linked from https://wiki.oni2.net/User:Iritscen/WikiFuture
-  You can use [[mw:Release_notes]]
-
 Skipping URL 'http://wiki.oni2.net/w/index.php?title=Ai2_allpassive&redirect=no' (found on page 'Noredirect') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/index.php?title=Ai2_allpassive&redirect=no'.
 
-Skipping URL 'http://wiki.oni2.net/Oni2:Slaves_of_War' on line 2890 because it was found on JavaScript page 'Iritscen/vector.js'.
-
-EI       page http://wiki.oni2.net/New_BGI_Characters#BGI_Hammer
-  linked from https://wiki.oni2.net/User:Samer
-  Just use [[New_BGI_Characters#BGI_Hammer]]
-
-EI       page http://wiki.oni2.net/New_BGI_Characters#BGI_Agents
-  linked from https://wiki.oni2.net/User:Samer
-  Just use [[New_BGI_Characters#BGI_Agents]]
-
-EI       page http://wiki.oni2.net/New_BGI_Characters#BGI_NinjaBot
-  linked from https://wiki.oni2.net/User:Samer
-  Just use [[New_BGI_Characters#BGI_NinjaBot]]
-
-EI       page http://wiki.oni2.net/New_BGI_Characters#BGI_Heavy_Bot
-  linked from https://wiki.oni2.net/User:Samer
-  Just use [[New_BGI_Characters#BGI_Heavy_Bot]]
-
-EI       page http://wiki.oni2.net/AE:BGI#Candidate
-  linked from https://wiki.oni2.net/User:Samer
-  Just use [[AE:BGI#Candidate]]
-
-EI       page http://wiki.oni2.net/Joint_Story
-  linked from https://wiki.oni2.net/User:Samer
-  Just use [[Joint_Story]]
-
-EI       page http://wiki.oni2.net/AE:BGI#Executives
-  linked from https://wiki.oni2.net/BGI_characters
-  Just use [[AE:BGI#Executives]]
-
-EI       page http://wiki.oni2.net/AE:BGI#Candidate
-  linked from https://wiki.oni2.net/BGI_characters
-  Just use [[AE:BGI#Candidate]]
+Skipping URL 'http://wiki.oni2.net/Oni2:Slaves_of_War' on line 2387 because it was found on JavaScript page 'Iritscen/vector.js'.
+
+Skipping URL 'http://web.archive.org/web/20071116050049/http://www23.brinkster.com/onichars/Downloads/files/' (found on page 'Modding_tools') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://wiki.oni2.net/w/index.php?title=MediaWiki:Wantedpages-summary&action=edit' (found on page 'Wantedpages-summary') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/index.php?title=MediaWiki:Wantedpages-summary&action=edit'.
@@ -3551,75 +1570,19 @@
 Skipping URL 'http://wiki.oni2.net/w/index.php?title=MediaWiki:Uncategorizedpages-summary&action=edit' (found on page 'Uncategorizedpages-summary') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/index.php?title=MediaWiki:Uncategorizedpages-summary&action=edit'.
 
-EI       page http://wiki.oni2.net/Mod_Tool#Rendering
-  linked from https://wiki.oni2.net/Talk:Mod_Tool
-  Just use [[Mod_Tool#Rendering]]
-
 Skipping URL 'http://wiki.oni2.net/w/index.php?title=Special:PrefixIndex&prefix=Grouping&namespace=100' (found on page 'Grouping') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/index.php?title=Special:PrefixIndex&prefix=Grouping&namespace=100'.
 
 Skipping URL 'http://wiki.oni2.net/w/index.php?title=Special:PrefixIndex&prefix=Grouping&namespace=100' (found on page 'Grouping/doc') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/index.php?title=Special:PrefixIndex&prefix=Grouping&namespace=100'.
 
-EI       file http://wiki.oni2.net/File:Intro_frame_0562.png
-  linked from https://wiki.oni2.net/Talk:Anime_and_manga
-  Just use [[File:Intro_frame_0562.png]]
-
-EI       file http://wiki.oni2.net/File:Intro_frame_0553.png
-  linked from https://wiki.oni2.net/Talk:Anime_and_manga
-  Just use [[File:Intro_frame_0553.png]]
-
-EI       page http://wiki.oni2.net/XML:TXMP
-  linked from https://wiki.oni2.net/XML_talk:TXMB
-  Just use [[XML:TXMP]]
-
 Skipping URL 'http://wiki.oni2.net/w/api.php?action=query&meta=siteinfo&siprop=interwikimap' (found on page 'Editing') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/api.php?action=query&meta=siteinfo&siprop=interwikimap'.
 
 Skipping URL 'http://wiki.oni2.net/w/extlinks.csv' (found on page 'Iritscen/WikiMods') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/extlinks.csv'.
 
-EI       page http://wiki.oni2.net/Quotes/Weapons#ph_stream
-  linked from https://wiki.oni2.net/Oni2_talk:The_Hasegawa_Journal
-  Just use [[Quotes/Weapons#ph_stream]]
-
 Skipping URL 'http://wiki.oni2.net/Main_Page' (found on page 'Common') because its expected result, 'EI', is in the exceptions list.
 
-RD (301) page http://usa.autodesk.com/adsk/servlet/pc/item?siteID=123112&id=22694909
-  linked from https://wiki.oni2.net/Restless_Souls/Wishlist
-  Server suggests https://www.autodesk.com/
-
-RD (301) page https://blenderartists.org/forum/showthread.php?208794-Can-we-toggle-between-face-edge-vert-select-modes-with-hotkeys&s=b38da8b5a0b20011e8850462988d8e3c&p=1990947&viewfull=1#post1990947
-  linked from https://wiki.oni2.net/Blender
-  Server suggests https://blenderartists.org/t/can-we-toggle-between-face-edge-vert-select-modes-with-hotkeys/498635
-
-NG (404) page https://docs.blender.org/manual/en/dev/modeling/meshes/editing/faces.html
-  linked from https://wiki.oni2.net/Blender
-  IA suggests http://web.archive.org/web/20190422232539/https://docs.blender.org/manual/en/dev/modeling/meshes/editing/faces.html
-
 Skipping URL 'http://www.cadnav.com/3d-models/model-39309.html' (found on page 'Blender') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.cadnav.com/3d-models/model-39309.html'.
 
 Skipping URL 'http://www.cadnav.com/3d-models/model-39309.html' (found on page 'Geyser/CharacterTutorialMixamoToUE4') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.cadnav.com/3d-models/model-39309.html'.
 
-RD (302) page https://www.unrealengine.com/marketplace/female-movement-animset-pro
-  linked from https://wiki.oni2.net/File:KatiaVersusKonokoFront.png
-  Server suggests https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro
-
-RD (302) page https://www.unrealengine.com/marketplace/female-movement-animset-pro
-  linked from https://wiki.oni2.net/User:Geyser/CharacterTutorialMakeHumanToUE4
-  Server suggests https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro
-
-RD (302) page https://docs.unrealengine.com/en-us/Engine/Animation/AnimHowTo/LayerEditing
-  linked from https://wiki.oni2.net/UnrealOni/Tutorials
-  Server suggests https://docs.unrealengine.com/en-US/Engine/Animation/AnimHowTo/LayerEditing/index.html
-
-IW       page https://en.wikipedia.org/wiki/Oni_(video_game)
-  linked from https://wiki.oni2.net/OniGalore:Community_portal
-  You can use [[wp:Oni_(video_game)]]
-
 Skipping URL 'https://youtu.be/jbrPu15jjPs?t=960' (found on page 'Oni') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=jbrPu15jjPs&feature=youtu.be&t=960'.
-
-IW       page https://en.wikipedia.org/wiki/Slovak_declension
-  linked from https://wiki.oni2.net/Slovak_Oni_game_manual
-  You can use [[wp:Slovak_declension]]
-
-RD (301) page https://docs.microsoft.com/en-us/windows/desktop/sysinfo/structure-of-the-registry
-  linked from https://wiki.oni2.net/Talk:Windows_Shell_Extension
-  Server suggests https://docs.microsoft.com/en-us/windows/win32/sysinfo/structure-of-the-registry
 
 EI       page https://wiki.oni2.net/Special:ListFiles?limit=500&ilsearch=Fallen
@@ -3627,30 +1590,8 @@
   Just use [[Special:ListFiles?limit=500&ilsearch=Fallen]]
 
-EI       file https://wiki.oni2.net/File:Art_for_E3_Banner_-_Konoko_puts_an_Elite_Striker_through_a_window.jpg
-  linked from https://wiki.oni2.net/User:Paradox-01/Colors
-  Just use [[File:Art_for_E3_Banner_-_Konoko_puts_an_Elite_Striker_through_a_window.jpg]]
-
-NG (500) page http://www.alhexx.com/releases/games/oni.html
-  linked from https://wiki.oni2.net/Category:Modding_tools
-  IA suggests http://web.archive.org/web/20101130143740/http://www.alhexx.com/releases/games/oni.html
-
-NG (404) page http://www23.brinkster.com/onichars/Downloads/files/
-  linked from https://wiki.oni2.net/Category:Modding_tools
-  IA suggests http://web.archive.org/web/20071116050049/http://www23.brinkster.com/onichars/Downloads/files/
-
-IW       page https://en.wikipedia.org/wiki/Selous_Game_Reserve
-  linked from https://wiki.oni2.net/Talk:Restless_Souls/Summary
-  You can use [[wp:Selous_Game_Reserve]]
-
-IW       page https://en.wikipedia.org/wiki/Persecution_of_people_with_albinism
-  linked from https://wiki.oni2.net/Oni2:Caged_Birds
-  You can use [[wp:Persecution_of_people_with_albinism]]
+Skipping URL 'http://web.archive.org/web/20101130143740/http://www.alhexx.com/releases/games/oni.html' (found on page 'Modding_tools') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://phys.org/news/2014-07-large-hadron-collider.html' (found on page 'Caged_Birds') because I have not been asked to show http->https upgrades, and I was redirected to 'https://phys.org/news/2014-07-large-hadron-collider.html'.
 
-RD (301) page https://tcrf.net
-  linked from https://wiki.oni2.net/Oni_2_(Angel_Studios)/Running
-  Server suggests https://tcrf.net/The_Cutting_Room_Floor
-
 Skipping URL 'http://oceanovidaescondida.files.wordpress.com/2008/04/branca.jpg' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://oceanovidaescondida.files.wordpress.com/2008/04/branca.jpg'.
 
@@ -3663,30 +1604,8 @@
 Skipping URL 'http://www.youtube.com/watch?v=cZcomBnNKXg' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=cZcomBnNKXg'.
 
-NG (530) page http://www.lifeslittlemysteries.com/2649-bone-eating-zombie-worms-strange-snapshots.html
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  IA suggests http://web.archive.org/web/20130329151717/http://www.lifeslittlemysteries.com/2649-bone-eating-zombie-worms-strange-snapshots.html?
-
-NG (503) page http://www.grindtv.com/outdoor/nature/post/alien-like-creature-is-a-feeding-brydes-whale/
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  IA suggests http://web.archive.org/web/20140905185006/http://www.grindtv.com/outdoor/nature/post/alien-like-creature-is-a-feeding-brydes-whale/
-
-RD (301) file http://24.media.tumblr.com/2ba3cf9b5711d7c9ff550e8ad7e579a5/tumblr_mis93qKMwM1s3yrubo1_1280.jpg
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://64.media.tumblr.com/2ba3cf9b5711d7c9ff550e8ad7e579a5/tumblr_mis93qKMwM1s3yrubo1_1280.jpg
-
-RD (301) file http://25.media.tumblr.com/8b8273434501f8e80c1b40f45e847f74/tumblr_mk2o3hbVxJ1s3yrubo1_1280.jpg
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://64.media.tumblr.com/8b8273434501f8e80c1b40f45e847f74/tumblr_mk2o3hbVxJ1s3yrubo1_1280.jpg
-
-RD (301) file http://24.media.tumblr.com/a20370b212c1ec4bbe3a08d02a26e4ef/tumblr_mlsc8eVAm51s3yrubo1_1280.jpg
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://64.media.tumblr.com/a20370b212c1ec4bbe3a08d02a26e4ef/tumblr_mlsc8eVAm51s3yrubo1_1280.jpg
+Skipping URL 'https://web.archive.org/web/20171213051543/https://www.today.com/news/dolphins-save-surfer-becoming-sharks-bait-2D80555123' (found on page 'Slaves_of_War/Neo-Biology') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://video.nationalgeographic.com/video/news/animals-news/psychedelic-fish-video-vin' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://video.nationalgeographic.com/video/news/animals-news/psychedelic-fish-video-vin'.
 
-RD (301) page http://www.futurity.org/science-technology/robo-squirrel-flags-snakes-with-infrared-tail/
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://www.futurity.org/robo-squirrel-flags-snakes-with-infrared-tail/
-
 Skipping URL 'http://www.scientificamerican.com/article.cfm?id=can-squid-fly' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.scientificamerican.com/article.cfm?id=can-squid-fly'.
 
@@ -3697,8 +1616,4 @@
 Skipping URL 'http://www.cracked.com/article_19988_the-5-most-nightmarish-worms-planet.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.cracked.com/article_19988_the-5-most-nightmarish-worms-planet.html'.
 
-RD (301) file http://24.media.tumblr.com/3e8ed38fbb46c34148a7516c1e3a8b42/tumblr_mgxo8qk4iO1s3yrubo1_r1_1280.jpg
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://64.media.tumblr.com/3e8ed38fbb46c34148a7516c1e3a8b42/tumblr_mgxo8qk4iO1s3yrubo1_r1_1280.jpg
-
 Skipping URL 'http://news.nationalgeographic.com/news/2005/09/0921_050921_amazon_ant_2.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://news.nationalgeographic.com/news/2005/09/0921_050921_amazon_ant_2.html'.
 
@@ -3709,13 +1624,5 @@
 Skipping URL 'http://www.livescience.com/40132-underwater-mystery-circles.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.livescience.com/40132-underwater-mystery-circles.html'.
 
-NG (503) page http://www.grindtv.com/wildlife/rare-photo-shows-crow-riding-atop-a-flying-bald-eagle
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  IA suggests http://web.archive.org/web/20171031060501/http://www.grindtv.com/wildlife/rare-photo-shows-crow-riding-atop-a-flying-bald-eagle/
-
 Skipping URL 'http://www.npr.org/blogs/krulwich/2011/06/01/128389587/look-up-the-billion-bug-highway-you-cant-see' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.npr.org/blogs/krulwich/2011/06/01/128389587/look-up-the-billion-bug-highway-you-cant-see'.
-
-RD (301) page http://arstechnica.com/science/2016/12/researchers-use-radar-to-track-3-5-trillion-insects-migrating-over-england/
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://arstechnica.com:443/science/2016/12/researchers-use-radar-to-track-3-5-trillion-insects-migrating-over-england/
 
 NG (000-28) page https://www.nationalgeographic.com/news/2012/11/121102-korean-speaking-elephant-talk-human-science-weird-animals/
@@ -3723,12 +1630,4 @@
  Try browsing https://web.archive.org/web/*/https://www.nationalgeographic.com/news/2012/11/121102-korean-speaking-elephant-talk-human-science-weird-animals/
 
-RD (301) page http://www.today.com/video/today/49579010#49579010
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://www.today.com/video/today/49579010
-
-RD (301) page http://digitaljournal.com/article/319493
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests http://www.digitaljournal.com/article/319493
-
 Skipping URL 'http://www.treehugger.com/natural-sciences/rare-interspecies-play-observed-between-dolphins-and-whales.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.treehugger.com/natural-sciences/rare-interspecies-play-observed-between-dolphins-and-whales.html'.
 
@@ -3745,13 +1644,7 @@
 Skipping URL 'http://www.pbs.org/wnet/nature/episodes/animal-odd-couples/full-episode/8009/' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.pbs.org/wnet/nature/episodes/animal-odd-couples/full-episode/8009/'.
 
-RD (302) page http://news.google.co.uk/newspapers?id=m7caAAAAIBAJ&sjid=iUkEAAAAIBAJ&pg=576,1832140&dq=animal-suicide
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://news.google.co.uk/newspapers?id=m7caAAAAIBAJ&sjid=iUkEAAAAIBAJ&pg=576,1832140&dq=animal-suicide&hl=en
-
 Skipping URL 'http://www.time.com/time/health/article/0,8599,1973486,00.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.time.com/time/health/article/0,8599,1973486,00.html'.
 
-RD (301) page http://www.mnn.com/earth-matters/animals/stories/are-bears-purposely-committing-suicide-to-protest-the-horror-of-bile-f
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://www.treehugger.com:443/earth-matters/animals/stories/are-bears-purposely-committing-suicide-to-protest-the-horror-of-bile-f
+Skipping URL 'http://web.archive.org/web/20140905185006/http://www.grindtv.com/outdoor/nature/post/alien-like-creature-is-a-feeding-brydes-whale/' (found on page 'Slaves_of_War/Neo-Biology') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.psychologytoday.com/blog/animals-and-us/201006/are-humans-the-only-animals-keep-pets' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.psychologytoday.com/blog/animals-and-us/201006/are-humans-the-only-animals-keep-pets'.
@@ -3759,38 +1652,10 @@
 Skipping URL 'http://abcnews.go.com/blogs/technology/2012/01/dogs-use-subway-cat-takes-bus-and-other-adventures-in-animal-intelligence/' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://abcnews.go.com/blogs/technology/2012/01/dogs-use-subway-cat-takes-bus-and-other-adventures-in-animal-intelligence/'.
 
-RD (301) page http://blogs.discovermagazine.com/notrocketscience/2012/02/28/when-meeting-up-at-sea-bottlenose-dolphins-exchange-name-like-whistles/
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://blogs.discovermagazine.com:443/notrocketscience/2012/02/28/when-meeting-up-at-sea-bottlenose-dolphins-exchange-name-like-whistles/
-
 Skipping URL 'http://abcnews.go.com/blogs/technology/2012/01/who-needs-words-crows-you-wild-gorillas-alison-krauss/' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://abcnews.go.com/blogs/technology/2012/01/who-needs-words-crows-you-wild-gorillas-alison-krauss/'.
 
 Skipping URL 'http://www.youtube.com/watch?v=0GOb3nFpewM' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=0GOb3nFpewM'.
 
-IW       page http://en.wikipedia.org/wiki/Kanzi
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  You can use [[wp:Kanzi]]
-
 Skipping URL 'http://www.smithsonianmag.com/science-nature/10022981.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.smithsonianmag.com/science-nature/10022981.html'.
 
-IW       page http://en.wikipedia.org/wiki/Cholla_the_painting_horse
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  You can use [[wp:Cholla_the_painting_horse]]
-
-IW       page http://en.wikipedia.org/wiki/Washoe_(chimpanzee)
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  You can use [[wp:Washoe_(chimpanzee)]]
-
-IW       page http://en.wikipedia.org/wiki/Alex_(parrot)
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  You can use [[wp:Alex_(parrot)]]
-
-IW       page http://en.wikipedia.org/wiki/N'kisi
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  You can use [[wp:N'kisi]]
-
-IW       page http://en.wikipedia.org/wiki/Koko_(gorilla)
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  You can use [[wp:Koko_(gorilla)]]
-
 Skipping URL 'http://www.youtube.com/watch?feature=player_embedded&v=7AyBLJy0jMc' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?feature=player_embedded&v=7AyBLJy0jMc'.
 
@@ -3807,7 +1672,5 @@
 Skipping URL 'http://www.scotsman.com/news/scottish-news/top-stories/horse-rides-to-rescue-as-owner-attacked-in-field-by-raging-cow-1-913741' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.scotsman.com/news/scottish-news/top-stories/horse-rides-to-rescue-as-owner-attacked-in-field-by-raging-cow-1-913741'.
 
-RD (301) page http://today.msnbc.msn.com/id/21689083/ns/today-today_people/t/dolphins-save-surfer-becoming-sharks-bait/#.UIcnbYbUzt0
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests http://www.msn.com/
+Skipping URL 'http://web.archive.org/web/20171031060501/http://www.grindtv.com/wildlife/rare-photo-shows-crow-riding-atop-a-flying-bald-eagle/' (found on page 'Slaves_of_War/Neo-Biology') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://www.underwatertimes.com/news.php?article_id=51079184603' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.underwatertimes.com/news.php?article_id=51079184603'.
@@ -3816,6 +1679,4 @@
 
 Skipping URL 'http://www.livescience.com/3284-scientist-snowball-fight-killer-whale.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.livescience.com/3284-scientist-snowball-fight-killer-whale.html'.
-
-Skipping URL 'http://www.youtube.com/watch?v=YBqKTiEvGAM' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=YBqKTiEvGAM'.
 
 RD (301) page http://channel.nationalgeographic.com/wild/caught-in-the-act/videos/stoffel-dont-give-a/
@@ -3827,12 +1688,4 @@
 Skipping URL 'http://www.scientificamerican.com/article.cfm?id=crows-show-off-social-skills' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.scientificamerican.com/article.cfm?id=crows-show-off-social-skills'.
 
-NG (530) page http://www.myhealthnewsdaily.com/1966-personality-traits-affect-smell.html
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  IA suggests http://web.archive.org/web/20130213134105/http://www.myhealthnewsdaily.com/1966-personality-traits-affect-smell.html
-
-RD (301) page http://www.guardian.co.uk/science/2008/dec/04/smell-fear-research-pheromone
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests http://www.theguardian.com/science/2008/dec/04/smell-fear-research-pheromone
-
 Skipping URL 'http://www.telegraph.co.uk/news/newstopics/howaboutthat/3328480/Otto-the-octopus-wrecks-havoc.html' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.telegraph.co.uk/news/newstopics/howaboutthat/3328480/Otto-the-octopus-wrecks-havoc.html'.
 
@@ -3841,5 +1694,5 @@
 NG (404) page https://commonfund.nih.gov/hmp/
   linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  IA suggests http://web.archive.org/web/20200117232033/http://commonfund.nih.gov/Hmp/
+  IA suggests http://web.archive.org/web/20200813045337/http://commonfund.nih.gov/hmp
 
 Skipping URL 'http://www.npr.org/blogs/health/2013/11/01/242361826/exploring-the-invisible-universe-that-lives-on-us-and-in-us' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.npr.org/blogs/health/2013/11/01/242361826/exploring-the-invisible-universe-that-lives-on-us-and-in-us'.
@@ -3847,8 +1700,4 @@
 Skipping URL 'http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2633676/' (found on page 'Slaves_of_War/Neo-Biology') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2633676/'.
 
-RD (301) file http://25.media.tumblr.com/3608367d74544df070a5a8c3acf2d4af/tumblr_mt2f1cXXY81s3yrubo1_r1_1280.jpg
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Neo-Biology
-  Server suggests https://64.media.tumblr.com/3608367d74544df070a5a8c3acf2d4af/tumblr_mt2f1cXXY81s3yrubo1_r1_1280.jpg
-
 NG (404) page https://www.turnerconstruction.com/experience/project/12AC/charlotte-douglas-international-airport-daily-parking-deck
   linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Settings
@@ -3865,8 +1714,4 @@
   IA suggests http://web.archive.org/web/20150131031730/http://theworldofenvy.com/hotels/the-peninsula-hong-kong
 
-RD (301) page http://www.contemporan.com/company/sketch-3/
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Settings
-  Server suggests http://contemporan.com/company/sketch-3/
-
 Skipping URL 'http://ethiopianorphanrelief.files.wordpress.com/2010/04/harar.jpg' (found on page 'Slaves_of_War/Settings') because I have not been asked to show http->https upgrades, and I was redirected to 'https://ethiopianorphanrelief.files.wordpress.com/2010/04/harar.jpg'.
 
@@ -3889,8 +1734,4 @@
 Skipping URL 'http://www.cracked.com/article_19678_6-abandoned-places-that-will-make-awesome-supervillain-lairs.html' (found on page 'Slaves_of_War/Settings') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.cracked.com/article_19678_6-abandoned-places-that-will-make-awesome-supervillain-lairs.html'.
 
-IW       file http://en.wikipedia.org/wiki/File:Tokyo_sky_tree.jpg
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Settings
-  You can use [[wp:File:Tokyo_sky_tree.jpg]]
-
 Skipping URL 'http://www.youtube.com/watch?v=pGCln17yUn0' (found on page 'Slaves_of_War/Settings') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=pGCln17yUn0'.
 
@@ -3901,8 +1742,4 @@
 Skipping URL 'http://willaustin.com/blog/' (found on page 'Slaves_of_War/Settings') because I have not been asked to show http->https upgrades, and I was redirected to 'https://willaustin.com/blog/'.
 
-IW       page https://en.wikipedia.org/wiki/Stockwell_Garage
-  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Settings
-  You can use [[wp:Stockwell_Garage]]
-
 NG (404) page http://www.travelandleisure.com/thingtodo/nature/mels-hole
   linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Settings
@@ -4047,5 +1884,5 @@
 NG (000-28) page http://www.chinasolarcity.cn/Html/dezhou/index.html
   linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Settings
-  IA suggests http://web.archive.org/web/20120812052257/http://www.chinasolarcity.cn/Html/dezhou/index.html
+ Try browsing https://web.archive.org/web/*/http://www.chinasolarcity.cn/Html/dezhou/index.html
 
 Skipping URL 'http://www.youtube.com/watch?v=KDEmtWLwMOM' (found on page 'Slaves_of_War/Settings') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=KDEmtWLwMOM'.
@@ -4149,17 +1986,13 @@
   Server suggests https://www.envisioningtech.com/envisioning2012/
 
-RD (301) page https://www.handwerksblatt.de/unternehmensfuhrung/eu-zwingt-hersteller-ersatzteile-zu-liefern
-  linked from https://wiki.oni2.net/User:Paradox-01/brain_dump
-  Server suggests https://www.handwerksblatt.de/betriebsfuehrung/eu-zwingt-hersteller-ersatzteile-zu-liefern
-
-RD (302) page https://www.handelsblatt.com/politik/international/rohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert/22794738.html?ticket=ST-225376-Fa3A1GfurE11JdPrOnyX-ap6
+RD (302) page https://www.handelsblatt.com/politik/international/rohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert/22794738.html
   linked from https://wiki.oni2.net/User:Paradox-01/brain_dump
   Server suggests https://id.handelsblatt.com/login?service=https%3A%2F%2Fwww.handelsblatt.com%2Fpolitik%2Finternational%2Frohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert%2F22794738.html&gateway=true
 
+NG (000-28) page https://www.spektrum.de/news/weitere-resistenz-gegen-hiv/340309
+  linked from https://wiki.oni2.net/User:Paradox-01/brain_dump
+  IA suggests http://web.archive.org/web/20190717161550/https://www.spektrum.de/news/weitere-resistenz-gegen-hiv/340309
+
 Skipping URL 'http://web.archive.org/web/20200611015324/http://miyazaki-moebius.com/' (found on page 'Geyser/Test2') because I have been asked not to check Wayback Machine links.
-
-NG (000-28) page https://3dbrute.com/homunculus-loxodontus/
-  linked from https://wiki.oni2.net/Oni2_talk:Truth_Number_Zero/Course_Of_Events
- Try browsing https://web.archive.org/web/*/https://3dbrute.com/homunculus-loxodontus/
 
 Skipping URL 'http://web.archive.org/web/20191108032711/http://www.mindspring.com/~cityzoo/tips/wrapgrid.txt' (found on page 'OniUnPacker/source') because I have been asked not to check Wayback Machine links.
@@ -4183,8 +2016,4 @@
   Server suggests https://www.cfr.org/backgrounder/demographics-us-military
 
-IW       page https://en.wikipedia.org/wiki/Concern_(business)
-  linked from https://wiki.oni2.net/Restless_Souls/Summary
-  You can use [[wp:Concern_(business)]]
-
 NG (404) page http://ssg.oni2.net/oni_mele.htm
   linked from https://wiki.oni2.net/OBD:BINA/OBJC/MELE
@@ -4197,4 +2026,6 @@
 Skipping URL 'http://web.archive.org/web/20081014020720/http://www.polykarbon.com/gallery/storyboards2.htm' (found on page 'Purple_hair_etc') because I have been asked not to check Wayback Machine links.
 
+Skipping URL 'http://web.archive.org/web/20151017003212/http://www.applegeeks.com/blog/2003/11/21/color-the-bunisher/' (found on page 'Purple_hair_etc') because I have been asked not to check Wayback Machine links.
+
 Skipping URL 'http://web.archive.org/web/20070404005253/http://www.applegeeks.com/downloads/' (found on page 'Purple_hair_etc') because I have been asked not to check Wayback Machine links.
 
@@ -4225,48 +2056,139 @@
 Skipping URL 'http://web.archive.org/web/20160425085912/http://www.actiontrip.com/reviews/oni.phtml' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
 
-NG (000-28) page http://photoshare.ru/user/karasevarchi/
-  linked from https://wiki.oni2.net/File:NoGlass_Import_Test_1.jpg
-  IA suggests http://web.archive.org/web/20130601222919/http://photoshare.ru/user/karasevarchi
-
 Skipping URL 'http://web.archive.org/web/20110312120045/http://www.polymallet.com/' (found on page 'Credits') because I have been asked not to check Wayback Machine links.
 
-RD (302) page http://www.archive.org
-  linked from https://wiki.oni2.net/Validate_External_Links
-  Server suggests http://archive.org/index.php
-
 Skipping URL 'http://wiki.oni2.net/w/extlinks.csv' (found on page 'Validate_External_Links') because I have not been asked to show http->https upgrades, and I was redirected to 'https://wiki.oni2.net/w/extlinks.csv'.
 
+Skipping URL 'https://web.archive.org/web/20101226095716/http://onimia.ru/forum/' (found on page 'ChibiOni_Konoko_and_Muro_by_66reddog.png') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20101226095716/http://onimia.ru/forum/' (found on page 'Big_ame-lilmai.jpg') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20101226095716/http://onimia.ru/forum/' (found on page 'Big_maksimka-onidollar.jpg') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20120816063521/http://www.animestocks.com/gallery/category/Full+Metal+Panic!+TSR/Melissa+Mao' (found on page 'Anime_and_manga') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20090814100526/http://www.kyoto.zaq.ne.jp/mibu/eng/pages/plays/tales.html#Anchor-Ogre-43793' (found on page 'Oni_(myth)') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20080101095349/http://www.merkur.de/2007_51_Bluehende_Ozeane.25382.0.html?&no_cache=1' (found on page 'Paradox-01/brain_dump') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20120417071638/http://xbox.ign.com/articles/137/137000p1.html' (found on page 'Strident') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20080404000113/http://news.teamxbox.com/xbox/3113/Strident-Trailer/' (found on page 'Strident') because I have been asked not to check Wayback Machine links.
+
+NG (000-28) page https://www.supercars.net/blog/1947-rolls-royce-phantom-iii-labourdette-vutotal-cabriolet/
+  linked from https://wiki.oni2.net/Oni2:AVATARA
+ Try browsing https://web.archive.org/web/*/https://www.supercars.net/blog/1947-rolls-royce-phantom-iii-labourdette-vutotal-cabriolet/
+
+Skipping URL 'https://web.archive.org/web/20090520145941/http://www.gamedev.net/reference/programming/features/welzlminsphere/default.asp' (found on page 'PNTA') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20101211155335/http://colladablender.illusoft.com/cms/content/blogcategory/18/44/' (found on page 'Neo/Archive2') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20170816043624/http://karakuriya.com/english/doll/shinatama.htm' (found on page 'Shinatama') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20090413130244/http://oni.planets.gamespy.com/info/cheats.shtml' (found on page 'History_of_Oni_modding/The_tale_of_Dev_Mode') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20081120155350/http://www.zapster.it/images/tools/wallpapers/1024x768/oni4.jpg' (found on page 'Konoko_Crouching_-_Wallpaper_2.jpg') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20120212222545/http://www.aicanime.com/products/adpolice/tvindex.html' (found on page 'Intro_frame_0431.png') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20151002021345/http://www.ign.com/games/maximum-action-state-of-emergency-serious-sam-gold/ps2-16405' (found on page 'State_of_Emergency') because I have been asked not to check Wayback Machine links.
+
 Skipping URL 'http://web.archive.org/web/20141112095925/http://home.luna.nl/~xino/fonts/xenotron/index.html' (found on page 'Xenotron') because I have been asked not to check Wayback Machine links.
 
+Skipping URL 'http://web.archive.org/web/20200119112157/http://ghost.halomaps.org/bluestreak/gbxmodel/' (found on page 'ONIrules') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20160623125418/http://training.sessions.edu/resources/free-tutorials/adobe-illustrator-tutorials/live-trace-live-paint.asp' (found on page 'PolyKarbon') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20081112044140/http://bards.fr/orgkom/wupper2008.jpg' (found on page 'Geyser/Artwork') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20050902092952/http://membres.lycos.fr/feena/rpg/grandia2/' (found on page 'Hikari') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20090614031049/http://www.driverheaven.net/mobility-radeon-drivers-support/76736-ati-mobility-firegl-t2-hp-nw8000.html' (found on page 'Neo/Archive2') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20110227221452/https://www.nersc.gov/vendor_docs/ibm/asm/mastertoc.htm' (found on page 'Neo/Archive2') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://sites.google.com/site/gumby701/bomber.wmv' (found on page 'Neo/Archive4') because I have not been asked to show http->https upgrades, and I was redirected to 'https://sites.google.com/site/gumby701/bomber.wmv'.
+
+Skipping URL 'https://youtu.be/BqWrUGTQXn0?t=3s' (found on page 'Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL') because I have not been asked to show redirects for youtu.be links, and I was redirected to 'https://www.youtube.com/watch?v=BqWrUGTQXn0&feature=youtu.be&t=3s'.
+
 Skipping URL 'http://web.archive.org/web/20110820102502/http://home.luna.nl/~xino/times2/funtower.htm' (found on page 'New_levels') because I have been asked not to check Wayback Machine links.
 
+Skipping URL 'https://web.archive.org/web/20170705124855/http://www.glixel.com/interviews/oni-bungies-classic-inspired-by-ghost-in-the-shell-w474297' (found on page 'Pre-beta_features') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20100621160148/http://www.types-of-flowers.org/pictures/resurrection_plant.jpg' (found on page 'Slaves_of_War/Neo-Biology') because I have been asked not to check Wayback Machine links.
+
+NG (500) page http://photoshare.ru/album64678.html
+  linked from https://wiki.oni2.net/New_levels
+  IA suggests http://web.archive.org/web/20110915075204/http://www.photoshare.ru/album64678.html
+
+Skipping URL 'http://web.archive.org/web/20170102120711/http://softimage.wiki.softimage.com/xsidocs/audio_LoadingAudioFilesintheAnimationMixer.htm#Rdy36984' (found on page 'Mod_Tool') because I have been asked not to check Wayback Machine links.
+
 Skipping URL 'http://www.youtube.com/watch?v=Sntev0Gj5Ds' (found on page 'Videos') because I have not been asked to show http->https upgrades, and I was redirected to 'https://www.youtube.com/watch?v=Sntev0Gj5Ds'.
 
+Skipping URL 'http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm' (found on page 'Mod_Tool') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20170103065301/http://softimage.wiki.softimage.com/xsidocs/nla_mixer.htm#Rdw10200' (found on page 'Mod_Tool') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20151211232354/http://www.redsorceress.com/skybox.html' (found on page 'ONLV') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20141114030443/http://www.allgame.com/game.php?id=19306&tab=review' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20191218032027/https://www.eurogamer.net/articles/r_oni' (found on page 'Reviews') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)' (found on page 'Mod_Tool/Scripting') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20121031134317/http://www.mwusers.com/forums/showthread.php?18647-onclick-in-wikitext' (found on page 'Paradox-01/Archive1') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'https://web.archive.org/web/20181006203834/https://wiki.unrealengine.com/Unreal_Motion_Graphics_(UMG)_UI_-_Inventory_Tutorial_Playlist' (found on page 'Restless_Souls/Wishlist') because I have been asked not to check Wayback Machine links.
+
+Skipping URL 'http://web.archive.org/web/20170920190459/http://www.codegeek.io/20170409-animate-makehuman-character-in-mixamo/' (found on page 'Restless_Souls/Wishlist') because I have been asked not to check Wayback Machine links.
+
+NG (404) page https://www.ue4community.wiki/Category:Tutorials
+  linked from https://wiki.oni2.net/Talk:Restless_Souls/Wishlist
+ Try browsing https://web.archive.org/web/*/https://www.ue4community.wiki/Category:Tutorials
+
+RD (302) page https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro
+  linked from https://wiki.oni2.net/User:Geyser/CharacterTutorialMakeHumanToUE4
+  Server suggests https://www.unrealengine.com/marketplace/en-US/product/female-movement-animset-pro
+
+Skipping URL 'https://www.substance3d.com/products/substance-designer' (found on page 'Fuse') because I have not been asked to show added trailing slashes, and I was redirected to 'https://www.substance3d.com/products/substance-designer/'.
+
+NG (404) page http://iritscen.oni2.net/wiki/Vadell
+  linked from https://wiki.oni2.net/Music/Ingame
+ Try browsing https://web.archive.org/web/*/http://iritscen.oni2.net/wiki/Vadell
+
+NG (404) page http://contemporan.com/company/sketch-3/
+  linked from https://wiki.oni2.net/Oni2:Slaves_of_War/Settings
+  IA suggests http://web.archive.org/web/20171216103914/http://www.contemporan.com/company/sketch-3/
+
 Skipping URL 'https://web.archive.org/web/20200327194536/https:/twitter.com/stephan09342968/status/1243617357832114177' (found on page 'Paradox-01/brain_dump') because I have been asked not to check Wayback Machine links.
 
 Skipping URL 'http://web.archive.org/web/20200603185109/https://www.bmbf.de/de/corona-krise-achtsamkeit-ja-alarmismus-nein-11069.html' (found on page 'Paradox-01/brain_dump') because I have been asked not to check Wayback Machine links.
 
-
-Summary (25 min. 29 sec. elapsed):
-I finished processing 3468 of 3468 links (there were 842 file links and 2466 page links).
-3468 processed links:
-- 10 links could not be processed
-- 150 Archive.org links were not checked
-- 624 processed links had issues
-  (excepted 5 links from report)
-- 2684 processed links were OK
-  (counted 709 trivial redirections as OK)
-5 links excepted (see RTF or TXT report for specific links):
-- 4/238 NG links
-- 1/35 external internal links
-10 link errors (see RTF or TXT report for specific links):
+RD (302) page https://javadl.oracle.com/webapps/download/AutoDL?BundleId=78825
+  linked from https://wiki.oni2.net/Playing_in_Linux
+  Server suggests https://sdlc-esd.oracle.com/ESD6/JSCDL/jdk/7u25-b16/jre-7u25-windows-i586.exe?GroupName=JSC&FilePath=/ESD6/JSCDL/jdk/7u25-b16/jre-7u25-windows-i586.exe&BHost=javadl.sun.com&File=jre-7u25-windows-i586.exe&AuthParam=1598462647_efb59755f896fc791ff84d1608fb2c72&ext=.exe
+
+
+Summary (20 min. 20 sec. elapsed):
+I finished processing 3164 of 3164 links (there were 702 file links and 2244 page links).
+3164 processed links:
+- 8 links could not be processed
+- 210 Archive.org links were not checked
+- 92 processed links had issues
+  (excepted 11 links from report)
+- 2854 processed links were OK
+  (counted 677 trivial redirections as OK)
+11 links excepted (see RTF or TXT report for specific links):
+- 9/43 NG links
+- 1/2 external internal links
+- 1/7 potential intrawiki links
+8 link errors (see RTF or TXT report for specific links):
 - 2 missing/unknown namespaces
 - 6 links on JavaScript pages
-- 1 illegal URL
-- 1 unknown URL suffix
-624 link issues:
-- 238 NG links
-- 294 redirections
-- 35 links that could be intrawiki
-- 57 links that could be interwiki
+92 link issues:
+- 43 NG links
+- 40 redirections
+- 2 links that could be intrawiki
+- 7 links that could be interwiki
 ValExtLinks says goodbye.
Index: Validate External Links/Sample files/archive-response.txt
===================================================================
--- Validate External Links/Sample files/archive-response.txt	(revision 1138)
+++ 	(revision )
@@ -1,1 +1,0 @@
-{"url": "http://www.daz3d.com/i/shop/itemdetails/?item=11042", "archived_snapshots": {"closest": {"status": "200", "available": true, "url": "http://web.archive.org/web/20110802231436/http://www.daz3d.com:80/i/shop/itemdetails/?item=11042", "timestamp": "20110802231436"}}}
Index: Validate External Links/Sample files/exceptions.txt
===================================================================
--- Validate External Links/Sample files/exceptions.txt	(revision 1139)
+++ Validate External Links/Sample files/exceptions.txt	(revision 1139)
@@ -0,0 +1,22 @@
+If the Validate External Links script is mis-reporting certain external links as issues when they actually work fine, add them here in order to except them from ValExtLinks' reports. Each line needs three fields, separated by commas:
+#The response code that ValExtLinks should expect. For NG links, this should be the exact HTTP response code or the 'curl' result code, whichever applies. You can also put "IW" or "EI" links here if that's how the link has to be presented on a certain wiki page.
+#The recurring "problem" link.
+#The wiki page that this link is appearing on. Use the proper page name, i.e. underscores where the displayed name has spaces. To exempt this link from Val's report regardless of where it appears on the wiki, put a '*' here.
+#(optional) A comment explaining the exception. The only requirements are that the comment be separated from the previous field by a space and that you don't use any commas in the comment since this is a comma-separated value list. The "--"s used below are just for human readability.
+
+<pre>
+BEGIN LIST
+000-28,http://tain.totalcodex.net/,* -- always times out when accessed by 'curl'; link appears on multiple pages
+EI,http://wiki.oni2.net/Main_Page,MediaWiki:Common -- necessary EI link to demonstrate circular arrow
+000-28,https://mega.nz/#!x9oHxaLZ!-bOo-wwdj1fh925DYv1Qc6ErDSRl2HEgtWC-i2FtxtY,Oni_2_(Angel_Studios) -- Mega doesn't seem to like 'curl'
+403,https://www.artelino.com/articles/japanese_mythology.asp,Oni_(myth) -- returns 403 despite being perfectly functional
+000-28,https://www.echeat.com/free-essay/Symbolism-in-Fahrenheit-451-by-Ray-Bradbury-29746.aspx,Oni2:Phoenix -- site is just slow to respond
+301,https://discord.gg/eqDMnkD,OniGalore:Community_portal -- intentional use of link shortener
+301,http://www.zbrushcentral.com/showthread.php?163445-Earthquake,File:Earthquake_(Samurai_Shodown)_ZBrush_model_(clay).jpg -- spurious redirect
+IW,http://meta.wikimedia.org/wiki/MediaWiki:Common.css,MediaWiki:Common.css -- wrongful detection of URL within JS code
+404,http://www.example.com/example.mov,MediaWiki:Common -- deliberate fake link just to generate the desired link icon
+404,http://www.example.com/example.mp3,MediaWiki:Common -- ditto
+301,http://genius.com/10788822,Talk:Restless_Souls -- weird double redirect takes us back to this URL
+EI,https://wiki.oni2.net/Special:ListFiles?limit=500&ilsearch=Fallen,File:Fallen_Enemies.jpg -- EI link is necessary because ListFiles only takes a username parameter when linked to internally
+END LIST
+</pre>
Index: Validate External Links/Sample files/extlinks.csv
===================================================================
--- Validate External Links/Sample files/extlinks.csv	(revision 1138)
+++ Validate External Links/Sample files/extlinks.csv	(revision 1139)
@@ -169,5 +169,4 @@
 0,Nausicaa/Miyazaki_interview,http://www.comicbox.co.jp/e-nau/e-nau.html
 10,OBD_BINA_Header,http://ssg.oni2.net/oni.htm
-10,OBD_BINA_Header,http://ssg.oni2.net/oni_{{{onistuff}}}.htm
 1,Mod_Tool/OniTools_addon,http://mods.oni2.net/system/files/Oni_Character_Helper_with_onisplit_dnd_updater_wip.zip
 102,BINA/OBJC,http://ssg.oni2.net/oni_bina.htm
@@ -424,5 +423,4 @@
 109,Truth_Number_Zero/Course_Of_Events,https://www.youtube.com/watch?v=dKiayHSR4DI
 0,Syndicate,http://www.swo.com/streetarms.shtml
-110,ONLV,https://www.dropbox.com/s/0o3vloz6nd6kj98/AKEV_texture_checker.vbs?dl=0
 0,Animation,http://geyser.oni2.net/anim/Shinzom.txt
 0,Animation,http://geyser.oni2.net/anim/shinatama.txt
@@ -541,5 +539,4 @@
 0,Videos,https://www.youtube.com/watch?v=CkzguNxjGEs
 0,Videos,https://www.youtube.com/watch?v=6oTbT6qkcg0
-4,About,http://oni.bungie.org/forum/
 110,OBAN,http://oni.bungie.org/forum/viewtopic.php?id=2276
 110,OBAN,http://mods.oni2.net/node/38
@@ -807,5 +804,4 @@
 0,Purple_hair_etc,http://winterknight.deviantart.com/art/Heroine-Addict-62777499
 0,Purple_hair_etc,http://oshovah.deviantart.com/art/Bungie-Wallpaper-43080230
-0,Purple_hair_etc,http://www.applegeeks.com/gallery/index.php?galleryID=12
 0,Purple_hair_etc,http://web.archive.org/web/20080905221453/http://www.polykarbon.com/gallery/pkpencil.htm
 0,Purple_hair_etc,https://web.archive.org/web/20080109085013/http://archive.gamespy.com/articles/february01/oniquickguide/
@@ -816,5 +812,5 @@
 0,Purple_hair_etc,http://crayonsun.deviantart.com/art/Girl-in-purple-39940745
 0,Purple_hair_etc,http://web.archive.org/web/20081101053908/http://www.polykarbon.com/gallery/superpoly.htm
-0,Purple_hair_etc,http://www.applegeeks.com/blog/2003/11/21/color-the-bunisher/
+0,Purple_hair_etc,http://web.archive.org/web/20130313152232/http://www.applegeeks.com/gallery/index.php?galleryID=12
 0,Purple_hair_etc,http://undergroundracer57.deviantart.com/art/Matrix-Mai-9243433
 0,Purple_hair_etc,http://usagisama.deviantart.com/art/Konoko-21516333
@@ -935,4 +931,5 @@
 0,Oni_(folder)/GameDataFolder/IGMD/power,http://geyser.oni2.net/OSL/IGMD/power/power_spawn.bsl
 0,Credits,http://aerie.geofront.com/
+0,Validate_External_Links,https://archive.org/web/
 0,Validate_External_Links,http://wiki.oni2.net/w/index.php?title=Oni&oldid=7685
 14,Art_by_Rina,http://66reddog.deviantart.com
@@ -944,5 +941,5 @@
 0,Oni_(folder)/GameDataFolder/IGMD/roof,http://geyser.oni2.net/OSL/IGMD/roof/roof_main.bsl
 0,Trailers,http://www.youtube.com/watch?v=YLZ2hJZvrmo&fmt=6
-0,Reviews,http://www.allgame.com/game.php?id=19306&tab=review
+0,Reviews,http://web.archive.org/web/20141115004950/http://www.allgame.com/game.php?id=24182&tab=review
 0,Trailers,http://geyser.oni2.net/genesis/May_1999/small/Oni_Trailer_(May_1999).mov
 0,Oni_(folder)/GameDataFolder/IGMD/Airport_III,http://geyser.oni2.net/OSL/IGMD/Airport_III/airport2_level_logic.bsl
@@ -953,5 +950,4 @@
 0,Oni_(folder)/GameDataFolder/IGMD/EnvWarehouse,http://geyser.oni2.net/OSL/IGMD/EnvWarehouse/warehouse_train2.bsl
 0,Oni_(folder)/GameDataFolder/IGMD/EnvWarehouse,http://geyser.oni2.net/OSL/IGMD/EnvWarehouse/warehouse_particles.bsl
-103,TRBS,http://dl.dropbox.com/u/139715/OniGalore/talk/simple_hex_model_walk_test.wmv
 0,Oni_(folder)/GameDataFolder/IGMD/manplant,http://geyser.oni2.net/OSL/IGMD/manplant/manplant_level_logic.bsl
 0,Oni_(folder)/GameDataFolder/IGMD/lab,http://geyser.oni2.net/OSL/IGMD/lab/particle_scripts.bsl
@@ -964,5 +960,4 @@
 2,Paradox-01/brain_dump,https://www.youtube.com/watch?v=TSlHJamyq9M
 2,Paradox-01/brain_dump,https://www.zdf.de/nachrichten/politik/coronavirus-trump-usa-fehler-100.html
-1,Oni_engine_patches_(Mac_PPC),http://en.wiktionary.org/wiki/code_cave
 3,Ssg,http://hl.udogs.net/files/Gaming/Bungie%20Related%20Movies/MWSF%202000/Bungie%20TV/btv%20pamphlet/Inside.jpg
 3,Ssg,http://hl.udogs.net/files/Gaming/Bungie%20Related%20Movies/bungie_tour_100.mov
@@ -973,16 +968,9 @@
 3,Ssg,http://hl.udogs.net/files/Gaming/Bungie%20Related%20Movies/MWSF%202000/Bungie%20TV/MWSF%202000/
 6,Konoko_by_bahamutrex.jpg,http://bahamutrex.deviantart.com/art/konoko-16338459
-3,Neo/Archive1,http://oni.bungie.org/community/forum/attachment.php?item=209
 0,Oni,http://web.archive.org/web/20020221045402/http://www.fgnonline.com/pc/news/17352.html
 0,Mukade,http://carnage.bungie.org/oniforum/oni.forum.pl?read=19468
 0,Mukade,http://carnage.bungie.org/oniforum/oni.forum.pl?read=15104
-4,About,http://www.mediawiki.org/
-4,Privacy_policy,http://wikimediafoundation.org/wiki/Privacy_policy
 2,Paradox-01/brain_dump,https://netzpolitik.org/2014/metadaten-wie-dein-unschuldiges-smartphone-fast-dein-ganzes-leben-an-den-geheimdienst-uebermittelt/
-103,TXMP,http://www.paradox.oni2.net/temp/case1.zip
-103,TXMP,http://www.paradox.oni2.net/temp/case3.zip
 0,Oni,http://carnage.bungie.org/oniforum/oni.forum.pl?read=4556
-2,Paradox-01/brain_dump,https://de.wikipedia.org/wiki/Spermidin#Vorkommen_in_Nahrungsmitteln
-2,Paradox-01/brain_dump,https://de.wikipedia.org/wiki/Bill_Gates#Bill_&_Melinda_Gates_Foundation
 0,Oni_(folder)/GameDataFolder/IGMD/dream_lab,http://geyser.oni2.net/OSL/IGMD/dream_lab/dream_lab_logic.bsl
 0,Oni_(folder)/GameDataFolder/IGMD/EnvWarehouse,http://geyser.oni2.net/OSL/IGMD/EnvWarehouse/warehouse_anim_scripts.bsl
@@ -1012,29 +1000,18 @@
 6,Bungie_Wallpaper_by_Oshovah.jpg,http://oshovah.deviantart.com/art/Bungie-Wallpaper-43080230
 6,ChibiOni_Konoko_and_Muro_by_66reddog.png,http://66reddog.deviantart.com/art/ChibiOni-Konoko-and-Muro-72503743
-6,ChibiOni_Konoko_and_Muro_by_66reddog.png,http://onimia.ru/forum/
-6,ChibiOni_Konoko_and_Muro_by_66reddog.png,http://oni.bungie.org/community/forum/
 6,Onisketch_Shinatama_and_Barabas_by_66reddog.png,http://66reddog.deviantart.com/art/Oniscketch-Sinatama-and-Barabu-75143926
 6,Konoko_by_majin_vegitto.jpg,http://majin-vegitto.deviantart.com/art/Konoko-34352148
 6,Konoko_From_Oni_by_Genchis.jpg,http://genchis.deviantart.com/art/Konoko-From-Oni-49077019
 6,Not_cr0ss_th3_lin3_by_genian.jpg,http://genian.deviantart.com/art/not-cr0ss-th3-lin3-26103116
-0,OniSplit,http://www.go-mono.com/mono-downloads/download.html
 6,Konoko_strik3s_b4ck_by_genian.jpg,http://genian.deviantart.com/art/konoko-strik3s-b4ck-25087699
 6,Matrix_Mai.jpg,http://undergroundracer57.deviantart.com/art/Matrix-Mai-9243433
-6,Linework_oni_1600.jpg,http://homepage.ntlworld.com/jane.sampson1/oni/
 100,AI_tasks,http://geyser.oni2.net/OBD/BINA/OBJC/FLAG/TrimmedList/
 1,Restless_Souls,https://www.youtube.com/watch?v=D96DyhVwM7o
-6,Big_ame-lilmai.jpg,http://onimia.ru
-6,Big_ame-lilmai.jpg,http://onimia.ru/img/fans_creativ_art/big_ame-lilmai.jpg
 6,Konoko_by_mbjvx.jpg,http://mbjvx.deviantart.com/art/Konoko-21136818
 6,Konoko_by_oni2672.jpg,http://oni2672.deviantart.com/art/Konoko-38780139
 6,Oni_2_by_mbjvx.jpg,http://mbjvx.deviantart.com/art/Oni-2-21187666
-6,Welcome_to_Oni_bar.jpg,http://oni.bungie.org/community/forum/viewtopic.php?id=188
-6,Merry.jpg,http://oni.bungie.org/community/forum/viewtopic.php?id=193
 0,Restless_Souls/Technology,https://wexnermedical.osu.edu/blog/researchers-develop-regenerative-medicine-breakthrough
 0,Restless_Souls/Technology,https://phys.org/news/2017-07-maxwell-demon-quantum.html
-6,Big_maksimka-onidollar.jpg,http://onimia.ru
-6,Big_maksimka-onidollar.jpg,http://onimia.ru/img/fans_creativ_art/big_maksimka-onidollar.jpg
 6,Oni.higuchi.small.jpg,http://oni.bungie.org/archives/god_fanart_contest/
-6,Oni.higuchi.small.jpg,http://onimia.ru/img/fans_creativ_art/big_murinex-mukadeyouarefucked.jpg
 6,Dark_future_darker_past.jpg,http://oni.bungie.org/archives/god_fanart_contest/
 0,MakeHuman,http://www.makehuman.org
@@ -1046,21 +1023,12 @@
 6,ArofaTamahn_-_That_thing_has_too_many_HP.jpg,http://arofatamahn.deviantart.com/art/That-thing-has-too-many-HP-37068611
 6,ArofaTamahn_-_That_thing_has_too_many_HP.jpg,http://agent-elrond.deviantart.com/
-1,OME,https://collada.org/public_forum/viewtopic.php?p=3457
 1,OME,http://sourceforge.net/projects/colladaloader/
-1,OME,http://softimage.com/downloads/XSI_Mod_Tool/default.aspx
 104,BGI,http://www.turbosquid.com/FullPreview/Index.cfm/ID/356026
 0,OniSplit,http://mods.oni2.net/node/38
 0,Oni,http://marathon.bungie.org/story/newmay-june98.html
-0,Oni,http://beta.slashdot.org/story/50267
 1,Restless_Souls/Wishlist,http://www.makehuman.org/
-1,Restless_Souls/Wishlist,http://www.manuelbastioni.com/index.php
-0,Anniversary_Edition,http://oni.bungie.org/community/forum/viewforum.php?id=12
 104,OTA,http://your-mom.oni2.net/Downloads/Arena%20Scripts/Arena%20V.1.1/SMC1.1.zip
 0,Iron_Demon,http://geyser.oni2.net/oni2/artwork/ToyDemon1200.JPG
 0,Multiplayer,https://www.youtube.com/watch?v=3vKJAZZWIxI
-3,Paradox-01/Archive1,http://wiki.oni2.net/User:Iritscen/vector.js
-101,Functions,http://wiki.oni2.net/User_talk:Iritscen/Archive2#AI_self-healing
-1,OniSplit,http://wiki.oni2.net/OniSplit#CLI_tips
-0,Adding_spawnable_characters,http://wiki.oni2.net/OBD:BINA/OBJC/CHAR
 2,Geyser/Main,http://oni.bungie.org/forum/
 0,Heavy_weapons,http://www.n-tv.de/913309.html
@@ -1068,7 +1036,4 @@
 105,BGI,http://edt.oni2.net/bgi/BGI_Troop.zip
 0,Anime_and_manga,http://www.anime-int.com/
-0,Anime_and_manga,http://www.animestocks.com/gallery/category/Full+Metal+Panic!+TSR/Melissa+Mao
-1,Importing_character_models,http://wiki.oni2.net/OBD_talk:TRAC
-0,Oni_(myth),http://www.kyoto.zaq.ne.jp/mibu/eng/pages/plays/tales.html#Anchor-Ogre-43793
 0,Reviews,http://www.bradcook.net/games/articles/2001/02/oni/
 102,Oni_Binary_Data,http://ssg.oni2.net
@@ -1079,5 +1044,4 @@
 1,War_on_spam,http://www.urbandictionary.com/define.php?term=skiddie
 1,War_on_spam,http://www.stopforumspam.com/forum/f1-General-Discussion
-111,TXMB,http://svn.oni2.net/Vago/trunk/Vago/bgImageWizard/bgimagepagefinal.cpp
 0,History_of_Mac_Oni,http://carnage.bungie.org/oniforum/oni.forum.pl?read=6259
 0,Mod_Tool,http://www.keyxl.com/aaacbe0/415/SoftImage-XSI-keyboard-shortcuts.htm
@@ -1096,13 +1060,9 @@
 3,Paradox-01/Archive1,http://forums.bungie.org/oni/archive.pl?read=4618
 3,Paradox-01/Archive1,http://forums.bungie.org/oni/archive.pl
-0,Restless_Souls/Wishlist,https://docs.unrealengine.com/latest/INT/Engine/LevelStreaming/HowTo/
 110,TSFF,http://mods.oni2.net/node/256
 103,TRMA,http://oni.bungie.org/forum/
-0,Hope,http://en.wikipedia.org/wiki/Pandora
 0,Hope,http://www.physics.hku.hk/~tboyce/ss/topics/prometheus.html
 0,Quotes/Credits,http://bs.bungie.org/mtarchives/000112.html
-109,Hikari,http://www.haibane.de/oni/overview.htm
 0,Quotes/Credits,http://www.radgametools.com/bnkdown.htm
-0,Konoko,http://www.bungie.net/en-us/AboutUs#page=games&game=10127
 104,Konoko,http://geyser.oni2.net/ONK/KONOKO/BlackOpsKonoko/level13/BlackOpsKonoko_a.TRMA
 104,Konoko,http://geyser.oni2.net/ONK/KONOKO/BlackOpsKonoko/level13/BlackOpsKonoko_b.TRMA
@@ -1116,5 +1076,5 @@
 0,Customizing,http://mods.oni2.net/node/155
 0,Customizing,http://mods.oni2.net/node/129
-0,Restless_Souls/Wishlist,https://docs.unrealengine.com/latest/INT/Videos/PLZlv_N0_O1ga0IoRrpI4xkX4qmCrhGu56/index.html
+100,List_of_built-in_commands,https://youtu.be/cxTz30YOPhc
 6,Leader_of_the_Pack.jpg,http://shadowoni.deviantart.com/
 110,BINA/OBJC/CHAR,http://ssg.oni2.net/subfold/charas/charas.htm
@@ -1132,5 +1092,4 @@
 1,Trivia,http://www.freedict.com/onldict/jap.html
 1,Trivia,http://www.spc.int/coastfish/news/BDM/19/BDM_19.pdf
-1,Trivia,http://www.vor.ru/Exclusive/excl_next8884_eng.html
 1,Trivia,http://www.imdb.com/title/tt0228493/fullcredits
 0,Restless_Souls/Technology,http://phys.org/news/2015-10-tu-eindhoven-kingsize-3d-concrete.html
@@ -1138,5 +1097,4 @@
 0,Konoko,http://www.freedict.com/onldict/jap.html
 110,BINA/ONIE,http://mods.oni2.net/node/71
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?pid=37252#p37252
 0,Developer_Mode,http://ridiculousfish.com/hexfiend/
 0,Videos,http://www.youtube.com/watch?v=9kJF7HSJl04
@@ -1150,7 +1108,5 @@
 0,Oni_(folder)/GameDataFolder/IGMD/Airport,http://geyser.oni2.net/OSL/IGMD/Airport/airport_main.bsl
 1,Trivia,http://www.sasugabooks.com/product_info.php?products_id=30417
-0,Oni_(folder)/GameDataFolder/IGMD/Airport,http://geyser.oni2.net/OSL/IGMD/Airport/airport_level_logic.bsl
 0,Crescent_Moon_Kick,http://oni.bungie.org/forum/
-0,Crescent_Moon_Kick,http://oni.bungie.org/community/forum/viewtopic.php?id=177
 0,Crescent_Moon_Kick,http://www.youtube.com/watch?v=rV1j0q63KFg
 0,Myth,http://myth.bungie.org/
@@ -1159,5 +1115,4 @@
 1,Oni_(folder)/GameDataFolder,http://oni.bungie.org/forum/
 6,Demongloom's_jump_kick_Desktop.jpg,http://www.codercorner.com/Oni08.jpg
-1,Trivia,http://babelfish.altavista.com/
 1,Trivia,http://www.imdb.com/name/nm0619958/
 1,Trivia,http://www.griffith.edu.au/school/lal/staff/tsurutani_papers/onseiproof.pdf
@@ -1176,5 +1131,4 @@
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/bra_grapple/
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/char_cggtest/
-2,Paradox-01/brain_dump,http://www.merkur.de/2007_51_Bluehende_Ozeane.25382.0.html?&no_cache=1
 2,Paradox-01/brain_dump,https://www.mpg.de/12316482/darpa-insect-ally
 2,Paradox-01/brain_dump,https://www.youtube.com/watch?v=UjtOGPJ0URM
@@ -1192,5 +1146,4 @@
 0,Voice_actors,http://www.youtube.com/watch?v=78Hz34M33sg
 0,Reviews,http://web.archive.org/web/20090109135349/http://www.3dactionplanet.com/features/articles/heroines/
-110,TRAM,http://oni.bungie.org/community/forum/viewtopic.php?pid=39787#p39787
 2,Paradox-01/brain_dump,http://youtube.com/watch?v=SltOy_F6ZII
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/fightandshoot/
@@ -1223,15 +1176,7 @@
 0,Strident,http://geyser.oni2.net/oni2/influences/strident/StridentTrailer.avi
 0,Strident,http://geyser.oni2.net/oni2/influences/strident/lores/StridentTrailer.wmv
-0,Strident,http://www.phantagram.com/
-0,Strident,http://news.teamxbox.com/xbox/3113/Strident-Trailer/
-0,Strident,http://previews.teamxbox.com/xbox/218/Strident/p1/
-0,Strident,http://screenshots.teamxbox.com/gallery/253/Strident/p1/
-0,Strident,http://xboxmovies.teamxbox.com/xbox/194/Strident-trailer/
-0,Strident,http://xbox.ign.com/articles/098/098046p1.html
-0,Strident,http://xbox.ign.com/articles/137/137000p1.html
-0,Strident,http://media.xbox.ign.com/media/017/017000/imgs_1.html
-0,Strident,http://media.xbox.ign.com/media/017/017000/vids_1.html
-0,Strident,http://www.gamenavigator.ru/files/file1214.html
-0,Strident,http://gp.gamenavigator.ru/gallery/screenshots/1786/4956/
+0,Strident,https://www.youtube.com/watch?v=NxpIyZYZ8sQ
+0,Strident,https://web.archive.org/web/20050418125243/http://xbox.ign.com/articles/098/098046p1.html
+0,Strident,http://web.archive.org/web/20061124060457/http://previews.teamxbox.com/xbox/218/Strident/p1/
 0,Syndicate_Wars,http://www.youtube.com/watch?v=CrruSboN1bQ
 0,Syndicate_Wars,http://imdb.com/title/tt0113568/
@@ -1240,14 +1185,9 @@
 0,Syndicate_Wars,http://www.mobygames.com/game/syndicate-wars/screenshots
 0,Syndicate_Wars,http://www.rottentomatoes.com/g/playstation/syndicate_wars/images.php
-0,Syndicate_Wars,http://www.psxseeker.com/screens/synwars.html
 110,StNA,http://mods.oni2.net/node/184
-6,DAZ3D_BeoQuad_concept_2.jpg,http://www.comicbookresources.com/images/previews/games/bone/big/Bone_RatCreature1.jpg
-6,DAZ3D_BeoQuad_concept_1.jpg,http://www.comicbookresources.com/images/previews/games/bone/big/Bone_RatCreature1.jpg
 0,Oni,http://www.metacritic.com/game/pc/oni
 0,Oni_(folder)/GameDataFolder/IGMD/neuro,http://geyser.oni2.net/OSL/IGMD/neuro/particle_scripts.bsl
 7,Bureaucat.jpg,http://geyser.oni2.net/pics/misc/bureaucat3.jpg
-3,RossyMiles,http://oniusb.googlepages.com/Daodan.7z
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2619
-1,Restless_Souls/Technology,http://de.wikipedia.org/wiki/Polypedilum_vanderplanki
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2657
 4,About,http://wiki.oni2.net/w/index.php?title=Special:Search&redirs=1&search=vector.css&fulltext=Search&ns2=1&title=Special:Search&advanced=1&fulltext=Advanced+search
 0,Anniversary_Edition,http://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x64.exe
@@ -1263,59 +1203,37 @@
 0,Importing_character_models,https://www.autodesk.com/products/fbx/overview
 0,Fuse,http://geyser.oni2.net/import_fbx.py
-0,Fuse,https://www.allegorithmic.com/products/substance-designer
 0,Restless_Souls/Technology,https://www.youtube.com/watch?v=RkQFhPJuxgk
 0,Multiplayer,http://neonew.oni2.net/oniHook%20-%20throwingTest.rar
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/FXCathedral_Scenario_2/
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/M01_A03_Rooftops/
-0,Restless_Souls/Fragments,https://en.wikipedia.org/wiki/Aerogel
 0,Restless_Souls/Fragments,https://www.youtube.com/watch?v=tbruPR3o0Zc
 0,Pre-beta_content,https://www.youtube.com/watch?v=TaRjTYbUFNY
 0,Graphics,https://web.archive.org/web/20130520191527/http://cs.fit.edu/~wds/classes/graphics/PTOC/ptoc/
-103,ONGS,http://oni.bungie.org/community/forum/viewtopic.php?pid=9274#p9274
-8,Common.js/edit,http://wiki.oni2.net/File:Button_base.png
 0,Importing_character_models,http://geyser.oni2.net/edition/celshading
 104,Anniversary_Edition_Tools,http://mods.oni2.net/node/69
-102,ONCC,http://paradox.oni2.net/Bilder/blocked_attacks_on_51percent_overpower_plus_daodan-flag_plus_supershield.png
 6,NEXT!.png,http://polykarbon.com
 3,EdT/Archive1,http://edt.oni2.net/OniSplit/startup.txt
 3,EdT/Archive1,http://geyser.oni2.net/edition/plugins/level0_BGI.zip
 3,EdT/Archive1,http://geyser.oni2.net/edition/plugins/level2_OBJC.zip
-3,EdT/Archive1,http://edt.oni2.net/3D/ONCCk4_K.zip
-3,EdT/Archive1,http://oni.bungie.org/community/forum/viewtopic.php?pid=2856#p2856
-3,Neo/Archive2,http://wiki.oni2.net/OBD_talk:TRAC
 3,EdT/Archive1,http://geyser.oni2.net/EXE/pc.east
 3,EdT/Archive1,http://geyser.oni2.net/edition/plugins/level0_Crap.zip
-3,EdT/Archive1,http://www.paradox.oni2.net/mods/mac_shapeshift_test.zip
 2,Geyser/STFUn00b,http://www.swo.com
 105,BGI,http://www.1999.co.jp/dbimages/user/hobby/itbig/10051368a.jpg
-105,New_weapons,http://iritscen.oni2.net/wiki/Tieriarlareload.mp4
 108,Holocaust,http://oni.bungie.org/forum/viewtopic.php?id=1478
 108,AVATARA,http://www.webwombat.com.au/motoring/news_reports/holden-efijy-concept-car-of-year-2007.htm
-108,AVATARA,http://images.forum-auto.com/mesimages/264800/D8_120S_Pourtout_Aero_1937_9.jpg
-108,AVATARA,http://www.supercars.net/Pics?vpf2=y&gID=1&fID=0&tID=153655&mID=1144990&l=a
-108,AVATARA,http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=3308317&l=d
-108,AVATARA,http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=1144990&l=d
-108,AVATARA,http://www.supercars.net/Pics?vpf3=y&gID=1&fID=0&tID=153655&mID=1144990&l=c
+105,Sniper_scope_and_prone_mode,http://iritscen.oni2.net/wiki/Paradox-Relocating%20Konoko.avi
 108,AVATARA,http://www.carbodydesign.com/archive/2008/02/13-morgan-lifecar-concept-preview/
 0,Restless_Souls/Wishlist,https://answers.unrealengine.com/questions/607039/how-to-localise-with-string-tables-in-blueprints-o.html
-104,Trailer,http://onimia.ru/doc/game_gallery_res.php?2
-2,RossyMiles,http://oniusb.googlepages.com/
 0,Restless_Souls/Technology,http://phys.org/news/2015-10-team-hacks-off-the-shelf-d-printer.html
 0,Restless_Souls/Technology,http://phys.org/news/2015-07-hacking-food-chain-silicon-valley.html
 3,RossyMiles,http://oni.bungie.org/forum/
-103,PNTA,http://www.gamedev.net/reference/programming/features/welzlminsphere/default.asp
-102,PSpc,http://msdn.microsoft.com/en-us/library/bb189722.aspx
-0,Daodan_DLL,http://sfeli.oni2.net/daodan/current.zip
 0,Easter_eggs,http://youtube.com/watch?v=iU4T1Qpu-8U
 3,Ssg,http://ssg.oni2.net/test/skyhtm/sky.htm
-105,OTA,http://oni.bungie.org/community/forum/viewtopic.php?id=508
 105,OTA,http://oni.bungie.org/forum/
 1,War_on_spam,http://oni.bungie.org/forum/
-1,War_on_spam,http://www.mediawiki.org/wiki/Extension:ConfirmAccount
-0,BGI_characters,http://oni.bungie.org/community/forum/viewtopic.php?id=2438
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-DeLorean.mov
 0,Oni_engine_patches_(Mac_PPC),http://edt.oni2.net/files/Oni.zip
 0,Oni,http://carnage.bungie.org/oniforum/oni.forum.pl?read=7653
 0,Mukade,http://www.youtube.com/watch?v=zcY9yGTJ0zY
-1,Importing_character_models,http://www.macupdate.com/info.php/id/22750/0xed
 0,Restless_Souls/Technology,https://arstechnica.com/science/2017/05/killing-cancer-cells-using-the-dna-that-drives-them/
 3,Neo,http://edt.oni2.net/TRAMS/WalkOS.wmv
@@ -1323,10 +1241,7 @@
 0,Oni_2_(Angel_Studios)/Levels,https://www.youtube.com/watch?v=HIkgi_OLXMk
 0,Oni_2_(Angel_Studios)/Levels,https://www.youtube.com/watch?v=sgTBcU5Ba7E
-1,Restless_Souls/BC2,http://www.arte.tv/de/wissen-entdeckung/1630892.html
 1,Importing_character_models,http://geyser.oni2.net/edition/plugins/level0_Characters.zip
-1,Importing_character_models,http://oni.bungie.org/community/forum/viewtopic.php?id=2423
 104,Trailer,http://edt.oni2.net/AE_Files/3DIronDemon.mov
 0,Oni,http://carnage.bungie.org/oniforum/oni.forum.pl?read=6377
-1,Restless_Souls/BC2,http://oni.bungie.org/forums/index.php?threadid=9&page=19#post_3410
 111,TSFF,http://www.derwok.de/downloads/ttfpatch/
 0,Restless_Souls/Technology,https://www.youtube.com/watch?v=cjAqR1zICA0
@@ -1340,6 +1255,4 @@
 1,Oni_engine_patches_(Mac_PPC),http://geyser.oni2.net/TEMP/omni/OniBSL.zip
 1,Barabas'_regeneration,http://loser.oni2.net/Junkyard/TRAMREDCOMidle1.oni
-0,Restless_Souls/Technology,http://oni.bungie.org/community/forum/viewtopic.php?pid=273#p273
-7,Bureaucat.jpg,http://www.thenewyorkerstore.com/assets/1/120401_m.gif
 7,Bureaucat.jpg,http://geyser.oni2.net/pics/misc/bureaucat2.jpg
 0,New_levels,http://geyser.oni2.net/edition/levels/andreika/imported.png
@@ -1347,17 +1260,10 @@
 5,General_disclaimer,http://geyser.oni2.net/pics/ingame/level12_final/07538-RT_BILLBRD2.JPG
 0,Bertram_Navarre,https://phys.org/news/2017-06-two-part-stem-cells.html
-8,Common.js/edit,http://wiki.oni2.net/w/images/e/ec/Button_base.png
-3,Paradox-01/Project_Imago,http://dl.getdropbox.com/u/60508/FloatingDots.BINA
-0,BioCrisis,http://en.wikipedia.org/wiki/Virus#Genetic_change
-3,Paradox-01/Project_Imago,http://dl.getdropbox.com/u/60508/BarabusPowerups.rar
-0,Konoko,http://oni.bungie.org/community/forum/viewtopic.php?pid=35562#p35562
 104,Trailer,http://geyser.oni2.net/edition/trailer/trailer.wmv
 104,Trailer,http://geyser.oni2.net/edition/trailer/intro/compound.zip
-3,Paradox-01/Project_Imago,http://loser.oni2.net/Junkyard/Pro_Gumbyho.rar
 2,Geyser/STFUn00b,http://geyser.oni2.net/OBD/BINA/OBJC/FLAG/
 2,Geyser/STFUn00b,http://geyser.oni2.net/OniTeamArena/WIP/IGMD_OTA2.ZIP
 2,Geyser/STFUn00b,http://gumby.oni2.net/runloser.jpg
 105,Trailer,http://www.imdb.com/name/nm0000881/
-3,Paradox-01/Project_Imago,http://gumby.oni2.net/barabus%20particles.zip
 0,Konoko_Payne,http://www.codercorner.com/blog/?cat=4
 0,Oni_(folder)/GameDataFolder/IGMD/tctf,http://geyser.oni2.net/OSL/IGMD/tctf/tctf_cutscene.bsl
@@ -1365,9 +1271,5 @@
 104,DeLorean,http://edt.oni2.net/AE_Files/AE_delorean.zip
 104,DeLorean,http://geyser.oni2.net/edition/vehicles/delorean.zip
-3,Paradox-01/Project_Imago,http://www.turbosquid.com/3d-models/3d-laser-rifle/361983
-3,Paradox-01/Project_Imago,http://www.turbosquid.com/FullPreview/Index.cfm/ID/221645
-3,Paradox-01/Project_Imago,http://www.turbosquid.com/FullPreview/Index.cfm/ID/180387
-3,Paradox-01/Project_Imago,http://starwars.wikia.com/wiki/DXR-6_disruptor_rifle
-3,Paradox-01/Project_Imago,http://edt.oni2.net/AE_Files/w20_lzr.zip
+0,Blender,https://youtu.be/XqX5wh4YeRw?t=46
 3,Neo/Archive1,http://geyser.oni2.net/edition/vehicles/delorean.zip
 3,Neo/Archive2,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/head-in-a-box.png
@@ -1376,16 +1278,11 @@
 0,Capturing_game_footage,http://camstudio.org
 0,Capturing_game_footage,http://www.perian.org
-0,Restless_Souls/Technology,https://www.businessinsider.de/nuclear-bomb-accident-goldsboro-nc-swamp-2017-5?r=US&IR=T
 0,Zukai,http://whatsmyip.net/
-0,Zukai,http://www.speedtest.net
 0,Restless_Souls/Summary,http://phys.org/news/2015-06-method-quantum-entanglement-vastly-photon.html
 0,Capturing_game_footage,http://www.shinywhitebox.com/
 0,Oni_(folder)/GameDataFolder/IGMD/tctf,http://geyser.oni2.net/OSL/IGMD/tctf/particle_scripts.bsl
-3,Neo/Archive2,http://colladablender.illusoft.com/cms/content/blogcategory/18/44/
 3,Neo/Archive2,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit_v0.9.6.zip
-102,BINA/OBJC/TMBD,http://www6.fh-eberswalde.de/user/dkriesch/onistuff/subfold/text/oni_bina_texture_materials.txt
+109,Truth_Number_Zero/Course_Of_Events,http://geyser.oni2.net/pics/avatars/himagain.png
 0,Multiplayer,https://www.youtube.com/watch?v=iiBE8N1auuo
-3,Iritscen/MainPageTest,http://www.lsesnet.com/blog/?p=35
-0,Restless_Souls/Technology,http://www.theguardian.com/technology/2015/nov/05/robot-revolution-rise-machines-could-displace-third-of-uk-jobs
 1,New_levels,http://geyser.oni2.net/TEMP/tower/lightmap2.jpg
 3,Iritscen,http://i.imgur.com/NGwIbni.jpg
@@ -1408,14 +1305,9 @@
 1,Shinatama,http://tvtropes.org/pmwiki/pmwiki.php/Main/RidiculouslyHumanRobots
 1,Shinatama,http://tvtropes.org/pmwiki/pmwiki.php/Main/LampshadeHanging
-1,Shinatama,http://karakuriya.com/english/doll/shinatama.htm
+0,Videos,https://www.youtube.com/watch?v=7btzVHh_iXQ
 1,Shinatama,http://www.imperioanime.com/karakuri-ningyo-munecas.html
-1,Shinatama,http://miksike.com/docs/elehed/4klass/4nuku/elutuba/marionetid/jaapani.htm
-1,Shinatama,http://video.google.com/videoplay?docid=-3698181664223784657
+1,Shinatama,https://miksike.eu/documents/main/4klass/4nuku/elutuba/Marionetid/jaapani.htm
 1,Shinatama,http://www.youtube.com/watch?v=RNPNluRIUBs
-2,ONIrules,http://www.shareapic.net/users/ONIrules/
-2,ONIrules,http://drop.io/ONIrules
-0,BGI_characters,http://oni.bungie.org/community/forum/viewtopic.php?pid=19624#p19624
-3,Neo,http://dl.dropbox.com/u/139715/temp/talk/TRAMKONCOMcomb_p_p.oni
-0,BGI_characters,http://thefree3dmodels.com/stuff/characters/robot_warrior/14-1-0-1497
+0,BGI_characters,http://oni.bungie.org/forum/viewtopic.php?id=2445
 110,FILM,http://www.unitconversion.org/angle/radians-to-degrees-conversion.html
 2,ONIrules,http://www.youtube.com/user/ONIrules7777
@@ -1427,5 +1319,4 @@
 104,Iron_Demon,http://geyser.oni2.net/edition/characters/iron_demon/walker_c4d2fbx.rar
 104,Iron_Demon,http://geyser.oni2.net/edition/characters/iron_demon/iron_demon_oni.zip
-104,Trailer,http://geyser.oni2.net/edition/trailer/intro/oni_logo.png
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/M01_A02_Assault/
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/junkyard/
@@ -1439,5 +1330,4 @@
 0,Playing_in_Linux,https://www.oracle.com/java/technologies/javase/javase7-archive-downloads.html
 0,BGI_characters,https://downloadfree3d.com/3d-models/weapons/robot/robot-warrior/
-0,Playing_in_Linux,https://javadl.sun.com/webapps/download/AutoDL?BundleId=78825
 0,Playing_in_Linux,https://www.winehq.org
 0,Playing_in_Linux,https://wiki.winehq.org/Winetricks
@@ -1445,56 +1335,41 @@
 0,BGI_characters,https://www.models-resource.com/pc_computer/unrealtournament2004/model/3923/
 3,ONIrules,http://loser.oni2.net/Anniversary/TRAM_mod-attacks_only-no_throws-Losers_part.rar
-104,Trailer,http://loser.oni2.net/Temporary/Doppelganger_Mukade-fight.wmv
-104,Trailer,http://loser.oni2.net/Temporary/Doppelganger_Mukade-Pure_AI2_pwnage.wmv
-104,Trailer,http://loser.oni2.net/Temporary/Dead_comrade_alarm.wmv
-0,Zukai,http://www.pingtest.net/
-2,Noneatme,http://noneat.me/pdf/oni/ONI%20PC%20Manual%20GER.pdf
-104,Trailer,http://edt.oni2.net/AE_Files/TinyMistake.mov
-104,Trailer,http://edt.oni2.net/AE_Files/weapon1_3.mov
-104,Trailer,http://edt.oni2.net/AE_Files/Allweapons1.mov
+104,Trailer,https://www.youtube.com/watch?v=pORGOquI_XE
+104,Trailer,http://iritscen.oni2.net/wiki/Loser-Mukade%20clone%20fight%202.mov
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-Weapon%20cycling%20raw.mov
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-Weapon%20cycling%20orbit.mov
 104,Trailer,http://www.youtube.com/watch?v=hauhR29Cz4E
 104,Trailer,http://geyser.oni2.net/edition/trailer/oni
 104,Trailer,http://www.youtube.com/watch?v=SOusNEMmxz4
-104,DeLorean,http://geyser.oni2.net/edition/vehicles/delorean/TrailerDeLorean.zip
 104,DeLorean,http://geyser.oni2.net/edition/trailer/example.wmv
 104,Trailer,http://geyser.oni2.net/edition/trailer/example.wmv
 104,Trailer,http://geyser.oni2.net/edition/trailer/intro/plugins.zip
 102,SNDD,http://sox.sourceforge.net/
-104,Trailer/Shapeshifting,http://oni.bungie.org/community/forum/viewtopic.php?id=508
 104,Trailer,http://www.youtube.com/watch?v=rwF0FynUhgQ
 102,SNDD,https://wiki.multimedia.cx/index.php/Apple_QuickTime_IMA_ADPCM
 0,Videos,http://www.youtube.com/watch?v=Hqk8OlFsg7Y
-0,History_of_Oni_modding,http://oni.bungie.org/community/forum/viewtopic.php?id=1727
 104,Trailer,http://www.pochta.ru/download.php/?file=:trail.rar&host=ghk.nm.ru/flashcard&user=ghk&lng=ru
-104,Trailer,http://edt.oni2.net/AE_Files/spartans1.mov
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-Spartans%202.mov
 2,Geyser/STFUn00b,http://www.swo.com/disclaimer.shtml
 2,Paradox-01/brain_dump,https://youtu.be/3z0gnXgK8Do?t=535
-104,Trailer/Shapeshifting,http://edt.oni2.net/AE_Files/AllChar.mov
 2,Paradox-01/brain_dump,https://www.tagesspiegel.de/wissen/zwischenergebnis-zur-coronavirus-uebertragung-das-sind-die-ersten-lehren-der-heinsberg-studie/25730138.html
 2,Paradox-01/brain_dump,https://www.tagesschau.de/ausland/us-sanktionen-china-101.html
-104,Trailer,http://edt.oni2.net/AE_Files/spartans2.mov
-104,Trailer,http://edt.oni2.net/AE_Files/spartans3.mov
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-Spartans%201.mov
 104,Trailer,http://edt.oni2.net/AE_Files/NewWeapons.zip
 104,Sniper_scope_and_prone_mode,http://geyser.oni2.net/_VIDEO_/WMV/RifleScope.wmv
-104,Trailer,http://edt.oni2.net/AE_Files/delorean.mov
-3,Paradox-01/Project_Imago,http://i305.photobucket.com/albums/nn207/unknownfuture/sreenshots/violet_flash.jpg
 104,Sniper_scope_and_prone_mode,http://dl.getdropbox.com/u/139715/sniper_mode_(xvid).avi
 104,Sniper_scope_and_prone_mode,http://dl.getdropbox.com/u/139715/sniper_zoom_mode.avi
 104,Sniper_scope_and_prone_mode,http://geyser.oni2.net/_VIDEO_/WMV/RifleScope.zip
-104,Trailer,http://edt.oni2.net/AE_Files/KonokoRoof.mov
 105,Sniper_scope_and_prone_mode,http://geyser.oni2.net/_VIDEO_/WMV/RifleScope.wmv
 105,Sniper_scope_and_prone_mode,http://geyser.oni2.net/_VIDEO_/WMV/RifleScope.zip
-105,Sniper_scope_and_prone_mode,http://www.paradox.oni2.net/AE_vid/sniper_mode_(xvid).avi
-105,Sniper_scope_and_prone_mode,http://www.paradox.oni2.net/AE_vid/sniper_zoom_mode.avi
+105,Sniper_scope_and_prone_mode,http://iritscen.oni2.net/wiki/Paradox-Two%20more%20zooms.avi
+105,Sniper_scope_and_prone_mode,http://iritscen.oni2.net/wiki/Paradox-Sniper%20zoom%20mode.avi
 104,Trailer,http://www.youtube.com/watch?v=6GKAbX1BB9I
 104,Trailer,http://www.turbosquid.com/3d-models/directx-assault-rifle-hugo-3274/372367
 104,Trailer,http://www.turbosquid.com/FullPreview/Index.cfm/ID/271119
-105,Sniper_scope_and_prone_mode,http://www.paradox.oni2.net/AE_vid/relocating_during_hostile_sniper_fire.avi
-105,Sniper_scope_and_prone_mode,http://www.paradox.oni2.net/AE_vid/two_more_zooms.avi
-104,Trailer,http://edt.oni2.net/AE_Files/steambo.mov
-104,Trailer,http://edt.oni2.net/AE_Files/w27_arh.mov
+105,Sniper_scope_and_prone_mode,http://iritscen.oni2.net/wiki/Paradox-Relocating%20during%20hostile%20sniper%20fire.avi
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-Barabas%20using%20jetpack%202.mov
 104,Trailer,http://www.youtube.com/watch?v=9rErY_BwwLw
-105,Sniper_scope_and_prone_mode,http://www.paradox.oni2.net/AE_vid/kneeling+sniping_Konoko.avi
-105,Sniper_scope_and_prone_mode,http://www.paradox.oni2.net/AE_vid/relocating_Konoko.avi
+105,Sniper_scope_and_prone_mode,http://iritscen.oni2.net/wiki/Paradox-Kneeling%20and%20sniping%20Konoko.avi
 111,TRAC,https://youtu.be/QzZcmebn5L4
 111,TRAC,https://youtu.be/9elZeliNOYc
@@ -1504,19 +1379,13 @@
 109,Truth_Number_Zero/Course_Of_Events,https://www.youtube.com/watch?v=tNqSLisW6z0
 110,TRAM,http://mods.oni2.net/node/354
-104,Trailer,http://edt.oni2.net/AE_Files/Barabus_Jet.mov
-104,Trailer,http://edt.oni2.net/AE_Files/Barabus_Jet2.mov
-104,Trailer,http://edt.oni2.net/AE_Files/griffin_out.mov
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-3D%20modeling%20-%20Vago%20Labs%201.mov
+104,Trailer,https://www.youtube.com/watch?v=zacLylPPTFk
+104,Trailer,https://www.youtube.com/watch?v=Cbvbpulnads
 104,Trailer,http://edt.oni2.net/AE_Files/w27_arh.zip
-104,Trailer,http://i157.photobucket.com/albums/t72/Iritscen/Screen%20Caps/Oni/k_mukade.jpg
-104,Trailer,http://i157.photobucket.com/albums/t72/Iritscen/Screen%20Caps/Oni/k_fury.jpg
-104,Trailer,http://i157.photobucket.com/albums/t72/Iritscen/Screen%20Caps/Oni/k_m_mukade.jpg
+104,Trailer,http://iritscen.oni2.net/wiki/coool-k_m_mukade.jpg
 104,Trailer,http://loser.oni2.net/Videos/Mukade_glory.wmv
-3,Gumby,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XML_modding/mouse_speed.png
-103,TRAM,http://babbage.cs.qc.edu/IEEE-754/
 103,TRAM,http://loser.oni2.net/Junkyard/Animations.pdf
-104,Trailer,http://edt.oni2.net/AE_Files/3DLab1.mov
-104,Trailer,http://edt.oni2.net/AE_Files/3DLab2.mov
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-3D%20modeling%20-%20Vago%20Labs%202.mov
 0,Lightmapping_levels,https://www.moddb.com/downloads/autodesk-softimage-mod-tool-75
-2,Gumby,http://oni.bungie.org/community/forum/viewtopic.php?pid=10487#p10487
 5,General_disclaimer,http://messenger.yahoo.com/
 0,Oni_engine_patches_(Mac_Intel),http://mods.oni2.net/node/319
@@ -1524,6 +1393,4 @@
 104,Trailer,http://geyser.oni2.net/edition/trailer/ota_test
 2,Geyser/STFUn00b,http://www.apple.com/getamac/ads/
-104,Trailer,http://drop.io/9dkcl02
-2,Geyser/STFUn00b,http://oni.bungie.org/community/forum/viewtopic.php?pid=9103#p9103
 104,Trailer,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/Images/cartoony.png
 6,Oni_icon-Mac_128px_(Omni).png,http://iritscen.oni2.net/hd_icon/index.htm
@@ -1532,34 +1399,13 @@
 2,Geyser/STFUn00b,http://zdlo.oni2.net/Items/Flags/
 2,Geyser/STFUn00b,http://zdlo.oni2.net/Scripts/DeveloperMode/FlagMap/
-104,Trailer,http://gumby.oni2.net/Videos/Big%20fat%20OTA%20vid.wmv
-104,Trailer,http://edt.oni2.net/AE_Files/pillar.mov
 104,Trailer,http://www.youtube.com/watch?v=HckmJHKyYl4&fmt=6
 104,Trailer,http://gumby.oni2.net/Videos/One%20small%20mistake.wmv
 104,Trailer,http://geyser.oni2.net/pics/screenshots/teaser.png
 104,Trailer,http://gumby.oni2.net/Videos/deadly.wmv
-108,Big/Earthquake,http://www.zbrushcentral.com/showthread.php?163445-Earthquake
-6,Earthquake_(Samurai_Shodown)_ZBrush_model_(clay).jpg,https://corona-renderer.com/forum/index.php?topic=3731.0
-6,GTO_-_Wake_Up_Call_-_Page_1.jpg,http://onimia.ru/forum/viewtopic.php?pid=6530#p6530
-6,GTO_-_Wake_Up_Call_-_Page_2.jpg,http://onimia.ru/forum/viewtopic.php?pid=6622#p6622
-6,28686-CALIG.TXMP000.jpg,http://oni.bungie.org/community/forum/viewtopic.php?pid=9299#p9299
-6,28686-CALIG.TXMP000.jpg,http://www.spieleforum.de/thema/159597-6.html#post1932780
-6,28686-CALIG.TXMP000.jpg,http://en.wiktionary.org/wiki/%E6%9D%8E
-6,28686-CALIG.TXMP000.jpg,http://en.wiktionary.org/wiki/%E6%BA%B6
-6,28686-CALIG.TXMP000.jpg,http://en.wiktionary.org/wiki/%E9%8E%AE
-6,28686-CALIG.TXMP000.jpg,http://en.wiktionary.org/wiki/%E6%B2%88
-6,28686-CALIG.TXMP000.jpg,http://en.wiktionary.org/wiki/%E7%9A%9A
-6,28686-CALIG.TXMP000.jpg,http://en.wiktionary.org/wiki/%E7%80%9B
-6,28686-CALIG.TXMP000.jpg,http://en.wiktionary.org/wiki/%E6%9C%B1
-6,28686-CALIG.TXMP000.jpg,http://en.wiktionary.org/wiki/%E4%BB%B2
-6,28686-CALIG.TXMP000.jpg,http://en.wiktionary.org/wiki/%E8%8B%B1
-8,Wantedfiletext-cat-noforeign,https://wiki.oni2.net/MediaWiki:Wantedfiletext-cat-noforeign
+6,28686-CALIG.TXMP000.jpg,https://www.spieleforum.de/threads/159597-uebersetzung/page5
+0,State_of_Emergency,https://web.archive.org/web/20140907004224/http://www.ign.com/images/games/state-of-emergency-2-xbox-608771
 0,AI,https://youtu.be/LxX5dbYGZow
 104,Trailer,http://iritscen.oni2.net/wiki/trailerdraftv6.mov
-1,Adding_spawnable_characters,http://oni.bungie.org/community/forum/viewtopic.php?id=674
-0,Restless_Souls/Wishlist,https://docs.unrealengine.com/latest/INT/BlueprintAPI/Utilities/Text/MakeTextfromStringTable_Advanced/
-0,Oni_(folder)/readme.txt,http://www.3dlabs.com/
-0,Restless_Souls/Wishlist,https://docs.unrealengine.com/latest/INT/BlueprintAPI/Utilities/Text/FindStringTableIDandKeyfromText/
-0,Oni_(folder)/readme.txt,http://www.accelgraphics.com/
-0,Oni_(folder)/readme.txt,http://www.asus.com/
+0,Restless_Souls/Wishlist,https://docs.unrealengine.com/en-US/BlueprintAPI/Utilities/Text/MakeTextfromStringTable_Advanced/index.html
 0,Console,http://ssg.oni2.net/subfold/consoles/consoles.htm
 2,Lukas_Kreator,http://oni.bungie.org/forum/viewtopic.php?id=2001
@@ -1568,5 +1414,4 @@
 4,Community_portal,http://oni.bungie.org/forum/
 3,Iritscen,http://i.imgur.com/xti8qZC.png
-0,New_levels,http://www.photoshare.ru/album64678.html
 0,New_levels,http://www.turbosquid.com/3d-models/3dsmax-exhibition-building/345449
 0,New_levels,http://sketchup.google.com/3dwarehouse/search?uq=0263839835352743695331922
@@ -1576,5 +1421,4 @@
 104,Trailer,http://geyser.oni2.net/edition/trailer/intro/trailer_intro_5MB.wmv
 0,UnrealOni/Tutorials,http://geyser.oni2.net/UE4/OniTRAM/OniSkeletonBased/
-0,UnrealOni/Tutorials,https://www.unrealengine.com/marketplace/advanced-locomotion-system-v1
 2,Iritscen,http://iritscen.oni2.net
 1,New_levels,http://geyser.oni2.net/TEMP/tower/lightmap.jpg
@@ -1591,9 +1435,4 @@
 104,Plugins,http://geyser.oni2.net/edition/plugins/level0_Camera.zip
 105,Trailer,http://geyser.oni2.net/oni1/music/09-Ambient_Suite.mp3
-105,Trailer,http://onimia.ru/doc/game_gallery_res.php?2
-0,Oni_(folder)/Oni_ReadMe,http://www.3dfx.com/
-0,Oni_(folder)/Oni_ReadMe,http://support.atitech.ca/
-0,Oni_(folder)/readme.txt,http://www.3dfx.com/
-0,Duality,https://bonusweb.idnes.cz/duality-trailer-0j6-
 0,Duality,https://www.youtube.com/watch?v=aRhl00E1hBg
 0,Duality,https://www.youtube.com/watch?v=nS0EbEy8NIw
@@ -1601,9 +1440,5 @@
 100,BFW_Scripting_Language,http://ssg.oni2.net/subfold/charas/charas.htm
 0,Mod_Tool,http://www.youtube.com/watch?v=Zcbv7y5HvRI
-12,Editing,http://oni.bungie.org/community/forum/
-3,Gumby,http://www.paradox.oni2.net/mods/mouse_speed.zip
 0,Modding_brainstorms,http://www.youtube.com/watch?v=rSYJqcsD_bo
-0,History_of_Oni_modding/The_tale_of_Dev_Mode,http://oni.planets.gamespy.com/info/cheats.shtml
-0,Oni,http://oni.bungie.org/community/forum/viewtopic.php?id=2102
 0,Oni,http://oni.bungie.org/forum/
 0,Oni,http://carnage.bungie.org/oniforum/oni.forum.pl?read=1129
@@ -1612,29 +1447,17 @@
 0,Oni_(myth),http://oni.bungie.org/special/part1/brent.html
 0,Oni_(myth),http://carnage.bungie.org/oniforum/oni.forum.pl?read=19851
-4,Copyrights,http://en.wikipedia.org/wiki/Wikipedia:Copyrights
-4,Copyrights,http://www.gnu.org/copyleft/fdl.html
 0,Oni,http://oni.bungie.org/special/part1/brent.html
 3,Iritscen/Archive1,http://www.usatoday.com/money/industries/food/2008-06-02-starbucks-wifi_N.htm
 3,Iritscen/Archive1,http://www.wififreespot.com/
-3,Iritscen/Archive1,http://drop.io/EdT_OniFiles/
 3,Iritscen/Archive1,http://edt.oni2.net/files/FindFlags.bsl
 3,Iritscen/Archive1,http://oniplayer.oni2.net/contents/whatsdone/found_stuff.php
-3,Iritscen/Archive1,http://en.wikipedia.org/wiki/Tsearch
 3,Iritscen/Archive1,http://www.sendspace.com/file/rl6zre
-3,Iritscen/Archive1,http://drop.io/EdT_OniFIles
-3,Iritscen/Archive1,http://drop.io/EdT_OniFiles
-3,Iritscen/Archive1,http://www.drop.io/blenderisdumb
-3,Iritscen/Archive1,http://i157.photobucket.com/albums/t72/Iritscen/Screen%20Caps/Oni/messedupexport.jpg
 3,Iritscen/Archive1,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.16.zip
 3,Iritscen/Archive1,http://geyser.oni2.net/edition/characters/griffin_wow.zip
 3,Iritscen/Archive1,http://geyser.oni2.net/edition/plugins/level0_Characters.zip
-3,Iritscen/Archive2,http://oni.bungie.org/community/forum/viewtopic.php?pid=48117#p48117
 0,TRAM_setup_assistant,http://paradox.oni2.net/programs/TRAMOpenBeta.zip
-0,TRAM_setup_assistant,http://paradox.oni2.net/TRAM_prog/DAE_demo_files.zip
 0,Fuse,https://www.mixamo.com/fuse/1.3/eol
 0,Konoko,http://oni.bungie.org/special/part1/brent.html
 0,Troubleshooting/Blam,http://marathon.bungie.org/story/blam.html
-13,Editing,http://en.wikipedia.org/wiki/Help:Contents
-12,Editing,http://en.wiktionary.org
 14,Art_by_Craig_Mullins,http://www.goodbrush.com
 6,Konoko_Crouching_by_Craig_Mullins_after_Lorraine_(landscape).jpg,http://www.gamewallpapers.com/wallpapers.php?titel=Oni
@@ -1645,19 +1468,11 @@
 3,Ssg,http://ssg.oni2.net/test/skyhtm/skybmp.zip
 3,Neo/Archive2,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit_v0.9.10.zip
-3,EdT/Archive1,http://oni.bungie.org/community/forum/
 3,EdT/Archive1,http://edt.oni2.net/OniSplit/PluginCrash.txt
-6,Konoko_Crouching_-_Wallpaper_2.jpg,http://www.zapster.it/images/tools/wallpapers/1024x768/oni4.jpg
-6,Konoko_Crouching_-_Wallpaper_2.jpg,http://www.zapster.it/tools/wallpap.asp
-6,Konoko_Crouching_-_Wallpaper_2.jpg,http://www.gamez.it/videogioco/Oni-PC-Windows
 14,Art_by_Lorraine,http://aerie.geofront.com/
-6,Intro_frame_0431.png,http://www.aicanime.com/products/adpolice/tvindex.html
 0,Xenotron,http://web.archive.org/web/20110820102502/http://home.luna.nl/~xino/times2/funtower.htm
 0,Xenotron,http://web.archive.org/web/20110820102507/http://home.luna.nl/~xino/fonts/xenotron/radio.html
 0,Xenotron,http://videogamesartist.blogspot.com/search/label/Happy%20Mascots
-0,Xenotron,http://home.luna.nl/~xino/vga/index.html
 1,Main_Page/Archive1,http://guido.oni2.net/index.%20guido.oni2.net.jpg
 0,Trailers,http://oni.bungie.org/forum/
-103,TXMP,http://i305.photobucket.com/albums/nn207/unknownfuture/sreenshots/messed_up_Striker.jpg
-103,TXMP,http://i305.photobucket.com/albums/nn207/unknownfuture/sreenshots/messed_up_Fury.jpg
 14,Outro_sequence,http://www.anime-int.com/
 0,Oni_(folder)/GameDataFolder/IGMD/power,http://geyser.oni2.net/OSL/IGMD/power/power_main.bsl
@@ -1665,45 +1480,19 @@
 1,Main_Page/Archive1,http://oni.bungie.org/forum/
 0,Gendo_Ikari,http://carnage.bungie.org/oniforum/oni.forum.pl?read=4618
-3,Neo/Archive1,http://www.microsoft.com/downloads/details.aspx?familyid=200B2FD9-AE1A-4A14-984D-389C36F85647&displaylang=en
 0,WCG,http://www.unknown.nu/futurism/architecture.html
 0,WCG,http://web.tiscali.it/antonio_santelia/galleria.htm
 0,WCG,http://web.tiscali.it/antonio_santelia/galleria/093.htm
-1,Konoko,http://forums.philosophyforums.com/threads/the-mind-and-the-brain-31502-14.html#post523470
 104,Plugins,http://geyser.oni2.net/edition/plugins/level0_Shin2.zip
-110,DPge,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XML_modding/DPge.png
 3,ONIrules,http://sketchup.google.com/3dwarehouse/details?mid=837b929c0e1e600495ff232cd38210b4
 3,ONIrules,http://sketchup.google.com/3dwarehouse/details?mid=1b95ba95fbde8c64fcace4d823343363
-3,ONIrules,http://ghost.halomaps.org/bluestreak/gbxmodel/
 0,Multiplayer,https://www.youtube.com/watch?v=HOmKXhZJ3b8
 0,Oni,http://oni.bungie.org/newsarchives/2001/jan01.html
-0,Oni_(folder)/readme.txt,http://support.atitech.ca/
-0,Oni_(folder)/readme.txt,http://www.aztechlabs.com/
-0,Oni_(folder)/readme.txt,http://www.canopuscorp.com/
-0,Oni_(folder)/readme.txt,http://www.creativelabs.com/
-0,Oni_(folder)/readme.txt,http://www.diamondmm.com/
-0,Oni_(folder)/readme.txt,http://www.elsa.de/
-0,Oni_(folder)/readme.txt,http://www.gw2k.com/
-0,Oni_(folder)/readme.txt,http://www.guillemot.com/
-0,Oni_(folder)/readme.txt,http://www.iomagic.com/
-0,Oni_(folder)/readme.txt,http://www.jaton.com/
-0,Oni_(folder)/readme.txt,http://www.leadtek.com/
-0,Oni_(folder)/readme.txt,http://www.matrox.com/
-0,Oni_(folder)/readme.txt,http://www.nine.com/
-0,Oni_(folder)/readme.txt,http://www.nvidia.com/
-0,Oni_(folder)/readme.txt,http://www.s3.com/
-0,Oni_(folder)/readme.txt,http://www.sis.com.tw/
-0,Oni_(folder)/readme.txt,http://www.viatech.com/
-0,Oni_(folder)/readme.txt,http://www.videologic.com/
 10,AutodeskFBX,https://www.autodesk.com/products/fbx/overview
-0,History_of_Oni_modding,http://oni.bungie.org/community/forum/viewtopic.php?id=1736
 0,Importing_character_models,http://geyser.oni2.net/edition/characters/gally/GLB_ripped.zip
 10,ModTool,https://www.moddb.com/downloads/autodesk-softimage-mod-tool-75
-0,GUNNM,http://www.gamefaqs.com/console/psx/home/197512.html
 1,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=z97w4vrm8Eo
 1,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=D8nH2Yo9PT8
 0,GUNNM,https://web.archive.org/web/20100909135036/http://www.battleangel.info/
 0,GUNNM,http://www.fortunecity.com/victorian/byron/1279/gunnm1.htm
-0,Modding_errors,http://dl.dropbox.com/u/139715/OniGalore/OniSplit_0.9.41.0.zip
-0,Blame!,http://anidb.info/perl-bin/animedb.pl?show=anime&aid=1050
 0,State_of_Emergency,http://www.rockstargames.com/stateofemergency/
 0,State_of_Emergency,http://www.rockstargames.com/stateofemergency/movies/TRAILERrevise-320-big_mov.zip
@@ -1735,6 +1524,5 @@
 0,State_of_Emergency,http://www.rockstargames.com/stateofemergency/movies/strategy4.mov
 0,State_of_Emergency,http://www.rockstargames.com/stateofemergency/movies/strategy5.mov
-0,State_of_Emergency,http://ps2.ign.com/objects/016/016405.html
-0,State_of_Emergency,http://xbox.ign.com/objects/608/608771.html
+0,State_of_Emergency,https://www.metacritic.com/game/playstation-2/state-of-emergency-2
 1,Music/CD,http://rossy.oni2.net/files/videos/test.htm
 1,Main_Page/Archive1,http://www.issendai.com
@@ -1744,17 +1532,10 @@
 0,PolyKarbon,http://polykarbon.com/
 0,PolyKarbon,http://www.polykarbonbbs.com/
-0,PolyKarbon,http://center.spoke.com/info/p5r3WYd/PatrickShettlesworth
-0,PolyKarbon,http://training.sessions.edu/resources/free-tutorials/adobe-illustrator-tutorials/live-trace-live-paint.asp
 3,Neo/Archive1,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniBrowser.zip
-2,Geyser/Artwork,http://bards.fr/orgkom/wupper2008.jpg
-2,Geyser/Artwork,http://bards.fr/pics/twilight.jpg
-2,Geyser/Artwork,http://bards.fr/pics/twilight2.jpg
 0,History_of_Oni_modding,http://ssg.oni2.net
 0,History_of_Oni_modding,http://oni.bungie.org/special/part1/brent.html
-0,History_of_Oni_modding,http://carnage.bungie.org/oniresforum/onires.archive.pl?read=35
 0,Modding_brainstorms,http://geyser.oni2.net/genesis/screenshots/_oni_07.jpg
 0,Mac_betas,http://geyser.oni2.net/edition/plugins/level0_Tools.zip
 105,Daodan_overpower_and_upgrades,http://www.bungie.net/Forums/posts.aspx?postID=27807403
-3,Neo/Archive1,http://www.microsoft.com/downloads/details.aspx?FamilyID=15fb9169-4a25-4dca-bf40-9c497568f102&DisplayLang=en
 2,Lukas_Kreator,http://oni.bungie.org/forum/viewtopic.php?id=1779
 0,New_levels,http://geyser.oni2.net/edition/levels/andreika/noglass1.zip
@@ -1766,9 +1547,6 @@
 105,BGI,http://www.turbosquid.com/3d-models/3d-iron-man-helmet-model/424900
 104,Glass,http://gumby.oni2.net/AE/oni%20files/glass/XML/BINA3RAPglass_shard.xml
-2,Gumby,http://oni.bungie.org/community/forum/viewtopic.php?id=702
 1,Combat_system,http://loser.oni2.net/Videos/Throws_modification_001.wmv
 0,Rights,http://www.take2games.com/
-0,Restless_Souls/Technology,http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1188140623&rangeend=1188147823&nochange=1#114292
-3,Geyser,http://recaptcha.net/
 0,Rights,http://www.rockstargames.com/
 0,Rights,http://www.omnigroup.com/
@@ -1799,7 +1577,4 @@
 110,BINA/OBJC/PART,http://ssg.oni2.net/commands.htm#dev-p3
 0,Restless_Souls/Wishlist,https://www.youtube.com/results?search_query=ue4+skybox
-0,Restless_Souls/Wishlist,https://docs.unrealengine.com/latest/INT/Engine/Matinee/HowTo/MHT_7/index.html
-1,OME,http://myjavaserver.com/~kuchumovn/ome/
-0,Restless_Souls/Technology,https://wiki.oni2.net/File:28686-CALIG.TXMP000.jpg
 2,Bobbysoon,http://www.youtube.com/watch?v=YLZ2hJZvrmo
 2,Bobbysoon,http://www.youtube.com/watch?v=STMMqcpJuB0
@@ -1812,13 +1587,10 @@
 111,BINA/OBJC/TRGV,https://wiki.oni2.net/w/index.php?title=XML:BINA/OBJC/TRGV&type=revision&diff=26530&oldid=26524
 109,Truth_Number_Zero/Digest,https://gifer.com/en/Rpck
-0,Restless_Souls/BC2,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/RS_concept_art/pipe_cruiser.png
-0,Restless_Souls/Beta_Chapters,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/RS_concept_art/pipe_cruiser.png
 0,Slovak_Oni_game_manual,http://kontiki.sk/index.php/en/
 3,Neo/Archive1,http://oni.bungie.org/forum/
 3,Neo,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%5E_v0.9.52.zip
 108,Caged_Birds,https://www.google.com/search?q=species+extinction+rate&source=lnms&tbm=isch&sa=X
-0,Rights,http://www.destineerstudios.com/macsoftgames/
+0,Appleseed,https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1312
 0,Rights,http://halo.bungie.net/projects/oni/default.aspx
-0,Appleseed,http://anidb.info/perl-bin/animedb.pl?show=anime&aid=1312
 0,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=TzL7YDEPej0
 0,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=hVdNji_TtXw
@@ -1844,33 +1616,16 @@
 0,Torn_Suit_Konoko,http://oni.bungie.org/special/part1/alex.html
 0,Duality,https://www.youtube.com/watch?v=QEmwgnSnSsk
-3,Geyser/DoxProjectImagoTalkBackup,http://starwars.wikia.com/wiki/DXR-6_disruptor_rifle
 3,Geyser/DoxProjectImagoTalkBackup,http://gumby.oni2.net/barabus%20particles.zip
 3,Geyser/DoxProjectImagoTalkBackup,http://edt.oni2.net/AE_Files/w20_lzr.zip
 3,Geyser/DoxProjectImagoTalkBackup,http://dl.getdropbox.com/u/60508/BarabusPowerups.rar
-3,Geyser/DoxProjectImagoTalkBackup,http://i305.photobucket.com/albums/nn207/unknownfuture/sreenshots/violet_flash.jpg
-110,TRAM,http://dl.dropbox.com/u/139715/OniGalore/TRAM_macro.zip
 110,TRAM,http://youtu.be/wxzJ8ahjP8k
-110,OBAN,http://wiki.oni2.net/File:Dream_obj_images_spawned.jpg
 102,Oni2AS,http://geyser.oni2.net/BANKS.DAT.ZIP
-0,Modding_Oni,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XSI_modding/RAICOMthrow_fw_kick.png
 110,ONLV,http://vk.com/gameready
-0,Anniversary_Edition/To-do,http://oni.bungie.org/community/forum/viewtopic.php?pid=45791#p45791
-108,Hikari,http://membres.lycos.fr/feena/rpg/grandia2/
 0,Modding_brainstorms,http://dl.getdropbox.com/u/139715/sound_detection.avi
-0,Modding_brainstorms,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/talk/sounds.jpg
 0,Oni_(folder)/GameDataFolder,http://www.radgametools.com/bnkdown.htm
 6,TXMPPOSTER4.png,http://hl.udogs.net/files/Gaming/Bungie%20Related%20Movies/MWSF%202000/Bungie%20TV/MWSF%202000/bTV_day2_big.mov
 6,Early_box_art.jpg,http://oni.bungie.org/newsarchives/2000/nov00.html#cover
 0,Mouse_control_issues,http://oni.bungie.org/forum/
-0,Mouse_control_issues,http://oni.bungie.org/community/forum/viewtopic.php?id=149
-0,Mouse_control_issues,http://oni.bungie.org/community/forum/viewtopic.php?id=746
-0,Mouse_control_issues,http://oni.bungie.org/community/forum/viewtopic.php?id=767
-0,Mouse_control_issues,http://oni.bungie.org/community/forum/viewtopic.php?id=801
-0,Mouse_control_issues,http://oni.bungie.org/community/forum/viewtopic.php?id=824
-0,Mouse_control_issues,http://oni.bungie.org/community/forum/viewtopic.php?id=907
-0,Mouse_control_issues,http://oni.bungie.org/community/forum/viewtopic.php?id=937
-0,Mouse_control_issues,http://oni.bungie.org/community/forum/viewtopic.php?id=970
 0,Mouse_control_issues,http://www.nvidia.com/Download/index.aspx?lang=en-us
-0,Mouse_control_issues,http://oni.bungie.org/community/forum/viewtopic.php?id=766
 0,Mouse_control_issues,http://rossy.oni2.net/files/single-core/Oni.exe
 0,Iron_Demon,http://www.turbosquid.com/3d-models/3d-model-robot/262162
@@ -1882,5 +1637,4 @@
 104,BIP,http://geyser.oni2.net/ONK/warehouse/WarehouseMod/
 108,Hikari,http://geyser.oni2.net/oni2/characters/misc/fight2_1000.jpg
-3,Neo/Archive1,http://www.microsoft.com/downloads/details.aspx?FamilyID=a7da4763-6807-4bd5-8d18-18c60c437f93&DisplayLang=en%7CXNA
 3,Bobbysoon,http://http.loser.oni2.net/Anniversary/ID_explo_final_more_debris.zip
 3,Bobbysoon,http://http.loser.oni2.net/Videos/ID_explo_final.wmv
@@ -1891,16 +1645,10 @@
 0,Oni_2_(Angel_Studios)/Running,https://pcsx2.net/
 0,Oni_2_(Angel_Studios)/Running,http://mods.oni2.net/node/347
-110,XML_Modding_Lessons,http://www.microsoft.com/visualstudio/express
 110,XML_Modding_Lessons,http://developer.apple.com/technology/Xcode.html
 0,Restless_Souls/Technology,https://youtu.be/a1XcY-xAvos?t=5m14s
 0,Restless_Souls/Technology,http://phys.org/news/2015-06-scientists-molecular-key-potential-gmos.html
-0,Restless_Souls/Technology,http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189348501&rangeend=1189355701&nochange=1#121507
-0,Restless_Souls/Technology,http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189961817&rangeend=1189969017&nochange=1#123453
 0,Videos,http://www.youtube.com/watch?v=9VlUBaQWuXg
 3,Bobbysoon,http://www.youtube.com/watch?v=sa-h6lXQ-p4
-111,Basic_tutorial,http://www.go-mono.com/mono-downloads/download.html
 111,Basic_tutorial,http://edt.oni2.net/files/paradox.zip
-111,Basic_tutorial,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/talk/sick_xml.png
-102,SNDD/wav,http://msdn.microsoft.com/en-us/library/cc677007(VS.85,loband).aspx
 105,New_weapons,http://www.turbosquid.com/FullPreview/Index.cfm/ID/308701
 105,New_weapons,http://www.youtube.com/watch?v=NG7ym_nPjwo&feature=related
@@ -1921,10 +1669,8 @@
 105,New_weapons,http://edt.oni2.net/AE_Files/w22_pst.zip
 1,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=vgo4jnM0NyY
-105,New_weapons,http://drop.io/ONIrules
 105,New_weapons,http://edt.oni2.net/AE_Files/pallet.zip
 105,New_weapons,http://edt.oni2.net/AE_Files/FShotgun.zip
 105,New_weapons,http://edt.oni2.net/AE_Files/s1_swd.zip
 3,Bobbysoon/Animation_Discussion,http://edt.oni2.net/mov/ID_Lives.wmv
-0,Mac_mods,http://edt.oni2.net/mods/level0_Final.dat.zip
 3,Neo,http://edt.oni2.net/TRAMS/TRAMfiles2.zip
 3,Neo,http://edt.oni2.net/TRAMS/WalkRot.wmv
@@ -1935,29 +1681,12 @@
 1,OniSplit,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.37.zip
 3,Neo,http://edt.oni2.net/TRAMS/ThighYaxis.wmv
-0,Restless_Souls/Wishlist,https://youtu.be/-AxaiojcAQU
-1,Restless_Souls/Wishlist,https://wiki.unrealengine.com/Category:Tutorials
-3,Bobbysoon,http://www.filefront.com/14467713/images.rar/
-3,Bobbysoon,http://iritscen.oni2.net/temp/ID_sounds.zip
-3,Bobbysoon,http://www.filefront.com/14467707/_IronDemon-dae.rar/
-3,Bobbysoon,http://i176.photobucket.com/albums/w161/bobbysoon/Gatling.jpg
-1,Restless_Souls/Wishlist,https://www.raywenderlich.com/u/TommyTran
-3,Bobbysoon,http://forum.halomaps.org/index.cfm?page=topic&topicID=24629
-3,Bobbysoon,http://i176.photobucket.com/albums/w161/bobbysoon/scrollText.jpg
-3,Bobbysoon,http://edt.oni2.net/temp/Iron_Demon_Package.zip
-0,Restless_Souls/Technology,http://jxb.oxfordjournals.org/cgi/content/abstract/59/5/1109
+1,Restless_Souls/Wishlist,http://web.archive.org/web/20171018100642/https://www.raywenderlich.com/u/TommyTran
 0,Restless_Souls/Technology,http://www.sciencemag.org/cgi/content/abstract/315/5811/513
-0,Restless_Souls/Technology,http://www.rcn.montana.edu/pubs/pdf/2007/science%202007.pdf
 3,Bobbysoon,http://edt.oni2.net/temp/ID_Boom.wmv
 3,Bobbysoon,http://www.youtube.com/watch?v=ht7KrEaImzo
-3,Bobbysoon,http://www.filefront.com/14485651/ID%20TRBS%20dae%20TXMP_chest.rar
-3,Bobbysoon,http://www.filefront.com/14488981/level0_Final.rar/
-3,Bobbysoon,http://paradox.oni2.net/temp/TXMPID_mid.zip
-100,Functions,http://wiki.oni2.net/BSL:Functions#ai2
+3,Bobbysoon,https://web.archive.org/web/20131017074815/http://forum.halomaps.org/index.cfm?page=topic&topicID=24629
 3,Bobbysoon,http://www.youtube.com/watch?v=STMMqcpJuB0
 3,Neo/Archive2,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.17.zip
-3,Neo,http://www.filefront.com/14507129/dae.rar
-3,Neo,http://www.filefront.com/14507115/ID%20walking.xaf
 3,Neo/Archive2,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.16.zip
-3,Neo/Archive2,http://www.driverheaven.net/mobility-radeon-drivers-support/76736-ati-mobility-firegl-t2-hp-nw8000.html
 3,Neo/Archive2,http://www.thinkwiki.org/wiki/ATI_Mobility_FireGL_T2
 3,Neo/Archive2,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.15.zip
@@ -1967,25 +1696,12 @@
 0,Capturing_game_footage,https://www.blackmagicdesign.com/products/davinciresolve/
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/HarborLayout/
-0,Restless_Souls/Wishlist,https://1drv.ms/t/s!Asn4fV_yvODigUIEKdkZj6rFdo1o
 0,Restless_Souls/Wishlist,https://youtu.be/y4sxRP-GrVQ
 0,Capturing_game_footage,https://www.shotcut.org/
-0,Restless_Souls/Wishlist,https://1drv.ms/t/s!Asn4fV_yvODigUFiFR2WCYIsvnl0
-0,Restless_Souls/Wishlist,https://1drv.ms/t/s!Asn4fV_yvODigUPgtVd9c21Szk68
-0,Restless_Souls/Wishlist,https://1drv.ms/t/s!Asn4fV_yvODigUAfQ-spWYnvi1pV
-0,Restless_Souls/Wishlist,https://1drv.ms/t/s!Asn4fV_yvODigT8xJ35jXaxFlD35
-0,Restless_Souls/Wishlist,https://1drv.ms/t/s!Asn4fV_yvODigUSQY6R4bhXJqRFi
-3,Neo/Archive2,http://www.nersc.gov/vendor_docs/ibm/asm/mastertoc.htm#mtoc
-3,Neo/Archive2,http://edt.oni2.net/OS/MCKonoko.blend
-3,Neo/Archive2,http://edt.oni2.net/OS/MCKonoko.dae
-3,Neo/Archive2,http://edt.oni2.net/3D/Motoko.zip
-6,Daodan_Chrysalis_in_Chinese.png,http://ja.wikipedia.org/wiki/%E8%9B%B9
+3,Neo/Archive2,https://web.archive.org/web/20090622125037/https://developer.apple.com/documentation/DeveloperTools/CompilersDebuggers-date.html
 3,Neo/Archive2,http://edt.oni2.net/OniSplit/TRACkonokocore_animations.xml
 3,Neo/Archive2,http://edt.oni2.net/OniSplit/ONCCCopfemA2.zip
-3,Neo/Archive2,http://edt.oni2.net/beta/OniBeta4.zip
-3,Neo/Archive2,http://developer.apple.com/documentation/DeveloperTools/CompilersDebuggers-date.html#//apple_ref/doc/uid/TP30000440-TP30000436-TP30001025
 3,Neo/Archive2,http://www.ibm.com/developerworks/linux/library/l-ppc/
 3,Neo/Archive2,http://www.cs.uaf.edu/2006/fall/cs301/support/ppc/progenv.pdf
-3,Neo/Archive2,http://the.wall.riscom.net/books/proc/ppc/cwg/cwg_toc.html
-6,Daodan_Chrysalis_in_Chinese.png,http://zh.wikipedia.org/wiki/%E8%9B%B9
+3,Neo/Archive2,http://web.archive.org/web/20080705115313/http://the.wall.riscom.net/books/proc/ppc/cwg/cwg_toc.html
 3,Neo/Archive3,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.26.zip
 3,Neo/Archive3,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.25.zip
@@ -1996,36 +1712,23 @@
 3,Neo/Archive3,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.18.zip
 3,Neo/Archive3,http://www.youtube.com/watch?v=rwF0FynUhgQ
-3,Neo/Archive3,http://paradox.oni2.net/particle_bug_report.rar
+3,Neo/Archive3,http://oni.bungie.org/forum/viewtopic.php?pid=8417
 3,Neo/Archive3,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.18%7C_beta5.zip
-3,Neo/Archive3,http://paradox.oni2.net/particle_bug_report_2.rar
+3,Neo/Archive3,http://sites.google.com/site/gumby701/gui.exe
 3,Neo/Archive3,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.18%7C_beta4.zip
-3,Neo/Archive3,http://demoskratos.ifolder.ru/7931537
 3,Neo/Archive3,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.18%7C_beta3.zip
 3,Neo/Archive3,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.18%7C_beta2.zip
-3,Neo/Archive3,http://oni.bungie.org/community/forum/viewtopic.php?pid=7390
 3,Neo/Archive3,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.18%7C_beta.zip
-3,Neo/Archive3,http://www.autoitscript.com/autoit3/
-3,Neo/Archive3,http://gumby701.googlepages.com/gui.exe
+3,Neo/Archive3,https://www.autoitscript.com/site/autoit/
 3,Neo/Archive3,http://gumby.oni2.net/GUI/LevelRecombine.exe
-3,Neo/Archive3,http://oni.bungie.org/community/forum/viewtopic.php?pid=8417
 3,Neo/Archive3,http://edt.oni2.net/OniSplit/level3BINACJBOFlag.oni.zip
-3,Neo/Archive3,http://drop.io/demoskratos
 3,Neo/Archive4,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniPC%7C_idb49.zip
-3,Neo/Archive4,http://oni.bungie.org/community/forum/viewtopic.php?pid=4897#p4897
-3,Neo/Archive4,http://loser.oni2.net/Videos/Projectile_dodge_issue.wmv
+3,Neo/Archive4,http://iritscen.oni2.net/comp_graphics/Oni-BadShadows1.jpg
 3,Neo/Archive4,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.28.zip
-3,Neo/Archive4,http://www.paradox.oni2.net/IGSt_bug.zip
 3,Neo/Archive4,http://edt.oni2.net/OniSplit/TRBSkonoko.zip
 3,Neo/Archive4,http://www.hex-rays.com/idapro/idadownfreeware.htm
 3,Neo/Archive4,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit/OniSplit%7C_v0.9.27.zip
-3,Neo/Archive4,http://iritscen.oni2.net/temp/Oni-BadShadows1.jpg
-3,Neo/Archive4,http://iritscen.oni2.net/temp/Oni-BadShadows2.jpg
-3,Neo/Archive4,http://iritscen.oni2.net/temp/Oni-BadShadows3.jpg
-3,Neo/Archive4,http://iritscen.oni2.net/temp/Oni-BadShadows4.jpg
-3,Neo/Archive4,http://iritscen.oni2.net/temp/Marathon-GoodShadows1.jpg
-3,Neo/Archive4,http://iritscen.oni2.net/temp/Marathon-GoodShadows2.jpg
-3,Neo/Archive4,http://gumby701.googlepages.com/bomber.wmv
+3,Neo/Archive4,http://iritscen.oni2.net/comp_graphics/Marathon-GoodShadows1.jpg
+3,Neo/Archive4,http://iritscen.oni2.net/comp_graphics/Marathon-GoodShadows2.jpg
 3,Neo/Archive4,http://www.youtube.com/watch?v=C8zpfiHeR_s
-3,Neo/Archive4,http://drop.io/download/48cc75dc/b7052019762bf4f5aa859de9bb6689d9bb5f32c1/b2b104c0-6431-012b-6d03-0012799407ec/167e5950-6432-012b-19f4-f1daf8099b16/aware.wmv
 3,Neo/Archive5,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/noglass.zip
 3,Neo/Archive5,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/hexagon.zip
@@ -2033,15 +1736,10 @@
 3,Neo/Archive5,http://sketchup.google.com/3dwarehouse/search?uq=07853225406317038571
 3,Neo/Archive5,http://sketchup.google.com/3dwarehouse/details?mid=4e64820c9e369b6017ace7d0b43b4dfb
-3,Neo/Archive5,http://www.paradox.oni2.net/mods/Ed's_music_test.zip
 3,Neo/Archive5,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/Images/head.png
-3,Neo/Archive5,http://iritscen.oni2.net/temp/mus_tranc.zip
 3,Neo/Archive5,http://edt.oni2.net/OniSplit/Particle.wmv
-3,Neo/Archive5,http://edt.oni2.net/OniSplit/SNDDBurn.zip
 3,Neo/Archive5,http://edt.oni2.net/OniSplit/mus_burn.zip
 3,Neo/Archive5,http://rossy.oni2.net/files/ConsoleTest.zip
 3,Neo/Archive5,http://edt.oni2.net/OniSplit/bgra32.zip
 0,Appleseed,http://www.fortunecity.com/victorian/orwell/1278/Appleseed.htm
-14,Art_by_Lorraine,http://halo.wikia.com/wiki/Main_Page
-6,Black_Spartan_from_Halo.png,http://halo.wikia.com/wiki/Main_Page
 0,Oni_(folder)/GameDataFolder/IGMD/tctf,http://geyser.oni2.net/OSL/IGMD/tctf/tctf_door_lock_lights.bsl
 0,Oni_(folder)/GameDataFolder/IGMD/tctf,http://geyser.oni2.net/OSL/IGMD/tctf/tctf_main.bsl
@@ -2055,30 +1753,16 @@
 0,Modding_Oni,http://www.gimp.org/
 14,Modding_projects,http://mods.oni2.net
-0,History_of_Mac_Oni,http://oni.bungie.org/community/forum/viewtopic.php?id=848
-6,GTO_-_Wake_Up_Call_-_Page_3.jpg,http://onimia.ru/forum/viewtopic.php?pid=9699#p9699
-6,GTO_-_Wake_Up_Call_-_Page_4.jpg,http://onimia.ru/forum/viewtopic.php?pid=17391#p17391
-1,Hasegawa,http://wiki.oni2.net/Image:Dream_1_murder_or_mercy.jpg
 0,Lightmapping_levels,http://vi-wer.de.tl/Lightmap-Tutorial.htm
-3,Paradox-01/Archive1,http://wiki.oni2.net/User:Paradox-01/quotes_chef_1
 2,Gumby,http://gumby.oni2.net/AE/BSL/cutscene/
 2,Script_10k,http://www.youtube.com/user/Script10k
-3,Neo,http://iritscen.oni2.net/temp/06000MissingSoundsOcc.zip
-1,Restless_Souls/Wishlist,http://www.codegeek.io/20170409-animate-makehuman-character-in-mixamo/
 0,Troubleshooting,http://www.oldapps.com/ati.php
-2,Script_10k,http://oni.bungie.org/community/forum/viewtopic.php?id=297
 2,Script_10k,http://www.youtube.com/watch?v=_z6I8YUM-Lo
 2,Script_10k,http://www.youtube.com/watch?v=ziOn_Iou0Kg
-0,Restless_Souls/Summary,http://wiki.oni2.net/Restless_Souls/Technology#Full_body_simulations
-0,Oni_RPG,http://en.wikipedia.org/wiki/RPG_Maker
 104,Warehouse,http://mods.oni2.net/node/344
 104,BIP,http://geyser.oni2.net/ONK/warehouse/GlobalHacks/
 0,Oni_RPG,http://script10k.oni2.net/files/oni_rpg_demo2.exe
-0,Fuse,https://www.macworld.com/article/3010613/software-graphics/hands-on-adobe-s-new-fuse-cc-lets-beginners-take-baby-steps-into-3d-modeling.html
 0,Oni_RPG,http://script10000.oni2.net/files/Oni%20RPG%20-%20Open%20Edition.rar
-0,Restless_Souls/Technology,http://wiki.oni2.net/File:GuidoArt-Pandora_vs._Mukade.jpg
-0,Restless_Souls/Ikimas,http://wiki.oni2.net/Oni2:Storyline
 2,Script_10k,http://mods.oni2.net/node/208
 2,Script_10k,http://mods.oni2.net/search/node/s10k
-2,Iritscen/WikiFuture,https://www.mediawiki.org/wiki/Version_lifecycle
 2,Script_10k,http://dl.dropbox.com/u/143726/scripts/Airport.zip
 2,Script_10k,http://dl.dropbox.com/u/143726/scripts/state1_without_bugs__flags_bugs_.zip
@@ -2091,22 +1775,13 @@
 0,Walkthrough/CHAPTER_12_._SINS_OF_THE_FATHER,http://www.youtube.com/watch?v=5Xz_WaOfWkc
 0,Walkthrough/CHAPTER_12_._SINS_OF_THE_FATHER,http://www.youtube.com/watch?v=xbYGEqGG8Kc
-0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,http://www.youtube.com/watch?v=BqWrUGTQXn0#t=0m03s
-0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,http://www.youtube.com/watch?v=BqWrUGTQXn0#t=0m47s
-0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,http://www.youtube.com/watch?v=BqWrUGTQXn0#t=1m26s
-0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,http://www.youtube.com/watch?v=BqWrUGTQXn0#t=1m46s
-0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,http://www.youtube.com/watch?v=BqWrUGTQXn0#t=2m07s
-0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,http://www.youtube.com/watch?v=BqWrUGTQXn0#t=2m22s
-3,Tieria_Erde,http://oni.bungie.org/community/forum/index.php
-3,Neo,http://dl.dropbox.com/u/139715/TRAM/KONCOM_ko_throw.zip
-3,Neo,http://iritscen.oni2.net/temp/06000MissingSoundsNoOcc.zip
-3,Neo,http://iritscen.oni2.net/temp/GearsTestWindows.mp4
-2,EdT/temp,http://edt.oni2.net/temp/70000NewScreens.zip
+0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,https://youtu.be/BqWrUGTQXn0?t=2m22s
+0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,https://youtu.be/BqWrUGTQXn0?t=2m07s
+0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,https://youtu.be/BqWrUGTQXn0?t=1m46s
+0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,https://youtu.be/BqWrUGTQXn0?t=1m26s
+0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,https://youtu.be/BqWrUGTQXn0?t=47s
 2,EdT/temp,http://edt.oni2.net/temp/NewScreensUpdate.zip
-0,Restless_Souls/Wishlist,https://www.unrealengine.com/en-US/what-is-unreal-engine-4
 0,Blender,https://www.youtube.com/watch?v=4q6mLdO1E4Q
 1,Restless_Souls/Technology,http://www.weltderphysik.de/de/2444.php
 0,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=7vtdJeRscAQ
-0,Restless_Souls/Fragments,http://en.wikipedia.org/wiki/File:FragariaHybrid.jpg
-3,Paradox-01/Archive1,http://wiki.oni2.net/XML_talk:TRAM#Problem_with_exporting_a_textured_character_with_non-native_TRAC_animation
 100,BFW_Scripting_Language,http://ssg.oni2.net/subfold/consoles/consoles.htm
 100,BFW_Scripting_Language,http://ssg.oni2.net/subfold/doors/doors.htm
@@ -2118,5 +1793,4 @@
 0,Black-eyed_teeth,http://www.youtube.com/watch?v=6qz11BFTgZU
 1,Restless_Souls/Technology,http://www.wundzentrum-hamburg.de/download/Barbara_Temme_05062008.pdf
-1,Restless_Souls/Technology,http://de.wikipedia.org/wiki/Regeneration_(Biologie)
 0,Importing_character_models,http://geyser.oni2.net/edition/characters/gally/GLB_matched.zip
 0,Importing_character_models,http://geyser.oni2.net/edition/characters/gally/GLB_ready.zip
@@ -2137,5 +1811,4 @@
 0,New_levels,http://sketchup.google.com/3dwarehouse/search?uq=0920076976514168017734253
 0,New_levels,http://sketchup.google.com/3dwarehouse/details?mid=34838cda1690ce4425ddf6e8265c857c
-0,New_levels,http://turbosquid.com
 0,New_levels,http://www.daz3d.com/i/shop/catbrowse?cat=349
 0,New_levels,http://www.daz3d.com/i/shop/itemdetails/?item=11042
@@ -2147,11 +1820,7 @@
 0,New_levels,http://geyser.oni2.net/edition/levels/arena/arena_level5_Final.zip
 0,New_levels,http://geyser.oni2.net/edition/levels/arena/arena_level7_Final.zip
-0,New_levels,http://www.photoshare.ru/album9528.html
 0,New_levels,http://geyser.oni2.net/edition/levels/andreika/
-0,New_levels,http://www.photoshare.ru/album23608.html
-0,New_levels,http://www.photoshare.ru/album107891.html
-0,New_levels,http://www.cad.ru/ru/territory/sapr/index.php?page=blog&blog=socially_business_center
+0,New_levels,http://photoshare.ru/album107891.html
 0,New_levels,http://geyser.oni2.net/edition/levels/andreika/office/
-2,Paradox-01/brain_dump,http://deusex.wikia.com/wiki/Helios
 0,New_levels,http://geyser.oni2.net/edition/levels/arena/LightMapTest8bit.zip
 0,New_levels,http://geyser.oni2.net/edition/levels/arena/LightMapTest4bit.zip
@@ -2166,5 +1835,4 @@
 100,Tutorial/Scratch2,http://ssg.oni2.net/subfold/charas/l00_01.htm
 2,Paradox-01/brain_dump,https://www.spiegel.de/wirtschaft/soziales/corona-krise-erntehelfer-duerfen-nun-doch-nach-deutschland-kommen-a-4a7360a8-8151-40a1-93bc-6c960fb18cbb
-15,Oni_concept_art,http://dl.dropbox.com/u/139715/temp/do_we_have_this.png
 6,OC_logo_until_2006.jpg,http://web.archive.org/web/20020106131940/http://oni.bungie.org/index.html
 6,OC_logo_until_2006.jpg,http://web.archive.org/web/20060116024602/http://oni.bungie.org/
@@ -2181,46 +1849,16 @@
 0,History_of_the_Oni_community,http://mods.oni2.net
 0,History_of_the_Oni_community,http://carnage.bungie.org
-0,History_of_the_Oni_community,http://oni.bungie.org/community/forum/index.php
 0,History_of_the_Oni_community,http://carnage.bungie.org/onishotsforum/os.archive.pl
-0,History_of_the_Oni_community,http://carnage.bungie.org/oniresforum/onires.archive.pl
 0,History_of_the_Oni_community,http://ssg.oni2.net
-3,Neo,http://iritscen.oni2.net/temp/GearsTestMac.mp4
-110,TXMP,http://oni.bungie.org/community/forum/viewtopic.php?pid=29967#p29967
 0,Multiplayer,http://www.youtube.com/watch?v=GMeWr11QVjU
 6,Photo_of_E3_banner_of_Konoko.jpg,https://www.youtube.com/watch?v=TaRjTYbUFNY
 4,Community_portal,https://www.moddb.com/games/oni
 0,Restless_Souls/Technology,https://www.dropbox.com/s/jvupklyrjegswtb/DaodanBioComputer_OniCellCluster.jpg?dl=0
-110,SNDD,http://oni.bungie.org/community/forum/viewtopic.php?id=798
 0,Mac_betas,http://ssg.oni2.net/subfold/bluebox/images/
 110,SNDD,http://ssg.oni2.net/commands.htm#sound
-0,Pre-beta_features,http://www.glixel.com/interviews/oni-bungies-classic-inspired-by-ghost-in-the-shell-w474297
-110,SNDD,http://manual.audacityteam.org/man/faq_installation_and_plug_ins.html#How_do_I_download_and_install_the_FFmpeg_Import.2FExport_Library.3F
+110,SNDD,https://manual.audacityteam.org/man/faq_installation_and_plug_ins.html#How_do_I_download_and_install_the_FFmpeg_Import.2FExport_Library.3F
 0,Restless_Souls/Wishlist,https://www.youtube.com/results?search_query=ue4+background+music
-110,SNDD,http://audacity.sourceforge.net/download/beta_windows#recdown
 103,TRBS,http://www.youtube.com/watch?v=1UuesYUvyAk
-103,TRBS,http://dl.dropbox.com/u/139715/OniGalore/talk/20_body_parts.rar
-103,TRBS,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/onisplit_stuff/screen_shot00080.jpg
-103,TRBS,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/onisplit_stuff/screen_shot00085.jpg
-103,TRBS,http://dl.dropbox.com/u/139715/OniGalore/talk/hex.h-test.zip
-3,Hua220,http://www.westwoodventa.com/vivienne-westwood-espana.html
-3,Hua220,http://www.westwoodventa.com/autentica-vivienne-westwood.html
-3,Hua220,http://www.westwoodventa.com/vivienne-westwood-encantos.html
-3,Hua220,http://www.westwoodventa.com/vivienne-westwood-gemelos.html
-3,Hua220,http://www.westwoodventa.com/vivienne-westwood-anillos.html
-3,Hua220,http://www.chanel-onlinesale.com/cheap-replica-chanel.html
-3,Hua220,http://www.chanel-onlinesale.com/replica-chanel-online.html
-3,Hua220,http://www.chanel-onlinesale.com/buy-replica-chanel.html
-3,Hua220,http://www.chanel-onlinesale.com/replica-chanel-usa.html
-3,Hua220,http://www.chanel-onlinesale.com/bags/leather-goods/bags.html
-3,Neo,http://dl.dropbox.com/u/139715/temp/talk/combo_tests.zip
-3,Neo/Archive2,http://wiki.oni2.net/AE:Barabas#General_instructions
-0,Restless_Souls/Technology,http://dl.dropbox.com/u/139715/OniGalore/RS_T_Sources/1109.full.pdf
 0,Restless_Souls/Technology,http://idw-online.de/pages/de/attachmentdata8851.pdf
-0,Restless_Souls/Technology,http://dl.dropbox.com/u/139715/OniGalore/RS_T_Sources/attachmentdata8851.pdf
-12,Editing,http://meta.wikimedia.org
-12,Editing,http://www.mediawiki.org/wiki/Extension:Inputbox
-12,Editing,http://www.mediawiki.org/wiki/Extension:EasyTimeline/syntax
-12,Editing,http://www.mediawiki.org/wiki/Help:Magic_words
-12,Editing,http://www.mediawiki.org/wiki/Manual:Administrators#Protection
 8,Common.js/search.js,http://www.google.com/search'
 8,Common.js/search.js,http://search.yahoo.com/search'
@@ -2235,14 +1873,10 @@
 0,Multiplayer,http://carnage.bungie.org/oniforum/oni.forum.pl?read=3226
 0,Pre-beta_features,http://carnage.bungie.org/oniforum/oni.forum.pl?read=1612
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2087
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?pid=29089#p29089
 0,Oni,http://carnage.bungie.org/oniforum/oni.forum.pl?read=19661
-0,Pre-beta_features,http://www.youtube.com/watch?v=rW4w_7GRUPE#t=0m53s
-0,Pre-beta_features,http://www.youtube.com/watch?v=rW4w_7GRUPE#t=1m14s
 0,Pre-beta_features,http://carnage.bungie.org/oniforum/oni.forum.pl?read=3519
 0,Pre-beta_features,http://carnage.bungie.org/oniforum/oni.forum.pl?read=6559
 0,Pre-beta_features,http://www.youtube.com/watch?v=LUmmLTjSaqQ
 0,Pre-beta_features,http://www.youtube.com/watch?v=Te9yKA4UR18
-0,Kojiro,http://oni.bungie.org/community/forum/viewtopic.php?id=1282
-0,Casey,http://oni.bungie.org/community/forum/viewtopic.php?id=1262
 108,Slaves_of_War/Polylectiloquy,http://www.freshpatents.com/Multilayered-composite-for-organ-augmentation-and-repair-dt20080403ptan20080081362.php
 108,Slaves_of_War/Settings,http://www.francisconegroni.com/index/G00005m_dw9N9j9A
@@ -2257,11 +1891,9 @@
 8,Common,http://www.example.com/example.mov
 8,Common,http://www.example.com/example.mp3
-0,Oni_2_(Angel_Studios),https://www.deviantart.com/hinxlinx/gallery/?catpath=/&edit=0&q=oni
 108,Slaves_of_War/Polylectiloquy,http://tvtropes.org/pmwiki/pmwiki.php/Main/HandWave
 108,Slaves_of_War/Neo-Biology,http://scienceblogs.com/loom/2006/08/01/a_nation_of_cowards_blame_the.php
-108,Slaves_of_War/Neo-Biology,http://www.plosone.org/article/fetchFirstRepresentation.action?uri=info:doi/10.1371/journal.pone.0002276.s001
+108,Slaves_of_War/Neo-Biology,http://web.archive.org/web/20080928122544/http://www.plosone.org/article/fetchFirstRepresentation.action?uri=info:doi/10.1371/journal.pone.0002276.s001
 108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?v=dTljaIVseTc
 0,Making_a_mod_package,http://mods.oni2.net/mods/Package?order=field_package_number&sort=asc
-108,Slaves_of_War/Polylectiloquy,http://konokoffin.bungie.org/forums/index.php?threadid=9&page=16#post_3171
 0,Oni_(folder)/persist.dat,http://mods.oni2.net/node/155
 0,Restless_Souls/Technology,http://www.nature.com/nature/journal/v450/n7172/full/nature06350.html
@@ -2285,5 +1917,4 @@
 108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?v=2hGbYMqM3zM
 108,Slaves_of_War/Neo-Biology,http://web.williams.edu/Biology/explodingflower/movies.html
-108,Slaves_of_War/Neo-Biology,http://www.types-of-flowers.org/pictures/resurrection_plant.jpg
 108,Slaves_of_War/Neo-Biology,http://news.yahoo.com/carnivorous-plants-employ-bodyguard-ants-213207637.html
 108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?v=nl5gBJGnaXs
@@ -2295,13 +1926,13 @@
 108,Slaves_of_War/Neo-Biology,http://tolweb.org/tree?group=Tremoctopus&contgroup=Argonautoid_families
 0,Restless_Souls/Technology,http://imgs.xkcd.com/comics/nanobots.png
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=1506
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=1736
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=1957
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=1938
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2001
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2000
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2003
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=1515
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?pid=33838
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?pid=36760#p36760
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?pid=37252#p37252
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2003
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2000
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?pid=33838
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=1515
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2087
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=1506
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=1736
 0,Reviews,http://web.archive.org/web/20000824120335/http://www.gamepen.com/preview/PC/08_12_1999_750_1.asp
 0,Reviews,http://web.archive.org/web/20010418141758/http://www.ga-source.com/features/fpsru2.shtml
@@ -2324,5 +1955,4 @@
 0,CHAPTER_07_._A_FRIEND_IN_NEED,http://scifi.stackexchange.com/questions/18406/why-are-droids-tortured
 6,Sticker_2.png,https://www.youtube.com/watch?v=kQcNBgntSuA
-3,Geyser/IonEyes,https://sketchfab.com/models/17d6910f28ac44b3bef7a4c69d0f09d9
 6,Door_poster.jpg,http://jongod.oni2.net/UnarchivedFiles/ONI%20ARCHIVE%201/ONI%20Door%20Poster/
 6,T-shirt_1_(back).jpg,http://jongod.oni2.net/UnarchivedFiles/ONI%20ARCHIVE%205/ONI-Tshirt/
@@ -2340,5 +1970,4 @@
 0,Anniversary_Edition/Core,http://mods.oni2.net/node/234
 0,Anniversary_Edition/Core,http://mods.oni2.net/node/282
-0,Music/Ingame,http://oni.bungie.org/community/forum/viewtopic.php?id=2723
 0,Music/Ingame,http://geyser.oni2.net/oni1/music/Up_And_Away.mp3
 0,Music/CD,http://geyser.oni2.net/oni1/music/Hurry_(Remix).mp3
@@ -2350,16 +1979,7 @@
 1,Restless_Souls/Wishlist,http://www.adobe.com/products/fuse.html
 0,Anniversary_Edition/Core,http://mods.oni2.net/node/227
-1,Oni/Positioning,http://iritscen.oni2.net/images/tnl/Oni-BadShadows3.jpg
-1,Oni/Positioning,http://iritscen.oni2.net/images/tnl/Oni-Ch2LobbyLights1999.png
 6,Blam!.png,http://marathon.bungie.org/story/blam.html
 0,AI,https://www.youtube.com/watch?v=GC4HLDekxQI
 110,TRGE,http://mods.oni2.net/node/38
-110,BINA/OBJC/TRIG,http://paradox.oni2.net/OniGalore/BINACJBOTrigger.oni
-110,BINA/OBJC/TURR,http://paradox.oni2.net/OniGalore/BINACJBOTurret.oni
-110,BINA/OBJC/WEAP,http://paradox.oni2.net/OniGalore/BINACJBOWeapon.oni
-110,BINA/TMBD,http://paradox.oni2.net/OniGalore/BINADBMTTextureMaterials.oni
-110,BINA/TMBD,http://oni.bungie.org/community/forum/viewtopic.php?pid=27093#p27093
-110,BINA/OBJC/PATR,http://paradox.oni2.net/OniGalore/BINACJBOPatrol%20Path.oni
-0,SketchUp_tutorials_and_tips,http://cl.ly/3E0t0S2I1m0q1N3N3b1l/Invisible.png
 0,SketchUp_tutorials_and_tips,http://oni.bungie.org/forum/viewtopic.php?pid=35324
 0,SketchUp_tutorials_and_tips,http://cl.ly/3f3r2b2S0x0A370T3g06
@@ -2368,6 +1988,5 @@
 0,Reviews,http://web.archive.org/web/20080821123808/http://www.3dactionplanet.com/features/firstlooks/oni2/
 0,Oni,http://www.insidemacgames.com/features/view.php?ID=173
-0,Oni,http://www.develop-online.net/news/36183/Ex-Bungie-dev-Apple-got-close-to-buying-us
-0,Oni,http://www.develop-online.net/news/36173/Steve-Jobs-raged-at-Microsoft-over-game-studio-sale
+0,Oni,https://www.mcvuk.com/development-news/ex-bungie-dev-apple-got-close-to-buying-us/
 0,Oni,http://carnage.bungie.org/oniforum/oni.forum.pl?read=4699
 0,Oni,http://carnage.bungie.org/oniforum/oni.forum.pl?read=4084
@@ -2383,6 +2002,4 @@
 108,A_Storyline/PostSummary1,http://www.youtube.com/watch?v=2sOC8gi2Bik
 108,A_Storyline/PostSummary2,http://web.archive.org/web/20050807011518/http://en.wikibooks.org/wiki/Oni_d20
-108,A_Storyline/PostSummary1,http://www.youtube.com/watch?v=Zy59xjF21Rs#t=2m44s
-108,A_Storyline/PostSummary1,http://www.haibane.de/oni/
 1,New_levels,http://loser.oni2.net/Videos/Sorta_exploding_barrel.wmv
 108,Slaves_of_War/Polylectiloquy,http://www.geocities.ws/jeeptoys/eu6.jpg
@@ -2395,7 +2012,5 @@
 1,Restless_Souls/Wishlist,http://store.steampowered.com/app/257400/Fuse/
 111,TRAM,http://mods.oni2.net/system/files/dae_xml_oni_help.zip
-111,TRAM,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XML_modding/modding_via_Windows_address_bar.png
 0,Videos,https://www.youtube.com/watch?v=VOawPhCG2dU
-0,History_of_Oni_modding,http://oni.bungie.org/community/forum/viewtopic.php?id=2024
 0,Videos,https://www.youtube.com/watch?v=jbrPu15jjPs
 0,Pre-beta_content,https://www.youtube.com/watch?v=yFQNu-r4TOc
@@ -2423,15 +2038,12 @@
 0,Videos,https://www.youtube.com/watch?v=LUmmLTjSaqQ
 0,Restless_Souls/Technology,http://phys.org/news/2014-10-leak-sensitive-isolated-air-gap-mobile.html
-0,New_levels,http://www.photoshare.ru/user/karasevarchi/
 0,Anniversary_Edition/Installer,http://websvn.illy.bz/listing.php?repname=Oni2&path=/java/
 0,Oni_2_(Angel_Studios)/Running,https://buildbot.orphis.net/pcsx2/index.php
 0,Oni_2_(Angel_Studios)/Levels,https://www.youtube.com/watch?v=50X1n6npyG4
 0,Troubleshooting,https://www.pcgamingwiki.com/wiki/Oni#Widescreen_resolution
-0,Mouse_control_issues,https://pcgamingwiki.com/wiki/Oni#Choppy_mouse.2Fkeyboard_control
 0,Oni_2_(Angel_Studios)/Levels,https://www.youtube.com/watch?v=jH85-ErQg9A
 0,Oni_2_(Angel_Studios)/Levels,https://www.youtube.com/watch?v=ruVfwmGpzQ0
 0,Oni_2_(Angel_Studios)/Levels,https://www.youtube.com/watch?v=fveLtOY-lwY
 0,Oni_2_(Angel_Studios)/Levels,https://www.youtube.com/watch?v=SzN2-bUZUp8
-0,UnrealOni/ALS,https://forums.unrealengine.com/unreal-engine/marketplace/107921-advanced-locomotion-system-v3?p=1488046#post1488046
 0,UnrealOni/ALS,https://www.unrealengine.com/marketplace/en-US/product/advanced-locomotion-system-v1
 0,UnrealOni/ALS,https://youtu.be/AMG2V3FiQ4U
@@ -2439,16 +2051,10 @@
 NULL,NULL,https://www.youtube.com/watch?v=zvhmG0Bg0Cw&t=2m8s
 3,Geyser/IonEyes,https://www.creativebloq.com/how-to/create-a-video-game-character-in-zbrush
-3,Geyser/IonEyes,https://sketchfab.com/models/05c43504dfbe4a4ca438f91d44a24b4e
-3,Geyser/IonEyes,https://sketchfab.com/models/cf7e6db618d64b9cb573df4409327e63
-3,Geyser/IonEyes,https://sketchfab.com/models/daeecbd492f34f619944f5a3004cae11
-3,Geyser/IonEyes,https://sketchfab.com/models/f71780758a79469d9988793e3a4a0f74
-3,Geyser/IonEyes,https://sketchfab.com/models/0215653cb41547b68f71ea2e42320f91
+3,Geyser/IonEyes,https://sketchfab.com/3d-models/hazard-unit-free-model-daeecbd492f34f619944f5a3004cae11
+3,Geyser/IonEyes,https://sketchfab.com/3d-models/mh07-cf7e6db618d64b9cb573df4409327e63
 0,Modding_errors,http://script10k.oni2.net/wikifiles/main_not_working_without_commenting_commands.zip
-0,Modding_errors,http://script10k.oni2.net/wikifiles/main_not_working_without_commenting_commands(functions_split).zip
-0,Modding_errors,http://script10k.oni2.net/wikifiles/main_split_in_two_files.zip
-0,Fuse,https://share.allegorithmic.com/libraries?by_category_type_id=4
+0,Modding_errors,http://script10k.oni2.net/wikifiles/main_splitted_in_two_files.zip
 0,GUNNM,http://www.imdb.com/title/tt0437086/?ref_=nv_sr_1
 1,Restless_Souls/Wishlist,https://github.com/enziop/mixamo_converter
-0,Anniversary_Edition/To-do,http://mods.oni2.net/node/131
 104,Konoko,http://geyser.oni2.net/ONK/KONOKO/EvilKonoko/level13/dream_lab_logic.bsl
 1,Konoko,http://www.fotothing.com/KiwiGoneDutch/photo/b20b52609b6bd5e0a8428443a26db390/
@@ -2456,14 +2062,7 @@
 0,Videos,https://www.youtube.com/watch?v=dcuF1ABj9D0
 110,ONLV,http://www.youtube.com/watch?v=qgJUbPWX5yE
-111,ONLV,http://i305.photobucket.com/albums/nn207/unknownfuture/OCF_Images/sky4sectors_b.jpg
-111,ONLV,http://mods.oni2.net/node/202
-111,ONLV,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/3D_modding/sky_dome_512x512.jpg
 110,ONLV,http://www.tutorialsforblender3d.com/Textures/Textures_index.html
-110,ONLV,http://forums.epicgames.com/threads/603122-Remus-high-resolution-skydome-texture-pack
 110,ONLV,http://blenderartists.org/forum/showthread.php?224065-New-High-resolution-sky-pack-for-Blender
 110,ONLV,http://blenderartists.org/forum/showthread.php?24038-Free-high-res-skymaps-(Massive-07-update!)
-110,ONLV,http://www.cgtextures.com/
-111,ONLV,http://i305.photobucket.com/albums/nn207/unknownfuture/OCF_Images/sky4sectors_a.jpg
-111,ONLV,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XML_modding/ugly_skybox_lines.jpg
 0,Videos,https://www.youtube.com/watch?v=CKhHaG_t0eg
 0,Videos,https://www.youtube.com/watch?v=lzB0I-eeO9o
@@ -2474,5 +2073,4 @@
 0,Duality,https://www.youtube.com/watch?v=rkZ_76eFG2Q
 0,Restless_Souls/Technology,https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5110476/
-0,Restless_Souls/Technology,http://de.wikipedia.org/wiki/Synthetische_Biologie#Ein_neues_R.C3.BCckgrat
 0,Restless_Souls/Technology,http://phys.org/news/2012-07-scientists-fingerprint-nanoscale-viruses.html
 0,Restless_Souls/Technology,http://www.time.com/time/world/article/0,8599,2051177,00.html
@@ -2483,76 +2081,55 @@
 14,Gameplay_tools,http://mods.oni2.net/mods/Tool
 14,Modding_tools,http://mods.oni2.net/mods/Tool
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?pid=36760#p36760
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=1938
 111,ONLV,http://geyser.oni2.net/pics/screenshots/salto.jpg
 111,ONLV,http://geyser.oni2.net/pics/screenshots/hoops2.jpg
 0,Mod_Tool,http://www.si-community.com/community/viewtopic.php?f=35&t=797
-0,Mod_Tool,http://www.kxcad.net/Softimage_XSI/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm
+0,Mod_Tool,http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)
 0,Mod_Tool,http://download.autodesk.com/global/docs/softimage2013/en_us/sdkguide/index.html?url=si_om/XSIUIToolkit.html,topicNumber=si_om_XSIUIToolkit_html
-0,Mod_Tool,http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)
-0,Mod_Tool,http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm
+0,Mod_Tool,http://web.archive.org/web/20170617095054/http://softimage.wiki.softimage.com/xsidocs/EnvVars_EnvironmentVariableReference.htm
 0,Mod_Tool,http://download.autodesk.com/global/docs/softimage2013/en_us/sdkguide/index.html?url=si_cmds/SelectAllUsingFilter.html,topicNumber=si_cmds_SelectAllUsingFilter_html
-104,Modifying_textures,http://oni.bungie.org/community/forum/viewtopic.php?pid=19297#p19297
 0,Videos,http://www.youtube.com/watch?v=RjGgk6SqdeQ
 3,Geyser/DoxProjectImagoTalkBackup,http://loser.oni2.net/Junkyard/Pro_Gumbyho.rar
-0,Mod_Tool,http://oni.bungie.org/community/forum/viewtopic.php?id=1229
+0,Mod_Tool,https://devblogs.microsoft.com/scripting/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script/
 0,Mod_Tool,http://download.autodesk.com/global/docs/softimage2013/en_us/sdkguide/index.html?url=si_cmds/Rotate.html,topicNumber=si_cmds_Rotate_html
 0,Mod_Tool,http://download.autodesk.com/global/docs/softimage2013/en_us/sdkguide/index.html?url=si_cmds/Translate.html,topicNumber=si_cmds_Translate_html
 0,Mod_Tool,http://mods.oni2.net/node/210
-3,Script_10k,http://edt.oni2.net/temp/China_8_4.zip
 0,Mod_Tool,http://www.w3schools.com/vbscript/vbscript_ref_functions.asp
 0,Mod_Tool,http://download.autodesk.com/global/docs/softimage2013/en_us/sdkguide/index.html?url=si_om/XSIUIToolkit.MsgBox.html,topicNumber=si_om_XSIUIToolkit_MsgBox_html
-0,Mod_Tool,http://softimage.wiki.softimage.com/xsidocs/config_envirovars.htm
-0,Mod_Tool,http://softimage.wiki.softimage.com/xsidocs/EnvVars_SettingandUsingEnvironmentVariables.htm
-0,Mod_Tool,http://softimage.wiki.softimage.com/xsidocs/EnvVars_EnvironmentVariableReference.htm
+0,Mod_Tool,http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm
+0,Mod_Tool,https://web.archive.org/web/20150504221146/http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/
 0,Casey,http://geyser.oni2.net/pics/screenshots/KONOKOandRED.jpg
 3,Geyser/DoxProjectImagoTalkBackup,http://dl.getdropbox.com/u/60508/FloatingDots.BINA
 0,Mod_Tool,http://ss64.com/vb/
 0,Mod_Tool,http://www.youtube.com/watch?v=Sd09YP_Bl9M&t=1m15s
-0,Mod_Tool,http://softimage.wiki.softimage.com/sdkdocs/cus_addons_WalkthroughBuildinganAddon.htm
+0,Mod_Tool,http://web.archive.org/web/20170309190841/http://softimage.wiki.softimage.com/xsidocs/config_envirovars.htm
+0,Mod_Tool,http://web.archive.org/web/20180416194626/http://softimage.wiki.softimage.com/xsidocs/EnvVars_SettingandUsingEnvironmentVariables.htm
 0,Anniversary_Edition/Core,http://mods.oni2.net/node/265
 110,OBAN,http://mods.oni2.net/node/383
-0,Mod_Tool,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/3D_modding/UserDataBlob.png
-0,Mod_Tool,https://dl.dropbox.com/u/139715/OniGalore/ModToolScript/Oni_env_vars.txt
 0,Mod_Tool,http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/filesfolders/files/
-0,Mod_Tool,http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/
 0,Mod_Tool,http://cryrid.com/images/temp/XSI/merge_materials.jpg
 0,Mod_Tool,http://www.xsidatabase.com/content/drag_and_drop_obj_files_jscript
-0,Mod_Tool,http://blogs.technet.com/b/heyscriptingguy/archive/2006/12/08/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script.aspx
+0,Mod_Tool,http://dot3d.blogspot.com/2009/10/softimage-ice-tree-building-step-by.html
 0,Mod_Tool,http://www.si-community.com/community/viewtopic.php?f=35&t=796
 0,Mod_Tool,http://www.moddb.com/downloads/autodesk-softimage-mod-tool-75
 0,Mod_Tool,http://support.microsoft.com/kb/152457
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2357
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=1957
 110,ONLV,http://mods.oni2.net/node/38
 110,ONLV,http://mods.oni2.net/node/299
 0,Mod_Tool,http://www.si-community.com/community/viewtopic.php?f=41&t=1707
-1,Oni/Positioning,http://www.gamefaqs.com/pc/62551-messiah/critic
-110,WMDD,http://wiki.oni2.net/File:Changed_Load_Menu.png
-0,Restless_Souls/Wishlist,https://youtu.be/RZSeUP-cCVA
-0,Validate_External_Links,http://iritscen.oni2.net/val/exceptions.txt
 0,Validate_External_Links,http://websvn.chrilly.net/listing.php?repname=Oni2&path=/Validate+External+Links/
 0,Modding_errors,http://edt.oni2.net/images/schematic.jpg
-2,Samer,http://oni.bungie.org/community/forum/viewtopic.php?id=1807
-0,Shinatama_Bot,http://oni.bungie.org/community/forum/viewtopic.php?id=1240
-0,Casual_Tankers,http://www.youtube.com/watch?feature=player_detailpage&v=YLZ2hJZvrmo#t=82s
-0,Casual_Tankers,http://oni.bungie.org/community/forum/viewtopic.php?id=2416
+0,Casual_Tankers,http://oni.bungie.org/forum/viewtopic.php?id=2416
 2,Samer,http://m.facebook.com/groups/186656799756?refid=27
 110,ONLV,http://edt.oni2.net/images/Hideout_BNV.jpg
-111,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test.zip
 2,Samer,http://www.youtube.com/channel/UCtTcOh2t7wRZ5rXzMmWt6xA
 0,Mod_Tool/OniTools_addon,http://mods.oni2.net/node/356
 4,Community_portal,https://www.moddb.com/company/anniversary-edition-team
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2640
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2024
 0,Zukai,http://bugs.oni2.net/query?component=Zukai&order=priority&report=11
 0,Bertram_Navarre,http://www.nature.com/nm/journal/v5/n12/abs/nm1299_1410.html
 0,Bertram_Navarre,http://www.ncbi.nlm.nih.gov/pubmed/22223498
 0,Bertram_Navarre,http://www.sciencedaily.com/releases/2013/01/130110121020.htm
-2,Samer,http://oni.bungie.org/community/forum/viewtopic.php?id=2423
-0,Regenerating_Fury,http://oni.bungie.org/community/forum/viewtopic.php?id=1317
-0,Regenerating_Tanker,http://oni.bungie.org/community/forum/viewtopic.php?id=2046
-0,Sarai,http://oni.bungie.org/community/forum/viewtopic.php?pid=46869#p46869
-0,Sarai,http://oni.bungie.org/community/forum/viewtopic.php?pid=16272#p16272
-0,BGI_characters,http://oni.bungie.org/community/forum/viewtopic.php?id=2445
-0,BGI_characters,http://oni.bungie.org/community/forum/viewtopic.php?id=1329
-0,Mod_Tool,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XSI_modding/PPG_zpsda38090b.png
+0,Sarai,http://oni.bungie.org/forum/viewtopic.php?pid=16272#p16272
 0,Restless_Souls/Wishlist,https://answers.unrealengine.com/questions/37357/how-do-i-create-a-exe-of-my-game.html
 0,Videos,https://www.youtube.com/watch?v=DyOIcie7VGk
@@ -2565,6 +2142,4 @@
 0,Videos,http://www.youtube.com/watch?v=du8JepLM-lI
 0,Videos,http://www.youtube.com/watch?v=yD6Ai8uufJI
-3,Paradox-01/Archive1,http://www.mwusers.com/forums/showthread.php?18647-onclick-in-wikitext&s=4573f23d960e24c3c6523e4a072b4ba9&p=61594&viewfull=1#post61594
-3,Paradox-01/Archive1,https://dl.dropbox.com/u/139715/temp/ssg_overviews_wikified.txt
 1,Restless_Souls/Wishlist,https://www.mixamo.com
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/InventoryTest/
@@ -2595,11 +2170,8 @@
 0,Videos,http://www.youtube.com/watch?v=QaBDJk9KrNs
 0,Videos,http://www.youtube.com/watch?v=XoE3cBDOAhQ
-110,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/Level_19_reimport.zip
 0,Videos,http://www.youtube.com/watch?v=0onq6m7oius
 0,Videos,http://www.youtube.com/watch?v=Wv1IG6QXTMs
 0,Mod_Tool/Rigging,https://www.dropbox.com/s/ie8my677x7iv2a2/auto_rigging.txt?dl=0
-0,Mod_Tool/Rigging,http://paradox.oni2.net/OniGalore/automatic_rigging_test_files.zip
 0,Music/CD,http://geyser.oni2.net/oni1/music/Up_And_Away.mp3
-0,Music/CD,http://oni.bungie.org/community/forum/viewtopic.php?id=2723
 1,History_of_Oni_modding,http://web.archive.org/web/20070401000000*/http://ssg.oni2.net
 0,Videos,http://www.youtube.com/watch?v=hg_7FMlyo9M
@@ -2615,5 +2187,4 @@
 0,Videos,http://www.youtube.com/watch?v=vrvQjvV0OUA
 0,Videos,http://www.youtube.com/watch?v=sSOLSh_aCC8
-0,Mod_Tool,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XSI_modding/SelectNeighborObj_obj_5.png
 0,Videos,https://www.youtube.com/watch?v=GMeWr11QVjU
 0,Videos,https://www.youtube.com/watch?v=aEuAu7jLQQI
@@ -2622,24 +2193,14 @@
 0,Videos,https://www.youtube.com/watch?v=iiBE8N1auuo
 0,Videos,http://www.youtube.com/watch?v=Ci44KaCq7UY
-0,Mac_mods,http://edt.oni2.net/mods/lab_main.bsl
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/M03_A01_Blast_Chambers/
 0,Mac_mods,http://edt.oni2.net/images/oup.jpg
-3,Paradox-01/Archive1,https://dl.dropbox.com/u/139715/temp/explanation_fixed_to_screen.htm
 0,Videos,http://www.youtube.com/playlist?list=PLFasmrd0ZfRm80eHfK3g_eDAXJWb0PM5I
-0,Mac_mods,http://edt.oni2.net/mods/level0_Final.sep.zip
-110,BINA/OBJC/CMBT,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XSI_modding/ai2_showcombatranges.png
-111,ONLV,https://dl.dropboxusercontent.com/u/139715/temp/snipers.dae
-0,Restless_Souls/Wishlist,https://docs.unrealengine.com/latest/INT/Engine/Audio/index.html
+0,Restless_Souls/Wishlist,https://docs.unrealengine.com/en-US/Engine/Audio/index.html
 0,Videos,http://www.youtube.com/watch?v=oOBl_6nDVG4
 0,Restless_Souls/Technology,http://phys.org/news/2015-02-malware-infecting-hard-disk-firmware.html
 0,Videos,http://www.youtube.com/watch?v=Od1ReWIxduo
 0,Restless_Souls/Technology,http://phys.org/news/2015-04-human-technical-ingenuity-required-defeat.html
-0,Anniversary_Edition/To-do,http://oni.bungie.org/community/forum/viewtopic.php?pid=36174#p36174
-0,Anniversary_Edition/To-do,http://oni.bungie.org/community/forum/viewtopic.php?pid=27161#p27161
-0,Anniversary_Edition/To-do,http://oni.bungie.org/community/forum/viewtopic.php?pid=43490#p43490
 1,Anniversary_Edition/To-do,https://tmp.oni2.net/
-1,Mod_Tool/OniTools_addon,http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/Mod_Tool/camera_OBAN_examination_zpsaf16d39e.png
 110,ONLV,http://youtu.be/Em6wa5JTQNM
-111,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/CRSA_wip.txt
 14,Art_by_Okita,http://carnage.bungie.org/oniforum/oni.forum.pl?read=15753
 0,Videos,http://www.youtube.com/watch?v=CDuQHITARk4
@@ -2650,32 +2211,21 @@
 10,OMD,http://mods.oni2.net
 0,Making_a_mod_package,http://mods.oni2.net
-111,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/global.png
-111,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/OniMatrix_src.zip
 110,ONLV,http://www.youtube.com/watch?v=YICB7qugrtc
-111,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_manually_imported.png
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?pid=29089#p29089
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2001
 0,Restless_Souls/Technology,http://phys.org/news/2012-10-scientists-defects-materials.html
 0,Anniversary_Edition,http://www.mono-project.com/download/
 0,Anniversary_Edition,http://mods.oni2.net
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2302
 1,OniSplit/Archive1,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/OniSplit_v0.9.4.zip
-1,OniSplit/Archive1,http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=6839916
 1,OniSplit/Archive1,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/Images/mcb.jpg
 1,OniSplit/Archive1,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/TRBSMasterChief.oni
 1,OniSplit/Archive1,http://cid-639aa31296681bfe.skydrive.live.com/self.aspx/Oni/MasterChief.dae
 1,OniSplit/Archive1,http://edt.oni2.net/OniSplit/MasterChief.blend.zip
-1,OniSplit/Archive1,http://edt.oni2.net/3D/MCfiles.zip
-1,OniSplit/Archive1,http://edt.oni2.net/3D/MC_crash.zip
 1,OniSplit/Archive1,http://edt.oni2.net/AE/w16crb.zip
 0,Vago_(tool),http://mods.oni2.net/node/247
 0,Anniversary_Edition/Installer/Localization,http://websvn.chrilly.net/listing.php?repname=Oni2&path=%2Fjava%2Finstaller2%2Fsrc%2Fnet%2Foni2%2Faeinstaller%2Flocalization%2F&
-0,History_of_Oni_modding,http://oni.bungie.org/community/forum/viewtopic.php?id=2698
 0,History_of_Oni_modding,http://oni.moltenstudios.com/tool/index.php
 110,ONLV,http://mods.oni2.net/node/256
 109,Mind_Seal,https://phys.org/news/2017-05-electronic-tattoos-distinctive-body-mobile.html
-0,Anniversary_Edition/Installer,http://oni.bungie.org/community/forum/viewtopic.php?id=2525
 0,Anniversary_Edition/Installer,http://mods.oni2.net
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2242
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2235
 0,Videos,https://www.youtube.com/watch?v=KYgNmpLED5M
 0,Videos,https://www.youtube.com/watch?v=aIbQ1B4pSfM
@@ -2684,21 +2234,14 @@
 0,Videos,http://www.youtube.com/watch?v=NSfeb4xv7p8
 0,Videos,http://www.youtube.com/watch?v=MArbspInwiM
-0,Mod_Tool/Rigging,http://paradox.oni2.net/OniGalore/experimental_auto_rigging.png
 0,Videos,http://www.youtube.com/watch?v=oHCnoThNL2c
 0,Videos,http://www.youtube.com/watch?v=fec1-bgfCxE
 0,Videos,http://www.youtube.com/watch?v=bib24bRXuhQ
 0,Videos,https://www.youtube.com/watch?v=uptSCVabiBY
-0,BGI_characters,http://oni.bungie.org/community/forum/viewtopic.php?pid=46869#p46869
-0,BGI_characters,http://oni.bungie.org/community/forum/viewtopic.php?id=2490
+0,BGI_characters,http://oni.bungie.org/forum/viewtopic.php?pid=19624#p19624
 111,ONLV,http://youtu.be/vfKPzP5hiCo
-111,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/BNV_test_2.zip
 111,ONLV,http://www.youtube.com/watch?v=Yj3ptZnZtx0
-0,Restless_Souls/Wishlist,https://wiki.unrealengine.com/Unreal_Motion_Graphics_(UMG)_UI_-_Inventory_Tutorial_Playlist
-0,Restless_Souls/Wishlist,https://docs.unrealengine.com/latest/INT/Videos/PLZlv_N0_O1gZalvQWYs8sc7RP_-8eSr3i/
-0,Mod_Tool,http://softimage.wiki.softimage.com/xsidocs/audio_LoadingAudioFilesintheAnimationMixer.htm#Rdy36984
 0,Mod_Tool,http://www.youtube.com/watch?v=-xC31Q7zpM0
 0,Mod_Tool,http://www.youtube.com/watch?v=njLrAIpDOFU
 0,Mod_Tool,http://www.youtube.com/watch?v=PRDZaEo5CGo
-0,Mod_Tool,http://softimage.wiki.softimage.com/xsidocs/nla_mixer.htm#Rdw10200
 0,Videos,http://www.youtube.com/watch?v=Yj3ptZnZtx0
 0,Videos,https://www.youtube.com/watch?v=zacLylPPTFk
@@ -2709,5 +2252,4 @@
 0,Marathon,http://pfhorums.com/
 0,Restless_Souls/Technology,http://phys.org/news/2013-09-hardware-trojans-undetectable.html
-0,Mod_Tool,https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/Model.vbs
 110,OBAN,http://mods.oni2.net/node/381
 0,XmlTools,http://mods.oni2.net/node/304
@@ -2716,39 +2258,19 @@
 0,Anniversary_Edition/Core,http://mods.oni2.net/node/304
 0,Anniversary_Edition/Core,http://mods.oni2.net/node/269
-110,ONLV,http://youtu.be/zWT0-LsjjBU
-110,ONLV,http://softimage.wiki.softimage.com/xsidocs/tex_vcolor_CreatingColoratVerticesCAVMaps.htm
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2656
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2271
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2024
-111,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/local_correct_pelvis.png
-110,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/extract_ENVP.vbs
-110,ONLV,http://youtu.be/8HbPeNYqdY0
+110,SNDD,http://mods.oni2.net/node/384
 110,ONLV,http://www.game-artist.net/forums/support-tech-discussion/5622-burning-shadows-onto-texture-xsi.html
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2657
-0,Mod_Tool/Oni_level_rebuilder,https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/euler_to_matrix_to_euler.txt
-0,Mod_Tool/Oni_level_rebuilder,http://oni.bungie.org/community/forum/viewtopic.php?pid=47612#p47612
 0,Mod_Tool,http://mods.oni2.net/node/38
 0,Mod_Tool,http://mods.oni2.net/node/38/index.html
 0,Mod_Tool/OniTools_addon,http://youtu.be/2_3xo8-31-U
-0,Birgit_Q,https://paperpedia.fandom.com/it/wiki/PK2
 0,Mod_Tool,http://download.autodesk.com/global/docs/softimage2013/en_us/userguide/index.html?url=files/ICE_trees_DebuggingICETrees.htm,topicNumber=d30e269791
 0,Mod_Tool,http://www.youtube.com/watch?v=ioMQ2rBVO4g
-0,Mod_Tool,http://dot3d.blogspot.de/2009/10/softimage-ice-tree-building-step-by.html
-0,Mod_Tool,https://support.solidangle.com/display/SItoAUG/ICE
-110,ONLV,https://dl.dropboxusercontent.com/u/139715/OniGalore/CRSA_to_Mod_Tool_wip.png
-110,ONLV,https://dl.dropboxusercontent.com/u/139715/temp/CRSA_to_Mod_Tool.txt
-0,XmlTools,http://www.w3.org/TR/xpath/
+110,ONLV,http://web.archive.org/web/20170529111607/http://softimage.wiki.softimage.com/xsidocs/tex_vcolor_CreatingColoratVerticesCAVMaps.htm
 0,XmlTools,http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_04.html
 0,Videos,http://www.youtube.com/playlist?list=PLZQupCr62BGlWdKfx6QV-jArcjDgU64Fs
 0,Videos,https://www.youtube.com/watch?v=OBWUfHlND9Y
 0,Videos,https://www.youtube.com/watch?v=LNUcS_mtHpA
-110,ONLV,http://oni.bungie.org/community/forum/viewtopic.php?id=2698
-110,ONLV,http://www.redsorceress.com/skybox.html
 0,XmlTools,http://zvon.org/comp/r/tut-XPath_1.html#intro
 0,XmlTools,http://www.w3schools.com/xml/xml_whatis.asp
-0,XmlTools/Full_documentation,http://www.petetracey.com/jsxml/index.html
-0,XmlTools/Full_documentation,http://www.petetracey.com/jsxml/documentation.html
 0,XmlTools/Full_documentation,http://script10k.oni2.net/documentation/xmltools/jsxml-documentation.htm
-110,DOOR,https://dl.dropboxusercontent.com/u/139715/temp/DoorClassMaker_wip.txt
 0,Anniversary_Edition/Core,http://mods.oni2.net/node/232
 0,Anniversary_Edition/Core,http://mods.oni2.net/node/233
@@ -2762,11 +2284,8 @@
 0,Oni,http://www.youtube.com/watch?v=YLZ2hJZvrmo
 0,Videos,http://www.youtube.com/playlist?list=PLFa3CejQbQ2IAihiuD58DLPUraoSccuOt
-0,Restless_Souls/Technology,http://de.wikipedia.org/wiki/Streptomyces
 0,Restless_Souls/Technology,http://www.sciencedaily.com/releases/2014/04/140414154450.htm
 0,Restless_Souls/Technology,http://phys.org/news/2014-11-natural-gut-viruses-bacterial-cousins.html
-0,Reviews,http://www.allgame.com/game.php?id=24182&tab=review
 0,Reviews,http://web.archive.org/web/20071001025651/http://www.cincinnati.com/freetime/games/reviews/030701_oni.html
 0,Reviews,http://web.archive.org/web/20010421185552/http://www.zdnet.com/egm/stories/main/0,11589,2685291,00.html
-0,Reviews,http://www.eurogamer.net/articles/r_oni
 0,Reviews,http://www.gamerevolution.com/review/oni
 0,Reviews,http://web.archive.org/web/20010331165256/http://www.game-revolution.com/games/ps2/action/oni.htm
@@ -2781,12 +2300,9 @@
 0,Reviews,http://web.archive.org/web/20010418052524/http://www.zdnet.com/opm/stories/main/0,11891,2687487,00.html
 0,Reviews,http://web.archive.org/web/20011018164207/http://www.playboy.com/sports/games/oni/index.html
-14,Art_by_owldreamer,http://www.haibane.de/oni
 0,Mod_Tool,http://www.autodesk.com/education/free-software/softimage
 0,Mod_Tool,http://www.autodesk.com/products/softimage/overview
-0,Mod_Tool/OniTools_addon,http://oni.bungie.org/community/forum/viewtopic.php?id=2657
-0,Mod_Tool/OniTools_addon,http://oni.bungie.org/community/forum/viewtopic.php?pid=48310#p48310
+0,Mod_Tool/OniTools_addon,http://oni.bungie.org/forum/viewtopic.php?pid=48310#p48310
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/all_chars/
 0,Oni_2_(Angel_Studios)/Levels,http://iritscen.oni2.net/oni2as/FXCathedral_Scenario_1/
-0,Restless_Souls/Technology,http://phys.org/news/2014-08-tiny-chip-mimics-brain-supercomputer.html#ajTabs
 0,Mod_Tool/Scripting,http://download.autodesk.com/global/docs/softimage2014/en_us/sdkguide/si_cmds/SetGlobal.html
 0,Restless_Souls/Technology,http://phys.org/news/2014-08-optalysys-prototype-optical-processor.html
@@ -2802,34 +2318,26 @@
 0,Zukai,http://www.noip.com/
 0,Zukai,http://oni.bungie.org/forum/viewtopic.php?id=2841
-0,Zukai,http://portforward.com/english/routers/port_forwarding/routerindex.htm
 0,Multiplayer,http://carnage.bungie.org/oniforum/oni.forum.pl?read=10354
 0,Capturing_game_footage,http://www.telestream.net/screenflow/overview.htm
-0,Capturing_game_footage,https://github.com/jp9000/obs-studio/releases
 0,Capturing_game_footage,http://www.rogueamoeba.com/audiohijack/
 0,Capturing_game_footage,https://github.com/mattingalls/Soundflower
 0,Mod_Tool/Scripting,http://www.w3schools.com/vbscript/vbscript_ref_functions.asp
-0,Mod_Tool/Scripting,http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)
-0,Mod_Tool/Scripting,http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm
+0,Mod_Tool/Scripting,https://web.archive.org/web/20150504221146/http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/
+0,Mod_Tool/Scripting,http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm
 0,Mod_Tool/Scripting,http://ss64.com/vb/
 0,Mod_Tool/Scripting,http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/filesfolders/files/
-0,Mod_Tool/Scripting,http://activexperts.com/activmonitor/windowsmanagement/adminscripts/other/textfiles/
-0,Mod_Tool/Scripting,http://www.kxcad.net/Softimage_XSI/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm
 0,Mod_Tool/Scripting,http://download.autodesk.com/global/docs/softimage2013/en_us/sdkguide/index.html?url=si_om/XSIUIToolkit.html,topicNumber=si_om_XSIUIToolkit_html
-0,Mod_Tool/Scripting,http://blogs.technet.com/b/heyscriptingguy/archive/2006/12/08/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script.aspx
+0,Mod_Tool/Scripting,http://web.archive.org/web/20080905102848/http://www.kxcad.net/softimage_xsi/Softimage_XSI_Documentation/script_basics_IncludingExternalScripts.htm
 0,Restless_Souls/Technology,http://phys.org/news/2015-05-cicadas-military-swarm-mini-drones.html
 0,Rights,https://www.bungie.net/
-1,Windows_Shell_Extension,https://docs.microsoft.com/en-us/windows/desktop/sysinfo/registry-value-types
 0,Rights,http://www.feralinteractive.com/en/
 0,Restless_Souls/Technology,https://www.sciencedaily.com/releases/2005/03/050325234239.htm
 0,Capturing_game_footage,https://support.shinywhitebox.com/hc/en-us/articles/204161459-Installing-iShowU-Audio-Capture
-1,Mod_Tool/OniTools_addon,https://dl.dropboxusercontent.com/u/139715/OniGalore/VanillaTURRs.jpg
 0,Oni,http://www.chicagoreader.com/chicago/monsters-in-a-box/Content?oid=901762
 0,Capturing_game_footage,https://obsproject.com
 0,Capturing_game_footage,https://www.youtube.com/watch?v=m2n5nfE26YA
 0,Capturing_game_footage,https://www.youtube.com/watch?v=y-L5zhhVuSc
-1,Mod_Tool/OniTools_addon,https://dl.dropboxusercontent.com/u/139715/OniGalore/ModToolScript/LevelBuilder/characters.zip
 0,Duality,https://www.youtube.com/watch?v=DEu97jLFs6Q
 111,BINA/PAR3,http://oni.bungie.org/forum/viewtopic.php?id=2991
-111,BINA/PAR3,https://dl.dropboxusercontent.com/u/139715/OniGalore/BINA3RAP_Talk/BINA3RAPh2h_powerup_e01a.xml
 1,Mod_Tool/OniTools_addon,https://bytes.com/topic/visual-basic-net/answers/630751-how-do-i-pass-command-line-another-instance-my-application-already-running
 1,Restless_Souls,https://www.youtube.com/channel/UCPc4C2RquK_0xZEvtiDjA9A
@@ -2842,5 +2350,4 @@
 1,Restless_Souls,http://www.songlyrics.com/zack-hemsey/dont-get-in-my-way-lyrics/
 1,Restless_Souls,http://www.songlyrics.com/zack-hemsey/vengeance-lyrics/
-1,Mod_Tool/OniTools_addon,https://1drv.ms/u/s!AjLkf0bK7POzgpI-McvVNAPeU5Cz2w
 0,Restless_Souls/Technology,http://phys.org/news/2012-03-laser-lightning-rod-electricity.html
 0,Restless_Souls/Technology,https://www.google.de/search?q=graphene+doping
@@ -2851,15 +2358,9 @@
 110,ONLV,http://oni.bungie.org/forum/viewtopic.php?pid=50565#p50565
 0,Restless_Souls/Technology,https://www.youtube.com/watch?v=3pv0vT82Cys
-0,Restless_Souls/Technology,https://www.nature.com/articles/s41586-019-1119-1
 110,TRAM,http://www.paradox.oni2.net/programs/Simple_OniSplit_GUI.zip
 110,TRAM,http://www.paradox.oni2.net/images/simpleOniSplitGui.png
-3,Paradox-01/Archive1,https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/OniSplit_source_code_v0.9.99.0.zip
 3,Paradox-01/Archive1,https://www.telerik.com/download-trial-file/v2/justdecompile
-3,Paradox-01/Archive1,https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/JustDecompile.png
-3,Paradox-01/Archive1,https://dl.dropboxusercontent.com/u/139715/OniGalore/OniSplit/VisualStudioCommunity.png
 110,TRAM,http://oni.bungie.org/forum/viewtopic.php?id=1433
-110,TXMP,https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP_animated.png
 110,TXMP,http://paradox.oni2.net/programs/Simple_OniSplit_GUI.zip
-110,TXMP,https://dl.dropboxusercontent.com/u/139715/OniGalore/Simple_OniSplit_GUI_TXMP.png
 0,Creating_image_animations,https://www.youtube.com/watch?v=AMQ9dRLg4yY
 0,Restless_Souls/Technology,http://phys.org/news/2016-08-single-celled-fungi-alien-like-fusing-cells.html
@@ -2867,13 +2368,11 @@
 0,Restless_Souls/Technology,http://phys.org/news/2016-08-dna-naturally-fluoresces.html
 1,Restless_Souls/Summary,http://phys.org/news/2016-09-microwaves-high-quality-graphene.html
-111,TXMB,https://dl.dropboxusercontent.com/u/143726/temp/IntroImageLevel2Problem.zip
+111,TSFF,http://web.archive.org/web/20180117132342/http://www.devasp.net/net/articles/display/139.html
 1,Restless_Souls,https://www.youtube.com/watch?v=WoJfpEyoMSQ
 1,Restless_Souls,http://genius.com/10788822
 0,Restless_Souls/Technology,http://phys.org/news/2016-11-quantum-physics-factor.html
-111,TSFF,http://www.devasp.net/net/articles/display/139.html
 111,TSFF,http://www.acutesystems.com/fonts.htm
 0,Oni_2_(Angel_Studios),http://www.lostlevels.org/wordpress/2007/11/07/such-things-that-never-was/
 0,Oni_2_(Angel_Studios),https://www.youtube.com/watch?v=ZItobLIJJMY
-3,Script_10k,http://carnage.bungie.org/oniresforum/onires.archive.pl?read=107
 109,Outside_the_box,http://phys.org/news/2016-11-scientists-similarity-human-cells-neutron.html
 109,Outside_the_box,https://upload.wikimedia.org/wikipedia/commons/6/6d/Large-scale_structure_of_light_distribution_in_the_universe.jpg
@@ -2884,28 +2383,15 @@
 0,Jello-cam,http://carnage.bungie.org/oniforum/oni.forum.pl?read=19648
 0,Jello-cam,https://youtu.be/4v_elVuwx0c?t=11m38s
-0,Ghost_in_the_Shell,http://ghostintheshell.wikia.com/wiki/Operator
 0,Ghost_in_the_Shell,http://carnage.bungie.org/oniforum/oni.forum.pl?read=19695
-2,Iritscen/WikiFuture,https://www.mediawiki.org/wiki/Release_notes
 10,Noredirect,http://wiki.oni2.net/w/index.php?title=Ai2_allpassive&redirect=no
 1,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=N1XDatYlxhc
 2,Iritscen/vector.js,http://wiki.oni2.net/Oni2:Slaves_of_War
-2,Samer,http://wiki.oni2.net/New_BGI_Characters#BGI_Hammer
-2,Samer,http://wiki.oni2.net/New_BGI_Characters#BGI_Agents
-2,Samer,http://wiki.oni2.net/New_BGI_Characters#BGI_NinjaBot
-2,Samer,http://wiki.oni2.net/New_BGI_Characters#BGI_Heavy_Bot
-2,Samer,http://wiki.oni2.net/AE:BGI#Candidate
-2,Samer,http://wiki.oni2.net/Joint_Story
-0,BGI_characters,http://wiki.oni2.net/AE:BGI#Executives
-0,BGI_characters,http://wiki.oni2.net/AE:BGI#Candidate
+14,Modding_tools,http://web.archive.org/web/20071116050049/http://www23.brinkster.com/onichars/Downloads/files/
 8,Wantedpages-summary,http://wiki.oni2.net/w/index.php?title=MediaWiki:Wantedpages-summary&action=edit
 8,Uncategorizedpages-summary,http://wiki.oni2.net/w/index.php?title=MediaWiki:Uncategorizedpages-summary&action=edit
 0,Marathon,https://www.lhowon.org/
 0,Marathon,https://alephone.lhowon.org/
-1,Mod_Tool,http://wiki.oni2.net/Mod_Tool#Rendering
 100,Grouping,http://wiki.oni2.net/w/index.php?title=Special:PrefixIndex&prefix=Grouping&namespace=100
 100,Grouping/doc,http://wiki.oni2.net/w/index.php?title=Special:PrefixIndex&prefix=Grouping&namespace=100
-1,Anime_and_manga,http://wiki.oni2.net/File:Intro_frame_0562.png
-1,Anime_and_manga,http://wiki.oni2.net/File:Intro_frame_0553.png
-111,TXMB,http://wiki.oni2.net/XML:TXMP
 12,Editing,http://wiki.oni2.net/w/api.php?action=query&meta=siteinfo&siprop=interwikimap
 2,Iritscen/WikiFuture,https://phabricator.wikimedia.org/source/mediawiki/branches/master/
@@ -2914,10 +2400,8 @@
 4,Policy,https://wiki.oni2.net/w/index.php?title=Dat&redirect=no
 0,Oni_matrix,http://carnage.bungie.org/oniforum/oni.forum.pl?read=1199
-109,The_Hasegawa_Journal,http://wiki.oni2.net/Quotes/Weapons#ph_stream
 8,Common,http://wiki.oni2.net/Main_Page
 2,Paradox-01/brain_dump,https://www.bbc.com/news/explainers-51632801
 0,Restless_Souls/Technology,https://phys.org/news/2017-08-synthetic-genomics-unveils-digital-to-biological-digital.html
 0,Restless_Souls/Summary,https://phys.org/news/2017-08-quantum.html
-0,Restless_Souls/Wishlist,http://usa.autodesk.com/adsk/servlet/pc/item?siteID=123112&id=22694909
 0,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=N1h5mMviSKs
 0,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=efKH9ugTzLM
@@ -2925,8 +2409,6 @@
 0,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=nh30nt0wSjs
 0,UnrealOni/Documentation,https://www.youtube.com/watch?v=msy7bRDpKF4
-0,Blender,https://blenderartists.org/forum/showthread.php?208794-Can-we-toggle-between-face-edge-vert-select-modes-with-hotkeys&s=b38da8b5a0b20011e8850462988d8e3c&p=1990947&viewfull=1#post1990947
 3,EdT,https://www.youtube.com/watch?v=PPbSGUPj72w
 3,EdT,https://www.youtube.com/watch?v=kSDWfx6ib9k
-0,Blender,https://docs.blender.org/manual/en/dev/modeling/meshes/editing/faces.html
 1,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=FDbpHamn2eY
 1,Restless_Souls/Wishlist,https://www.youtube.com/watch?v=JkcJ5bjGPsg
@@ -3042,6 +2524,4 @@
 2,Geyser/CharacterTutorialMixamoToUE4,http://geyser.oni2.net/UE4/LaraTutorial/LaraStep7export.fbx
 2,Geyser/CharacterTutorialMixamoToUE4,http://geyser.oni2.net/UE4/LaraTutorial/LaraStep7export.zip
-6,KatiaVersusKonokoFront.png,https://www.unrealengine.com/marketplace/female-movement-animset-pro
-2,Geyser/CharacterTutorialMakeHumanToUE4,https://www.unrealengine.com/marketplace/female-movement-animset-pro
 2,Geyser/CharacterTutorialMakeHumanToUE4,http://geyser.oni2.net/UE4/MakeHumanTutorial/KonokoTemplate.fbx
 2,Geyser/CharacterTutorialMakeHumanToUE4,http://geyser.oni2.net/UE4/MakeHumanTutorial/KatiaVersusKonokoSide.png
@@ -3049,5 +2529,4 @@
 2,Geyser/CharacterTutorialMakeHumanToUE4,http://geyser.oni2.net/UE4/MakeHumanTutorial/AnimeGirlSkinnyDefault.zip
 2,Geyser/CharacterTutorialMakeHumanToUE4,http://geyser.oni2.net/UE4/MakeHumanTutorial/ypose.zip
-0,UnrealOni/Tutorials,https://docs.unrealengine.com/en-us/Engine/Animation/AnimHowTo/LayerEditing
 6,Cyaegha_-_Mukade_getting_up.jpg,http://oni.bungie.org/forum/
 0,MakeHuman,http://www.aversionofreality.com/?category=Project:+Maiko
@@ -3071,5 +2550,5 @@
 4,Community_portal,https://tcrf.net/Oni_(Windows)
 4,Community_portal,https://tcrf.net/Oni_(PlayStation_2)
-4,Community_portal,https://en.wikipedia.org/wiki/Oni_(video_game)
+14,Modding_tools,http://mods.oni2.net/node/386
 4,Community_portal,https://www.facebook.com/groups/186656799756/
 14,Art_by_Lorraine,https://twitter.com/mehvechan
@@ -3081,6 +2560,4 @@
 1,Anniversary_Edition/To-do,http://bugs.oni2.net/ticket/140
 0,Windows_Shell_Extension,http://oni.bungie.org/forum/viewtopic.php?pid=10487#p10487
-0,Slovak_Oni_game_manual,https://en.wikipedia.org/wiki/Slovak_declension
-1,Windows_Shell_Extension,https://docs.microsoft.com/en-us/windows/desktop/sysinfo/structure-of-the-registry
 0,Restless_Souls/Technology,https://phys.org/news/2019-05-bio-inspired-material-oceans-uranium-sustainable.html
 1,Joint_Story,https://www.google.com/search?q=ocean+absorb+co2
@@ -3089,5 +2566,4 @@
 6,Don't_Call_Me_Baby_ad.jpg,http://www.psxdatacenter.com/psx2/images2/hires/SLES-50134/SLES-50134-A-ALL.html
 6,CGWcover.jpg,https://archive.org/details/Computer_Gaming_World_Issue_181
-2,Paradox-01/Colors,https://wiki.oni2.net/File:Art_for_E3_Banner_-_Konoko_puts_an_Elite_Striker_through_a_window.jpg
 0,Oni,http://carnage.bungie.org/oniforum/oni.forum.pl?read=7479
 0,UnrealOni,https://www.youtube.com/watch?v=Hv_v3tPuNj4
@@ -3095,7 +2571,6 @@
 0,UnrealOni/Documentation,https://www.youtube.com/watch?v=hM_MPrEN7t8
 14,Modding_tools,http://mirex.mypage.sk/index.php?selected=1
-14,Modding_tools,http://www.alhexx.com/releases/games/oni.html
 14,Modding_tools,http://ssg.oni2.net/subfold/download/IRF_Oni.zip
-14,Modding_tools,http://www23.brinkster.com/onichars/Downloads/files/
+14,Modding_tools,http://web.archive.org/web/20101130143740/http://www.alhexx.com/releases/games/oni.html
 14,Modding_tools,http://oni.moltenstudios.com/downloads/ianpatt.php
 14,Modding_tools,http://ssg.oni2.net/subfold/download/OniTools_NET.zip
@@ -3110,5 +2585,4 @@
 3,Iritscen,http://script10k.oni2.net/videos/comparison_slowmo_win_mac_2.mp4
 3,Iritscen,http://script10k.oni2.net/videos/slowmo_os_comparison_original_videos.7z
-1,Restless_Souls/Summary,https://en.wikipedia.org/wiki/Selous_Game_Reserve
 110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2965
 1,Restless_Souls,https://www.youtube.com/watch?v=NFwCN2ANBaM
@@ -3126,10 +2600,8 @@
 108,Caged_Birds,http://www.the-monitor.org/en-gb/home.aspx
 108,Slaves_of_War/Neo-Biology,http://entnemdept.ufl.edu/creatures/bfly/bfly2/question_mark07.jpg
-108,Caged_Birds,https://en.wikipedia.org/wiki/Persecution_of_people_with_albinism
 108,Caged_Birds,https://www.google.com/search?q=poor+people+landfills+india&tbm=isch
 108,Caged_Birds,http://phys.org/news/2014-07-large-hadron-collider.html
 0,Oni_(PlayStation_2),https://pcsx2.net/
 0,Oni_(PlayStation_2),https://tcrf.net/Oni_(PlayStation_2)
-0,Oni_2_(Angel_Studios)/Running,https://tcrf.net
 0,BGI,http://oni.bungie.org/forum/viewtopic.php?pid=52737#p52737
 0,OniSplit,http://websvn.illy.bz/dl.php?repname=Oni2&path=/OniSplit/&isdir=1
@@ -3150,15 +2622,13 @@
 108,Slaves_of_War/Neo-Biology,http://www.arkinspace.com/2012/05/assassin-bug-malaysias-macabre.html
 102,SNDD,https://wiki.multimedia.cx/index.php/Microsoft_ADPCM
-0,Music/Ingame,http://iritscen.oni2.net/wiki/mus_xgrv-recon.mp3
 108,Slaves_of_War/Neo-Biology,https://staticr1.blastingcdn.com/media/photogallery/2016/7/10/660x290/b_502x220/northern-stargazer-photo-2photo-ru_781169.jpg
 108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?v=cZcomBnNKXg
-108,Slaves_of_War/Neo-Biology,http://www.lifeslittlemysteries.com/2649-bone-eating-zombie-worms-strange-snapshots.html
-108,Slaves_of_War/Neo-Biology,http://www.grindtv.com/outdoor/nature/post/alien-like-creature-is-a-feeding-brydes-whale/
+108,Slaves_of_War/Neo-Biology,https://64.media.tumblr.com/2ba3cf9b5711d7c9ff550e8ad7e579a5/tumblr_mis93qKMwM1s3yrubo1_1280.jpg
+108,Slaves_of_War/Neo-Biology,https://64.media.tumblr.com/8b8273434501f8e80c1b40f45e847f74/tumblr_mk2o3hbVxJ1s3yrubo1_1280.jpg
 108,Slaves_of_War/Neo-Biology,https://www.youtube.com/watch?v=x3dvs6C8c7g
-108,Slaves_of_War/Neo-Biology,http://24.media.tumblr.com/2ba3cf9b5711d7c9ff550e8ad7e579a5/tumblr_mis93qKMwM1s3yrubo1_1280.jpg
-108,Slaves_of_War/Neo-Biology,http://25.media.tumblr.com/8b8273434501f8e80c1b40f45e847f74/tumblr_mk2o3hbVxJ1s3yrubo1_1280.jpg
-108,Slaves_of_War/Neo-Biology,http://24.media.tumblr.com/a20370b212c1ec4bbe3a08d02a26e4ef/tumblr_mlsc8eVAm51s3yrubo1_1280.jpg
+108,Slaves_of_War/Neo-Biology,https://web.archive.org/web/20171213051543/https://www.today.com/news/dolphins-save-surfer-becoming-sharks-bait-2D80555123
+108,Slaves_of_War/Neo-Biology,https://news.google.co.uk/newspapers?id=m7caAAAAIBAJ&sjid=iUkEAAAAIBAJ&pg=576,1832140&dq=animal-suicide&hl=en
 108,Slaves_of_War/Neo-Biology,http://video.nationalgeographic.com/video/news/animals-news/psychedelic-fish-video-vin
-108,Slaves_of_War/Neo-Biology,http://www.futurity.org/science-technology/robo-squirrel-flags-snakes-with-infrared-tail/
+108,Slaves_of_War/Neo-Biology,https://64.media.tumblr.com/3e8ed38fbb46c34148a7516c1e3a8b42/tumblr_mgxo8qk4iO1s3yrubo1_r1_1280.jpg
 108,Slaves_of_War/Neo-Biology,http://www.scientificamerican.com/article.cfm?id=can-squid-fly
 108,Slaves_of_War/Neo-Biology,https://www.youtube.com/watch?v=4hCa0sEJl_4
@@ -3168,5 +2638,4 @@
 108,Slaves_of_War/Neo-Biology,http://fishindex.blogspot.com/2008/12/frilled-shark-chlamydoselachus.html
 108,Slaves_of_War/Neo-Biology,https://www.google.com/search?q=panther+chameleon&tbm=isch
-108,Slaves_of_War/Neo-Biology,http://24.media.tumblr.com/3e8ed38fbb46c34148a7516c1e3a8b42/tumblr_mgxo8qk4iO1s3yrubo1_r1_1280.jpg
 108,Slaves_of_War/Neo-Biology,https://images.squarespace-cdn.com/content/55f702a4e4b0794fbe24736b/1491257723630-KCAVSSPB2LSJT4XMJIBR/Spatuletail+Hummingbird.jpg?content-type=image/jpeg
 108,Slaves_of_War/Neo-Biology,https://www.youtube.com/watch?v=DNgeaiEuFc0
@@ -3178,10 +2647,7 @@
 108,Slaves_of_War/Neo-Biology,https://www.youtube.com/watch?v=998_wWfzBvA
 108,Slaves_of_War/Neo-Biology,http://www.livescience.com/40132-underwater-mystery-circles.html
-108,Slaves_of_War/Neo-Biology,http://www.grindtv.com/wildlife/rare-photo-shows-crow-riding-atop-a-flying-bald-eagle
 108,Slaves_of_War/Neo-Biology,http://www.npr.org/blogs/krulwich/2011/06/01/128389587/look-up-the-billion-bug-highway-you-cant-see
-108,Slaves_of_War/Neo-Biology,http://arstechnica.com/science/2016/12/researchers-use-radar-to-track-3-5-trillion-insects-migrating-over-england/
 108,Slaves_of_War/Neo-Biology,https://www.nationalgeographic.com/news/2012/11/121102-korean-speaking-elephant-talk-human-science-weird-animals/
-108,Slaves_of_War/Neo-Biology,http://www.today.com/video/today/49579010#49579010
-108,Slaves_of_War/Neo-Biology,http://digitaljournal.com/article/319493
+108,Slaves_of_War/Neo-Biology,https://us.whales.org/wp-content/uploads/sites/2/2018/07/brydes-whale-jirayu-tour-ekkul-sg-2000x1333.jpg
 108,Slaves_of_War/Neo-Biology,http://www.treehugger.com/natural-sciences/rare-interspecies-play-observed-between-dolphins-and-whales.html
 108,Slaves_of_War/Neo-Biology,http://news.bbc.co.uk/2/hi/7291501.stm
@@ -3198,20 +2664,12 @@
 108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?v=dug70HBEgaM
 108,Slaves_of_War/Neo-Biology,http://www.pbs.org/wnet/nature/episodes/animal-odd-couples/full-episode/8009/
-108,Slaves_of_War/Neo-Biology,http://news.google.co.uk/newspapers?id=m7caAAAAIBAJ&sjid=iUkEAAAAIBAJ&pg=576,1832140&dq=animal-suicide
 108,Slaves_of_War/Neo-Biology,http://www.time.com/time/health/article/0,8599,1973486,00.html
-108,Slaves_of_War/Neo-Biology,http://www.mnn.com/earth-matters/animals/stories/are-bears-purposely-committing-suicide-to-protest-the-horror-of-bile-f
+108,Slaves_of_War/Neo-Biology,http://web.archive.org/web/20140905185006/http://www.grindtv.com/outdoor/nature/post/alien-like-creature-is-a-feeding-brydes-whale/
 108,Slaves_of_War/Neo-Biology,http://wherethebearwalks.blogspot.com/2010/04/bear-intelligence.html
 108,Slaves_of_War/Neo-Biology,http://www.psychologytoday.com/blog/animals-and-us/201006/are-humans-the-only-animals-keep-pets
 108,Slaves_of_War/Neo-Biology,http://abcnews.go.com/blogs/technology/2012/01/dogs-use-subway-cat-takes-bus-and-other-adventures-in-animal-intelligence/
-108,Slaves_of_War/Neo-Biology,http://blogs.discovermagazine.com/notrocketscience/2012/02/28/when-meeting-up-at-sea-bottlenose-dolphins-exchange-name-like-whistles/
 108,Slaves_of_War/Neo-Biology,http://abcnews.go.com/blogs/technology/2012/01/who-needs-words-crows-you-wild-gorillas-alison-krauss/
 108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?v=0GOb3nFpewM
-108,Slaves_of_War/Neo-Biology,http://en.wikipedia.org/wiki/Kanzi
 108,Slaves_of_War/Neo-Biology,http://www.smithsonianmag.com/science-nature/10022981.html
-108,Slaves_of_War/Neo-Biology,http://en.wikipedia.org/wiki/Cholla_the_painting_horse
-108,Slaves_of_War/Neo-Biology,http://en.wikipedia.org/wiki/Washoe_(chimpanzee)
-108,Slaves_of_War/Neo-Biology,http://en.wikipedia.org/wiki/Alex_(parrot)
-108,Slaves_of_War/Neo-Biology,http://en.wikipedia.org/wiki/N'kisi
-108,Slaves_of_War/Neo-Biology,http://en.wikipedia.org/wiki/Koko_(gorilla)
 108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?feature=player_embedded&v=7AyBLJy0jMc
 108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?v=opd6XhyV310&feature=related
@@ -3223,15 +2681,14 @@
 108,Slaves_of_War/Neo-Biology,http://www.scotsman.com/news/scottish-news/top-stories/horse-rides-to-rescue-as-owner-attacked-in-field-by-raging-cow-1-913741
 108,Slaves_of_War/Neo-Biology,http://www.dailymail.co.uk/news/article-1202941/Pictured-The-moment-Mila-brave-Beluga-whale-saved-stricken-divers-life-pushing-surface.html
-108,Slaves_of_War/Neo-Biology,http://today.msnbc.msn.com/id/21689083/ns/today-today_people/t/dolphins-save-surfer-becoming-sharks-bait/#.UIcnbYbUzt0
+108,Slaves_of_War/Neo-Biology,http://web.archive.org/web/20171031060501/http://www.grindtv.com/wildlife/rare-photo-shows-crow-riding-atop-a-flying-bald-eagle/
 108,Slaves_of_War/Neo-Biology,http://www.underwatertimes.com/news.php?article_id=51079184603
 108,Slaves_of_War/Neo-Biology,http://www.dailymail.co.uk/tvshowbiz/article-1328806/Dick-Van-Dyke-Pod-porpoises-saved-I-fell-asleep-surfboard.html
 108,Slaves_of_War/Neo-Biology,http://www.nytimes.com/2002/10/12/world/5-little-oryxes-and-the-big-bad-lioness-of-kenya.html
 108,Slaves_of_War/Neo-Biology,http://www.livescience.com/3284-scientist-snowball-fight-killer-whale.html
-108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?v=YBqKTiEvGAM
 108,Slaves_of_War/Neo-Biology,http://channel.nationalgeographic.com/wild/caught-in-the-act/videos/stoffel-dont-give-a/
 108,Slaves_of_War/Neo-Biology,http://www.youtube.com/watch?v=UC0OJj3-YOI
 108,Slaves_of_War/Neo-Biology,http://www.scientificamerican.com/article.cfm?id=crows-show-off-social-skills
 108,Slaves_of_War/Neo-Biology,http://www.myhealthnewsdaily.com/1966-personality-traits-affect-smell.html
-108,Slaves_of_War/Neo-Biology,http://www.guardian.co.uk/science/2008/dec/04/smell-fear-research-pheromone
+108,Slaves_of_War/Neo-Biology,https://64.media.tumblr.com/a20370b212c1ec4bbe3a08d02a26e4ef/tumblr_mlsc8eVAm51s3yrubo1_1280.jpg
 108,Slaves_of_War/Neo-Biology,http://www.telegraph.co.uk/news/newstopics/howaboutthat/3328480/Otto-the-octopus-wrecks-havoc.html
 108,Slaves_of_War/Neo-Biology,https://www.youtube.com/watch?v=os6HD-sCRn8
@@ -3245,10 +2702,8 @@
 108,Slaves_of_War/Neo-Biology,https://www.youtube.com/watch?v=ysa5OBhXz-Q
 108,Slaves_of_War/Neo-Biology,https://en.wikipedia.org/w/index.php?title=List_of_common_misconceptions&oldid=468972367#Brain
-108,Slaves_of_War/Neo-Biology,http://25.media.tumblr.com/3608367d74544df070a5a8c3acf2d4af/tumblr_mt2f1cXXY81s3yrubo1_r1_1280.jpg
 108,Slaves_of_War/Settings,https://www.turnerconstruction.com/experience/project/12AC/charlotte-douglas-international-airport-daily-parking-deck
 108,Slaves_of_War/Settings,http://www.youtube.com/watch?v=P8ckbyvEIEE
 108,Slaves_of_War/Settings,http://en.wikipedia.org/wiki/Dockwise_Vanguard
 108,Slaves_of_War/Settings,http://theworldofenvy.com/hotels/the-peninsula-hong-kong
-108,Slaves_of_War/Settings,http://www.contemporan.com/company/sketch-3/
 108,Slaves_of_War/Settings,http://ethiopianorphanrelief.files.wordpress.com/2010/04/harar.jpg
 108,Slaves_of_War/Settings,http://zavodfoto.livejournal.com/1886869.html
@@ -3261,10 +2716,9 @@
 108,Slaves_of_War/Settings,http://www.strangebuildings.com/solar-furnace-odeillo-france/
 108,Slaves_of_War/Settings,http://www.cracked.com/article_19678_6-abandoned-places-that-will-make-awesome-supervillain-lairs.html
-108,Slaves_of_War/Settings,http://en.wikipedia.org/wiki/File:Tokyo_sky_tree.jpg
 108,Slaves_of_War/Settings,http://www.youtube.com/watch?v=pGCln17yUn0
 108,Slaves_of_War/Settings,http://news.yahoo.com/photos/the-bridge-that-suspends-belief-slideshow/
 108,Slaves_of_War/Settings,http://khsuites.wordpress.com/tag/things-to-see-at-mexico-city/
 108,Slaves_of_War/Settings,http://willaustin.com/blog/
-108,Slaves_of_War/Settings,https://en.wikipedia.org/wiki/Stockwell_Garage
+108,Slaves_of_War/Neo-Biology,https://www.theguardian.com/science/2008/dec/04/smell-fear-research-pheromone
 108,Slaves_of_War/Settings,http://media-cdn.tripadvisor.com/media/photo-s/02/66/59/11/whitepod.jpg
 108,Slaves_of_War/Settings,http://www.travelandleisure.com/thingtodo/nature/mels-hole
@@ -3366,8 +2820,7 @@
 2,Paradox-01/brain_dump,https://de.reuters.com/article/usa-staatsanleihen-japan-idDEKCN1V60CD
 2,Paradox-01/brain_dump,https://www.tagesspiegel.de/wissen/drohen-in-deutschland-italienische-verhaeltnisse-coronavirus-laesst-in-italien-aerzte-verzweifeln-entscheidungen-wie-in-kriegszeiten/25632790.html
-2,Paradox-01/brain_dump,https://www.handwerksblatt.de/unternehmensfuhrung/eu-zwingt-hersteller-ersatzteile-zu-liefern
-2,Paradox-01/brain_dump,https://www.curevac.com/de/news/curevac-focuses-on-the-development-of-mrna-based-coronavirus-vaccine-to-protect-people-worldwide
+2,Paradox-01/brain_dump,https://www.handelsblatt.com/politik/international/rohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert/22794738.html
 2,Paradox-01/brain_dump,https://www.spiegel.de/politik/deutschland/coronakrise-deutschland-liefert-italien-hunderttausende-atemschutzmasken-a-c6040b52-4171-487a-8b1d-3518d53eabfe
-2,Paradox-01/brain_dump,https://www.handelsblatt.com/politik/international/rohstoffe-trump-kritisiert-deutschland-fuer-erdgasimporte-aus-russland-aber-die-usa-importieren-selbst-russisches-oel-im-milliardenwert/22794738.html?ticket=ST-225376-Fa3A1GfurE11JdPrOnyX-ap6
+2,Paradox-01/brain_dump,https://www.handwerksblatt.de/betriebsfuehrung/eu-zwingt-hersteller-ersatzteile-zu-liefern
 2,Paradox-01/brain_dump,https://www.spektrum.de/news/weitere-resistenz-gegen-hiv/340309
 3,Geyser/Test2,http://web.archive.org/web/20200611015324/http://miyazaki-moebius.com/
@@ -3380,4 +2833,5 @@
 109,Truth_Number_Zero/Course_Of_Events,https://nausicaa.fandom.com/wiki/Ohmu
 0,Alternative_engines,http://oni.bungie.org/forum/viewtopic.php?id=3199
+110,ONLV,http://mods.oni2.net/system/files/AKEV_texture_checker.txt
 0,Videos,https://www.youtube.com/watch?v=lMGpDFNO9m8
 0,OniUnPacker/source,http://web.archive.org/web/20191108032711/http://www.mindspring.com/~cityzoo/tips/wrapgrid.txt
@@ -3411,5 +2865,4 @@
 0,Oni_(myth),https://knowyourmeme.com/memes/pretty-cool-guy
 0,Restless_Souls/Summary,https://www.cfr.org/article/demographics-us-military
-0,Restless_Souls/Summary,https://en.wikipedia.org/wiki/Concern_(business)
 102,BINA/OBJC/MELE,http://ssg.oni2.net/oni_mele.htm
 102,BINA/OBJC/CHAR,http://ssg.oni2.net/oni_char.htm
@@ -3417,4 +2870,5 @@
 102,BINA/OBJC/PWRU,http://ssg.oni2.net/oni.htm
 0,Purple_hair_etc,http://web.archive.org/web/20081014020720/http://www.polykarbon.com/gallery/storyboards2.htm
+0,Purple_hair_etc,http://web.archive.org/web/20151017003212/http://www.applegeeks.com/blog/2003/11/21/color-the-bunisher/
 0,Purple_hair_etc,http://web.archive.org/web/20070404005253/http://www.applegeeks.com/downloads/
 0,Purple_hair_etc,http://web.archive.org/web/20071117025848/http://www.cs.nott.ac.uk/~dgf/fanart/01/chibikonoko.htm
@@ -3443,18 +2897,224 @@
 6,NoGlass_Import_Test_1.jpg,http://photoshare.ru/user/karasevarchi/
 0,Credits,http://web.archive.org/web/20110312120045/http://www.polymallet.com/
-0,Validate_External_Links,http://www.archive.org
 0,Validate_External_Links,http://wiki.oni2.net/w/extlinks.csv
+6,ChibiOni_Konoko_and_Muro_by_66reddog.png,https://web.archive.org/web/20101226095716/http://onimia.ru/forum/
+0,OniSplit,https://www.mono-project.com/download/stable/
+6,Big_ame-lilmai.jpg,https://web.archive.org/web/20101226095716/http://onimia.ru/forum/
+6,Welcome_to_Oni_bar.jpg,http://oni.bungie.org/forum/viewtopic.php?id=188
+6,Merry.jpg,http://oni.bungie.org/forum/viewtopic.php?id=193
+6,Big_maksimka-onidollar.jpg,https://web.archive.org/web/20101226095716/http://onimia.ru/forum/
+1,OME,https://www.autodesk.com/products/softimage/overview
+0,Anniversary_Edition,http://oni.bungie.org/forum/viewforum.php?id=12
+0,Anime_and_manga,https://web.archive.org/web/20120816063521/http://www.animestocks.com/gallery/category/Full+Metal+Panic!+TSR/Melissa+Mao
+0,Oni_(myth),http://web.archive.org/web/20090814100526/http://www.kyoto.zaq.ne.jp/mibu/eng/pages/plays/tales.html#Anchor-Ogre-43793
+111,TXMB,http://svn.oni2.net/s10k/Vago/bgImageWizard/bgimagepagefinal.cpp
+0,Konoko,https://halo.bungie.net/inside/history.aspx?link=oni
+0,Oni_(folder)/GameDataFolder/IGMD/Airport,http://geyser.oni2.net/OSL/IGMD/Airport/airport1_level_logic.bsl
+0,Crescent_Moon_Kick,http://oni.bungie.org/forum/viewtopic.php?id=177
+2,Paradox-01/brain_dump,https://web.archive.org/web/20080101095349/http://www.merkur.de/2007_51_Bluehende_Ozeane.25382.0.html?&no_cache=1
+110,TRAM,http://oni.bungie.org/forum/viewtopic.php?pid=39787#p39787
+0,Strident,https://www.phantagram.com/eng/
+0,Strident,https://web.archive.org/web/20120417071638/http://xbox.ign.com/articles/137/137000p1.html
+0,Strident,http://web.archive.org/web/20080404000113/http://news.teamxbox.com/xbox/3113/Strident-Trailer/
+103,ONGS,http://oni.bungie.org/forum/viewtopic.php?pid=9274#p9274
+3,EdT/Archive1,http://oni.bungie.org/forum/viewtopic.php?pid=2856#p2856
+105,New_weapons,http://iritscen.oni2.net/wiki/Tieria-rla%20reload.mp4
+108,AVATARA,https://www.supercars.net/blog/1947-rolls-royce-phantom-iii-labourdette-vutotal-cabriolet/
+108,AVATARA,https://www.ultimatecarpage.com/img/Delage-D8-120-S-Pourtout-Aero-Coupe-18178.html
+104,Trailer,http://iritscen.oni2.net/wiki/coool-k_mukade.jpg
+103,PNTA,https://web.archive.org/web/20090520145941/http://www.gamedev.net/reference/programming/features/welzlminsphere/default.asp
+102,PSpc,https://docs.microsoft.com/en-us/previous-versions/windows/desktop/windows-media-center-sdk/bb189722(v=msdn.10)
+0,Daodan_DLL,http://sfeli.oni2.net/daodan/daodan-nightly.zip
+105,OTA,http://oni.bungie.org/forum/viewtopic.php?id=508
+1,Importing_character_models,https://www.macupdate.com/app/mac/22750/0xed
+0,Strident,http://www.codercorner.com/Oni.htm
+1,Importing_character_models,http://oni.bungie.org/forum/viewtopic.php?id=2423
+0,Torn_Suit_Konoko,http://iritscen.oni2.net/wiki/Seventeen%20Seconds'%20Weapons.zip
+0,Restless_Souls/Technology,http://oni.bungie.org/forum/viewtopic.php?pid=273#p273
+102,BINA/TMBD,http://ssg.oni2.net/subfold/text/oni_bina_texture_materials.txt
+0,Blender,https://www.youtube.com/watch?v=1jHUY3qoBu8
+0,Konoko,http://oni.bungie.org/forum/viewtopic.php?pid=35562#p35562
+109,Truth_Number_Zero/Course_Of_Events,https://tvtropes.org/pmwiki/pmwiki.php/Main/CrapsackWorld
+3,Neo/Archive2,https://web.archive.org/web/20101211155335/http://colladablender.illusoft.com/cms/content/blogcategory/18/44/
+3,Iritscen/MainPageTest,https://manhattanpsychologygroup.com/executive-function-disorder-efd/
+0,Restless_Souls/Technology,https://www.theguardian.com/technology/2015/nov/05/robot-revolution-rise-machines-could-displace-third-of-uk-jobs
+1,Shinatama,http://web.archive.org/web/20170816043624/http://karakuriya.com/english/doll/shinatama.htm
+0,BGI_characters,http://oni.bungie.org/forum/viewtopic.php?id=2438
+6,Daodan_Punch.png,http://geyser.oni2.net/pics/screenshots/punch_it.jpg
+104,Trailer,http://iritscen.oni2.net/wiki/Loser-Mukade%20clone%20fight%201.mov
+2,Noneatme,https://cloud.noneat.me/index.php/s/HEGT3oFyMt6KoMt
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-Tiny%20Mistake.mov
+104,DeLorean,http://geyser.oni2.net/edition/vehicles/TrailerDeLorean.zip
+104,Trailer/Shapeshifting,http://oni.bungie.org/forum/viewtopic.php?id=508
+0,History_of_Oni_modding,http://oni.bungie.org/forum/viewtopic.php?id=2698
+104,Trailer/Shapeshifting,http://iritscen.oni2.net/wiki/EdT-Shapeshifting.mov
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-Konoko%20on%20roof.mov
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-Spartans%203.mov
+105,Sniper_scope_and_prone_mode,http://iritscen.oni2.net/wiki/Paradox-Sniper%20mode%20(xvid).avi
+104,Trailer,http://iritscen.oni2.net/wiki/EdT-Barabas%20using%20jetpack%201.mov
+104,Trailer,http://iritscen.oni2.net/wiki/coool-fury.jpg
+103,TRAM,https://babbage.cs.qc.cuny.edu/IEEE-754/
+104,Trailer,https://www.youtube.com/watch?v=5tK9VwQrcp4
+2,Gumby,http://oni.bungie.org/forum/viewtopic.php?pid=10487#p10487
+2,Geyser/STFUn00b,http://oni.bungie.org/forum/viewtopic.php?pid=9103#p9103
+104,Trailer,http://iritscen.oni2.net/wiki/Gumby-Big%20fat%20OTA%20vid.mov
+6,28686-CALIG.TXMP000.jpg,http://oni.bungie.org/forum/viewtopic.php?pid=9299#p9299
+1,Adding_spawnable_characters,http://oni.bungie.org/forum/viewtopic.php?id=674
+0,New_levels,http://photoshare.ru/album9528.html
+12,Editing,http://oni.bungie.org/forum/
+0,History_of_Oni_modding/The_tale_of_Dev_Mode,https://web.archive.org/web/20090413130244/http://oni.planets.gamespy.com/info/cheats.shtml
+0,Oni,http://oni.bungie.org/forum/viewtopic.php?id=2102
+4,Copyrights,http://www.gnu.org/licenses/fdl-1.3.html
+3,Iritscen/Archive1,http://iritscen.oni2.net/wiki/Messed-up%20export.jpg
+3,Iritscen/Archive2,http://oni.bungie.org/forum/viewtopic.php?pid=48117#p48117
+0,TRAM_setup_assistant,http://mods.oni2.net/system/files/StrikerKneeStepKickThrow.zip
+3,EdT/Archive1,http://oni.bungie.org/forum/
+6,Konoko_Crouching_-_Wallpaper_2.jpg,https://web.archive.org/web/20081120155350/http://www.zapster.it/images/tools/wallpapers/1024x768/oni4.jpg
+6,Intro_frame_0431.png,http://web.archive.org/web/20120212222545/http://www.aicanime.com/products/adpolice/tvindex.html
+0,State_of_Emergency,https://web.archive.org/web/20151002021345/http://www.ign.com/games/maximum-action-state-of-emergency-serious-sam-gold/ps2-16405
 0,Xenotron,http://web.archive.org/web/20141112095925/http://home.luna.nl/~xino/fonts/xenotron/index.html
+3,Neo/Archive1,https://download.cnet.com/Microsoft-Visual-C-2005-SP1-Redistributable-Package-x86/3000-2070_4-10726887.html
+3,ONIrules,http://web.archive.org/web/20200119112157/http://ghost.halomaps.org/bluestreak/gbxmodel/
+0,History_of_Oni_modding,http://oni.bungie.org/forum/viewtopic.php?id=2024
+0,GUNNM,https://gamefaqs.gamespot.com/ps/197512-gunnm-martian-memory
+0,Blame!,https://anidb.net/perl-bin/animedb.pl?show=anime&aid=1050
+0,State_of_Emergency,https://www.metacritic.com/game/playstation-2/state-of-emergency
+0,PolyKarbon,https://web.archive.org/web/20160623125418/http://training.sessions.edu/resources/free-tutorials/adobe-illustrator-tutorials/live-trace-live-paint.asp
+2,Geyser/Artwork,https://web.archive.org/web/20081112044140/http://bards.fr/orgkom/wupper2008.jpg
+3,Neo/Archive1,https://download.cnet.com/Microsoft-XNA-Game-Studio-2-0/3000-2069_4-75542642.html
+2,Gumby,http://oni.bungie.org/forum/viewtopic.php?id=702
+0,Restless_Souls/Technology,http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1188140623&rangeend=1188147823&nochange=1#114292
+3,Geyser,https://www.google.com/recaptcha/about/
+0,Rights,http://macsoftgames.com
+110,XML_Modding_Lessons,https://winmerge.org/
+0,Anniversary_Edition/To-do,http://oni.bungie.org/forum/viewtopic.php?pid=45791#p45791
+108,Hikari,http://web.archive.org/web/20050902092952/http://membres.lycos.fr/feena/rpg/grandia2/
+0,Mouse_control_issues,http://oni.bungie.org/forum/viewtopic.php?id=970
+0,Mouse_control_issues,http://oni.bungie.org/forum/viewtopic.php?id=937
+0,Mouse_control_issues,http://oni.bungie.org/forum/viewtopic.php?id=907
+0,Mouse_control_issues,http://oni.bungie.org/forum/viewtopic.php?id=824
+0,Mouse_control_issues,http://oni.bungie.org/forum/viewtopic.php?id=801
+0,Mouse_control_issues,http://oni.bungie.org/forum/viewtopic.php?id=767
+0,Mouse_control_issues,http://oni.bungie.org/forum/viewtopic.php?id=746
+0,Mouse_control_issues,http://oni.bungie.org/forum/viewtopic.php?id=149
+0,Mouse_control_issues,http://oni.bungie.org/forum/viewtopic.php?id=766
+3,Neo/Archive1,https://download.cnet.com/Microsoft-XNA-Framework-Redistributable-1-0-Refresh/3000-2121_4-10726910.html
+0,Restless_Souls/Technology,http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189961817&rangeend=1189969017&nochange=1#123453
+0,Restless_Souls/Technology,http://oni2.net/irclog.php?chan=oni&showtype=showrange&rangestart=1189348501&rangeend=1189355701&nochange=1#121507
+111,Basic_tutorial,https://www.mono-project.com/download/stable/
+102,SNDD/wav,https://docs.microsoft.com/en-us/previous-versions//ee415686(v=vs.85)
+0,Restless_Souls/Technology,https://academic.oup.com/jxb/article/59/5/1109/538568
+3,Bobbysoon,http://iritscen.oni2.net/wiki/Iron%20Demon%20sounds.zip
+3,Neo/Archive2,http://web.archive.org/web/20090614031049/http://www.driverheaven.net/mobility-radeon-drivers-support/76736-ati-mobility-firegl-t2-hp-nw8000.html
+3,Neo/Archive2,https://web.archive.org/web/20110227221452/https://www.nersc.gov/vendor_docs/ibm/asm/mastertoc.htm
+3,Neo/Archive3,http://oni.bungie.org/forum/viewtopic.php?pid=7390
+3,Neo/Archive4,http://iritscen.oni2.net/comp_graphics/Oni-BadShadows2.jpg
+3,Neo/Archive4,http://oni.bungie.org/forum/viewtopic.php?pid=4897#p4897
+3,Neo/Archive4,http://sites.google.com/site/gumby701/bomber.wmv
+3,Neo/Archive4,http://iritscen.oni2.net/comp_graphics/Oni-BadShadows3.jpg
+14,Art_by_Lorraine,https://halo.fandom.com/wiki/Halo_Alpha
+6,Black_Spartan_from_Halo.png,https://halo.fandom.com/wiki/Halo_Alpha
+0,History_of_Mac_Oni,http://oni.bungie.org/forum/viewtopic.php?id=848
+2,Script_10k,http://oni.bungie.org/forum/viewtopic.php?id=297
+0,Walkthrough/CHAPTER_04_._TIGER_BY_THE_TAIL,https://youtu.be/BqWrUGTQXn0?t=3s
+3,Tieria_Erde,http://oni.bungie.org/forum/index.php
+0,Blender,https://www.youtube.com/watch?v=uahfuypQQ04
+0,New_levels,https://www.turbosquid.com
 0,New_levels,http://web.archive.org/web/20110820102502/http://home.luna.nl/~xino/times2/funtower.htm
+0,New_levels,http://photoshare.ru/user/karasevarchi/
+0,New_levels,http://photoshare.ru/album23608.html
+0,New_levels,https://cad.ru/ru/territory/sapr/index.php?page=blog&blog=socially_business_center
+2,Paradox-01/brain_dump,https://deusex.fandom.com/wiki/Helios
+0,History_of_the_Oni_community,http://oni.bungie.org/forum/index.php
+110,TXMP,http://oni.bungie.org/forum/viewtopic.php?pid=29967#p29967
+110,SNDD,http://oni.bungie.org/forum/viewtopic.php?id=798
+0,Pre-beta_features,https://web.archive.org/web/20170705124855/http://www.glixel.com/interviews/oni-bungies-classic-inspired-by-ghost-in-the-shell-w474297
+110,SNDD,https://www.audacityteam.org/download/
+0,Pre-beta_features,https://www.youtube.com/watch?v=rW4w_7GRUPE#t=1m14s
+0,Pre-beta_features,https://www.youtube.com/watch?v=rW4w_7GRUPE#t=0m53s
+0,Kojiro,http://oni.bungie.org/forum/viewtopic.php?id=1282
+0,Casey,http://oni.bungie.org/forum/viewtopic.php?id=1262
+108,Slaves_of_War/Neo-Biology,https://web.archive.org/web/20100621160148/http://www.types-of-flowers.org/pictures/resurrection_plant.jpg
+0,Music/Ingame,http://oni.bungie.org/forum/viewtopic.php?id=2723
+1,Oni/Positioning,http://iritscen.oni2.net/comp_graphics/Oni-BadShadows1.jpg
+110,BINA/TMBD,http://oni.bungie.org/forum/viewtopic.php?pid=27093#p27093
+0,SketchUp_tutorials_and_tips,https://dzwonsemrish7.cloudfront.net/items/293W3O1h1d14302e342W/Invisible.png
+0,Oni,https://www.mcvuk.com/business-news/publishing/steve-jobs-raged-at-microsoft-over-game-studio-sale/
+108,A_Storyline/PostSummary1,https://www.youtube.com/watch?v=Zy59xjF21Rs#t=2m44s
+0,History_of_Oni_modding,http://oni.bungie.org/forum/viewtopic.php?id=1736
+0,New_levels,http://photoshare.ru/album64678.html
+110,ONLV,https://forums.epicgames.com/unreal-tournament-3/user-maps-mods-aa/full-releases-aa/148595-remus-high-resolution-skydome-texture-pack
+110,ONLV,https://www.textures.com
 0,Videos,https://www.youtube.com/watch?v=VUM8T06dcn8
+104,Modifying_textures,http://oni.bungie.org/forum/viewtopic.php?pid=19297#p19297
 1,Mod_Tool/OniTools_addon,http://mods.oni2.net/node/383
+0,Mod_Tool,http://web.archive.org/web/20170102120711/http://softimage.wiki.softimage.com/xsidocs/audio_LoadingAudioFilesintheAnimationMixer.htm#Rdy36984
+1,Oni/Positioning,https://gamefaqs.gamespot.com/pc/62551-messiah/critic
+2,Samer,http://oni.bungie.org/forum/viewtopic.php?id=2423
+0,Shinatama_Bot,http://oni.bungie.org/forum/viewtopic.php?id=1240
+0,Casual_Tankers,https://www.youtube.com/watch?feature=player_detailpage&v=YLZ2hJZvrmo#t=82s
+2,Samer,http://oni.bungie.org/forum/viewtopic.php?id=1807
+0,Regenerating_Fury,http://oni.bungie.org/forum/viewtopic.php?id=1317
+0,Regenerating_Tanker,http://oni.bungie.org/forum/viewtopic.php?id=2046
+0,Sarai,http://oni.bungie.org/forum/viewtopic.php?pid=46869#p46869
+0,BGI_characters,http://oni.bungie.org/forum/viewtopic.php?id=2490
 0,Videos,https://www.youtube.com/watch?v=7fQacrVVQLc&list=PLBKEEq8F3prAbbGk6VJkjfLMuMnb-e_gu
 0,Videos,https://www.youtube.com/watch?v=tE1xO5K3hi8
 0,Videos,https://www.youtube.com/watch?v=Z3u76geVaio
 0,Videos,https://www.youtube.com/watch?v=3dE65ZViFl0
+0,Music/CD,http://oni.bungie.org/forum/viewtopic.php?id=2723
 0,Videos,https://www.youtube.com/watch?v=5tK9VwQrcp4
+0,Anniversary_Edition/To-do,http://oni.bungie.org/forum/viewtopic.php?pid=36174#p36174
+0,Anniversary_Edition/To-do,http://oni.bungie.org/forum/viewtopic.php?pid=27161#p27161
+0,Anniversary_Edition/To-do,http://oni.bungie.org/forum/viewtopic.php?pid=43490#p43490
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2235
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2242
+1,OniSplit/Archive1,https://www.autodesk.com/developer-network/platform-technologies/fbx-converter-archives
+0,History_of_Oni_modding,http://oni.bungie.org/forum/viewtopic.php?id=1727
+0,Anniversary_Edition/Installer,http://oni.bungie.org/forum/viewtopic.php?id=2525
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2271
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2302
 0,Videos,http://www.youtube.com/watch?v=Sntev0Gj5Ds
+0,BGI_characters,http://oni.bungie.org/forum/viewtopic.php?id=1329
+0,BGI_characters,http://oni.bungie.org/forum/viewtopic.php?pid=46869#p46869
+0,Mod_Tool,http://web.archive.org/web/20170616035120/http://softimage.wiki.softimage.com/sdkdocs/scriptsdb/scriptsdb/scrdb_vbscript.htm
+0,Mod_Tool,http://web.archive.org/web/20170103065301/http://softimage.wiki.softimage.com/xsidocs/nla_mixer.htm#Rdw10200
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2357
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2619
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2640
+110,ONLV,http://mods.oni2.net/system/files/extract_ENVP.txt
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2656
+0,Mod_Tool/Oni_level_rebuilder,http://oni.bungie.org/forum/viewtopic.php?pid=47612#p47612
+0,Mod_Tool,http://oni.bungie.org/forum/viewtopic.php?id=1229
+110,ONLV,https://web.archive.org/web/20151211232354/http://www.redsorceress.com/skybox.html
+0,XmlTools,https://www.w3.org/TR/1999/REC-xpath-19991116/
+110,ONLV,http://oni.bungie.org/forum/viewtopic.php?id=2698
+109,Truth_Number_Zero/Course_Of_Events,https://www.urbandictionary.com/define.php?term=Op
+0,Reviews,http://web.archive.org/web/20141114030443/http://www.allgame.com/game.php?id=19306&tab=review
+0,Reviews,https://web.archive.org/web/20191218032027/https://www.eurogamer.net/articles/r_oni
+0,Mod_Tool/Scripting,https://devblogs.microsoft.com/scripting/how-can-i-start-a-process-and-then-wait-for-the-process-to-end-before-terminating-the-script/
 110,ONSK,http://mods.oni2.net/node/380
+0,Mod_Tool/OniTools_addon,http://oni.bungie.org/forum/viewtopic.php?id=2657
+0,Restless_Souls/Technology,https://phys.org/news/2014-08-tiny-chip-mimics-brain-supercomputer.html
+0,Zukai,https://portforward.com/router.htm
+0,Capturing_game_footage,https://github.com/obsproject/obs-studio/releases
+0,Mod_Tool/Scripting,http://web.archive.org/web/20160803061035/http://softimage.wiki.softimage.com/index.php?title=Scripting_Tips_and_Tricks_(XSISDK)
+3,Paradox-01/Archive1,https://web.archive.org/web/20121031134317/http://www.mwusers.com/forums/showthread.php?18647-onclick-in-wikitext
+111,TSFF,http://websvn.illy.bz/listing.php?repname=Oni2&path=/OniSplit/
+0,Ghost_in_the_Shell,https://ghostintheshell.fandom.com/wiki/Operator
+0,Restless_Souls/Wishlist,https://docs.unrealengine.com/en-US/Engine/LevelStreaming/HowTo/index.html
+0,Restless_Souls/Wishlist,https://docs.unrealengine.com/en-US/Engine/Matinee/HowTo/MHT_7/index.html
+0,Restless_Souls/Wishlist,https://docs.unrealengine.com/en-US/Resources/Templates/ThirdPerson/index.html
+0,Restless_Souls/Wishlist,https://web.archive.org/web/20181006203834/https://wiki.unrealengine.com/Unreal_Motion_Graphics_(UMG)_UI_-_Inventory_Tutorial_Playlist
+0,Restless_Souls/Wishlist,https://www.unrealengine.com/en-US/
+0,Restless_Souls/Wishlist,https://www.autodesk.com/developer-network/platform-technologies/fbx-converter-archives
+0,Blender,https://blenderartists.org/t/can-we-toggle-between-face-edge-vert-select-modes-with-hotkeys/498635#post1990947
+0,Blender,https://docs.blender.org/manual/en/dev/modeling/meshes/editing/face/index.html
 110,TRAM,http://mods.oni2.net/node/376
+1,Restless_Souls/Wishlist,http://web.archive.org/web/20170920190459/http://www.codegeek.io/20170409-animate-makehuman-character-in-mixamo/
+1,Restless_Souls/Wishlist,http://www.manuelbastioni.com/index.html
+110,XML_Modding_Lessons,https://visualstudio.microsoft.com
+1,Restless_Souls/Wishlist,https://www.ue4community.wiki/Category:Tutorials
+0,Restless_Souls/Wishlist,https://docs.unrealengine.com/en-US/BlueprintAPI/Utilities/Text/FindStringTableIDandKeyfromText/index.html
 102,BINA/OBJC/NEUT,http://ssg.oni2.net/oni_b_ne.htm
 102,BINA/OBJC/CONS,http://ssg.oni2.net/oni_b_co.htm
@@ -3463,7 +3123,43 @@
 102,BINA/OBJC/PATR,http://ssg.oni2.net/oni_b_pp.htm
 0,Kojiro,http://oni.bungie.org/forum/viewtopic.php?id=2467
+6,KatiaVersusKonokoFront.png,https://www.unrealengine.com/marketplace/en-US/product/female-movement-animset-pro
+2,Geyser/CharacterTutorialMakeHumanToUE4,https://www.unrealengine.com/marketplace/en-US/female-movement-animset-pro
+0,UnrealOni/Tutorials,https://docs.unrealengine.com/en-US/Engine/Animation/AnimHowTo/LayerEditing/index.html
+3,Geyser/DoxProjectImagoTalkBackup,https://starwars.fandom.com/wiki/DXR-6_disruptor_rifle
+0,UnrealOni/Tutorials,https://www.unrealengine.com/marketplace/en-US/product/advanced-locomotion-system-v1
+6,Earthquake_(Samurai_Shodown)_ZBrush_model_(clay).jpg,https://forum.corona-renderer.com/index.php?topic=3731.0
+108,Big/Earthquake,https://www.zbrushcentral.com/t/earthquake/305312
+3,Geyser/IonEyes,https://sketchfab.com/3d-models/robot-f71780758a79469d9988793e3a4a0f74
+3,Geyser/IonEyes,https://sketchfab.com/3d-models/chigaru-beyond-human-artstation-challenge-17d6910f28ac44b3bef7a4c69d0f09d9
+0,Modding_errors,http://script10k.oni2.net/wikifiles/main_not_working_without_commenting_commands(functions_splitted).zip
+0,Fuse,https://www.macworld.com/article/3010613/hands-on-adobe-s-new-fuse-cc-lets-beginners-take-baby-steps-into-3d-modeling.html
+0,Fuse,https://www.substance3d.com/products/substance-designer
+0,Fuse,https://share.substance3d.com/libraries?by_category_type_id=4
+0,UnrealOni/ALS,https://forums.unrealengine.com/unreal-engine/marketplace/107921-advanced-locomotion-system-v3/page30#post1488046
+0,Oni_2_(Angel_Studios),https://www.deviantart.com/hinxlinx/gallery?catpath=/&edit=0&q=oni
 0,Iron_Demon,http://iritscen.oni2.net/wiki/Seventeen%20Seconds'%20Iron%20Demon.zip
 0,Videos,https://www.youtube.com/watch?v=SO3JUw1dx3A
+1,Windows_Shell_Extension,https://docs.microsoft.com/en-us/windows/win32/sysinfo/registry-value-types
+1,Windows_Shell_Extension,https://docs.microsoft.com/en-us/windows/win32/sysinfo/structure-of-the-registry
+0,Restless_Souls/Technology,http://archive.is/TUHR9
+0,Restless_Souls/Technology,https://www.businessinsider.com/nuclear-bomb-accident-goldsboro-nc-swamp-2017-5?r=DE&IR=T
+0,Mouse_control_issues,https://www.pcgamingwiki.com/wiki/Oni#Choppy_mouse.2Fkeyboard_control
+14,Modding_tools,http://mods.oni2.net/node/385
+108,Slaves_of_War/Neo-Biology,https://64.media.tumblr.com/3608367d74544df070a5a8c3acf2d4af/tumblr_mt2f1cXXY81s3yrubo1_r1_1280.jpg
+0,Oni_2_(Angel_Studios)/Running,https://tcrf.net/The_Cutting_Room_Floor
+0,Music/Ingame,http://iritscen.oni2.net/wiki/Vadell
+108,Slaves_of_War/Neo-Biology,http://www.digitaljournal.com/article/319493
+108,Slaves_of_War/Neo-Biology,https://www.discovermagazine.com/planet-earth/when-meeting-up-at-sea-bottlenose-dolphins-exchange-name-like-whistles
+108,Slaves_of_War/Neo-Biology,https://www.futurity.org/robo-squirrel-flags-snakes-with-infrared-tail/
+108,Slaves_of_War/Neo-Biology,https://www.smithsonianmag.com/science-nature/story-one-whale-who-tried-bridge-linguistic-divide-between-animals-humans-180951437/
+108,Slaves_of_War/Neo-Biology,https://arstechnica.com/science/2016/12/researchers-use-radar-to-track-3-5-trillion-insects-migrating-over-england/
 108,Slaves_of_War/Neo-Biology,http://news.bbc.co.uk/2/hi/uk_news/england/cambridgeshire/3441337.stm
+108,Slaves_of_War/Neo-Biology,https://ocean.si.edu/ocean-life/invertebrates/zombie-worms-crave-bone
+108,Slaves_of_War/Neo-Biology,https://www.treehugger.com/are-bears-purposely-committing-suicide-to-protest-the-horror-of-bile-f-4861430
+108,Slaves_of_War/Settings,http://contemporan.com/company/sketch-3/
+0,Birgit_Q,https://paperpedia.fandom.com/it/wiki/PK%C2%B2
 2,Paradox-01/brain_dump,https://web.archive.org/web/20200327194536/https:/twitter.com/stephan09342968/status/1243617357832114177
 2,Paradox-01/brain_dump,http://web.archive.org/web/20200603185109/https://www.bmbf.de/de/corona-krise-achtsamkeit-ja-alarmismus-nein-11069.html
+2,Paradox-01/brain_dump,https://www.curevac.com/2020/03/15/curevac-fokussiert-sich-auf-die-entwicklung-eines-mrna-basierten-coronavirus-impfstoffs-zum-schutz-der-menschen-weltweit/
+0,Playing_in_Linux,https://javadl.oracle.com/webapps/download/AutoDL?BundleId=78825
+6,ChibiOni_Konoko_and_Muro_by_66reddog.png,http://oni.bungie.org/forum/
Index: Validate External Links/Sample files/header-ok.txt
===================================================================
--- Validate External Links/Sample files/header-ok.txt	(revision 1138)
+++ 	(revision )
@@ -1,9 +1,0 @@
-HTTP/1.1 200 OK
-Date: Wed, 31 May 2017 15:24:09 GMT
-Server: Apache
-Last-Modified: Wed, 31 May 2017 14:20:01 GMT
-ETag: "24439-3fe58-550d29d99a640"
-Accept-Ranges: bytes
-Content-Length: 261720
-Content-Type: text/csv
-
Index: Validate External Links/Sample files/header-redirect.txt
===================================================================
--- Validate External Links/Sample files/header-redirect.txt	(revision 1138)
+++ 	(revision )
@@ -1,22 +1,0 @@
-HTTP/1.1 302 Found
-Server: Apache
-X-Server-Name: gcweb01@gcappprd033177.c033.digitalriverws.net
-P3P: CP="This is not a P3P policy! See the privacy statement linked from this page for information on privacy practices."
-X_REQUEST_ID: TIME=1501596450171:NODE=gcapp01_gcappprd033177.c033:THREAD=29712
-Pragma: no-cache
-Expires: Wed, 31 Dec 1969 23:59:59 GMT
-Location: https://www.rockstarwarehouse.com/store?Action=pd&Locale=en_US&SiteID=tk2rstar&productID=304297400
-Set-Cookie: JSESSIONID=AFB5CA7BB26452CC091B8369069E9194; Path=/; HttpOnly
-Set-Cookie: VISITOR_ID=971D4E8DFAED4367F30DCC4FF5A12C0E74270F87CEB4535F4459DD9CD2F857A00CDF10188440A69DE7B8D3821BA297F6; Expires=Wed, 01-Aug-2018 19:56:42 GMT; Path=/
-Set-Cookie: X-DR-SHOPPER-tk2rstar=7EBD120910DBCBED4D5E33E797C5B51EA2B0D42E96A987D15DD41A64B81CA2FFCACDD14F6DE7429E670CF166F949272A5C0205F08E57497FB34F257B373818C6; Expires=Wed, 01-Aug-2018 19:56:42 GMT; Path=/
-Set-Cookie: X-DR-LOCALE=en_US; Path=/; HttpOnly
-Set-Cookie: X-DR-CURRENCY=USD; Path=/; HttpOnly
-Set-Cookie: X-DR-THEME=38225800; Path=/; HttpOnly
-Accept-Ranges: bytes
-Date: Tue, 01 Aug 2017 14:07:30 GMT
-X-Varnish: 1301493164
-Age: 0
-Via: 1.1 varnish
-Connection: keep-alive
-Cache-Control: no-cache, no-store, must-revalidate, max-age=0, private
-Set-Cookie: BIGipServerp-gc2-prd-active-c032-m2=494285322.260.0000; path=/; Httponly
Index: Validate External Links/curl_codes.txt
===================================================================
--- Validate External Links/curl_codes.txt	(revision 1138)
+++ 	(revision )
@@ -1,201 +1,0 @@
-==Curl Exit Code Reference==
-For use with ValExtLinks script (http://wiki.oni2.net/ValExtLinks).
-Excerpted from the man page for 'curl'.
-
-EXIT CODES
-       1      Unsupported protocol. This build of curl has no support for this
-	      protocol.
-
-       2      Failed to initialize.
-
-       3      URL malformed. The syntax was not correct.
-
-       4      A  feature  or  option  that  was  needed to perform the desired
-	      request was not enabled or was  explicitly  disabled  at	build-
-	      time.  To  make  curl able to do this, you probably need another
-	      build of libcurl!
-
-       5      Couldn't resolve proxy.  The  given  proxy  host	could  not  be
-	      resolved.
-
-       6      Couldn't resolve host. The given remote host was not resolved.
-
-       7      Failed to connect to host.
-
-       8      Weird server reply. The server sent data curl couldn't parse.
-
-       9      FTP  access  denied. The server denied login or denied access to
-	      the particular resource or directory you wanted to  reach.  Most
-	      often  you  tried to change to a directory that doesn't exist on
-	      the server.
-
-       10     FTP accept failed. While waiting for the server to connect  back
-	      when  an active FTP session is used, an error code was sent over
-	      the control connection or similar.
-
-       11     FTP weird PASS reply. Curl couldn't parse the reply sent to  the
-	      PASS request.
-
-       12     During  an  active  FTP  session while waiting for the server to
-	      connect back to curl, the timeout expired.
-
-       13     FTP weird PASV reply, Curl couldn't parse the reply sent to  the
-	      PASV request.
-
-       14     FTP  weird  227  format.	Curl  couldn't	parse the 227-line the
-	      server sent.
-
-       15     FTP can't get host. Couldn't resolve the host IP we got  in  the
-	      227-line.
-
-       16     HTTP/2 error. A problem was detected in the HTTP2 framing layer.
-	      This is somewhat generic and can be one out of several problems,
-	      see the error message for details.
-
-       17     FTP  couldn't  set  binary.  Couldn't  change transfer method to
-	      binary.
-
-       18     Partial file. Only a part of the file was transferred.
-
-       19     FTP couldn't download/access the given file, the RETR (or  simi-
-	      lar) command failed.
-
-       21     FTP quote error. A quote command returned error from the server.
-
-       22     HTTP page not retrieved. The requested  url  was	not  found  or
-	      returned	another  error	with  the HTTP error code being 400 or
-	      above. This return code only appears if -f, --fail is used.
-
-       23     Write error. Curl couldn't write data to a local	filesystem  or
-	      similar.
-
-       25     FTP  couldn't  STOR  file. The server denied the STOR operation,
-	      used for FTP uploading.
-
-       26     Read error. Various reading problems.
-
-       27     Out of memory. A memory allocation request failed.
-
-       28     Operation timeout. The specified	time-out  period  was  reached
-	      according to the conditions.
-
-       30     FTP  PORT  failed.  The PORT command failed. Not all FTP servers
-	      support the PORT	command,  try  doing  a  transfer  using  PASV
-	      instead!
-
-       31     FTP  couldn't use REST. The REST command failed. This command is
-	      used for resumed FTP transfers.
-
-       33     HTTP range error. The range "command" didn't work.
-
-       34     HTTP post error. Internal post-request generation error.
-
-       35     SSL connect error. The SSL handshaking failed.
-
-       36     Bad download resume. Couldn't continue an earlier aborted  down-
-	      load.
-
-       37     FILE couldn't read file. Failed to open the file. Permissions?
-
-       38     LDAP cannot bind. LDAP bind operation failed.
-
-       39     LDAP search failed.
-
-       41     Function not found. A required LDAP function was not found.
-
-       42     Aborted by callback. An application told curl to abort the oper-
-	      ation.
-
-       43     Internal error. A function was called with a bad parameter.
-
-       45     Interface error. A specified outgoing  interface	could  not  be
-	      used.
-
-       47     Too many redirects. When following redirects, curl hit the maxi-
-	      mum amount.
-
-       48     Unknown option specified to libcurl.  This  indicates  that  you
-	      passed  a weird option to curl that was passed on to libcurl and
-	      rejected. Read up in the manual!
-
-       49     Malformed telnet option.
-
-       51     The peer's SSL certificate or SSH MD5 fingerprint was not OK.
-
-       52     The server didn't reply anything, which here  is	considered  an
-	      error.
-
-       53     SSL crypto engine not found.
-
-       54     Cannot set SSL crypto engine as default.
-
-       55     Failed sending network data.
-
-       56     Failure in receiving network data.
-
-       58     Problem with the local certificate.
-
-       59     Couldn't use specified SSL cipher.
-
-       60     Peer  certificate cannot be authenticated with known CA certifi-
-	      cates.
-
-       61     Unrecognized transfer encoding.
-
-       62     Invalid LDAP URL.
-
-       63     Maximum file size exceeded.
-
-       64     Requested FTP SSL level failed.
-
-       65     Sending the data requires a rewind that failed.
-
-       66     Failed to initialise SSL Engine.
-
-       67     The user name, password, or similar was not  accepted  and  curl
-	      failed to log in.
-
-       68     File not found on TFTP server.
-
-       69     Permission problem on TFTP server.
-
-       70     Out of disk space on TFTP server.
-
-       71     Illegal TFTP operation.
-
-       72     Unknown TFTP transfer ID.
-
-       73     File already exists (TFTP).
-
-       74     No such user (TFTP).
-
-       75     Character conversion failed.
-
-       76     Character conversion functions required.
-
-       77     Problem with reading the SSL CA cert (path? access rights?).
-
-       78     The resource referenced in the URL does not exist.
-
-       79     An unspecified error occurred during the SSH session.
-
-       80     Failed to shut down the SSL connection.
-
-       82     Could  not  load	CRL  file,  missing  or wrong format (added in
-	      7.19.0).
-
-       83     Issuer check failed (added in 7.19.0).
-
-       84     The FTP PRET command failed
-
-       85     RTSP: mismatch of CSeq numbers
-
-       86     RTSP: mismatch of Session Identifiers
-
-       87     unable to parse FTP file list
-
-       88     FTP chunk callback reported error
-
-       89     No connection available, the session will be queued
-
-       90     SSL public key does not matched pinned public key
Index: Validate External Links/http_codes.txt
===================================================================
--- Validate External Links/http_codes.txt	(revision 1138)
+++ 	(revision )
@@ -1,77 +1,0 @@
-==HTTP Response Status Code Reference==
-For use with ValExtLinks script (http://wiki.oni2.net/ValExtLinks).
-Only codes understood by ValExtLinks are listed here.
-Source: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
-
-
---2xx: Success--
-This class of status codes indicates the action requested by the client was received, understood, accepted, and processed successfully.
-
-200 OK
-    Standard response for successful HTTP requests.
-
-
---3xx: Redirection--
-This class of status code indicates the client must take additional action to complete the request. Many of these status codes are used in URL redirection.
-
-301 Moved Permanently
-    This and all future requests should be directed to the given URI.
-
-302 Found
-    This is an example of industry practice contradicting the standard. The HTTP/1.0 specification required the client to perform a temporary redirect (the original describing phrase was "Moved Temporarily"), but popular browsers implemented 302 with the functionality of a 303 See Other. Therefore, HTTP/1.1 added status codes 303 and 307 to distinguish between the two behaviors. However, some Web applications and frameworks use the 302 status code as if it were the 303.
-
-303 See Other
-    The response to the request can be found under another URI using a GET method.
-
-307 Temporary Redirect
-    The request should be repeated with another URI; however, future requests should still use the original URI.
-
-308 Permanent Redirect
-    The request and all future requests should be repeated using another URI.
-
-
---4xx: Client Errors--
-The 4xx class of status codes is intended for situations in which the client seems to have erred.
-
-400 Bad Request
-    The server cannot or will not process the request due to an apparent client error (e.g., malformed request syntax).
-
-401 Unauthorized
-    Similar to 403 Forbidden, but specifically for use when authentication is required and has failed or has not yet been provided.
-
-403 Forbidden
-    The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource.
-
-404 Not Found
-    The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible.
-
-405 Method Not Allowed
-    A request method is not supported for the requested resource; for example, a GET request on a form that requires data to be presented via POST, or a PUT request on a read-only resource.
-
-406 Not Acceptable
-    The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.
-
-410 Gone
-    Indicates that the resource requested is no longer available and will not be available again. This should be used when a resource has been intentionally removed and the resource should be purged. Upon receiving a 410 status code, the client should not request the resource in the future.
-
-418 I'm a teapot
-    This is a joke response code used by some sites. Probably equivalent to a 200.
-
-
---5xx: Server Errors--
-The server failed to fulfill an apparently valid request.
-
-500 Internal Server Error
-    A generic error message, given when an unexpected condition was encountered and no more specific message is suitable.
-
-501 Not Implemented
-    The server either does not recognize the request method, or it lacks the ability to fulfill the request. Usually this implies future availability (e.g., a new feature of a web-service API).
-
-502 Bad Gateway
-    The server was acting as a gateway or proxy and received an invalid response from the upstream server.
-
-503 Service Unavailable
-    The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state.
-
-530 Site is frozen
-    Some Internet companies use this to indicate that a site is down, but usage is non-standard, so the site will have to be tried again later to see if the outage is due to a frozen account or something else.
Index: Validate External Links/print_agent.php
===================================================================
--- Validate External Links/print_agent.php	(revision 1138)
+++ 	(revision )
@@ -1,3 +1,0 @@
-<?php
-echo $_SERVER['HTTP_USER_AGENT'];
-?>
Index: Validate External Links/validate_external_links.command
===================================================================
--- Validate External Links/validate_external_links.command	(revision 1139)
+++ Validate External Links/validate_external_links.command	(revision 1139)
@@ -0,0 +1,37 @@
+#!/bin/bash
+
+# Runs the Validate External Links script
+# Arguments: --help, --links URL, --exceptions URL, --output DIR, --record-ok-links, --show-added-slashes,
+# --show-https-upgrades, --show-yt-redirects, --suggest-snapshots, --skip-archive-links, --take-screenshots FILE,
+# --timeout NUM, --start-url NUM, --end-url NUM, --upload FILE
+# Recommended rule:
+# |----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ---|
+
+# Set variables for any arguments we might use below
+VALEXTLINKS="/path/to/Validate External Links/validate_external_links.sh"
+LINKS_LOCAL="file:///path/to/Validate External Links/Sample files/extlinks.csv"
+LINKS_ONLINE="https://wiki.oni2.net/w/extlinks.csv"
+EXCEPT_LOCAL="file:///path/to/Validate External Links/exceptions.txt"
+EXCEPT_ONLINE="https://wiki.oni2.net/Validate_External_Links/Exceptions"
+REPORT_DIR="/path/to/where/you/want/Val Reports"
+UPLOAD_INFO="/path/to/Validate External Links/sftp_login.txt"
+CHROME="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
+
+
+# Run with end URL, record OK codes, and don't upload
+#bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots --end-url 70
+
+# Run with start/end URLs, record OK codes, and don't upload
+#bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots --start-url 1920 --end-url 1930
+
+# Run with local extlinks and exceptions, start/end URLs, record OK codes, and don't upload
+#bash "$VALEXTLINKS" --links "$LINKS_LOCAL" --exceptions "$EXCEPT_LOCAL" --output "$REPORT_DIR" --record-ok-links --suggest-snapshots --skip-archive-links --start-url 1 --end-url 25
+
+# Run with unfinished screenshot feature, no upload
+#bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --record-ok-links --take-screenshots "$CHROME"
+
+# Normal run with no upload
+#bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --suggest-snapshots --skip-archive-links --timeout 20
+
+# Normal run
+bash "$VALEXTLINKS" --links "$LINKS_ONLINE" --exceptions "$EXCEPT_ONLINE" --output "$REPORT_DIR" --suggest-snapshots --skip-archive-links --timeout 20 --upload "$UPLOAD_INFO"
