WPBruiser {no- Captcha anti-Spam} - Version 3.0.5

Version Description

  • Fixed JavaScript error - thanks to James Revillini Uncaught TypeError: Cannot read property 'call' of undefined
Download this release

Release Info

Developer mihche
Plugin Icon 128x128 WPBruiser {no- Captcha anti-Spam}
Version 3.0.5
Comparing to
See all releases

Code changes from version 2.2.2 to 3.0.5

Files changed (85) hide show
  1. assets/admin/images/fscf-logo-128x128.png +0 -0
  2. assets/admin/images/gravity-forms-logo-128x128.png +0 -0
  3. assets/admin/images/memberpress-logo-128x128.png +0 -0
  4. assets/admin/images/ninja-forms-logo-128x128.png +0 -0
  5. assets/admin/images/upme-logo-128x128.png +0 -0
  6. assets/admin/images/userpro-logo-128x128.png +0 -0
  7. assets/admin/images/wpbr-logo.png +0 -0
  8. assets/admin/scripts/multiselect.min.js +10 -0
  9. assets/admin/styles/gdbc-admin.css +60 -4
  10. assets/public/scripts/gdbc-client-new.js.php +144 -0
  11. assets/public/scripts/gdbc-refresh-tokens.js +1 -0
  12. engine/GdbcAjaxController.php +27 -11
  13. engine/GdbcBruteGuardian.php +22 -15
  14. engine/GdbcIPUtils.php +13 -0
  15. engine/GdbcModulesController.php +343 -324
  16. engine/GdbcRequestController.php +6 -11
  17. engine/GdbcUpdatesController.php +29 -0
  18. engine/GoodByeCaptchaAdmin.php +47 -47
  19. engine/GoodByeCaptchaPublic.php +54 -38
  20. engine/GoodByeCaptchaUtils.php +23 -4
  21. engine/admin/GdbcAdminNotice.php +0 -3
  22. engine/admin/pages/GdbcBaseAdminPage.php +198 -3
  23. engine/admin/pages/GdbcExtensionsAdminPage.php +54 -0
  24. engine/admin/pages/GdbcOthersAdminPage.php +5 -0
  25. engine/admin/pages/GdbcSecurityAdminPage.php +21 -0
  26. engine/admin/pages/templates/extensions-page.php +38 -0
  27. engine/db-access/GdbcDbAccessController.php +29 -0
  28. engine/modules/GdbcBaseAdminModule.php +3 -0
  29. engine/modules/GdbcBasePublicModule.php +41 -3
  30. engine/modules/black-listed-ips/partials/admin-settings.php +3 -2
  31. engine/modules/email-notifications/templates/notification-base-layout.html +2 -2
  32. engine/modules/licenses/GdbcLicensesAdminModule.php +183 -0
  33. engine/modules/licenses/GdbcLicensesPublicModule.php +42 -0
  34. engine/modules/reports/GdbcReportsAdminModule.php +10 -10
  35. engine/modules/settings/GdbcSettingsAdminModule.php +1 -0
  36. engine/modules/settings/GdbcSettingsPublicModule.php +1 -0
  37. engine/modules/ultimate-member/GdbcUltimateMemberPublicModule.php +16 -3
  38. engine/modules/white-listed-ips/partials/admin-settings.php +2 -2
  39. engine/modules/wordpress-tweaks/GdbcWordPressTweaksAdminModule.php +18 -6
  40. engine/modules/wordpress-tweaks/GdbcWordPressTweaksPublicModule.php +2 -2
  41. engine/modules/wordpress/GdbcWordPressAdminModule.php +180 -13
  42. engine/modules/wordpress/GdbcWordPressPublicModule.php +161 -50
  43. engine/modules/zm-ajax-login-register/GdbcZmAlrPublicModule.php +4 -1
  44. goodbye-captcha.php +12 -9
  45. includes/MchGdbcLibAutoloader.php +2 -2
  46. includes/modules/MchGdbcGroupedModules.php +17 -1
  47. includes/modules/MchGdbcModulesController.php +15 -6
  48. includes/plugin/MchGdbcBaseAdminPlugin.php +19 -2
  49. includes/plugin/MchGdbcBasePlugin.php +2 -4
  50. includes/plugin/MchGdbcPluginUpdater.php +1 -1
  51. includes/utils/MchGdbcIPUtils.php +20 -0
  52. includes/utils/MchGdbcUtils.php +94 -16
  53. includes/utils/MchGdbcWpUtils.php +13 -19
  54. includes/vendor/MchHttp/MchGdbcIpCountryLocator.php +147 -0
  55. includes/vendor/MchHttp/MchGdbcTrustedIPRanges.php +2 -2
  56. includes/vendor/MchHttp/MchGdbcUnTrustedIPRanges.php +645 -631
  57. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-0.php +1 -1
  58. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-1.php +1 -1
  59. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-10.php +1 -1
  60. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-11.php +1 -1
  61. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-12.php +1 -1
  62. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-13.php +1 -1
  63. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-14.php +1 -1
  64. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-15.php +1 -1
  65. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-16.php +1 -1
  66. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-17.php +1 -1
  67. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-18.php +1 -1
  68. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-19.php +1 -1
  69. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-2.php +1 -1
  70. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-20.php +1 -1
  71. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-21.php +1 -1
  72. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-22.php +1 -1
  73. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-23.php +1 -1
  74. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-24.php +1 -1
  75. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-25.php +1 -1
  76. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-26.php +1 -1
  77. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-27.php +1 -1
  78. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-28.php +1 -1
  79. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-29.php +1 -1
  80. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-3.php +1 -1
  81. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-30.php +1 -1
  82. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-31.php +1 -1
  83. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-32.php +1 -1
  84. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-33.php +1 -1
  85. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-34.php +1 -1
assets/admin/images/fscf-logo-128x128.png ADDED
Binary file
assets/admin/images/gravity-forms-logo-128x128.png ADDED
Binary file
assets/admin/images/memberpress-logo-128x128.png ADDED
Binary file
assets/admin/images/ninja-forms-logo-128x128.png ADDED
Binary file
assets/admin/images/upme-logo-128x128.png ADDED
Binary file
assets/admin/images/userpro-logo-128x128.png ADDED
Binary file
assets/admin/images/wpbr-logo.png CHANGED
Binary file
assets/admin/scripts/multiselect.min.js ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * @license
3
+ *
4
+ * Multiselect v2.2.6
5
+ * http://crlcu.github.io/multiselect/
6
+ *
7
+ * Copyright (c) 2015 Adrian Crisan
8
+ * Licensed under the MIT license (https://github.com/crlcu/multiselect/blob/master/LICENSE)
9
+ */
10
+ if("undefined"==typeof jQuery)throw new Error("multiselect requires jQuery");!function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<7)throw new Error("multiselect requires jQuery version 1.7 or higher")}(jQuery),function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(t){"use strict";var e=function(t){function e(e,o){var i=e.prop("id");this.$left=e,this.$right=t(t(o.right).length?o.right:"#"+i+"_to"),this.actions={$leftAll:t(t(o.leftAll).length?o.leftAll:"#"+i+"_leftAll"),$rightAll:t(t(o.rightAll).length?o.rightAll:"#"+i+"_rightAll"),$leftSelected:t(t(o.leftSelected).length?o.leftSelected:"#"+i+"_leftSelected"),$rightSelected:t(t(o.rightSelected).length?o.rightSelected:"#"+i+"_rightSelected"),$undo:t(t(o.undo).length?o.undo:"#"+i+"_undo"),$redo:t(t(o.redo).length?o.redo:"#"+i+"_redo")},delete o.leftAll,delete o.leftSelected,delete o.right,delete o.rightAll,delete o.rightSelected,this.options={keepRenderingSort:o.keepRenderingSort,submitAllLeft:void 0!==o.submitAllLeft?o.submitAllLeft:!0,submitAllRight:void 0!==o.submitAllRight?o.submitAllRight:!0,search:o.search},delete o.keepRenderingSort,o.submitAllLeft,o.submitAllRight,o.search,this.callbacks=o,this.init()}return e.prototype={undoStack:[],redoStack:[],init:function(){var e=this;(e.$left.find("optgroup").length||e.$right.find("optgroup").length)&&(e.callbacks.sort=!1,e.options.search=!1),e.options.keepRenderingSort&&(e.skipInitSort=!0,e.callbacks.sort=function(e,o){return t(e).data("position")>t(o).data("position")?1:-1},e.$left.find("option").each(function(e,o){t(o).data("position",e)}),e.$right.find("option").each(function(e,o){t(o).data("position",e)})),"function"==typeof e.callbacks.startUp&&e.callbacks.startUp(e.$left,e.$right),e.skipInitSort||"function"!=typeof e.callbacks.sort||(e.$left.mSort(e.callbacks.sort),e.$right.each(function(o,i){t(i).mSort(e.callbacks.sort)})),e.options.search&&e.options.search.left&&(e.options.search.$left=t(e.options.search.left),e.$left.before(e.options.search.$left)),e.options.search&&e.options.search.right&&(e.options.search.$right=t(e.options.search.right),e.$right.before(t(e.options.search.$right))),e.events()},events:function(){var e=this;e.options.search&&e.options.search.$left&&e.options.search.$left.on("keyup",function(t){if(this.value){e.$left.find('option:search("'+this.value+'")').mShow(),e.$left.find('option:not(:search("'+this.value+'"))').mHide()}else e.$left.find("option").mShow()}),e.options.search&&e.options.search.$right&&e.options.search.$right.on("keyup",function(t){if(this.value){e.$right.find('option:search("'+this.value+'")').mShow(),e.$right.find('option:not(:search("'+this.value+'"))').mHide()}else e.$right.find("option").mShow()}),e.$right.closest("form").on("submit",function(t){e.$left.find("option").prop("selected",e.options.submitAllLeft),e.$right.find("option").prop("selected",e.options.submitAllRight)}),e.$left.on("dblclick","option",function(t){t.preventDefault();var o=e.$left.find("option:selected");o.length&&e.moveToRight(o,t)}),e.$right.on("dblclick","option",function(t){t.preventDefault();var o=e.$right.find("option:selected");o.length&&e.moveToLeft(o,t)}),(navigator.userAgent.match(/MSIE/i)||navigator.userAgent.indexOf("Trident/")>0||navigator.userAgent.indexOf("Edge/")>0)&&(e.$left.dblclick(function(t){e.actions.$rightSelected.trigger("click")}),e.$right.dblclick(function(t){e.actions.$leftSelected.trigger("click")})),e.actions.$rightSelected.on("click",function(o){o.preventDefault();var i=e.$left.find("option:selected");i.length&&e.moveToRight(i,o),t(this).blur()}),e.actions.$leftSelected.on("click",function(o){o.preventDefault();var i=e.$right.find("option:selected");i.length&&e.moveToLeft(i,o),t(this).blur()}),e.actions.$rightAll.on("click",function(o){o.preventDefault();var i=e.$left.children(":not(span):not(.hidden)");i.length&&e.moveToRight(i,o),t(this).blur()}),e.actions.$leftAll.on("click",function(o){o.preventDefault();var i=e.$right.children(":not(span):not(.hidden)");i.length&&e.moveToLeft(i,o),t(this).blur()}),e.actions.$undo.on("click",function(t){t.preventDefault(),e.undo(t)}),e.actions.$redo.on("click",function(t){t.preventDefault(),e.redo(t)})},moveToRight:function(e,o,i,n){var r=this;return"function"==typeof r.callbacks.moveToRight?r.callbacks.moveToRight(r,e,o,i,n):"function"!=typeof r.callbacks.beforeMoveToRight||i||r.callbacks.beforeMoveToRight(r.$left,r.$right,e)?(e.each(function(e,o){var i=t(o);if(i.parent().is("optgroup")){var n=i.parent(),l=r.$right.find('optgroup[label="'+n.prop("label")+'"]');l.length||(l=n.clone(),l.children().remove()),i=l.append(i),n.removeIfEmpty()}r.$right.move(i)}),n||(r.undoStack.push(["right",e]),r.redoStack=[]),"function"!=typeof r.callbacks.sort||i||r.$right.mSort(r.callbacks.sort),"function"!=typeof r.callbacks.afterMoveToRight||i||r.callbacks.afterMoveToRight(r.$left,r.$right,e),r):!1},moveToLeft:function(e,o,i,n){var r=this;return"function"==typeof r.callbacks.moveToLeft?r.callbacks.moveToLeft(r,e,o,i,n):"function"!=typeof r.callbacks.beforeMoveToLeft||i||r.callbacks.beforeMoveToLeft(r.$left,r.$right,e)?(e.each(function(e,o){var i=t(o);if(i.is("optgroup")||i.parent().is("optgroup")){var n=i.is("optgroup")?i:i.parent(),l=r.$left.find('optgroup[label="'+n.prop("label")+'"]');l.length||(l=n.clone(),l.children().remove()),i=l.append(i.is("optgroup")?i.children():i),n.removeIfEmpty()}r.$left.move(i)}),n||(r.undoStack.push(["left",e]),r.redoStack=[]),"function"!=typeof r.callbacks.sort||i||r.$left.mSort(r.callbacks.sort),"function"!=typeof r.callbacks.afterMoveToLeft||i||r.callbacks.afterMoveToLeft(r.$left,r.$right,e),r):!1},undo:function(t){var e=this,o=e.undoStack.pop();if(o)switch(e.redoStack.push(o),o[0]){case"left":e.moveToRight(o[1],t,!1,!0);break;case"right":e.moveToLeft(o[1],t,!1,!0)}},redo:function(t){var e=this,o=e.redoStack.pop();if(o)switch(e.undoStack.push(o),o[0]){case"left":e.moveToLeft(o[1],t,!1,!0);break;case"right":e.moveToRight(o[1],t,!1,!0)}}},e}(t);t.multiselect={defaults:{startUp:function(t,e){e.find("option").each(function(e,o){var i=t.find('option[value="'+o.value+'"]'),n=i.parent();i.remove(),"OPTGROUP"==n.prop("tagName")&&n.removeIfEmpty()})},beforeMoveToRight:function(t,e,o){return!0},afterMoveToRight:function(t,e,o){},beforeMoveToLeft:function(t,e,o){return!0},afterMoveToLeft:function(t,e,o){},sort:function(t,e){return"NA"==t.innerHTML?1:"NA"==e.innerHTML?-1:t.innerHTML>e.innerHTML?1:-1}}};var o=window.navigator.userAgent,i=o.indexOf("MSIE ")+o.indexOf("Trident/")+o.indexOf("Edge/")>-3;t.fn.multiselect=function(o){return this.each(function(){var i=t(this),n=i.data(),r=t.extend({},t.multiselect.defaults,n,o);return new e(i,r)})},t.fn.move=function(t){return this.append(t).find("option").prop("selected",!1),this},t.fn.removeIfEmpty=function(){return this.children().length||this.remove(),this},t.fn.mShow=function(){return this.removeClass("hidden").show(),i&&this.each(function(e,o){t(o).parent().is("span")&&t(o).parent().replaceWith(o),t(o).show()}),this},t.fn.mHide=function(){return this.addClass("hidden").hide(),i&&this.each(function(e,o){t(o).parent().is("span")||t(o).wrap("<span>").hide()}),this},t.fn.mSort=function(t){return this.find("option").sort(t).appendTo(this),this},t.expr[":"].search=t.expr.createPseudo(function(e){return function(o){return t(o).text().toUpperCase().indexOf(e.toUpperCase())>=0}})});
assets/admin/styles/gdbc-admin.css CHANGED
@@ -678,6 +678,10 @@ input[type="checkbox"], input[type="radio"] {
678
  {
679
  display:none;
680
  }
 
 
 
 
681
 
682
  .text-center
683
  {
@@ -773,20 +777,30 @@ div.gdbcwidget ul.pagination a:hover
773
  background-color: #f9f9f9 !important;
774
  }
775
 
776
- #gdbc-help-metabox .inside div
777
  {
778
- margin: 10px auto 0;
779
  padding:10px;
780
  text-align: center;
781
- background-color: #ABABAB !important;
782
  }
783
 
784
- #gdbc-help-metabox .contact-help {
 
785
  display:block;
786
  text-align: center;
787
  border-top: 1px solid #ccc;
788
  padding-top:10px;
789
  }
 
 
 
 
 
 
 
 
 
 
 
790
 
791
  #wpbr-help-logo-holder
792
  {}
@@ -869,4 +883,46 @@ div.wpbr-about
869
  div.wp-bruiser-welcome.about-wrap
870
  {
871
  margin:25px 40px 0px 20px !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
872
  }
678
  {
679
  display:none;
680
  }
681
+ .gdbc-settings .meta-box-sortables
682
+ {
683
+ min-height: 0 !important;
684
+ }
685
 
686
  .text-center
687
  {
777
  background-color: #f9f9f9 !important;
778
  }
779
 
780
+ #gdbc-help-metabox .inside div, #gdbc-available-extension-metabox .inside div
781
  {
 
782
  padding:10px;
783
  text-align: center;
 
784
  }
785
 
786
+ #gdbc-help-metabox .contact-help , #gdbc-available-extension-metabox .contact-help
787
+ {
788
  display:block;
789
  text-align: center;
790
  border-top: 1px solid #ccc;
791
  padding-top:10px;
792
  }
793
+ #gdbc-available-extension-metabox img
794
+ {
795
+ width: 128px;
796
+ height: 128px;
797
+ padding-top: 5px;
798
+ }
799
+
800
+ #gdbc-available-extension-metabox div.inside h3
801
+ {
802
+ padding: 5px 0 0 !important;
803
+ }
804
 
805
  #wpbr-help-logo-holder
806
  {}
883
  div.wp-bruiser-welcome.about-wrap
884
  {
885
  margin:25px 40px 0px 20px !important;
886
+ }
887
+
888
+
889
+ #wpbruiser_page_wp-bruiser-wordpress-group-0 table.form-table th
890
+ {
891
+ width:300px !important;
892
+ }
893
+
894
+ #wpbruiser_page_wp-bruiser-wordpress-group-0 table.form-table input[type="text"]
895
+ {
896
+ width: 100px;
897
+ }
898
+
899
+ #gdbcwordpress-settings-CommentsActivated
900
+ {
901
+ margin-bottom: 10px;
902
+ }
903
+
904
+
905
+ div.wp-bruiser-extensions .plugin-card .desc
906
+ {
907
+ margin-right: 0 !important;
908
+ margin-top:10px !important;
909
+ }
910
+ div.wp-bruiser-extensions .plugin-card .name
911
+ {
912
+ margin-top:10px !important;
913
+ }
914
+
915
+ div.wp-bruiser-extensions .plugin-card .action-links
916
+ {
917
+ top:25px !important;
918
+ }
919
+ div.wp-bruiser-extensions .plugin-card li a:hover
920
+ {
921
+ color:#0073aa !important;
922
+ }
923
+
924
+ div.wp-bruiser-extensions p.authors
925
+ {
926
+ position:absolute;
927
+ top:118px;
928
  }
assets/public/scripts/gdbc-client-new.js.php ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright (C) 2014 Mihai Chelaru
4
+ *
5
+ * This program is free software; you can redistribute it and/or
6
+ * modify it under the terms of the GNU General Public License
7
+ * as published by the Free Software Foundation; either version 2
8
+ * of the License, or (at your option) any later version.
9
+ *
10
+ * This program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ * GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public License
16
+ * along with this program; if not, write to the Free Software
17
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
+ */
19
+
20
+ defined( 'ABSPATH' ) || exit;
21
+
22
+ function gdbcRewriteNoCacheHeaders($arrHeaders)
23
+ {
24
+ $arrHeaders['Cache-Control'] = 'no-store, no-cache, must-revalidate, max-age=0';
25
+ $arrHeaders['Content-Type'] = 'application/javascript; charset=utf-8';
26
+
27
+ return $arrHeaders;
28
+ }
29
+
30
+ add_filter('nocache_headers', 'gdbcRewriteNoCacheHeaders', 1);
31
+
32
+ nocache_headers();
33
+
34
+
35
+ if(null === ($settingsModuleInstance = GdbcModulesController::getPublicModuleInstance(GdbcModulesController::MODULE_SETTINGS))){
36
+ exit;
37
+ }
38
+
39
+ $hiddenInputName = $settingsModuleInstance->getOption(GdbcSettingsAdminModule::OPTION_HIDDEN_INPUT_NAME);
40
+
41
+
42
+ ?>
43
+
44
+ (function() {'use strict';
45
+ if (!Array.isArray){Array.isArray = function(arg){return Object.prototype.toString.call(arg) === '[object Array]';};}
46
+ if (!String.prototype.trim){String.prototype.trim = function () {return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');};}
47
+
48
+ var WPBruiserClient = function(){
49
+ var browserInfo = new Array();
50
+ function init(){
51
+ var w=window,d=document,e=0,f=0;e|=w.ActiveXObject?1:0;e|=w.opera?2:0;e|=w.chrome?4:0;
52
+ e|='getBoxObjectFor' in d || 'mozInnerScreenX' in w?8:0;e|=('WebKitCSSMatrix' in w||'WebKitPoint' in w||'webkitStorageInfo' in w||'webkitURL' in w)?16:0;
53
+ e|=(e&16&&({}.toString).toString().indexOf("\n")===-1)?32:0;f|='sandbox' in d.createElement('iframe')?1:0;f|='WebSocket' in w?2:0;
54
+ f|=w.Worker?4:0;f|=w.applicationCache?8:0;f|=w.history && history.pushState?16:0;f|=d.documentElement.webkitRequestFullScreen?32:0;f|='FileReader' in w?64:0;
55
+
56
+ var ua = navigator.userAgent.toLowerCase();
57
+ var regex = /compatible; ([\w.+]+)[ \/]([\w.+]*)|([\w .+]+)[: \/]([\w.+]+)|([\w.+]+)/g;
58
+ var match = regex.exec(ua);
59
+ browserInfo = {screenWidth:screen.width,screenHeight:screen.height,engine:e,features:f};
60
+ while (match !== null) {
61
+ var prop = {};
62
+ if (match[1]) {
63
+ prop.type = match[1];
64
+ prop.version = match[2];
65
+ } else if (match[3]) {
66
+ prop.type = match[3];
67
+ prop.version = match[4];
68
+ } else {
69
+ prop.type = match[5];
70
+ }
71
+ prop.type = (prop.type).trim().replace('.','').replace(' ','_');
72
+ var value = prop.version ? prop.version : true;
73
+ if (browserInfo[prop.type]) {
74
+ !Array.isArray(browserInfo[prop.type])?browserInfo[prop.type]=new Array(browserInfo[prop.type]):'';
75
+ browserInfo[prop.type].push(value);
76
+ }
77
+ else browserInfo[prop.type] = value;
78
+ match = regex.exec(ua);
79
+ }
80
+ };
81
+
82
+ var requestTokens = function(){for(var i = 0; i < document.forms.length; ++i){retrieveToken(document.forms[i]);}};
83
+
84
+ function retrieveToken(formElement){
85
+
86
+ var requestObj = (window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP"));
87
+
88
+ var formFieldElm = formElement.querySelector('input[name="<?php echo $hiddenInputName; ?>"]');
89
+ if(!requestObj || !formFieldElm) return;
90
+ var ajaxData = {};
91
+
92
+ ajaxData[<?php echo "'$hiddenInputName'"; ?>] = '<?php echo GdbcAjaxController::getAjaxNonce(); ?>';
93
+ ajaxData['action'] = '<?php echo GdbcAjaxController::ACTION_RETRIEVE_TOKEN ?>';
94
+ ajaxData['requestTime'] = (new Date()).getTime();
95
+ ajaxData['browserInfo'] = JSON.stringify(browserInfo);
96
+
97
+ requestObj.open('POST', '<?php echo MchGdbcWpUtils::getAjaxUrl() ?>', true);
98
+ requestObj.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF-8");
99
+ requestObj.setRequestHeader("X-Requested-With", "XMLHttpRequest");
100
+ requestObj.setRequestHeader('Accept',"application/json, text/javascript, */*; q=0.01");
101
+ requestObj.send(serializeObject(ajaxData));
102
+
103
+ requestObj.onreadystatechange = function () {
104
+ if (4 === requestObj.readyState && 200 === requestObj.status){
105
+ try
106
+ {
107
+ var rs = JSON.parse(requestObj.responseText);
108
+ if(rs.data !== 'undefined')
109
+ for(var p in rs.data){
110
+ if(p=='token'){
111
+ formFieldElm.value = rs.data[p];
112
+ }
113
+ else {
114
+ var value = '', arrValues = rs.data[p].split('|');
115
+ for (var i = 0; i < arrValues.length; ++i) {
116
+ if (browserInfo.hasOwnProperty(arrValues[i]))
117
+ value += browserInfo[arrValues[i]];
118
+ }
119
+ var elm = document.createElement("input");elm.name = p;elm.value=value;elm.type='hidden';formElement.appendChild(elm);
120
+ }
121
+ }
122
+
123
+ }
124
+ catch(e){console.log(e.message);}
125
+ }
126
+ }
127
+ }
128
+
129
+ init();
130
+
131
+ function serializeObject(obj) {
132
+ var str = [];
133
+ for(var p in obj)
134
+ if (obj.hasOwnProperty(p)) {
135
+ str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
136
+ }
137
+ return str.join("&");
138
+ }
139
+ return {requestTokens : requestTokens};
140
+ }
141
+
142
+ window.WPBruiserClient = new WPBruiserClient();window.WPBruiserClient.requestTokens();
143
+
144
+ })();
assets/public/scripts/gdbc-refresh-tokens.js ADDED
@@ -0,0 +1 @@
 
1
+ if(typeof window.WPBruiserClient!=='undefined'){window.WPBruiserClient.requestTokens();}
engine/GdbcAjaxController.php CHANGED
@@ -45,14 +45,16 @@ final class GdbcAjaxController
45
  if( ! did_action ('plugins_loaded') )
46
  return;
47
 
48
- foreach(array(
49
-
50
- GdbcModulesController::MODULE_MAIL_CHIMP_FOR_WP,
51
- GdbcModulesController::MODULE_ZM_ALR,
52
- GdbcModulesController::MODULE_NINJA_FORMS,
53
- GdbcModulesController::MODULE_USER_PRO,
54
- GdbcModulesController::MODULE_EASY_FORMS_FOR_MAILCHIMP,
55
 
 
 
 
 
 
 
 
 
 
56
  ) as $moduleName){
57
 
58
  if(null === ($publicModuleInstance = GdbcModulesController::getPublicModuleInstance($moduleName)))
@@ -62,6 +64,16 @@ final class GdbcAjaxController
62
  }
63
 
64
 
 
 
 
 
 
 
 
 
 
 
65
  if(self::isAdminAjaxRequestValid())
66
  {
67
  $arrAjaxAdminReportsActions = array(
@@ -97,10 +109,6 @@ final class GdbcAjaxController
97
  GdbcLicensesAdminModule::getInstance()->registerAttachedHooks();
98
  }
99
 
100
- if(defined('LOGIN_WITH_AJAX_VERSION')) // Support for Login With Ajax Plugin
101
- {
102
- GdbcModulesController::getPublicModuleInstance(GdbcModulesController::MODULE_WORDPRESS)->registerAttachedHooks();
103
- }
104
  }
105
 
106
  public static function userSubscribedToNewsLetter()
@@ -110,6 +118,7 @@ final class GdbcAjaxController
110
 
111
  private static function clientCanRetrieveToken()
112
  {
 
113
  $settingsModuleInstance = GdbcModulesController::getPublicModuleInstance(GdbcModulesController::MODULE_SETTINGS);
114
  if(null === $settingsModuleInstance)
115
  return false;
@@ -120,6 +129,7 @@ final class GdbcAjaxController
120
  if(empty($_POST[$hiddenInputName]))
121
  return false;
122
 
 
123
  if(!isset($_SERVER['HTTP_ACCEPT']) || false === stripos($_SERVER['HTTP_ACCEPT'], 'json'))
124
  return false;
125
 
@@ -130,6 +140,7 @@ final class GdbcAjaxController
130
 
131
  ( !defined('LOGGED_IN_COOKIE') && function_exists('wp_cookie_constants') ) ? wp_cookie_constants() : null;
132
 
 
133
  if(!GoodByeCaptchaUtils::isValidReferer())
134
  return false;
135
 
@@ -144,6 +155,11 @@ final class GdbcAjaxController
144
  }
145
 
146
 
 
 
 
 
 
147
  private static function sendAjaxHeaders()
148
  {
149
  wp_magic_quotes();
45
  if( ! did_action ('plugins_loaded') )
46
  return;
47
 
 
 
 
 
 
 
 
48
 
49
+ foreach(array(
50
+ GdbcModulesController::MODULE_MAIL_CHIMP_FOR_WP,
51
+ GdbcModulesController::MODULE_MAIL_POET,
52
+ GdbcModulesController::MODULE_ZM_ALR,
53
+ GdbcModulesController::MODULE_NINJA_FORMS,
54
+ GdbcModulesController::MODULE_USER_PRO,
55
+ GdbcModulesController::MODULE_EASY_FORMS_FOR_MAILCHIMP,
56
+ GdbcModulesController::MODULE_ULTIMATE_MEMBER,
57
+ GdbcModulesController::MODULE_WOOCOMMERCE,
58
  ) as $moduleName){
59
 
60
  if(null === ($publicModuleInstance = GdbcModulesController::getPublicModuleInstance($moduleName)))
64
  }
65
 
66
 
67
+ if(self::isWpDiscuzPostCommentAjaxRequest()) // Support for wpDiscuz Plugin
68
+ {
69
+ GdbcModulesController::getPublicModuleInstance(GdbcModulesController::MODULE_WORDPRESS)->registerAttachedHooks();
70
+ }
71
+
72
+ if(defined('LOGIN_WITH_AJAX_VERSION'))// Support for Login With Ajax Plugin
73
+ {
74
+ GdbcModulesController::getPublicModuleInstance(GdbcModulesController::MODULE_WORDPRESS)->registerAttachedHooks();
75
+ }
76
+
77
  if(self::isAdminAjaxRequestValid())
78
  {
79
  $arrAjaxAdminReportsActions = array(
109
  GdbcLicensesAdminModule::getInstance()->registerAttachedHooks();
110
  }
111
 
 
 
 
 
112
  }
113
 
114
  public static function userSubscribedToNewsLetter()
118
 
119
  private static function clientCanRetrieveToken()
120
  {
121
+
122
  $settingsModuleInstance = GdbcModulesController::getPublicModuleInstance(GdbcModulesController::MODULE_SETTINGS);
123
  if(null === $settingsModuleInstance)
124
  return false;
129
  if(empty($_POST[$hiddenInputName]))
130
  return false;
131
 
132
+
133
  if(!isset($_SERVER['HTTP_ACCEPT']) || false === stripos($_SERVER['HTTP_ACCEPT'], 'json'))
134
  return false;
135
 
140
 
141
  ( !defined('LOGGED_IN_COOKIE') && function_exists('wp_cookie_constants') ) ? wp_cookie_constants() : null;
142
 
143
+
144
  if(!GoodByeCaptchaUtils::isValidReferer())
145
  return false;
146
 
155
  }
156
 
157
 
158
+ public static function isWpDiscuzPostCommentAjaxRequest()
159
+ {
160
+ return !empty($_POST['wpdiscuz_unique_id']) && !empty($_POST['postId']) && MchGdbcWpUtils::isAjaxRequest() && GoodByeCaptchaUtils::isWPDiscuzPluginActivated();
161
+ }
162
+
163
  private static function sendAjaxHeaders()
164
  {
165
  wp_magic_quotes();
engine/GdbcBruteGuardian.php CHANGED
@@ -26,8 +26,8 @@ final class GdbcBruteGuardian
26
  'index.html' => '',
27
  );
28
 
29
- private static $SITE_UNDER_ATTACK_FLAG = 'gdbc-under-attack-detected';
30
- private static $SITE_ATTACK_WARNING_FLAG = 'gdbc-suspicious-ips-detected';
31
 
32
  public static function startGuarding()
33
  {
@@ -37,6 +37,10 @@ final class GdbcBruteGuardian
37
  if( empty($_POST) )
38
  return;
39
 
 
 
 
 
40
  $loginAttemptsHits = 0;
41
  $arrLatestLoginAttempts = GdbcDbAccessController::getLatestLoginAttempts(60, false);
42
  foreach($arrLatestLoginAttempts as $index => $loginAttempt){
@@ -78,7 +82,6 @@ final class GdbcBruteGuardian
78
 
79
  }
80
 
81
-
82
  public static function isSiteUnderAttack()
83
  {
84
  static $siteUnderAttack = null;
@@ -114,7 +117,7 @@ final class GdbcBruteGuardian
114
  {
115
  $cacheHolder = GoodByeCaptchaUtils::getAvailableCacheStorage(self::getBaseCacheDirectoryPath());
116
  if(null === $cacheHolder)
117
- return ;
118
 
119
  if(false === $flagBooleanValue){
120
  return $cacheHolder->delete($flagName);
@@ -141,13 +144,13 @@ final class GdbcBruteGuardian
141
  if(false !== $cacheDirectoryPath)
142
  return $cacheDirectoryPath;
143
 
144
- $cacheDirectoryPath = GdbcSettingsPublicModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_CACHE_DIR_PATH);
145
- if(!empty($cacheDirectoryPath)){
146
- $cacheDirectoryPath .= DIRECTORY_SEPARATOR . GoodByeCaptcha::PLUGIN_SLUG . DIRECTORY_SEPARATOR . get_current_blog_id();
147
- if(MchGdbcWpUtils::isDirectoryUsable($cacheDirectoryPath, true)){
148
- return $cacheDirectoryPath;
149
- }
150
- }
151
 
152
  $cacheDirectoryPath = MchGdbcWpUtils::getDirectoryPathForCache();
153
  if(null === $cacheDirectoryPath)
@@ -158,11 +161,17 @@ final class GdbcBruteGuardian
158
  return $cacheDirectoryPath = null;
159
  }
160
 
161
- GdbcSettingsAdminModule::getInstance()->saveOption(GdbcSettingsAdminModule::OPTION_CACHE_DIR_PATH, MchGdbcWpUtils::getDirectoryPathForCache());
162
 
163
  return $cacheDirectoryPath;
164
  }
165
 
 
 
 
 
 
 
166
  public static function logRejectedAttempt(GdbcAttemptEntity $attemptEntity)
167
  {
168
  if( ((int)GdbcSettingsPublicModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_MAX_LOGS_DAYS)) < 1 ) //logs are NOT enabled
@@ -172,11 +181,9 @@ final class GdbcBruteGuardian
172
  $attemptEntity->CreatedDate = MchGdbcHttpRequest::getServerRequestTime();
173
  $attemptEntity->ClientIp = GdbcIPUtils::getClientIpAddress();
174
 
175
-
176
- if( ((int)GdbcSettingsPublicModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_BLOCKED_CONTENT_LOG_DAYS)) < 1 ) //blocked content logs are NOT enabled
177
  $attemptEntity->Notes = null;
178
 
179
-
180
  GdbcDbAccessController::registerAttempt( $attemptEntity );
181
 
182
  // if(self::isSiteUnderAttack() && GoodByeCaptchaUtils::isLoginAttemptEntity($attemptEntity) && ( !GdbcIPUtils::isClientIpWhiteListed() )){
26
  'index.html' => '',
27
  );
28
 
29
+ private static $SITE_UNDER_ATTACK_FLAG = 'wpbr-uad'; //under-attack-detected
30
+ private static $SITE_ATTACK_WARNING_FLAG = 'wpbr-sid'; //suspicious-ips-detected
31
 
32
  public static function startGuarding()
33
  {
37
  if( empty($_POST) )
38
  return;
39
 
40
+ self::$SITE_UNDER_ATTACK_FLAG .= '-' . get_current_blog_id();
41
+ self::$SITE_ATTACK_WARNING_FLAG .= '-' . get_current_blog_id();
42
+
43
+
44
  $loginAttemptsHits = 0;
45
  $arrLatestLoginAttempts = GdbcDbAccessController::getLatestLoginAttempts(60, false);
46
  foreach($arrLatestLoginAttempts as $index => $loginAttempt){
82
 
83
  }
84
 
 
85
  public static function isSiteUnderAttack()
86
  {
87
  static $siteUnderAttack = null;
117
  {
118
  $cacheHolder = GoodByeCaptchaUtils::getAvailableCacheStorage(self::getBaseCacheDirectoryPath());
119
  if(null === $cacheHolder)
120
+ return;
121
 
122
  if(false === $flagBooleanValue){
123
  return $cacheHolder->delete($flagName);
144
  if(false !== $cacheDirectoryPath)
145
  return $cacheDirectoryPath;
146
 
147
+ // $cacheDirectoryPath = GdbcSettingsPublicModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_CACHE_DIR_PATH);
148
+ // if(!empty($cacheDirectoryPath)){
149
+ // $cacheDirectoryPath .= DIRECTORY_SEPARATOR . GoodByeCaptcha::PLUGIN_SLUG . DIRECTORY_SEPARATOR . get_current_blog_id();
150
+ // if(MchGdbcWpUtils::isDirectoryUsable($cacheDirectoryPath, true)){
151
+ // return $cacheDirectoryPath;
152
+ // }
153
+ // }
154
 
155
  $cacheDirectoryPath = MchGdbcWpUtils::getDirectoryPathForCache();
156
  if(null === $cacheDirectoryPath)
161
  return $cacheDirectoryPath = null;
162
  }
163
 
164
+ // GdbcSettingsAdminModule::getInstance()->saveOption(GdbcSettingsAdminModule::OPTION_CACHE_DIR_PATH, MchGdbcWpUtils::getDirectoryPathForCache());
165
 
166
  return $cacheDirectoryPath;
167
  }
168
 
169
+
170
+ public static function isFormEntryLogEnabled()
171
+ {
172
+ return (bool)GdbcSettingsPublicModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_BLOCKED_CONTENT_LOG_DAYS);
173
+ }
174
+
175
  public static function logRejectedAttempt(GdbcAttemptEntity $attemptEntity)
176
  {
177
  if( ((int)GdbcSettingsPublicModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_MAX_LOGS_DAYS)) < 1 ) //logs are NOT enabled
181
  $attemptEntity->CreatedDate = MchGdbcHttpRequest::getServerRequestTime();
182
  $attemptEntity->ClientIp = GdbcIPUtils::getClientIpAddress();
183
 
184
+ if(!self::isFormEntryLogEnabled()) //blocked content logs are NOT enabled
 
185
  $attemptEntity->Notes = null;
186
 
 
187
  GdbcDbAccessController::registerAttempt( $attemptEntity );
188
 
189
  // if(self::isSiteUnderAttack() && GoodByeCaptchaUtils::isLoginAttemptEntity($attemptEntity) && ( !GdbcIPUtils::isClientIpWhiteListed() )){
engine/GdbcIPUtils.php CHANGED
@@ -398,7 +398,20 @@ final class GdbcIPUtils
398
  }
399
 
400
 
 
 
 
 
401
 
 
 
 
 
 
 
 
 
 
402
 
403
  private function __construct(){}
404
  }
398
  }
399
 
400
 
401
+ public static function getCountryName($ipAddress)
402
+ {
403
+ return GoodByeCaptchaUtils::getCountryNameById(self::getCountryId($ipAddress));
404
+ }
405
 
406
+ public static function getCountryCode($ipAddress)
407
+ {
408
+ return GoodByeCaptchaUtils::getCountryCodeById(self::getCountryId($ipAddress));
409
+ }
410
+
411
+ public static function getCountryId($ipAddress)
412
+ {
413
+ return MchGdbcIpCountryLocator::getCountryIdByIpAddress($ipAddress);
414
+ }
415
 
416
  private function __construct(){}
417
  }
engine/GdbcModulesController.php CHANGED
@@ -62,342 +62,357 @@ final class GdbcModulesController
62
  CONST MODULE_LICENSES = 'Licenses';
63
  CONST MODULE_MEMBER_PRESS = 'MemberPress';
64
 
 
 
65
  CONST MODULE_EASY_FORMS_FOR_MAILCHIMP = 'EasyFormsForMailChimp';
66
 
67
  private static $arrRegisteredModules = null;
68
  private static $arrAllModules = array(
69
 
70
- self::MODULE_SETTINGS => array(
71
- 'info' => array(
72
- 'ModuleId' => 1,
73
- 'IsLicensed' => false,
74
- ),
75
- 'classes' => array(
76
- 'GdbcSettingsAdminModule' => '/modules/settings/GdbcSettingsAdminModule.php',
77
- 'GdbcSettingsPublicModule' => '/modules/settings/GdbcSettingsPublicModule.php',
78
- ),
79
- ),
80
-
81
- self::MODULE_WORDPRESS => array(
82
- 'info' => array(
83
- 'ModuleId' => 2,
84
- 'IsLicensed' => false,
85
- ),
86
- 'classes' => array(
87
- 'GdbcWordPressAdminModule' => '/modules/wordpress/GdbcWordPressAdminModule.php',
88
- 'GdbcWordPressPublicModule' => '/modules/wordpress/GdbcWordPressPublicModule.php',
89
- )
90
- ),
91
-
92
- self::MODULE_JETPACK_CONTACT_FORM => array(
93
- 'info' => array(
94
- 'ModuleId' => 3,
95
- 'IsLicensed' => false,
96
- ),
97
- 'classes' => array(
98
- 'GdbcJetPackContactFormAdminModule' => '/modules/jetpack-contact-form/GdbcJetPackContactFormAdminModule.php',
99
- 'GdbcJetPackContactFormPublicModule' => '/modules/jetpack-contact-form/GdbcJetPackContactFormPublicModule.php',
100
- )
101
- ),
102
-
103
- self::MODULE_NINJA_FORMS => array(
104
- 'info' => array(
105
- 'ModuleId' => 4,
106
- 'IsLicensed' => true,
107
- ),
108
- 'classes' => array(
109
- 'GdbcNinjaFormsAdminModule' => '/modules/ninja-forms/GdbcNinjaFormsAdminModule.php',
110
- 'GdbcNinjaFormsPublicModule' => '/modules/ninja-forms/GdbcNinjaFormsPublicModule.php',
111
- )
112
- ),
113
-
114
- self::MODULE_CONTACT_FORM_7 => array(
115
- 'info' => array(
116
- 'ModuleId' => 5,
117
- 'IsLicensed' => true,
118
- ),
119
- 'classes' => array(
120
- 'GdbcContactForm7AdminModule' => '/modules/contact-form-7/GdbcContactForm7AdminModule.php',
121
- 'GdbcContactForm7PublicModule' => '/modules/contact-form-7/GdbcContactForm7PublicModule.php',
122
- )
123
- ),
124
-
125
- self::MODULE_GRAVITY_FORMS => array(
126
- 'info' => array(
127
- 'ModuleId' => 6,
128
- 'IsLicensed' => true,
129
- ),
130
- 'classes' => array(
131
- 'GdbcGravityFormsAdminModule' => '/modules/gravity-forms/GdbcGravityFormsAdminModule.php',
132
- 'GdbcGravityFormsPublicModule' => '/modules/gravity-forms/GdbcGravityFormsPublicModule.php',
133
- )
134
- ),
135
-
136
- self::MODULE_FAST_SECURE_FORM => array(
137
- 'info' => array(
138
- 'ModuleId' => 7,
139
- 'IsLicensed' => true,
140
- ),
141
- 'classes' => array(
142
- 'GdbcFastSecureFormAdminModule' => '/modules/fast-secure-form/GdbcFastSecureFormAdminModule.php',
143
- 'GdbcFastSecureFormPublicModule' => '/modules/fast-secure-form/GdbcFastSecureFormPublicModule.php',
144
- )
145
- ),
146
-
147
- self::MODULE_FORMIDABLE_FORMS => array(
148
- 'info' => array(
149
- 'ModuleId' => 8,
150
- 'IsLicensed' => true,
151
- ),
152
- 'classes' => array(
153
- 'GdbcFormidableFormsAdminModule' => '/modules/formidable-forms/GdbcFormidableFormsAdminModule.php',
154
- 'GdbcFormidableFormsPublicModule' => '/modules/formidable-forms/GdbcFormidableFormsPublicModule.php',
155
- )
156
- ),
157
-
158
- self::MODULE_ULTIMATE_MEMBER => array(
159
- 'info' => array(
160
- 'ModuleId' => 9,
161
- 'IsLicensed' => false,
162
- ),
163
- 'classes' => array(
164
- 'GdbcUltimateMemberAdminModule' => '/modules/ultimate-member/GdbcUltimateMemberAdminModule.php',
165
- 'GdbcUltimateMemberPublicModule' => '/modules/ultimate-member/GdbcUltimateMemberPublicModule.php',
166
- )
167
- ),
168
-
169
- self::MODULE_BUDDY_PRESS => array(
170
- 'info' => array(
171
- 'ModuleId' => 10,
172
- 'IsLicensed' => true,
173
- ),
174
- 'classes' => array(
175
- 'GdbcBuddyPressAdminModule' => '/modules/buddy-press/GdbcBuddyPressAdminModule.php',
176
- 'GdbcBuddyPressPublicModule' => '/modules/buddy-press/GdbcBuddyPressPublicModule.php',
177
- )
178
- ),
179
-
180
- self::MODULE_BB_PRESS => array(
181
- 'info' => array(
182
- 'ModuleId' => 11,
183
- 'IsLicensed' => true,
184
- ),
185
- 'classes' => array(
186
- 'GdbcBbPressAdminModule' => '/modules/bb-press/GdbcBbPressAdminModule.php',
187
- 'GdbcBbPressPublicModule' => '/modules/bb-press/GdbcBbPressPublicModule.php',
188
- )
189
- ),
190
-
191
- self::MODULE_USER_PRO => array(
192
- 'info' => array(
193
- 'ModuleId' => 12,
194
- 'IsLicensed' => true,
195
- ),
196
- 'classes' => array(
197
- 'GdbcUserProAdminModule' => '/modules/user-pro/GdbcUserProAdminModule.php',
198
- 'GdbcUserProPublicModule' => '/modules/user-pro/GdbcUserProPublicModule.php',
199
- )
200
- ),
201
-
202
- self::MODULE_UPME => array(
203
- 'info' => array(
204
- 'ModuleId' => 13,
205
- 'IsLicensed' => true,
206
- ),
207
- 'classes' => array(
208
- 'GdbcUPMEAdminModule' => '/modules/upme/GdbcUPMEAdminModule.php',
209
- 'GdbcUPMEPublicModule' => '/modules/upme/GdbcUPMEPublicModule.php',
210
- )
211
- ),
212
-
213
- self::MODULE_MAIL_CHIMP_FOR_WP => array(
214
- 'info' => array(
215
- 'ModuleId' => 14,
216
- 'IsLicensed' => false,
217
- ),
218
- 'classes' => array(
219
- 'GdbcMailChimpForWpAdminModule' => '/modules/mc-for-wp/GdbcMailChimpForWpAdminModule.php',
220
- 'GdbcMailChimpForWpPublicModule' => '/modules/mc-for-wp/GdbcMailChimpForWpPublicModule.php',
221
- )
222
- ),
223
-
224
- self::MODULE_MAIL_POET => array(
225
- 'info' => array(
226
- 'ModuleId' => 15,
227
- 'IsLicensed' => true,
228
- ),
229
- 'classes' => array(
230
- 'GdbcMailPoetAdminModule' => '/modules/mail-poet/GdbcMailPoetAdminModule.php',
231
- 'GdbcMailPoetPublicModule' => '/modules/mail-poet/GdbcMailPoetPublicModule.php',
232
- )
233
- ),
234
-
235
- self::MODULE_WOOCOMMERCE => array(
236
- 'info' => array(
237
- 'ModuleId' => 16,
238
- 'IsLicensed' => true,
239
- ),
240
- 'classes' => array(
241
- 'GdbcWooCommerceAdminModule' => '/modules/woocommerce/GdbcWooCommerceAdminModule.php',
242
- 'GdbcWooCommercePublicModule' => '/modules/woocommerce/GdbcWooCommercePublicModule.php',
243
- )
244
- ),
245
-
246
-
247
- self::MODULE_REPORTS => array(
248
- 'info' => array(
249
- 'ModuleId' => 17,
250
- 'IsLicensed' => false,
251
- ),
252
- 'classes' => array(
253
- 'GdbcReportsAdminModule' => '/modules/reports/GdbcReportsAdminModule.php',
254
- 'GdbcReportsPublicModule' => '/modules/reports/GdbcReportsPublicModule.php',
255
- ),
256
- ),
257
-
258
- self::MODULE_BRUTE_FORCE => array(
259
- 'info' => array(
260
- 'ModuleId' => 18,
261
- 'IsLicensed' => false,
262
- ),
263
- 'classes' => array(
264
- 'GdbcBruteForceAdminModule' => '/modules/brute-force/GdbcBruteForceAdminModule.php',
265
- 'GdbcBruteForcePublicModule' => '/modules/brute-force/GdbcBruteForcePublicModule.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  ),
267
- ),
268
-
269
- self::MODULE_BLACK_LISTED_IPS => array(
270
- 'info' => array(
271
- 'ModuleId' => 19,
272
- 'IsLicensed' => false,
273
- ),
274
- 'classes' => array(
275
- 'GdbcBlackListedIpsAdminModule' => '/modules/black-listed-ips/GdbcBlackListedIpsAdminModule.php',
276
- 'GdbcBlackListedIpsPublicModule' => '/modules/black-listed-ips/GdbcBlackListedIpsPublicModule.php',
277
- ),
278
- ),
279
-
280
- self::MODULE_WHITE_LISTED_IPS => array(
281
- 'info' => array(
282
- 'ModuleId' => 20,
283
- 'IsLicensed' => false,
284
- ),
285
- 'classes' => array(
286
- 'GdbcWhiteListedIpsAdminModule' => '/modules/white-listed-ips/GdbcWhiteListedIpsAdminModule.php',
287
- 'GdbcWhiteListedIpsPublicModule' => '/modules/white-listed-ips/GdbcWhiteListedIpsPublicModule.php',
288
- ),
289
- ),
290
-
291
- self::MODULE_ZM_ALR => array(
292
- 'info' => array(
293
- 'ModuleId' => 21,
294
- 'IsLicensed' => false,
295
- ),
296
- 'classes' => array(
297
- 'GdbcZmAlrAdminModule' => '/modules/zm-ajax-login-register/GdbcZmAlrAdminModule.php',
298
- 'GdbcZmAlrPublicModule' => '/modules/zm-ajax-login-register/GdbcZmAlrPublicModule.php',
299
- ),
300
- ),
301
-
302
- self::MODULE_SEAMLESS_DONATIONS => array(
303
- 'info' => array(
304
- 'ModuleId' => 22,
305
- 'IsLicensed' => false,
306
- ),
307
- 'classes' => array(
308
- 'GdbcSeamlessDonationsAdminModule' => '/modules/seamless-donations/GdbcSeamlessDonationsAdminModule.php',
309
- 'GdbcSeamlessDonationsPublicModule' => '/modules/seamless-donations/GdbcSeamlessDonationsPublicModule.php',
310
- ),
311
- ),
312
-
313
- self::MODULE_WORDPRESS_TWEAKS => array(
314
- 'info' => array(
315
- 'ModuleId' => 23,
316
- 'IsLicensed' => false,
317
- ),
318
- 'classes' => array(
319
- 'GdbcWordPressTweaksAdminModule' => '/modules/wordpress-tweaks/GdbcWordPressTweaksAdminModule.php',
320
- 'GdbcWordPressTweaksPublicModule' => '/modules/wordpress-tweaks/GdbcWordPressTweaksPublicModule.php',
321
- ),
322
- ),
323
-
324
- self::MODULE_EMAIL_NOTIFICATIONS => array(
325
- 'info' => array(
326
- 'ModuleId' => 24,
327
- 'IsLicensed' => false,
328
- ),
329
- 'classes' => array(
330
- 'GdbcEmailNotificationsAdminModule' => '/modules/email-notifications/GdbcEmailNotificationsAdminModule.php',
331
- 'GdbcEmailNotificationsPublicModule' => '/modules/email-notifications/GdbcEmailNotificationsPublicModule.php',
332
- )
333
- ),
334
-
335
- self::MODULE_PLANSO_FORMS => array(
336
- 'info' => array(
337
- 'ModuleId' => 25,
338
- 'IsLicensed' => false,
339
- ),
340
- 'classes' => array(
341
- 'GdbcPlanSoFormsAdminModule' => '/modules/planso-forms/GdbcPlanSoFormsAdminModule.php',
342
- 'GdbcPlanSoFormsPublicModule' => '/modules/planso-forms/GdbcPlanSoFormsPublicModule.php',
343
- )
344
- ),
345
-
346
- self::MODULE_LICENSES => array(
347
- 'info' => array(
348
- 'ModuleId' => 26,
349
- 'IsLicensed' => true,
350
- ),
351
- 'classes' => array(
352
- 'GdbcLicensesAdminModule' => '/modules/licenses/GdbcLicensesAdminModule.php',
353
- 'GdbcLicensesPublicModule' => '/modules/licenses/GdbcLicensesPublicModule.php',
354
- )
355
- ),
356
-
357
- self::MODULE_MEMBER_PRESS => array(
358
- 'info' => array(
359
- 'ModuleId' => 27,
360
- 'IsLicensed' => true,
361
- ),
362
- 'classes' => array(
363
- 'GdbcMemberPressAdminModule' => '/modules/member-press/GdbcMemberPressAdminModule.php',
364
- 'GdbcMemberPressPublicModule' => '/modules/member-press/GdbcMemberPressPublicModule.php',
365
- )
366
- ),
367
-
368
- self::MODULE_EASY_FORMS_FOR_MAILCHIMP => array(
369
- 'info' => array(
370
- 'ModuleId' => 28,
371
- 'IsLicensed' => true,
372
- ),
373
- 'classes' => array(
374
- 'GdbcEasyFormsForMailChimpAdminModule' => '/modules/easy-forms-for-mailchimp/GdbcEasyFormsForMailChimpAdminModule.php',
375
- 'GdbcEasyFormsForMailChimpPublicModule' => '/modules/easy-forms-for-mailchimp/GdbcEasyFormsForMailChimpPublicModule.php',
376
- )
377
- ),
378
 
379
  );
380
 
381
 
382
- public static function getModuleDisplayName($moduleName)
383
  {
384
  switch ($moduleName)
385
  {
386
- case self::MODULE_BRUTE_FORCE : return __('Brute Force', GoodByeCaptcha::PLUGIN_SLUG);
387
- case self::MODULE_BUDDY_PRESS : return __('BuddyPress', GoodByeCaptcha::PLUGIN_SLUG);
388
- case self::MODULE_CONTACT_FORM_7 : return __('Contact Form 7', GoodByeCaptcha::PLUGIN_SLUG);
389
- case self::MODULE_FAST_SECURE_FORM : return __('Fast Secure Form', GoodByeCaptcha::PLUGIN_SLUG);
390
- case self::MODULE_FORMIDABLE_FORMS : return __('Formidable Forms', GoodByeCaptcha::PLUGIN_SLUG);
391
- case self::MODULE_GRAVITY_FORMS : return __('Gravity Forms', GoodByeCaptcha::PLUGIN_SLUG);
392
- case self::MODULE_JETPACK_CONTACT_FORM : return __('Jetpack Contact Form', GoodByeCaptcha::PLUGIN_SLUG);
393
- case self::MODULE_MAIL_CHIMP_FOR_WP : return __('MailChimp for WP', GoodByeCaptcha::PLUGIN_SLUG);
394
- case self::MODULE_MAIL_POET : return __('Mail Poet', GoodByeCaptcha::PLUGIN_SLUG);
395
- case self::MODULE_NINJA_FORMS : return __('Ninja Forms', GoodByeCaptcha::PLUGIN_SLUG);
396
- case self::MODULE_PLANSO_FORMS : return __('Planso Forms', GoodByeCaptcha::PLUGIN_SLUG);
397
- case self::MODULE_SEAMLESS_DONATIONS : return __('Seamless Donations', GoodByeCaptcha::PLUGIN_SLUG);
398
- case self::MODULE_ULTIMATE_MEMBER : return __('Ultimate Member', GoodByeCaptcha::PLUGIN_SLUG);
399
- case self::MODULE_USER_PRO : return __('User Pro', GoodByeCaptcha::PLUGIN_SLUG);
400
- case self::MODULE_EASY_FORMS_FOR_MAILCHIMP : return __('Easy Forms for MailChimp', GoodByeCaptcha::PLUGIN_SLUG);
 
 
401
  }
402
 
403
  return $moduleName;
@@ -421,7 +436,9 @@ final class GdbcModulesController
421
 
422
  $activatedPlugins = defined('WP_PLUGIN_DIR') ? array_merge( array_flip((array) get_option( 'active_plugins', array())), (array) get_site_option( 'active_sitewide_plugins', array() ) ) : array(); // wp_get_mu_plugins()
423
 
424
- unset($activatedPlugins['goodbye-captcha/goodbye-captcha.php']); // un-setting the plugin itself
 
 
425
 
426
  $engineDirPath = dirname(__FILE__) . DIRECTORY_SEPARATOR;
427
 
@@ -474,6 +491,7 @@ final class GdbcModulesController
474
 
475
  if(empty(self::$arrRegisteredModules[$moduleName]))
476
  unset(self::$arrRegisteredModules[$moduleName]);
 
477
  }
478
 
479
  }
@@ -669,4 +687,5 @@ final class GdbcModulesController
669
  }
670
 
671
  }
 
672
  }
62
  CONST MODULE_LICENSES = 'Licenses';
63
  CONST MODULE_MEMBER_PRESS = 'MemberPress';
64
 
65
+ CONST MODULE_GEO_IP_COUNTRY = 'GeoIpCountry';
66
+
67
  CONST MODULE_EASY_FORMS_FOR_MAILCHIMP = 'EasyFormsForMailChimp';
68
 
69
  private static $arrRegisteredModules = null;
70
  private static $arrAllModules = array(
71
 
72
+ self::MODULE_SETTINGS => array(
73
+ 'info' => array(
74
+ 'ModuleId' => 1,
75
+ 'IsLicensed' => false,
76
+ ),
77
+ 'classes' => array(
78
+ 'GdbcSettingsAdminModule' => '/modules/settings/GdbcSettingsAdminModule.php',
79
+ 'GdbcSettingsPublicModule' => '/modules/settings/GdbcSettingsPublicModule.php',
80
+ ),
81
+ ),
82
+
83
+ self::MODULE_WORDPRESS => array(
84
+ 'info' => array(
85
+ 'ModuleId' => 2,
86
+ 'IsLicensed' => false,
87
+ ),
88
+ 'classes' => array(
89
+ 'GdbcWordPressAdminModule' => '/modules/wordpress/GdbcWordPressAdminModule.php',
90
+ 'GdbcWordPressPublicModule' => '/modules/wordpress/GdbcWordPressPublicModule.php',
91
+ )
92
+ ),
93
+
94
+ self::MODULE_JETPACK_CONTACT_FORM => array(
95
+ 'info' => array(
96
+ 'ModuleId' => 3,
97
+ 'IsLicensed' => false,
98
+ ),
99
+ 'classes' => array(
100
+ 'GdbcJetPackContactFormAdminModule' => '/modules/jetpack-contact-form/GdbcJetPackContactFormAdminModule.php',
101
+ 'GdbcJetPackContactFormPublicModule' => '/modules/jetpack-contact-form/GdbcJetPackContactFormPublicModule.php',
102
+ )
103
+ ),
104
+
105
+ self::MODULE_NINJA_FORMS => array(
106
+ 'info' => array(
107
+ 'ModuleId' => 4,
108
+ 'IsLicensed' => true,
109
+ ),
110
+ 'classes' => array(
111
+ 'GdbcNinjaFormsAdminModule' => '/modules/ninja-forms/GdbcNinjaFormsAdminModule.php',
112
+ 'GdbcNinjaFormsPublicModule' => '/modules/ninja-forms/GdbcNinjaFormsPublicModule.php',
113
+ )
114
+ ),
115
+
116
+ self::MODULE_CONTACT_FORM_7 => array(
117
+ 'info' => array(
118
+ 'ModuleId' => 5,
119
+ 'IsLicensed' => true,
120
+ ),
121
+ 'classes' => array(
122
+ 'GdbcContactForm7AdminModule' => '/modules/contact-form-7/GdbcContactForm7AdminModule.php',
123
+ 'GdbcContactForm7PublicModule' => '/modules/contact-form-7/GdbcContactForm7PublicModule.php',
124
+ )
125
+ ),
126
+
127
+ self::MODULE_GRAVITY_FORMS => array(
128
+ 'info' => array(
129
+ 'ModuleId' => 6,
130
+ 'IsLicensed' => true,
131
+ ),
132
+ 'classes' => array(
133
+ 'GdbcGravityFormsAdminModule' => '/modules/gravity-forms/GdbcGravityFormsAdminModule.php',
134
+ 'GdbcGravityFormsPublicModule' => '/modules/gravity-forms/GdbcGravityFormsPublicModule.php',
135
+ )
136
+ ),
137
+
138
+ self::MODULE_FAST_SECURE_FORM => array(
139
+ 'info' => array(
140
+ 'ModuleId' => 7,
141
+ 'IsLicensed' => true,
142
+ ),
143
+ 'classes' => array(
144
+ 'GdbcFastSecureFormAdminModule' => '/modules/fast-secure-form/GdbcFastSecureFormAdminModule.php',
145
+ 'GdbcFastSecureFormPublicModule' => '/modules/fast-secure-form/GdbcFastSecureFormPublicModule.php',
146
+ )
147
+ ),
148
+
149
+ self::MODULE_FORMIDABLE_FORMS => array(
150
+ 'info' => array(
151
+ 'ModuleId' => 8,
152
+ 'IsLicensed' => true,
153
+ ),
154
+ 'classes' => array(
155
+ 'GdbcFormidableFormsAdminModule' => '/modules/formidable-forms/GdbcFormidableFormsAdminModule.php',
156
+ 'GdbcFormidableFormsPublicModule' => '/modules/formidable-forms/GdbcFormidableFormsPublicModule.php',
157
+ )
158
+ ),
159
+
160
+ self::MODULE_ULTIMATE_MEMBER => array(
161
+ 'info' => array(
162
+ 'ModuleId' => 9,
163
+ 'IsLicensed' => false,
164
+ ),
165
+ 'classes' => array(
166
+ 'GdbcUltimateMemberAdminModule' => '/modules/ultimate-member/GdbcUltimateMemberAdminModule.php',
167
+ 'GdbcUltimateMemberPublicModule' => '/modules/ultimate-member/GdbcUltimateMemberPublicModule.php',
168
+ )
169
+ ),
170
+
171
+ self::MODULE_BUDDY_PRESS => array(
172
+ 'info' => array(
173
+ 'ModuleId' => 10,
174
+ 'IsLicensed' => true,
175
+ ),
176
+ 'classes' => array(
177
+ 'GdbcBuddyPressAdminModule' => '/modules/buddy-press/GdbcBuddyPressAdminModule.php',
178
+ 'GdbcBuddyPressPublicModule' => '/modules/buddy-press/GdbcBuddyPressPublicModule.php',
179
+ )
180
+ ),
181
+
182
+ self::MODULE_BB_PRESS => array(
183
+ 'info' => array(
184
+ 'ModuleId' => 11,
185
+ 'IsLicensed' => true,
186
+ ),
187
+ 'classes' => array(
188
+ 'GdbcBbPressAdminModule' => '/modules/bb-press/GdbcBbPressAdminModule.php',
189
+ 'GdbcBbPressPublicModule' => '/modules/bb-press/GdbcBbPressPublicModule.php',
190
+ )
191
+ ),
192
+
193
+ self::MODULE_USER_PRO => array(
194
+ 'info' => array(
195
+ 'ModuleId' => 12,
196
+ 'IsLicensed' => true,
197
+ ),
198
+ 'classes' => array(
199
+ 'GdbcUserProAdminModule' => '/modules/user-pro/GdbcUserProAdminModule.php',
200
+ 'GdbcUserProPublicModule' => '/modules/user-pro/GdbcUserProPublicModule.php',
201
+ )
202
+ ),
203
+
204
+ self::MODULE_UPME => array(
205
+ 'info' => array(
206
+ 'ModuleId' => 13,
207
+ 'IsLicensed' => true,
208
+ ),
209
+ 'classes' => array(
210
+ 'GdbcUPMEAdminModule' => '/modules/upme/GdbcUPMEAdminModule.php',
211
+ 'GdbcUPMEPublicModule' => '/modules/upme/GdbcUPMEPublicModule.php',
212
+ )
213
+ ),
214
+
215
+ self::MODULE_MAIL_CHIMP_FOR_WP => array(
216
+ 'info' => array(
217
+ 'ModuleId' => 14,
218
+ 'IsLicensed' => false,
219
+ ),
220
+ 'classes' => array(
221
+ 'GdbcMailChimpForWpAdminModule' => '/modules/mc-for-wp/GdbcMailChimpForWpAdminModule.php',
222
+ 'GdbcMailChimpForWpPublicModule' => '/modules/mc-for-wp/GdbcMailChimpForWpPublicModule.php',
223
+ )
224
+ ),
225
+
226
+ self::MODULE_MAIL_POET => array(
227
+ 'info' => array(
228
+ 'ModuleId' => 15,
229
+ 'IsLicensed' => true,
230
+ ),
231
+ 'classes' => array(
232
+ 'GdbcMailPoetAdminModule' => '/modules/mail-poet/GdbcMailPoetAdminModule.php',
233
+ 'GdbcMailPoetPublicModule' => '/modules/mail-poet/GdbcMailPoetPublicModule.php',
234
+ )
235
+ ),
236
+
237
+ self::MODULE_WOOCOMMERCE => array(
238
+ 'info' => array(
239
+ 'ModuleId' => 16,
240
+ 'IsLicensed' => true,
241
+ ),
242
+ 'classes' => array(
243
+ 'GdbcWooCommerceAdminModule' => '/modules/woocommerce/GdbcWooCommerceAdminModule.php',
244
+ 'GdbcWooCommercePublicModule' => '/modules/woocommerce/GdbcWooCommercePublicModule.php',
245
+ )
246
+ ),
247
+
248
+
249
+ self::MODULE_REPORTS => array(
250
+ 'info' => array(
251
+ 'ModuleId' => 17,
252
+ 'IsLicensed' => false,
253
+ ),
254
+ 'classes' => array(
255
+ 'GdbcReportsAdminModule' => '/modules/reports/GdbcReportsAdminModule.php',
256
+ 'GdbcReportsPublicModule' => '/modules/reports/GdbcReportsPublicModule.php',
257
+ ),
258
+ ),
259
+
260
+ self::MODULE_BRUTE_FORCE => array(
261
+ 'info' => array(
262
+ 'ModuleId' => 18,
263
+ 'IsLicensed' => false,
264
+ ),
265
+ 'classes' => array(
266
+ 'GdbcBruteForceAdminModule' => '/modules/brute-force/GdbcBruteForceAdminModule.php',
267
+ 'GdbcBruteForcePublicModule' => '/modules/brute-force/GdbcBruteForcePublicModule.php',
268
+ ),
269
+ ),
270
+
271
+ self::MODULE_BLACK_LISTED_IPS => array(
272
+ 'info' => array(
273
+ 'ModuleId' => 19,
274
+ 'IsLicensed' => false,
275
+ ),
276
+ 'classes' => array(
277
+ 'GdbcBlackListedIpsAdminModule' => '/modules/black-listed-ips/GdbcBlackListedIpsAdminModule.php',
278
+ 'GdbcBlackListedIpsPublicModule' => '/modules/black-listed-ips/GdbcBlackListedIpsPublicModule.php',
279
+ ),
280
+ ),
281
+
282
+ self::MODULE_WHITE_LISTED_IPS => array(
283
+ 'info' => array(
284
+ 'ModuleId' => 20,
285
+ 'IsLicensed' => false,
286
+ ),
287
+ 'classes' => array(
288
+ 'GdbcWhiteListedIpsAdminModule' => '/modules/white-listed-ips/GdbcWhiteListedIpsAdminModule.php',
289
+ 'GdbcWhiteListedIpsPublicModule' => '/modules/white-listed-ips/GdbcWhiteListedIpsPublicModule.php',
290
+ ),
291
+ ),
292
+
293
+ self::MODULE_ZM_ALR => array(
294
+ 'info' => array(
295
+ 'ModuleId' => 21,
296
+ 'IsLicensed' => false,
297
+ ),
298
+ 'classes' => array(
299
+ 'GdbcZmAlrAdminModule' => '/modules/zm-ajax-login-register/GdbcZmAlrAdminModule.php',
300
+ 'GdbcZmAlrPublicModule' => '/modules/zm-ajax-login-register/GdbcZmAlrPublicModule.php',
301
+ ),
302
+ ),
303
+
304
+ self::MODULE_SEAMLESS_DONATIONS => array(
305
+ 'info' => array(
306
+ 'ModuleId' => 22,
307
+ 'IsLicensed' => false,
308
+ ),
309
+ 'classes' => array(
310
+ 'GdbcSeamlessDonationsAdminModule' => '/modules/seamless-donations/GdbcSeamlessDonationsAdminModule.php',
311
+ 'GdbcSeamlessDonationsPublicModule' => '/modules/seamless-donations/GdbcSeamlessDonationsPublicModule.php',
312
+ ),
313
+ ),
314
+
315
+ self::MODULE_WORDPRESS_TWEAKS => array(
316
+ 'info' => array(
317
+ 'ModuleId' => 23,
318
+ 'IsLicensed' => false,
319
+ ),
320
+ 'classes' => array(
321
+ 'GdbcWordPressTweaksAdminModule' => '/modules/wordpress-tweaks/GdbcWordPressTweaksAdminModule.php',
322
+ 'GdbcWordPressTweaksPublicModule' => '/modules/wordpress-tweaks/GdbcWordPressTweaksPublicModule.php',
323
+ ),
324
+ ),
325
+
326
+ self::MODULE_EMAIL_NOTIFICATIONS => array(
327
+ 'info' => array(
328
+ 'ModuleId' => 24,
329
+ 'IsLicensed' => false,
330
+ ),
331
+ 'classes' => array(
332
+ 'GdbcEmailNotificationsAdminModule' => '/modules/email-notifications/GdbcEmailNotificationsAdminModule.php',
333
+ 'GdbcEmailNotificationsPublicModule' => '/modules/email-notifications/GdbcEmailNotificationsPublicModule.php',
334
+ )
335
+ ),
336
+
337
+ self::MODULE_PLANSO_FORMS => array(
338
+ 'info' => array(
339
+ 'ModuleId' => 25,
340
+ 'IsLicensed' => false,
341
+ ),
342
+ 'classes' => array(
343
+ 'GdbcPlanSoFormsAdminModule' => '/modules/planso-forms/GdbcPlanSoFormsAdminModule.php',
344
+ 'GdbcPlanSoFormsPublicModule' => '/modules/planso-forms/GdbcPlanSoFormsPublicModule.php',
345
+ )
346
+ ),
347
+
348
+ self::MODULE_LICENSES => array(
349
+ 'info' => array(
350
+ 'ModuleId' => 26,
351
+ 'IsLicensed' => false,
352
+ ),
353
+ 'classes' => array(
354
+ 'GdbcLicensesAdminModule' => '/modules/licenses/GdbcLicensesAdminModule.php',
355
+ 'GdbcLicensesPublicModule' => '/modules/licenses/GdbcLicensesPublicModule.php',
356
+ )
357
+ ),
358
+
359
+ self::MODULE_MEMBER_PRESS => array(
360
+ 'info' => array(
361
+ 'ModuleId' => 27,
362
+ 'IsLicensed' => true,
363
+ ),
364
+ 'classes' => array(
365
+ 'GdbcMemberPressAdminModule' => '/modules/member-press/GdbcMemberPressAdminModule.php',
366
+ 'GdbcMemberPressPublicModule' => '/modules/member-press/GdbcMemberPressPublicModule.php',
367
+ )
368
+ ),
369
+
370
+ self::MODULE_EASY_FORMS_FOR_MAILCHIMP => array(
371
+ 'info' => array(
372
+ 'ModuleId' => 28,
373
+ 'IsLicensed' => true,
374
+ ),
375
+ 'classes' => array(
376
+ 'GdbcEasyFormsForMailChimpAdminModule' => '/modules/easy-forms-for-mailchimp/GdbcEasyFormsForMailChimpAdminModule.php',
377
+ 'GdbcEasyFormsForMailChimpPublicModule' => '/modules/easy-forms-for-mailchimp/GdbcEasyFormsForMailChimpPublicModule.php',
378
+ )
379
+ ),
380
+
381
+ self::MODULE_GEO_IP_COUNTRY => array(
382
+ 'info' => array(
383
+ 'ModuleId' => 29,
384
+ 'IsLicensed' => true,
385
+ ),
386
+ 'classes' => array(
387
+ 'GdbcGeoIpCountryAdminModule' => '/modules/geo-ip-country/GdbcGeoIpCountryAdminModule.php',
388
+ 'GdbcGeoIpCountryPublicModule' => '/modules/geo-ip-country/GdbcGeoIpCountryPublicModule.php',
389
+ )
390
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
 
392
  );
393
 
394
 
395
+ public static function getModuleDisplayName($moduleName, $isForLicensing = false)
396
  {
397
  switch ($moduleName)
398
  {
399
+ case self::MODULE_BRUTE_FORCE : return 'Brute Force';
400
+ case self::MODULE_BUDDY_PRESS : return 'BuddyPress';
401
+ case self::MODULE_CONTACT_FORM_7 : return 'Contact Form 7';
402
+ case self::MODULE_FAST_SECURE_FORM : return !$isForLicensing ? 'Fast Secure Form' : 'Fast Secure Contact Form';
403
+ case self::MODULE_FORMIDABLE_FORMS : return 'Formidable Forms';
404
+ case self::MODULE_GRAVITY_FORMS : return 'Gravity Forms';
405
+ case self::MODULE_JETPACK_CONTACT_FORM : return 'Jetpack Contact Form';
406
+ case self::MODULE_MAIL_CHIMP_FOR_WP : return 'MailChimp for WP';
407
+ case self::MODULE_MAIL_POET : return 'Mail Poet';
408
+ case self::MODULE_NINJA_FORMS : return 'Ninja Forms';
409
+ case self::MODULE_PLANSO_FORMS : return 'Planso Forms';
410
+ case self::MODULE_SEAMLESS_DONATIONS : return 'Seamless Donations';
411
+ case self::MODULE_ULTIMATE_MEMBER : return 'Ultimate Member';
412
+ case self::MODULE_USER_PRO : return 'UserPro';
413
+ case self::MODULE_EASY_FORMS_FOR_MAILCHIMP : return 'Easy Forms for MailChimp';
414
+ case self::MODULE_MEMBER_PRESS : return 'MemberPress';
415
+ case self::MODULE_UPME : return !$isForLicensing ? 'UPME' : 'User Profiles Made Easy';
416
  }
417
 
418
  return $moduleName;
436
 
437
  $activatedPlugins = defined('WP_PLUGIN_DIR') ? array_merge( array_flip((array) get_option( 'active_plugins', array())), (array) get_site_option( 'active_sitewide_plugins', array() ) ) : array(); // wp_get_mu_plugins()
438
 
439
+ if(defined('ABSPATH')){
440
+ unset($activatedPlugins[plugin_basename(GoodByeCaptcha::PLUGIN_MAIN_FILE)]); // un-setting the plugin itself
441
+ }
442
 
443
  $engineDirPath = dirname(__FILE__) . DIRECTORY_SEPARATOR;
444
 
491
 
492
  if(empty(self::$arrRegisteredModules[$moduleName]))
493
  unset(self::$arrRegisteredModules[$moduleName]);
494
+
495
  }
496
 
497
  }
687
  }
688
 
689
  }
690
+
691
  }
engine/GdbcRequestController.php CHANGED
@@ -35,11 +35,12 @@ final class GdbcRequestController
35
  CONST REJECT_REASON_PROXY_ANONYMIZER = 10;
36
  CONST REJECT_REASON_WEB_ATTACKER = 11;
37
  CONST REJECT_REASON_SERVICE_UNAVAILABLE = 12;
 
 
38
 
39
  private static $rejectReasonCode = null;
40
  private static $browserInfoInputName = null;
41
 
42
-
43
  public static function isValid(GdbcAttemptEntity $attemptEntity)
44
  {
45
  static $isRequestValid = null;
@@ -102,8 +103,6 @@ final class GdbcRequestController
102
 
103
  $minSubmissionTime = $settingsModuleInstance->getOption(GdbcSettingsAdminModule::OPTION_MIN_SUBMISSION_TIME);
104
 
105
- // $isPluginInTestMode = (bool)$settingsModuleInstance->getOption(GdbcSettingsAdminModule::OPTION_TEST_MODE_ACTIVATED);
106
-
107
  $isProtectionDisabled = ((bool)$settingsModuleInstance->getOption(GdbcSettingsAdminModule::OPTION_DISABLE_IF_USER_LOGGED_IN)) && MchGdbcWpUtils::isUserLoggedIn();
108
  if($isProtectionDisabled) {
109
  return true;
@@ -127,13 +126,8 @@ final class GdbcRequestController
127
  return false;
128
  }
129
 
130
- $arrDecryptedToken = json_decode(MchCrypt::decryptToken($tokenSecretKey, $receivedToken), true);
131
 
132
- // if($isPluginInTestMode)
133
- // {
134
- // //$this->arrTokenDebugData['received-info'] = $arrDecryptedToken;
135
- // //$this->arrTokenDebugData['token-data'] = $this->getTokenData();
136
- // }
137
 
138
  if( !isset($arrDecryptedToken[0]) || false === ($tokenIndex = strpos($arrDecryptedToken[0], self::TOKEN_SEPARATOR)) )
139
  {
@@ -164,7 +158,6 @@ final class GdbcRequestController
164
  $arrTokenData = self::getTokenData();
165
 
166
  $timeSinceGenerated = ((int)array_pop($arrTokenData)) - ((int)array_pop($arrDecryptedToken));
167
-
168
  if($timeSinceGenerated < $minSubmissionTime)
169
  {
170
  if( ! GoodByeCaptchaUtils::isLoginAttemptEntity($attemptEntity) ){
@@ -235,7 +228,7 @@ final class GdbcRequestController
235
  $arrData = array();
236
 
237
  $arrData[] = get_current_blog_id();
238
- $arrData[] = GdbcIPUtils::getClientIpAddress();
239
  $arrData[] = GdbcSettingsPublicModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_TOKEN_CREATED_TIMESTAMP);
240
  $arrData[] = MchGdbcHttpRequest::getServerRequestTime();
241
 
@@ -271,6 +264,8 @@ final class GdbcRequestController
271
  self::REJECT_REASON_PROXY_ANONYMIZER => __('Proxy Anonymizer', GoodByeCaptcha::PLUGIN_SLUG),
272
  self::REJECT_REASON_WEB_ATTACKER => __('Web Attacker', GoodByeCaptcha::PLUGIN_SLUG),
273
  self::REJECT_REASON_SERVICE_UNAVAILABLE => __('Service Unavailable', GoodByeCaptcha::PLUGIN_SLUG),
 
 
274
  );
275
  }
276
 
35
  CONST REJECT_REASON_PROXY_ANONYMIZER = 10;
36
  CONST REJECT_REASON_WEB_ATTACKER = 11;
37
  CONST REJECT_REASON_SERVICE_UNAVAILABLE = 12;
38
+ //CONST REJECT_REASON_LINK_NOTIFICATION = 13; // used for trackbacks and pingbacks
39
+ CONST REJECT_REASON_COMMENT_FIELD_TOO_LONG = 14;
40
 
41
  private static $rejectReasonCode = null;
42
  private static $browserInfoInputName = null;
43
 
 
44
  public static function isValid(GdbcAttemptEntity $attemptEntity)
45
  {
46
  static $isRequestValid = null;
103
 
104
  $minSubmissionTime = $settingsModuleInstance->getOption(GdbcSettingsAdminModule::OPTION_MIN_SUBMISSION_TIME);
105
 
 
 
106
  $isProtectionDisabled = ((bool)$settingsModuleInstance->getOption(GdbcSettingsAdminModule::OPTION_DISABLE_IF_USER_LOGGED_IN)) && MchGdbcWpUtils::isUserLoggedIn();
107
  if($isProtectionDisabled) {
108
  return true;
126
  return false;
127
  }
128
 
 
129
 
130
+ $arrDecryptedToken = json_decode(MchCrypt::decryptToken($tokenSecretKey, $receivedToken), true);
 
 
 
 
131
 
132
  if( !isset($arrDecryptedToken[0]) || false === ($tokenIndex = strpos($arrDecryptedToken[0], self::TOKEN_SEPARATOR)) )
133
  {
158
  $arrTokenData = self::getTokenData();
159
 
160
  $timeSinceGenerated = ((int)array_pop($arrTokenData)) - ((int)array_pop($arrDecryptedToken));
 
161
  if($timeSinceGenerated < $minSubmissionTime)
162
  {
163
  if( ! GoodByeCaptchaUtils::isLoginAttemptEntity($attemptEntity) ){
228
  $arrData = array();
229
 
230
  $arrData[] = get_current_blog_id();
231
+ //$arrData[] = GdbcIPUtils::getClientIpAddress();
232
  $arrData[] = GdbcSettingsPublicModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_TOKEN_CREATED_TIMESTAMP);
233
  $arrData[] = MchGdbcHttpRequest::getServerRequestTime();
234
 
264
  self::REJECT_REASON_PROXY_ANONYMIZER => __('Proxy Anonymizer', GoodByeCaptcha::PLUGIN_SLUG),
265
  self::REJECT_REASON_WEB_ATTACKER => __('Web Attacker', GoodByeCaptcha::PLUGIN_SLUG),
266
  self::REJECT_REASON_SERVICE_UNAVAILABLE => __('Service Unavailable', GoodByeCaptcha::PLUGIN_SLUG),
267
+ //self::REJECT_REASON_LINK_NOTIFICATION => __('Link Notification', GoodByeCaptcha::PLUGIN_SLUG),
268
+ self::REJECT_REASON_COMMENT_FIELD_TOO_LONG => __('Comment Field Too Long', GoodByeCaptcha::PLUGIN_SLUG),
269
  );
270
  }
271
 
engine/GdbcUpdatesController.php CHANGED
@@ -85,6 +85,35 @@ final class GdbcUpdatesController
85
  }
86
  }
87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  $settingsModuleInstance->saveOption(GdbcSettingsAdminModule::OPTION_PLUGIN_VERSION, GoodByeCaptcha::PLUGIN_VERSION);
89
 
90
  GoodByeCaptchaUtils::flushSiteCache();
85
  }
86
  }
87
 
88
+ if( -1 === version_compare($savedPluginVersion, '3.0.1') )
89
+ {
90
+ if(null !== ($wordPressModuleInstance = GdbcModulesController::getAdminModuleInstance(GdbcModulesController::MODULE_WORDPRESS)))
91
+ {
92
+ $arrDefaultOptionsValues = $wordPressModuleInstance->getDefaultOptionsValues();
93
+
94
+ if(!empty($arrDefaultOptionsValues[GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH]))
95
+ $wordPressModuleInstance->saveOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH, $arrDefaultOptionsValues[GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH]);
96
+
97
+ if(!empty($arrDefaultOptionsValues[GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH]))
98
+ $wordPressModuleInstance->saveOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH, $arrDefaultOptionsValues[GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH]);
99
+
100
+ if(!empty($arrDefaultOptionsValues[GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_NAME_LENGTH]))
101
+ $wordPressModuleInstance->saveOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_NAME_LENGTH, $arrDefaultOptionsValues[GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_NAME_LENGTH]);
102
+
103
+ if(!empty($arrDefaultOptionsValues[GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH]))
104
+ $wordPressModuleInstance->saveOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH, $arrDefaultOptionsValues[GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH]);
105
+ }
106
+ }
107
+
108
+
109
+ if( -1 === version_compare($savedPluginVersion, '3.0.5') )
110
+ {
111
+ $settingsModuleInstance->deleteOption(GdbcSettingsAdminModule::OPTION_CACHE_DIR_PATH, GoodByeCaptcha::isNetworkActivated());
112
+ }
113
+
114
+
115
+
116
+
117
  $settingsModuleInstance->saveOption(GdbcSettingsAdminModule::OPTION_PLUGIN_VERSION, GoodByeCaptcha::PLUGIN_VERSION);
118
 
119
  GoodByeCaptchaUtils::flushSiteCache();
engine/GoodByeCaptchaAdmin.php CHANGED
@@ -33,15 +33,16 @@ final class GoodByeCaptchaAdmin extends MchGdbcBaseAdminPlugin
33
 
34
  $this->adminPagesList = array(
35
 
36
- new GdbcSettingsAdminPage(__('Settings', self::$PLUGIN_SLUG), __('General Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
37
- new GdbcSecurityAdminPage(__('Security', self::$PLUGIN_SLUG), __('Security Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
38
- new GdbcWordpressAdminPage(__('WordPress', self::$PLUGIN_SLUG), __('WordPress Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
39
- new GdbcContactFormsAdminPage(__('Contact Forms', self::$PLUGIN_SLUG), __('Contact Forms Plugins', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
40
- new GdbcMembershipAdminPage(__('Membership', self::$PLUGIN_SLUG), __('Membership Page Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
41
- new GdbcOthersAdminPage(__('Others', self::$PLUGIN_SLUG), __('All other popular plugins settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
42
- new GdbcNotificationsAdminPage(__('Notifications', self::$PLUGIN_SLUG), __('Notifications Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
43
- new GdbcLicensesAdminPage(__('Licenses', self::$PLUGIN_SLUG), __('Licenses Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
44
- new GdbcReportsAdminPage(__('Reports', self::$PLUGIN_SLUG), __('WPBruiser - Blocked Attempts', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
 
45
 
46
  );
47
 
@@ -59,22 +60,6 @@ final class GoodByeCaptchaAdmin extends MchGdbcBaseAdminPlugin
59
  add_action( 'admin_menu', array( $this, 'buildPluginMenu' ), 10 );
60
  }
61
 
62
- foreach(self::getAdminRegisteredNotices() as $adminNotice)
63
- {
64
- if($adminNotice->isDismissible() && $adminNotice->isDismissed())
65
- continue;
66
-
67
- if(MchGdbcWpUtils::isMultiSite() && GoodByeCaptcha::isNetworkActivated())
68
- {
69
- add_action('network_admin_notices', array($adminNotice, 'showNotice'));
70
- }
71
- else
72
- {
73
- add_action( 'admin_notices', array( $adminNotice, 'showNotice' ) );
74
- }
75
-
76
- }
77
-
78
  }
79
 
80
  public static function getAdminRegisteredNotices()
@@ -88,6 +73,9 @@ final class GoodByeCaptchaAdmin extends MchGdbcBaseAdminPlugin
88
 
89
  private static function registerAdminNotices()
90
  {
 
 
 
91
  $bruteForceModuleInstance = GdbcModulesController::getAdminModuleInstance(GdbcModulesController::MODULE_BRUTE_FORCE);
92
 
93
  if( !GdbcIPUtils::isClientIpWhiteListed() && GdbcIPUtils::isClientIpWebAttacker(true) && $bruteForceModuleInstance)
@@ -215,8 +203,6 @@ final class GoodByeCaptchaAdmin extends MchGdbcBaseAdminPlugin
215
 
216
  }
217
 
218
-
219
-
220
  public function enqueueAdminScriptsAndStyles()
221
  {
222
 
@@ -272,50 +258,64 @@ final class GoodByeCaptchaAdmin extends MchGdbcBaseAdminPlugin
272
 
273
  public function initializeAdminPlugin()
274
  {
 
275
  parent::initializeAdminPlugin();
276
 
277
  if(MchGdbcWpUtils::isAjaxRequest())
278
  return;
279
 
280
-
281
  add_action('shutdown', array($this, 'executeLowPriorityTasks'));
282
 
283
- }
 
 
 
 
 
 
 
 
 
 
 
 
284
 
 
285
 
 
286
 
287
 
288
  public function executeLowPriorityTasks()
289
  {
290
-
291
  GdbcDbAccessController::deleteAttemptsOlderThan(GdbcSettingsAdminModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_MAX_LOGS_DAYS));
292
  GdbcDbAccessController::clearAttemptsNotesOlderThan(GdbcSettingsAdminModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_BLOCKED_CONTENT_LOG_DAYS));
293
 
294
- if(null === self::$PLUGIN_MAIN_FILE)
295
- return;
296
-
297
- if (!current_user_can( 'manage_options' ))
298
- return;
 
299
 
300
- $pluginBaseName = plugin_basename(self::$PLUGIN_MAIN_FILE);
301
- $arrBlogActivePlugins = (array) get_option( 'active_plugins', array() );
302
 
303
- $firstActivatedPlugin = reset($arrBlogActivePlugins);
304
- if(false === $firstActivatedPlugin || $firstActivatedPlugin === $pluginBaseName)
305
- return;
 
306
 
307
- $gdbcPluginKey = array_search( $pluginBaseName, $arrBlogActivePlugins );
308
- if(false === $gdbcPluginKey)
309
- return;
310
 
311
- array_splice( $arrBlogActivePlugins, $gdbcPluginKey, 1 );
312
- array_unshift( $arrBlogActivePlugins, $pluginBaseName );
 
 
313
 
314
- update_option( 'active_plugins', $arrBlogActivePlugins );
315
 
316
  }
317
 
318
-
319
  public static function onPluginActivate()
320
  {}
321
 
33
 
34
  $this->adminPagesList = array(
35
 
36
+ new GdbcSettingsAdminPage(__('Settings', self::$PLUGIN_SLUG), __('General Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
37
+ new GdbcSecurityAdminPage(__('Security', self::$PLUGIN_SLUG), __('Security Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
38
+ new GdbcWordpressAdminPage(__('WordPress', self::$PLUGIN_SLUG), __('WordPress Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
39
+ new GdbcContactFormsAdminPage(__('Contact Forms', self::$PLUGIN_SLUG), __('Contact Forms Plugins', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
40
+ new GdbcMembershipAdminPage(__('Membership', self::$PLUGIN_SLUG), __('Membership Page Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
41
+ new GdbcOthersAdminPage(__('Others', self::$PLUGIN_SLUG), __('All other popular plugins settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
42
+ new GdbcNotificationsAdminPage(__('Notifications', self::$PLUGIN_SLUG), __('Notifications Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
43
+ new GdbcExtensionsAdminPage(__('Extensions', self::$PLUGIN_SLUG), __('WPBruiser Extensions', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
44
+ new GdbcLicensesAdminPage(__('Licenses', self::$PLUGIN_SLUG), __('Licenses Settings', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
45
+ new GdbcReportsAdminPage(__('Reports', self::$PLUGIN_SLUG), __('WPBruiser - Blocked Attempts', self::$PLUGIN_SLUG), self::$PLUGIN_SLUG),
46
 
47
  );
48
 
60
  add_action( 'admin_menu', array( $this, 'buildPluginMenu' ), 10 );
61
  }
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  }
64
 
65
  public static function getAdminRegisteredNotices()
73
 
74
  private static function registerAdminNotices()
75
  {
76
+ if(!MchGdbcWpUtils::isSuperAdminLoggedIn())
77
+ return;
78
+
79
  $bruteForceModuleInstance = GdbcModulesController::getAdminModuleInstance(GdbcModulesController::MODULE_BRUTE_FORCE);
80
 
81
  if( !GdbcIPUtils::isClientIpWhiteListed() && GdbcIPUtils::isClientIpWebAttacker(true) && $bruteForceModuleInstance)
203
 
204
  }
205
 
 
 
206
  public function enqueueAdminScriptsAndStyles()
207
  {
208
 
258
 
259
  public function initializeAdminPlugin()
260
  {
261
+
262
  parent::initializeAdminPlugin();
263
 
264
  if(MchGdbcWpUtils::isAjaxRequest())
265
  return;
266
 
 
267
  add_action('shutdown', array($this, 'executeLowPriorityTasks'));
268
 
269
+ foreach(self::getAdminRegisteredNotices() as $adminNotice)
270
+ {
271
+ if($adminNotice->isDismissible() && $adminNotice->isDismissed())
272
+ continue;
273
+
274
+ if(MchGdbcWpUtils::isMultiSite() && GoodByeCaptcha::isNetworkActivated())
275
+ {
276
+ add_action('network_admin_notices', array($adminNotice, 'showNotice'));
277
+ }
278
+ else
279
+ {
280
+ add_action( 'admin_notices', array( $adminNotice, 'showNotice' ) );
281
+ }
282
 
283
+ }
284
 
285
+ }
286
 
287
 
288
  public function executeLowPriorityTasks()
289
  {
 
290
  GdbcDbAccessController::deleteAttemptsOlderThan(GdbcSettingsAdminModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_MAX_LOGS_DAYS));
291
  GdbcDbAccessController::clearAttemptsNotesOlderThan(GdbcSettingsAdminModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_BLOCKED_CONTENT_LOG_DAYS));
292
 
293
+ if(isset( self::$PLUGIN_MAIN_FILE) && !GoodByeCaptcha::isNetworkActivated() && !MchGdbcWpUtils::isAjaxRequest()) {
294
+ $pluginBaseName = plugin_basename(self::$PLUGIN_MAIN_FILE);
295
+ $arrBlogActivePlugins = (array)get_option('active_plugins', array());
296
+ $firstActivatedPlugin = reset($arrBlogActivePlugins);
297
+ if (false === $pluginBaseName || $firstActivatedPlugin === $pluginBaseName || (!($pluginKey = array_search($pluginBaseName, $arrBlogActivePlugins))))
298
+ return;
299
 
300
+ unset($arrBlogActivePlugins[$pluginKey]);
301
+ array_unshift($arrBlogActivePlugins, $pluginBaseName);
302
 
303
+ $w3tcFlagValue = null;
304
+ if(function_exists('w3_instance') && is_callable(array($w3tcConfigInstance = w3_instance('W3_Config'), 'set')) && is_callable(array($w3tcConfigInstance, 'set')) && is_callable(array($w3tcConfigInstance, 'save')) && is_callable(array($w3tcConfigInstance, 'get_boolean'))){
305
+ $w3tcFlagValue = (bool)$w3tcConfigInstance->get_boolean('notes.plugins_updated');
306
+ }
307
 
308
+ update_option('active_plugins', array_keys(array_flip($arrBlogActivePlugins)));
 
 
309
 
310
+ if(false === $w3tcFlagValue){
311
+ $w3tcConfigInstance->set('notes.plugins_updated', false);
312
+ $w3tcConfigInstance->save();
313
+ }
314
 
315
+ }
316
 
317
  }
318
 
 
319
  public static function onPluginActivate()
320
  {}
321
 
engine/GoodByeCaptchaPublic.php CHANGED
@@ -20,7 +20,7 @@
20
  final class GoodByeCaptchaPublic extends MchGdbcBasePublicPlugin
21
  {
22
 
23
- private $clientScriptUrl = null;
24
  private $formHiddenInputName = null;
25
 
26
  protected function __construct(array $arrPluginInfo)
@@ -31,7 +31,7 @@ final class GoodByeCaptchaPublic extends MchGdbcBasePublicPlugin
31
  if(null === $settingsModuleInstance)
32
  return;
33
 
34
- $this->clientScriptUrl = plugins_url( '/assets/public/scripts/gdbc-public.js', self::$PLUGIN_MAIN_FILE );
35
  $this->formHiddenInputName = $settingsModuleInstance->getOption(GdbcSettingsAdminModule::OPTION_HIDDEN_INPUT_NAME);
36
 
37
  foreach(array_keys((array)GdbcModulesController::getRegisteredModules()) as $moduleName)
@@ -50,11 +50,6 @@ final class GoodByeCaptchaPublic extends MchGdbcBasePublicPlugin
50
  public function initializePlugin()
51
  {
52
  parent::initializePlugin();
53
-
54
- GoodByeCaptchaUtils::isWPRocketPluginActivated() ? add_filter('rocket_exclude_js', array($this, 'addScriptToWpRocketExcludeQueue'), 10, 1) : null;
55
- GoodByeCaptchaUtils::isAutoptimizePluginActivated() ? add_filter('autoptimize_filter_js_exclude', array($this, 'addScriptToAutoptimizeExcludeQueue'), 10, 1) : null;
56
- GoodByeCaptchaUtils::isWPDJSPluginActivated() ? add_filter('do_not_defer', array($this, 'addScriptToWPDeferredJavaScriptsExcludeQueue'), 10, 1) : null;
57
-
58
  }
59
 
60
  public function registerAfterSetupThemeHooks()
@@ -68,51 +63,72 @@ final class GoodByeCaptchaPublic extends MchGdbcBasePublicPlugin
68
  return null !== $gdbcPublicInstance ? $gdbcPublicInstance : $gdbcPublicInstance = new self($arrPluginInfo);
69
  }
70
 
 
71
  public function enqueuePublicScriptsAndStyles()
72
  {
73
- $scriptId = self::$PLUGIN_SLUG . '-public-script';
74
 
75
- wp_register_script($scriptId, $this->clientScriptUrl, array( 'jquery' ), self::$PLUGIN_VERSION);
 
 
76
 
77
- wp_localize_script($scriptId, 'Gdbc', array(
78
- 'ajaxUrl' => MchGdbcWpUtils::getAjaxUrl(),
79
- 'clientUrl' => esc_url(home_url('/', MchGdbcWpUtils::isSslRequest() ? 'https' : 'http') . '?gdbc-client=' . self::$PLUGIN_VERSION),
80
- 'formFieldName' => $this->formHiddenInputName,
81
- 'shortCode' => self::$PLUGIN_SHORT_CODE,
82
- 'slug' => self::$PLUGIN_SLUG,
83
- ));
84
 
85
- wp_enqueue_script($scriptId);
86
 
87
- }
 
88
 
89
- public function addScriptToWpRocketExcludeQueue($arrFiles)
90
- {
91
- $arrFiles = (array)$arrFiles;
92
- $arrFiles[] = parse_url($this->clientScriptUrl, PHP_URL_PATH );
93
- return $arrFiles;
94
- }
95
 
96
- public function addScriptToAutoptimizeExcludeQueue($excludedScripts)
97
- {
98
- $excludedScripts = rtrim(trim((string)$excludedScripts), ',');
99
- $arrScriptsToExclude = array(
100
- basename($this->clientScriptUrl),
101
- //self::$PLUGIN_SLUG,
102
- //self::$PLUGIN_SHORT_CODE
103
- );
104
-
105
- return $excludedScripts . ', ' . implode(', ', $arrScriptsToExclude);
106
  }
107
 
108
- public function addScriptToWPDeferredJavaScriptsExcludeQueue($arrDeferredScripts)
109
  {
110
- $arrDeferredScripts = (array)$arrDeferredScripts;
111
- $arrDeferredScripts[] = self::$PLUGIN_SLUG . '-public-script';
112
- return $arrDeferredScripts;
 
 
 
 
 
113
  }
114
 
115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  private function __clone()
117
  {}
118
 
20
  final class GoodByeCaptchaPublic extends MchGdbcBasePublicPlugin
21
  {
22
 
23
+ //private $clientScriptUrl = null;
24
  private $formHiddenInputName = null;
25
 
26
  protected function __construct(array $arrPluginInfo)
31
  if(null === $settingsModuleInstance)
32
  return;
33
 
34
+ //$this->clientScriptUrl = plugins_url( '/assets/public/scripts/gdbc-public.js', self::$PLUGIN_MAIN_FILE );
35
  $this->formHiddenInputName = $settingsModuleInstance->getOption(GdbcSettingsAdminModule::OPTION_HIDDEN_INPUT_NAME);
36
 
37
  foreach(array_keys((array)GdbcModulesController::getRegisteredModules()) as $moduleName)
50
  public function initializePlugin()
51
  {
52
  parent::initializePlugin();
 
 
 
 
 
53
  }
54
 
55
  public function registerAfterSetupThemeHooks()
63
  return null !== $gdbcPublicInstance ? $gdbcPublicInstance : $gdbcPublicInstance = new self($arrPluginInfo);
64
  }
65
 
66
+
67
  public function enqueuePublicScriptsAndStyles()
68
  {
 
69
 
70
+ if(GoodByeCaptcha::TEMP_USE_JQUERY)
71
+ {
72
+ wp_register_script(GdbcBasePublicModule::MAIN_PUBLIC_SCRIPT_HANDLE, GdbcBasePublicModule::getMainScriptUrl(), array( 'jquery' ), self::$PLUGIN_VERSION, !(!!apply_filters('wpbruiser-scripts-in-head', true)));
73
 
74
+ wp_localize_script(GdbcBasePublicModule::MAIN_PUBLIC_SCRIPT_HANDLE, 'Gdbc', array(
75
+ 'ajaxUrl' => MchGdbcWpUtils::getAjaxUrl(),
76
+ 'clientUrl' => esc_url(home_url('/', MchGdbcWpUtils::isSslRequest() ? 'https' : 'http') . '?gdbc-client=' . self::$PLUGIN_VERSION),
77
+ 'formFieldName' => $this->formHiddenInputName,
78
+ 'shortCode' => self::$PLUGIN_SHORT_CODE,
79
+ 'slug' => self::$PLUGIN_SLUG,
80
+ ));
81
 
82
+ wp_enqueue_script(GdbcBasePublicModule::MAIN_PUBLIC_SCRIPT_HANDLE);
83
 
84
+ return;
85
+ }
86
 
87
+ $printScriptsHook = (!!apply_filters('wpbruiser_scripts_in_head', false)) ? 'wp_print_scripts' : 'wp_print_footer_scripts';
88
+ add_action($printScriptsHook, array($this, 'renderPublicScript'), 0 );
 
 
 
 
89
 
 
 
 
 
 
 
 
 
 
 
90
  }
91
 
92
+ public function renderPublicScript()
93
  {
94
+ static $scriptRendered = false;
95
+ if($scriptRendered) {
96
+ return;
97
+ }
98
+
99
+ $scriptRendered = true;
100
+ echo GdbcBasePublicModule::getPublicScriptInlineContent();
101
+
102
  }
103
 
104
 
105
+ // public function addScriptToWpRocketExcludeQueue($arrFiles)
106
+ // {
107
+ // $arrFiles = (array)$arrFiles;
108
+ // $arrFiles[] = parse_url($this->clientScriptUrl, PHP_URL_PATH );
109
+ // return $arrFiles;
110
+ // }
111
+ //
112
+ // public function addScriptToAutoptimizeExcludeQueue($excludedScripts)
113
+ // {
114
+ // $excludedScripts = rtrim(trim((string)$excludedScripts), ',');
115
+ // $arrScriptsToExclude = array(
116
+ // basename($this->clientScriptUrl),
117
+ // //self::$PLUGIN_SLUG,
118
+ // //self::$PLUGIN_SHORT_CODE
119
+ // );
120
+ //
121
+ // return $excludedScripts . ', ' . implode(', ', $arrScriptsToExclude);
122
+ // }
123
+ //
124
+ // public function addScriptToWPDeferredJavaScriptsExcludeQueue($arrDeferredScripts)
125
+ // {
126
+ // $arrDeferredScripts = (array)$arrDeferredScripts;
127
+ // $arrDeferredScripts[] = self::$PLUGIN_SLUG . '-public-script';
128
+ // return $arrDeferredScripts;
129
+ // }
130
+
131
+
132
  private function __clone()
133
  {}
134
 
engine/GoodByeCaptchaUtils.php CHANGED
@@ -45,6 +45,11 @@ final class GoodByeCaptchaUtils
45
  return class_exists('Uji_Countdown');
46
  }
47
 
 
 
 
 
 
48
  public static function isMailChimpForWPActivated()
49
  {
50
  return function_exists('__mc4wp_load_plugin') || function_exists('__mc4wp_premium_load') || function_exists('mc4wp_load_plugin') || function_exists('mc4wp_pro_load_plugin');
@@ -110,6 +115,11 @@ final class GoodByeCaptchaUtils
110
  return defined('MEPR_VERSION');
111
  }
112
 
 
 
 
 
 
113
  public static function isEasyFormsForMailChimpPluginActivated()
114
  {
115
  return class_exists('Yikes_Inc_Easy_Mailchimp_Extender');
@@ -120,6 +130,11 @@ final class GoodByeCaptchaUtils
120
  return defined('WDJS_VERSION');
121
  }
122
 
 
 
 
 
 
123
  // public static function setCookie($cookieKey, $cookieValue, $cookieTime, $path = null, $httpOnly = true)
124
  // {
125
  // if(headers_sent()) return;
@@ -315,7 +330,7 @@ final class GoodByeCaptchaUtils
315
  82 => array("Ghana", "GH"),
316
  83 => array("Gibraltar", "GI"),
317
  84 => array("Greece", "GR"),
318
- 85 => array("Greenland", "Gl"),
319
  86 => array("Grenada", "GD"),
320
  87 => array("Guadeloupe", "GP"),
321
  88 => array("Guam", "GU"),
@@ -365,7 +380,7 @@ final class GoodByeCaptchaUtils
365
  132 => array("Malawi", "MW"),
366
  133 => array("Malaysia", "MY"),
367
  134 => array("Maldives", "MV"),
368
- 135 => array("Mali", "Ml"),
369
  136 => array("Malta", "MT"),
370
  137 => array("Marshall Islands", "MH"),
371
  138 => array("Martinique", "MQ"),
@@ -476,7 +491,11 @@ final class GoodByeCaptchaUtils
476
  243 => array("Western Sahara", "EH"),
477
  244 => array("Yemen", "YE"),
478
  245 => array("Zambia", "ZM"),
479
- 246 => array("Zimbabwe", "ZW")
 
 
 
 
480
  );
481
  }
482
 
@@ -614,7 +633,7 @@ final class GoodByeCaptchaUtils
614
  return $cacheStorage;
615
 
616
  $arrPossibleCacheStorage = array(
617
- !empty($dirPathForFileStorage) ? new MchGdbcCacheFileStorage($dirPathForFileStorage, true, 'txt') : null,
618
  new MchGdbcWordPressTransientsStorage(false),
619
  new MchGdbcCacheAPCUStorage(),
620
  new MchGdbcCacheAPCStorage(),
45
  return class_exists('Uji_Countdown');
46
  }
47
 
48
+ public static function isMailPoetActivated()
49
+ {
50
+ return defined( 'WYSIJA' );
51
+ }
52
+
53
  public static function isMailChimpForWPActivated()
54
  {
55
  return function_exists('__mc4wp_load_plugin') || function_exists('__mc4wp_premium_load') || function_exists('mc4wp_load_plugin') || function_exists('mc4wp_pro_load_plugin');
115
  return defined('MEPR_VERSION');
116
  }
117
 
118
+ public static function isBuddyPressPluginActivated()
119
+ {
120
+ return class_exists('BP_Core');
121
+ }
122
+
123
  public static function isEasyFormsForMailChimpPluginActivated()
124
  {
125
  return class_exists('Yikes_Inc_Easy_Mailchimp_Extender');
130
  return defined('WDJS_VERSION');
131
  }
132
 
133
+ public static function isWPDiscuzPluginActivated()
134
+ {
135
+ return class_exists('WpdiscuzCore');
136
+ }
137
+
138
  // public static function setCookie($cookieKey, $cookieValue, $cookieTime, $path = null, $httpOnly = true)
139
  // {
140
  // if(headers_sent()) return;
330
  82 => array("Ghana", "GH"),
331
  83 => array("Gibraltar", "GI"),
332
  84 => array("Greece", "GR"),
333
+ 85 => array("Greenland", "GL"),
334
  86 => array("Grenada", "GD"),
335
  87 => array("Guadeloupe", "GP"),
336
  88 => array("Guam", "GU"),
380
  132 => array("Malawi", "MW"),
381
  133 => array("Malaysia", "MY"),
382
  134 => array("Maldives", "MV"),
383
+ 135 => array("Mali", "ML"),
384
  136 => array("Malta", "MT"),
385
  137 => array("Marshall Islands", "MH"),
386
  138 => array("Martinique", "MQ"),
491
  243 => array("Western Sahara", "EH"),
492
  244 => array("Yemen", "YE"),
493
  245 => array("Zambia", "ZM"),
494
+ 246 => array("Zimbabwe", "ZW"),
495
+ 247 => array("South Sudan", "SS"),
496
+ 248 => array("Sint Maarten", "SX"),
497
+ 249 => array("Curacao", "CW"),
498
+ 250 => array("Bonaire", "BQ")
499
  );
500
  }
501
 
633
  return $cacheStorage;
634
 
635
  $arrPossibleCacheStorage = array(
636
+ !empty($dirPathForFileStorage) ? new MchGdbcCacheFileStorage($dirPathForFileStorage, true, 'wbr') : null,
637
  new MchGdbcWordPressTransientsStorage(false),
638
  new MchGdbcCacheAPCUStorage(),
639
  new MchGdbcCacheAPCStorage(),
engine/admin/GdbcAdminNotice.php CHANGED
@@ -28,7 +28,4 @@ final class GdbcAdminNotice extends MchGdbcAdminNotice
28
  parent::__construct( $noticeKey, $noticeType, $noticeMessage );
29
  }
30
 
31
-
32
-
33
-
34
  }
28
  parent::__construct( $noticeKey, $noticeType, $noticeMessage );
29
  }
30
 
 
 
 
31
  }
engine/admin/pages/GdbcBaseAdminPage.php CHANGED
@@ -46,6 +46,22 @@ abstract class GdbcBaseAdminPage extends MchGdbcBaseAdminPage
46
  null
47
  );
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  // if( ! GdbcSettingsAdminModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_HIDE_SUBSCRIBE_FORM) )
50
  // {
51
  // add_meta_box(
@@ -71,7 +87,32 @@ abstract class GdbcBaseAdminPage extends MchGdbcBaseAdminPage
71
 
72
  }
73
 
 
 
 
 
 
 
 
 
 
 
74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
 
76
  public function renderSubscriptionMetaBox()
77
  {
@@ -100,11 +141,11 @@ abstract class GdbcBaseAdminPage extends MchGdbcBaseAdminPage
100
 
101
  public function renderNeedHelpMetaBox()
102
  {
103
- $img = plugins_url('/assets/admin/images/wpbr-logo.png', GoodByeCaptcha::PLUGIN_MAIN_FILE);
104
 
105
- $display_div = '<div><img class="logo-help" src="' . esc_attr($img) . '" /></div>';
106
 
107
- $display_div .= '<p class="contact-help"> <a class = "button-primary" href="' . GoodByeCaptcha::PLUGIN_SITE_URL . '/contact" target="_blank">Contact Us</a></p>';
108
 
109
  echo $display_div;
110
  }
@@ -134,4 +175,158 @@ abstract class GdbcBaseAdminPage extends MchGdbcBaseAdminPage
134
  }
135
 
136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
  }
46
  null
47
  );
48
 
49
+ $arrPremiumExtensions = self::getPremiumExtensions(true);
50
+ if(!empty($arrPremiumExtensions) && is_array($arrPremiumExtensions))
51
+ {
52
+ add_meta_box(
53
+ "gdbc-available-extension-metabox",
54
+ __('Do you need more protection?', GoodByeCaptcha::PLUGIN_SLUG),
55
+ array( $this, 'renderAvailableExtensionMetaBox' ),
56
+ $this->getAdminScreenId(),
57
+ 'side',
58
+ 'core',
59
+ null
60
+ );
61
+
62
+ }
63
+
64
+
65
  // if( ! GdbcSettingsAdminModule::getInstance()->getOption(GdbcSettingsAdminModule::OPTION_HIDE_SUBSCRIBE_FORM) )
66
  // {
67
  // add_meta_box(
87
 
88
  }
89
 
90
+ public function renderAvailableExtensionMetaBox()
91
+ {
92
+ $arrPremiumExtensions = self::getPremiumExtensions(true);
93
+
94
+ if(!empty($arrPremiumExtensions) && is_array($arrPremiumExtensions))
95
+ shuffle($arrPremiumExtensions);
96
+ else
97
+ return;
98
+
99
+ $availableExtension =reset($arrPremiumExtensions);
100
 
101
+ $moduleName = GdbcModulesController::getModuleDisplayName($availableExtension['module']);
102
+
103
+ // $outputHtml = "<h3 style=\"text-align:center\"><a href=\"{$availableExtension['url']}\">$moduleName Extension</a></h3>";
104
+ // $outputHtml .= '<div><img class="logo-help" src="' . $availableExtension['img-src'] . '" /></div>';
105
+ // $outputHtml .= '<p style="text-align: justify">' . $availableExtension['descr'] . '</p>';
106
+ // $outputHtml .= '<p class="contact-help"> <a class = "button-primary" href="' . $availableExtension['url'] . '" target="_blank">'. __('Get this Extension', GoodByeCaptcha::PLUGIN_SLUG) .'</a></p>';
107
+
108
+ $outputHtml = "<h3 style=\"text-align:center\">There is a WPBruiser Extension for</h3>";
109
+ $outputHtml .= "<h3 style=\"text-align:center\"><a href=\"{$availableExtension['url']}\">$moduleName Plugin</a></h3>";
110
+ $outputHtml .= '<div><img class="logo-help" src="' . $availableExtension['img-src'] . '" /></div>';
111
+ $outputHtml .= '<p class="contact-help"> <a class = "button-primary" href="' . $availableExtension['url'] . '" target="_blank">'. __('Get this Extension', GoodByeCaptcha::PLUGIN_SLUG) .'</a></p>';
112
+
113
+ echo $outputHtml;
114
+
115
+ }
116
 
117
  public function renderSubscriptionMetaBox()
118
  {
141
 
142
  public function renderNeedHelpMetaBox()
143
  {
144
+ $img = plugins_url('/assets/admin/images/wpbr-logo.png', GoodByeCaptcha::PLUGIN_MAIN_FILE);
145
 
146
+ $display_div = '<div><img class="logo-help" src="' . esc_attr($img) . '" /></div>';
147
 
148
+ $display_div .= '<p class="contact-help"> <a class = "button-primary" href="' . GoodByeCaptcha::PLUGIN_SITE_URL . '/contact" target="_blank">Contact Us</a></p>';
149
 
150
  echo $display_div;
151
  }
175
  }
176
 
177
 
178
+
179
+
180
+ public static function getPremiumExtensions($forRightSide = false)
181
+ {
182
+
183
+ $arrPremiumExtensions = array(
184
+
185
+ array(
186
+ 'name' => 'Contact Form 7',
187
+ 'url' => 'http://www.wpbruiser.com/downloads/contact-form-7/',
188
+ 'img-src' => '//ps.w.org/contact-form-7/assets/icon-128x128.png',
189
+ 'descr' => 'Let WPBruiser protect your Contact Form 7 form without any hard to read captcha images or any other user interaction',
190
+ 'category-name' => __('Contact Forms', GoodByeCaptcha::PLUGIN_SLUG),
191
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/contact-forms/',
192
+ 'module' => GdbcModulesController::MODULE_CONTACT_FORM_7,
193
+ 'detected' => GoodByeCaptchaUtils::isContactForm7Activated(),
194
+ ),
195
+
196
+ array(
197
+ 'name' => 'WooCommerce',
198
+ 'url' => 'http://www.wpbruiser.com/downloads/woocommerce/',
199
+ 'img-src' => '//ps.w.org/woocommerce/assets/icon-128x128.png',
200
+ 'descr' => 'Let WPBruiser protect your WooCommerce forms without any hard to read captcha images or any other user interaction',
201
+ 'category-name' => __('eCommerce', GoodByeCaptcha::PLUGIN_SLUG),
202
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/ecommerce/',
203
+ 'module' => GdbcModulesController::MODULE_WOOCOMMERCE,
204
+ 'detected' => GoodByeCaptchaUtils::isWooCommerceActivated(),
205
+ ),
206
+
207
+ array(
208
+ 'name' => 'Gravity Forms',
209
+ 'url' => 'http://www.wpbruiser.com/downloads/gravity-forms/',
210
+ 'img-src' => esc_attr(plugins_url('/assets/admin/images/gravity-forms-logo-128x128.png', GoodByeCaptcha::PLUGIN_MAIN_FILE)),
211
+ 'descr' => 'Let WPBruiser protect your Gravity Forms without any hard to read captcha images or any other user interaction',
212
+ 'category-name' => __('Contact Forms', GoodByeCaptcha::PLUGIN_SLUG),
213
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/contact-forms/',
214
+ 'module' => GdbcModulesController::MODULE_GRAVITY_FORMS,
215
+ 'detected' => GoodByeCaptchaUtils::isGravityFormsActivated(),
216
+
217
+ ),
218
+
219
+ array(
220
+ 'name' => 'Ninja Forms',
221
+ 'url' => 'http://www.wpbruiser.com/downloads/ninja-forms/',
222
+ 'img-src' => esc_attr(plugins_url('/assets/admin/images/ninja-forms-logo-128x128.png', GoodByeCaptcha::PLUGIN_MAIN_FILE)),
223
+ 'descr' => 'Let WPBruiser protect your Ninja Forms without any hard to read captcha images or any other user interaction',
224
+ 'category-name' => __('Contact Forms', GoodByeCaptcha::PLUGIN_SLUG),
225
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/contact-forms/',
226
+ 'module' => GdbcModulesController::MODULE_NINJA_FORMS,
227
+ 'detected' => GoodByeCaptchaUtils::isNinjaFormsActivated(),
228
+
229
+ ),
230
+
231
+ array(
232
+ 'name' => 'Formidable Forms',
233
+ 'url' => 'http://www.wpbruiser.com/downloads/formidable-forms/',
234
+ 'img-src' => '//ps.w.org/formidable/assets/icon-128x128.png',
235
+ 'descr' => 'Let WPBruiser protect your Formidable Forms without any hard to read captcha images or any other user interaction',
236
+ 'category-name' => __('Contact Forms', GoodByeCaptcha::PLUGIN_SLUG),
237
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/contact-forms/',
238
+ 'module' => GdbcModulesController::MODULE_FORMIDABLE_FORMS,
239
+ 'detected' => GoodByeCaptchaUtils::isFormidableFormsActivated(),
240
+
241
+ ),
242
+
243
+
244
+ array(
245
+ 'name' => 'MailPoet',
246
+ 'url' => 'http://www.wpbruiser.com/downloads/mailpoet/',
247
+ 'img-src' => '//ps.w.org/wysija-newsletters/assets/icon.svg',
248
+ 'descr' => 'Let WPBruiser protect your MailPoet subscriptions forms. All fake subscriptions will be rejected before adding them to your MailPoet lists',
249
+ 'category-name' => __('Subscriptions', GoodByeCaptcha::PLUGIN_SLUG),
250
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/subscriptions/',
251
+ 'module' => GdbcModulesController::MODULE_MAIL_POET,
252
+ 'detected' => GoodByeCaptchaUtils::isMailPoetActivated(),
253
+ ),
254
+
255
+ array(
256
+ 'name' => 'Fast Secure Contact Form',
257
+ 'url' => 'http://www.wpbruiser.com/downloads/fast-secure-contact-form/',
258
+ 'img-src' => esc_attr(plugins_url('/assets/admin/images/fscf-logo-128x128.png', GoodByeCaptcha::PLUGIN_MAIN_FILE)),
259
+ 'descr' => 'Let WPBruiser protect your Fast Secure Contact Form without any hard to read captcha images or any other user interaction',
260
+ 'category-name' => __('Contact Forms', GoodByeCaptcha::PLUGIN_SLUG),
261
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/contact-forms/',
262
+ 'module' => GdbcModulesController::MODULE_FAST_SECURE_FORM,
263
+ 'detected' => GoodByeCaptchaUtils::isFastSecureFormActivated(),
264
+
265
+ ),
266
+
267
+ array(
268
+ 'name' => 'User Profiles Made Easy',
269
+ 'url' => 'http://www.wpbruiser.com/downloads/upme/',
270
+ 'img-src' => esc_attr(plugins_url('/assets/admin/images/upme-logo-128x128.png', GoodByeCaptcha::PLUGIN_MAIN_FILE)),
271
+ 'descr' => 'WPBruiser will protect the Login and Registration forms without any hard to read captcha images or any other user interaction',
272
+ 'category-name' => __('Membership', GoodByeCaptcha::PLUGIN_SLUG),
273
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/membership/',
274
+ 'module' => GdbcModulesController::MODULE_UPME,
275
+ 'detected' => GoodByeCaptchaUtils::isUserProfileMadeEasyActivated(),
276
+
277
+ ),
278
+
279
+ array(
280
+ 'name' => 'MemberPress',
281
+ 'url' => 'http://www.wpbruiser.com/downloads/memberpress/',
282
+ 'img-src' => esc_attr(plugins_url('/assets/admin/images/memberpress-logo-128x128.png', GoodByeCaptcha::PLUGIN_MAIN_FILE)),
283
+ 'descr' => 'WPBruiser will protect the Login and Registration forms without any hard to read captcha images or any other user interaction',
284
+ 'category-name' => __('Membership', GoodByeCaptcha::PLUGIN_SLUG),
285
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/membership/',
286
+ 'module' => GdbcModulesController::MODULE_MEMBER_PRESS,
287
+ 'detected' => GoodByeCaptchaUtils::isMemberPressPluginActivated(),
288
+
289
+ ),
290
+
291
+ array(
292
+ 'name' => 'BuddyPress',
293
+ 'url' => 'http://www.wpbruiser.com/downloads/buddypress/',
294
+ 'img-src' => '//ps.w.org/buddypress/assets/icon.svg',
295
+ 'descr' => 'WPBruiser will protect the Registration form without any hard to read captcha images or any other user interaction',
296
+ 'category-name' => __('Membership', GoodByeCaptcha::PLUGIN_SLUG),
297
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/membership/',
298
+ 'module' => GdbcModulesController::MODULE_BUDDY_PRESS,
299
+ 'detected' => GoodByeCaptchaUtils::isBuddyPressPluginActivated(),
300
+
301
+ ),
302
+
303
+ array(
304
+ 'name' => 'User Pro',
305
+ 'url' => 'http://www.wpbruiser.com/downloads/upme/',
306
+ 'img-src' => esc_attr(plugins_url('/assets/admin/images/userpro-logo-128x128.png', GoodByeCaptcha::PLUGIN_MAIN_FILE)),
307
+ 'descr' => 'WPBruiser will protect the Login, Registration and Lost Password forms without any hard to read captcha images or any other user interaction',
308
+ 'category-name' => __('Membership', GoodByeCaptcha::PLUGIN_SLUG),
309
+ 'category-url' => 'http://www.wpbruiser.com/downloads/category/membership/',
310
+ 'module' => GdbcModulesController::MODULE_USER_PRO,
311
+ 'detected' => GoodByeCaptchaUtils::isUserProPluginActivated(),
312
+
313
+ ),
314
+
315
+ );
316
+
317
+ if( !$forRightSide ) {
318
+ return $arrPremiumExtensions;
319
+ }
320
+
321
+ foreach($arrPremiumExtensions as $index => $arrExtensionInfo)
322
+ {
323
+ if(empty($arrExtensionInfo['detected']) || GdbcModulesController::isModuleRegistered($arrExtensionInfo['module']))
324
+ unset($arrPremiumExtensions[$index]);
325
+ }
326
+
327
+ return $arrPremiumExtensions;
328
+
329
+ }
330
+
331
+
332
  }
engine/admin/pages/GdbcExtensionsAdminPage.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Copyright (C) 2015 Mihai Chelaru
5
+ *
6
+ * This program is free software; you can redistribute it and/or
7
+ * modify it under the terms of the GNU General Public License
8
+ * as published by the Free Software Foundation; either version 2
9
+ * of the License, or (at your option) any later version.
10
+ *
11
+ * This program is distributed in the hope that it will be useful,
12
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ * GNU General Public License for more details.
15
+ *
16
+ * You should have received a copy of the GNU General Public License
17
+ * along with this program; if not, write to the Free Software
18
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
+ */
20
+
21
+ class GdbcExtensionsAdminPage extends GdbcBaseAdminPage
22
+ {
23
+ public function __construct($pageMenuTitle, $pageBrowserTitle, $pluginSlug)
24
+ {
25
+ parent::__construct($pageMenuTitle, $pageBrowserTitle, $pluginSlug);
26
+
27
+ $this->setPageLayoutColumns(1);
28
+ }
29
+
30
+ public function hasRegisteredModules()
31
+ {
32
+ return true;
33
+ }
34
+
35
+
36
+ public function renderPageContent()
37
+ {
38
+
39
+ $templateFilePath = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'templates' . DIRECTORY_SEPARATOR . 'extensions-page.php';
40
+
41
+ if( ! MchGdbcWpUtils::fileExists($templateFilePath) )
42
+ return;
43
+
44
+ $premiumExtensionsAdminUrl = esc_attr($this->getAdminUrl());
45
+ $premiumExtensionsText = __('Premium Extensions', GoodByeCaptcha::PLUGIN_SLUG);
46
+
47
+ $arrPremiumExtensions = parent::getPremiumExtensions(false);
48
+
49
+ require_once $templateFilePath;
50
+
51
+ }
52
+
53
+
54
+ }
engine/admin/pages/GdbcOthersAdminPage.php CHANGED
@@ -25,9 +25,14 @@ class GdbcOthersAdminPage extends GdbcBaseAdminPage
25
 
26
  $modulesList = array();
27
 
 
28
  if(GdbcModulesController::isModuleRegistered(GdbcModulesController::MODULE_MAIL_CHIMP_FOR_WP))
29
  $modulesList[] = GdbcMailChimpForWpAdminModule::getInstance();
30
 
 
 
 
 
31
  if(GdbcModulesController::isModuleRegistered(GdbcModulesController::MODULE_MAIL_POET))
32
  $modulesList[] = GdbcMailPoetAdminModule::getInstance();
33
 
25
 
26
  $modulesList = array();
27
 
28
+
29
  if(GdbcModulesController::isModuleRegistered(GdbcModulesController::MODULE_MAIL_CHIMP_FOR_WP))
30
  $modulesList[] = GdbcMailChimpForWpAdminModule::getInstance();
31
 
32
+ if(GdbcModulesController::isModuleRegistered(GdbcModulesController::MODULE_EASY_FORMS_FOR_MAILCHIMP))
33
+ $modulesList[] = GdbcEasyFormsForMailChimpAdminModule::getInstance();
34
+
35
+
36
  if(GdbcModulesController::isModuleRegistered(GdbcModulesController::MODULE_MAIL_POET))
37
  $modulesList[] = GdbcMailPoetAdminModule::getInstance();
38
 
engine/admin/pages/GdbcSecurityAdminPage.php CHANGED
@@ -21,6 +21,7 @@ class GdbcSecurityAdminPage extends GdbcBaseAdminPage
21
  {
22
  private $blackListedIpsGroupIndex = null;
23
  private $whiteListedIpsGroupIndex = null;
 
24
 
25
  public function __construct($pageMenuTitle, $pageBrowserTitle, $pluginSlug)
26
  {
@@ -53,6 +54,16 @@ class GdbcSecurityAdminPage extends GdbcBaseAdminPage
53
  ));
54
  }
55
 
 
 
 
 
 
 
 
 
 
 
56
  }
57
 
58
  private function getBlackListedIpsInputName()
@@ -102,6 +113,16 @@ class GdbcSecurityAdminPage extends GdbcBaseAdminPage
102
  return;
103
  }
104
 
 
 
 
 
 
 
 
 
 
 
105
  return parent::renderGroupModulesSettings($groupIndex);
106
 
107
  }
21
  {
22
  private $blackListedIpsGroupIndex = null;
23
  private $whiteListedIpsGroupIndex = null;
24
+ private $geoIpCountryGroupIndex = null;
25
 
26
  public function __construct($pageMenuTitle, $pageBrowserTitle, $pluginSlug)
27
  {
54
  ));
55
  }
56
 
57
+ if(GdbcModulesController::isModuleRegistered(GdbcModulesController::MODULE_GEO_IP_COUNTRY))
58
+ {
59
+ $this->geoIpCountryGroupIndex = $this->registerGroupedModules(array(
60
+ new MchGdbcGroupedModules(__('Geo IP Country', GoodByeCaptcha::PLUGIN_SLUG), array(
61
+ GdbcGeoIpCountryAdminModule::getInstance())
62
+ )
63
+ ));
64
+
65
+ }
66
+
67
  }
68
 
69
  private function getBlackListedIpsInputName()
113
  return;
114
  }
115
 
116
+ if(GdbcModulesController::isModuleRegistered(GdbcModulesController::MODULE_GEO_IP_COUNTRY) && $this->geoIpCountryGroupIndex == $groupIndex)
117
+ {
118
+ if(null !== GdbcGeoIpCountryAdminModule::getInstance()->getPartialAdminSettingsFilePath())
119
+ {
120
+ include_once GdbcGeoIpCountryAdminModule::getInstance()->getPartialAdminSettingsFilePath();
121
+ }
122
+
123
+ return;
124
+ }
125
+
126
  return parent::renderGroupModulesSettings($groupIndex);
127
 
128
  }
engine/admin/pages/templates/extensions-page.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="wp-filter">
2
+ <ul class="filter-links">
3
+ <li><a href="<?php echo $premiumExtensionsAdminUrl ?>" class="current"><?php echo $premiumExtensionsText ?></a></li>
4
+ </ul>
5
+ </div>
6
+
7
+ <div class="wp-list-table widefat plugin-install">
8
+ <div id="the-list">
9
+
10
+
11
+ <?php
12
+
13
+ $extensionsListCode = '';
14
+
15
+ if(!empty($arrPremiumExtensions))
16
+ {
17
+ foreach ($arrPremiumExtensions as $arrExtensionInfo)
18
+ {
19
+ $extensionsListCode .= '<div class="plugin-card">';
20
+ $extensionsListCode .= '<div class="plugin-card-top">';
21
+ $extensionsListCode .= '<div class="name column-name">';
22
+ $extensionsListCode .= "<h3><a href=\"{$arrExtensionInfo['url']}\">{$arrExtensionInfo['name']}<img class=\"plugin-icon\" src=\"{$arrExtensionInfo['img-src']}\"></a></h3>";
23
+ $extensionsListCode .= '</div>';
24
+ $extensionsListCode .= '<div class="desc column-description">';
25
+ $extensionsListCode .= "<p>{$arrExtensionInfo['descr']}</p>";
26
+ $extensionsListCode .= "<p class=\"authors\"><cite>Category: <a href=\"{$arrExtensionInfo['category-url']}\">{$arrExtensionInfo['category-name']}</a></cite></p>";
27
+ $extensionsListCode .= '</div>';
28
+ $extensionsListCode .= "<div class=\"action-links\"><ul class=\"plugin-action-buttons\"><li><a href=\"{$arrExtensionInfo['url']}\" class=\"install-now button\">Get this Extension</a></li></ul></div>";
29
+ $extensionsListCode .= '</div>';
30
+ $extensionsListCode .= '</div>';
31
+ }
32
+ }
33
+
34
+ echo $extensionsListCode;
35
+ ?>
36
+
37
+ </div>
38
+ </div>
engine/db-access/GdbcDbAccessController.php CHANGED
@@ -187,6 +187,35 @@ final class GdbcDbAccessController
187
  return (array)self::executePreparedQuery($wpdb->prepare($sqlQuery, $arrParams));
188
  }
189
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  public static function getAttemptById($attemptId)
191
  {
192
  global $wpdb;
187
  return (array)self::executePreparedQuery($wpdb->prepare($sqlQuery, $arrParams));
188
  }
189
 
190
+
191
+ public static function getAttemptsPerModuleOlderThan($moduleId, $numberOfDaysAgo, $pageNumber, $recordsPerPage)
192
+ {
193
+ global $wpdb;
194
+
195
+ $pageNumber = abs((int)$pageNumber);
196
+ $pageNumber < 1 ? $pageNumber = 1 : null;
197
+
198
+ $createdDateTime = self::getDaysAgoTimeStamp($numberOfDaysAgo);
199
+
200
+ $sqlQuery = "SELECT * FROM " . self::getAttemptsTableName();
201
+ $sqlQuery .= GoodByeCaptcha::isNetworkActivated() ? ' WHERE Id > %d ' : ' WHERE SiteId = %d ';
202
+ $sqlQuery .= ' AND CreatedDate < %d ';
203
+ $sqlQuery .= ' AND ModuleId = %d ORDER BY CreatedDate DESC LIMIT %d, %d';
204
+
205
+ $arrParams = array();
206
+ $arrParams[] = GoodByeCaptcha::isNetworkActivated() ? 0 : get_current_blog_id();
207
+
208
+ $arrParams[] = $createdDateTime;
209
+ $arrParams[] = $moduleId;
210
+
211
+ $arrParams[] = ($pageNumber - 1) * $recordsPerPage;
212
+ $arrParams[] = $recordsPerPage;
213
+
214
+ return (array)self::executePreparedQuery($wpdb->prepare($sqlQuery, $arrParams));
215
+ }
216
+
217
+
218
+
219
  public static function getAttemptById($attemptId)
220
  {
221
  global $wpdb;
engine/modules/GdbcBaseAdminModule.php CHANGED
@@ -151,6 +151,7 @@ abstract class GdbcBaseAdminModule extends MchGdbcBaseAdminModule
151
  'comment_author_url' => __('Website', GoodByeCaptcha::PLUGIN_SLUG),
152
  'comment_content' => __('Content', GoodByeCaptcha::PLUGIN_SLUG),
153
  'comment_parent' => __('As Reply to', GoodByeCaptcha::PLUGIN_SLUG),
 
154
 
155
  'your-name' => __('Name', GoodByeCaptcha::PLUGIN_SLUG),
156
  'your-email' => __('Email', GoodByeCaptcha::PLUGIN_SLUG),
@@ -196,4 +197,6 @@ abstract class GdbcBaseAdminModule extends MchGdbcBaseAdminModule
196
  return isset($arrMappedKeys[$blockedKey]) ? $arrMappedKeys[$blockedKey] : esc_html($blockedContentKey);
197
  }
198
 
 
 
199
  }
151
  'comment_author_url' => __('Website', GoodByeCaptcha::PLUGIN_SLUG),
152
  'comment_content' => __('Content', GoodByeCaptcha::PLUGIN_SLUG),
153
  'comment_parent' => __('As Reply to', GoodByeCaptcha::PLUGIN_SLUG),
154
+ 'comment_agent' => __('Browser', GoodByeCaptcha::PLUGIN_SLUG),
155
 
156
  'your-name' => __('Name', GoodByeCaptcha::PLUGIN_SLUG),
157
  'your-email' => __('Email', GoodByeCaptcha::PLUGIN_SLUG),
197
  return isset($arrMappedKeys[$blockedKey]) ? $arrMappedKeys[$blockedKey] : esc_html($blockedContentKey);
198
  }
199
 
200
+
201
+
202
  }
engine/modules/GdbcBasePublicModule.php CHANGED
@@ -19,9 +19,10 @@
19
 
20
  abstract class GdbcBasePublicModule extends MchGdbcBasePublicModule
21
  {
22
- private $submittedData = null;
23
-
24
 
 
25
  protected $attemptEntity = null;
26
 
27
  /**
@@ -37,6 +38,44 @@ abstract class GdbcBasePublicModule extends MchGdbcBasePublicModule
37
  $this->attemptEntity = new GdbcAttemptEntity($this->getModuleId());
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  protected function getAllSavedOptions($asNetworkOption = true)
41
  {
42
  return parent::getAllSavedOptions(GoodByeCaptcha::isNetworkActivated());
@@ -96,5 +135,4 @@ abstract class GdbcBasePublicModule extends MchGdbcBasePublicModule
96
  return '<input type="hidden" autocomplete="off" autocorrect="off" name="' . esc_attr( $hiddenField ) . '" value="" />';
97
  }
98
 
99
-
100
  }
19
 
20
  abstract class GdbcBasePublicModule extends MchGdbcBasePublicModule
21
  {
22
+ CONST REFRESH_TOKENS_SCRIPT_HANDLE = 'wp-bruiser-refresh-tokens';
23
+ CONST MAIN_PUBLIC_SCRIPT_HANDLE = 'wp-bruiser-public-script';
24
 
25
+ private $submittedData = null;
26
  protected $attemptEntity = null;
27
 
28
  /**
38
  $this->attemptEntity = new GdbcAttemptEntity($this->getModuleId());
39
  }
40
 
41
+ public static function getMainScriptUrl()
42
+ {
43
+ return plugins_url( '/assets/public/scripts/gdbc-public.js', GoodByeCaptcha::PLUGIN_MAIN_FILE );
44
+ }
45
+
46
+ public static function getRefreshTokensScriptFileContent($appendScriptTag = true)
47
+ {
48
+ $filePath = dirname(GoodByeCaptcha::PLUGIN_MAIN_FILE) . '/assets/public/scripts/gdbc-refresh-tokens.js';
49
+
50
+ if(!@is_readable($filePath))
51
+ return null;
52
+
53
+ return $appendScriptTag ? '<script type="text/javascript">' . file_get_contents($filePath) . '</script>' : file_get_contents($filePath);
54
+
55
+ }
56
+
57
+
58
+ public static function getRefreshTokensScriptUrl()
59
+ {
60
+ return plugins_url('/assets/public/scripts/gdbc-refresh-tokens.js', GoodByeCaptcha::PLUGIN_MAIN_FILE);
61
+ }
62
+
63
+ public static function getPublicScriptInlineContent($addScriptTag = true)
64
+ {
65
+ $clientUrl = esc_attr(esc_url(home_url('/', MchGdbcWpUtils::isSslRequest() ? 'https' : 'http') . '?gdbc-client=' . GoodByeCaptcha::PLUGIN_VERSION . '-'));
66
+
67
+ $inlineContent = '<script type="text/javascript">';
68
+ $inlineContent .= "!function(t,e){\"use strict\";function n(){if(!a){a=!0;for(var t=0;t<d.length;t++)d[t].fn.call(window,d[t].ctx);d=[]}}function o(){\"complete\"===document.readyState&&n()}t=t||\"docReady\",e=e||window;var d=[],a=!1,c=!1;e[t]=function(t,e){return a?void setTimeout(function(){t(e)},1):(d.push({fn:t,ctx:e}),void(\"complete\"===document.readyState||!document.attachEvent&&\"interactive\"===document.readyState?setTimeout(n,1):c||(document.addEventListener?(document.addEventListener(\"DOMContentLoaded\",n,!1),window.addEventListener(\"load\",n,!1)):(document.attachEvent(\"onreadystatechange\",o),window.attachEvent(\"onload\",n)),c=!0)))}}(\"wpBruiserDocReady\",window);";
69
+ $inlineContent .= "
70
+ (function(){var wpbrLoader = (function(){var g=document,b=g.createElement('script'),c=g.scripts[0];b.async=1;b.src='$clientUrl'+(new Date()).getTime();c.parentNode.insertBefore(b,c);});wpBruiserDocReady(wpbrLoader);window.onunload=function(){};window.addEventListener('pageshow',function(event){if(event.persisted){(typeof window.WPBruiserClient==='undefined')?wpbrLoader():window.WPBruiserClient.requestTokens();}},false);})();
71
+ ";
72
+
73
+ $inlineContent .= '</script>';
74
+
75
+ return $inlineContent;
76
+ }
77
+
78
+
79
  protected function getAllSavedOptions($asNetworkOption = true)
80
  {
81
  return parent::getAllSavedOptions(GoodByeCaptcha::isNetworkActivated());
135
  return '<input type="hidden" autocomplete="off" autocorrect="off" name="' . esc_attr( $hiddenField ) . '" value="" />';
136
  }
137
 
 
138
  }
engine/modules/black-listed-ips/partials/admin-settings.php CHANGED
@@ -27,6 +27,7 @@
27
  .gdbc-blacklisted-ips-holder input[type="text"]
28
  {
29
  width: 99%;
 
30
  }
31
  .gdbc-blacklisted-ips-holder thead tbody > tr form > td:first-child
32
  {
@@ -139,9 +140,9 @@
139
  if(count($arrFormattedIp) != 2)
140
  continue;
141
 
142
- $countryCode = sanitize_text_field(MchGdbcIPUtils::getCountryCode($arrFormattedIp[0]));
143
 
144
- $countryName = GoodByeCaptchaUtils::getCountryNameById(GoodByeCaptchaUtils::getCountryIdByCode($countryCode));
145
 
146
  if(empty($countryName))
147
  {
27
  .gdbc-blacklisted-ips-holder input[type="text"]
28
  {
29
  width: 99%;
30
+ padding:3px 5px;
31
  }
32
  .gdbc-blacklisted-ips-holder thead tbody > tr form > td:first-child
33
  {
140
  if(count($arrFormattedIp) != 2)
141
  continue;
142
 
143
+ //$countryCode = sanitize_text_field(MchGdbcIPUtils::getCountryCode($arrFormattedIp[0]));
144
 
145
+ $countryName = GdbcIPUtils::getCountryName($arrFormattedIp[0]);//GoodByeCaptchaUtils::getCountryNameById(GoodByeCaptchaUtils::getCountryIdByCode($countryCode));
146
 
147
  if(empty($countryName))
148
  {
engine/modules/email-notifications/templates/notification-base-layout.html CHANGED
@@ -15,10 +15,10 @@
15
 
16
  <div style="color: #999;padding: 10px 0; border-top:3px solid #eee; margin-top: 30px;">
17
  <div style="">Enjoy a Spam-Free and Bot-Free Wordpress site!</div>
18
- <div style="">The <a href="http://www.goodbyecaptcha.com/" style="color: #3ba1da;text-decoration: none;">WPBruiser</a> Team</div>
19
  </div>
20
 
21
- <div style="margin-top:10px; padding:15px;background:#eee;border-radius:3px;text-align:center;">If you need any assistance, please feel free to <a href="http://www.goodbyecaptcha.com/contact/" style="color:#3ba1da;text-decoration:none;">contact us</a>.</div>
22
 
23
  </div>
24
 
15
 
16
  <div style="color: #999;padding: 10px 0; border-top:3px solid #eee; margin-top: 30px;">
17
  <div style="">Enjoy a Spam-Free and Bot-Free Wordpress site!</div>
18
+ <div style="">The <a href="http://www.wpbruiser.com/" style="color: #3ba1da;text-decoration: none;">WPBruiser</a> Team</div>
19
  </div>
20
 
21
+ <div style="margin-top:10px; padding:15px;background:#eee;border-radius:3px;text-align:center;">If you need any assistance, please feel free to <a href="http://www.wpbruiser.com/contact/" style="color:#3ba1da;text-decoration:none;">contact us</a>.</div>
22
 
23
  </div>
24
 
engine/modules/licenses/GdbcLicensesAdminModule.php ADDED
@@ -0,0 +1,183 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Copyright (C) 2015 Mihai Chelaru
4
+ *
5
+ * This program is free software; you can redistribute it and/or
6
+ * modify it under the terms of the GNU General Public License
7
+ * as published by the Free Software Foundation; either version 2
8
+ * of the License, or (at your option) any later version.
9
+ *
10
+ * This program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ * GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public License
16
+ * along with this program; if not, write to the Free Software
17
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
+ */
19
+
20
+ class GdbcLicensesAdminModule extends GdbcBaseAdminModule
21
+ {
22
+ protected function __construct()
23
+ {
24
+ parent::__construct();
25
+
26
+ add_filter('upgrader_package_options', array($this, 'setModuleDestinationFolders'));
27
+ add_action( 'admin_init', array($this, 'checkForModuleUpdates'), 0 );
28
+
29
+ }
30
+
31
+ public function setModuleDestinationFolders($arrPluginUpdateOptions)
32
+ {
33
+ if(empty($arrPluginUpdateOptions['hook_extra']['plugin']) || strpos($arrPluginUpdateOptions['hook_extra']['plugin'], GoodByeCaptcha::PLUGIN_SLUG) !== 0)
34
+ return $arrPluginUpdateOptions;
35
+
36
+ foreach(array_keys(GdbcModulesController::getRegisteredModules()) as $moduleName)
37
+ {
38
+ if( false === strpos($arrPluginUpdateOptions['hook_extra']['plugin'], GdbcModulesController::getModuleStandAloneDirectoryName($moduleName)) )
39
+ continue;
40
+
41
+ if(isset($arrPluginUpdateOptions['destination']))
42
+ $arrPluginUpdateOptions['destination'] = trailingslashit($arrPluginUpdateOptions['destination']) . trailingslashit(GdbcModulesController::getModuleStandAloneDirectoryName($moduleName));
43
+ else
44
+ $arrPluginUpdateOptions['destination'] = trailingslashit(GdbcModulesController::getModuleStandAloneDirectoryPath($moduleName));
45
+
46
+ break;
47
+ }
48
+
49
+ return $arrPluginUpdateOptions;
50
+ }
51
+
52
+ public function checkForModuleUpdates()
53
+ {
54
+ foreach(GdbcModulesController::getLicensedModuleNames() as $moduleName)
55
+ {
56
+ if(!GdbcModulesController::isModuleRegistered($moduleName))
57
+ continue;
58
+
59
+ $moduleMainClassName = GdbcModulesController::getModuleStandAloneClassName($moduleName);
60
+ if( !defined("$moduleMainClassName::MODULE_VERSION") )
61
+ continue;
62
+
63
+ $classReflector = new ReflectionClass($moduleMainClassName);
64
+
65
+ new MchGdbcPluginUpdater(GoodByeCaptcha::PLUGIN_SITE_URL, $classReflector->getFileName(), array(
66
+ //'version' => constant("$moduleMainClassName::MODULE_VERSION"),
67
+ 'version' => GoodByeCaptcha::PLUGIN_VERSION,
68
+ 'item_name' => GdbcModulesController::getModuleDisplayName($moduleName),
69
+ 'license' => $this->getOption($moduleName),
70
+ 'url' => home_url(),
71
+ ));
72
+
73
+ }
74
+
75
+ }
76
+
77
+ public function getDefaultOptions()
78
+ {
79
+ static $arrDefaultSettingOptions = null;
80
+ if(null !== $arrDefaultSettingOptions)
81
+ return $arrDefaultSettingOptions;
82
+
83
+ $arrDefaultSettingOptions = array();
84
+
85
+ //$modulesCounter = 0;
86
+
87
+ foreach(GdbcModulesController::getLicensedModuleNames() as $moduleName)
88
+ {
89
+ if(!GdbcModulesController::isModuleRegistered($moduleName))
90
+ continue;
91
+
92
+ if( class_exists("GoodByeCaptcha$moduleName") ) // old extension with no license
93
+ continue;
94
+
95
+ $arrDefaultSettingOptions[$moduleName] = array(
96
+ //'Id' => ++$modulesCounter,
97
+ 'Value' => null,
98
+ 'LabelText' => GdbcModulesController::getModuleDisplayName($moduleName) . ' ' . __('License', GoodByeCaptcha::PLUGIN_SLUG),
99
+ 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_TEXT
100
+ );
101
+ }
102
+
103
+ return $arrDefaultSettingOptions;
104
+
105
+ }
106
+
107
+
108
+ public function validateModuleSettingsFields($arrSettingOptions)
109
+ {
110
+
111
+ $arrSettingOptions = array_map('sanitize_text_field', (array)$arrSettingOptions);
112
+ $arrSettingOptions = array_map('trim', (array)$arrSettingOptions);
113
+ $arrSettingOptions = array_filter((array)$arrSettingOptions);
114
+
115
+ $errorEncountered = false;
116
+ foreach($arrSettingOptions as $moduleName => $licenseKey)
117
+ {
118
+ if(!GdbcModulesController::isModuleRegistered($moduleName))
119
+ continue;
120
+
121
+ if( ! $this->activateLicense($moduleName, $licenseKey) )
122
+ {
123
+ $errorEncountered = true;
124
+ unset($arrSettingOptions[$moduleName]);
125
+ }
126
+
127
+ }
128
+
129
+ if($errorEncountered || empty($arrSettingOptions))
130
+ {
131
+ $this->registerErrorMessage(__('There was an error while activating your license!', GoodByeCaptcha::PLUGIN_SLUG));
132
+ }
133
+ else
134
+ {
135
+ $this->registerSuccessMessage(__('Your license was successfully activated!', GoodByeCaptcha::PLUGIN_SLUG));
136
+ }
137
+
138
+
139
+ return $arrSettingOptions;
140
+ }
141
+
142
+
143
+ private function activateLicense($moduleName, $licenseKey)
144
+ {
145
+ $moduleName = GdbcModulesController::getModuleDisplayName($moduleName, true);
146
+ $licenseRequestParams = array(
147
+ 'edd_action' => 'activate_license',
148
+ 'license' => $licenseKey,
149
+ 'item_name' => urlencode($moduleName),
150
+ 'url' => home_url()
151
+ );
152
+
153
+ $response = wp_remote_post( GoodByeCaptcha::PLUGIN_SITE_URL, array('timeout' => 15, 'sslverify' => false, 'body' => $licenseRequestParams));
154
+
155
+ if ( is_wp_error( $response ) ) {
156
+ return false;
157
+ }
158
+
159
+ set_site_transient( 'update_plugins', null );
160
+
161
+ $licenseInfo = @json_decode( @wp_remote_retrieve_body( $response ) );
162
+
163
+ return !empty($licenseInfo->success) && !empty($licenseInfo->license) && $licenseInfo->license === 'valid';
164
+
165
+ }
166
+
167
+ public function renderModuleSettingsSectionHeader(array $arrSectionInfo)
168
+ {
169
+ //echo '<h4>' . __('Activate licenses for the following extensions:', GoodByeCaptcha::PLUGIN_SLUG) . '</h4>';
170
+ }
171
+
172
+ public function getFormattedBlockedContent(GdbcAttemptEntity $attemptEntity)
173
+ {
174
+ return null;
175
+ }
176
+
177
+ public static function getInstance()
178
+ {
179
+ static $adminInstance = null;
180
+ return null !== $adminInstance ? $adminInstance : $adminInstance = new self();
181
+ }
182
+
183
+ }
engine/modules/licenses/GdbcLicensesPublicModule.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Copyright (C) 2015 Mihai Chelaru
4
+ *
5
+ * This program is free software; you can redistribute it and/or
6
+ * modify it under the terms of the GNU General Public License
7
+ * as published by the Free Software Foundation; either version 2
8
+ * of the License, or (at your option) any later version.
9
+ *
10
+ * This program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ * GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public License
16
+ * along with this program; if not, write to the Free Software
17
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
+ */
19
+
20
+ class GdbcLicensesPublicModule extends GdbcBasePublicModule
21
+ {
22
+
23
+ public function __construct()
24
+ {
25
+ parent::__construct();
26
+ }
27
+
28
+ /**
29
+ * @return int
30
+ */
31
+ protected function getModuleId()
32
+ {
33
+ return GdbcModulesController::getModuleIdByName(GdbcModulesController::MODULE_LICENSES);
34
+ }
35
+
36
+ public static function getInstance()
37
+ {
38
+ static $adminInstance = null;
39
+ return null !== $adminInstance ? $adminInstance : $adminInstance = new self();
40
+ }
41
+
42
+ }
engine/modules/reports/GdbcReportsAdminModule.php CHANGED
@@ -139,7 +139,7 @@ final class GdbcReportsAdminModule extends GdbcBaseAdminModule
139
 
140
  //$gdbcAttempt->ClientIp = MchGdbcIPUtils::ipAddressFromBinary($gdbcAttempt->ClientIp);
141
 
142
- if(null === ($countryCode = MchGdbcIPUtils::getCountryCode($gdbcAttempt->ClientIp)))
143
  continue;
144
 
145
  $countryCode = sanitize_text_field($countryCode);
@@ -160,13 +160,13 @@ final class GdbcReportsAdminModule extends GdbcBaseAdminModule
160
 
161
  $ajaxData = array();
162
  $ajaxData['TableHeader'] = array(
163
- 'CreatedDate' => __('Attempt Date', GoodByeCaptcha::PLUGIN_SLUG),
164
- 'Site' => __('Site', GoodByeCaptcha::PLUGIN_SLUG),
165
- 'ModuleName' => __('Module/Section', GoodByeCaptcha::PLUGIN_SLUG),
166
  'ClientIp' => __('IP Address', GoodByeCaptcha::PLUGIN_SLUG),
167
- 'Country' => __('Country', GoodByeCaptcha::PLUGIN_SLUG),
168
- 'Reason' => __('Blocking Reason', GoodByeCaptcha::PLUGIN_SLUG),
169
- 'Notes' => __('Blocked Content', GoodByeCaptcha::PLUGIN_SLUG)
170
  );
171
 
172
  if( !self::$isGdbcNetworkActivated )
@@ -490,9 +490,9 @@ final class GdbcReportsAdminModule extends GdbcBaseAdminModule
490
  public function getCountryForDisplay($ipAddress)
491
  {
492
 
493
- $countryCode = sanitize_text_field(MchGdbcIPUtils::getCountryCode($ipAddress));
494
-
495
- $countryName = GoodByeCaptchaUtils::getCountryNameById(GoodByeCaptchaUtils::getCountryIdByCode($countryCode));
496
 
497
 
498
  if (empty($countryCode) || empty($countryName))
139
 
140
  //$gdbcAttempt->ClientIp = MchGdbcIPUtils::ipAddressFromBinary($gdbcAttempt->ClientIp);
141
 
142
+ if(null === ($countryCode = GdbcIPUtils::getCountryCode($gdbcAttempt->ClientIp)))
143
  continue;
144
 
145
  $countryCode = sanitize_text_field($countryCode);
160
 
161
  $ajaxData = array();
162
  $ajaxData['TableHeader'] = array(
163
+ 'CreatedDate' => __('Attempt Date', GoodByeCaptcha::PLUGIN_SLUG),
164
+ 'Site' => __('Site', GoodByeCaptcha::PLUGIN_SLUG),
165
+ 'ModuleName' => __('Module/Section', GoodByeCaptcha::PLUGIN_SLUG),
166
  'ClientIp' => __('IP Address', GoodByeCaptcha::PLUGIN_SLUG),
167
+ 'Country' => __('Country', GoodByeCaptcha::PLUGIN_SLUG),
168
+ 'Reason' => __('Blocking Reason', GoodByeCaptcha::PLUGIN_SLUG),
169
+ 'Notes' => __('Blocked Content', GoodByeCaptcha::PLUGIN_SLUG)
170
  );
171
 
172
  if( !self::$isGdbcNetworkActivated )
490
  public function getCountryForDisplay($ipAddress)
491
  {
492
 
493
+ $countryId = GdbcIPUtils::getCountryId($ipAddress);
494
+ $countryCode = sanitize_text_field(GoodByeCaptchaUtils::getCountryCodeById($countryId));
495
+ $countryName = GoodByeCaptchaUtils::getCountryNameById($countryId);
496
 
497
 
498
  if (empty($countryCode) || empty($countryName))
engine/modules/settings/GdbcSettingsAdminModule.php CHANGED
@@ -40,6 +40,7 @@ class GdbcSettingsAdminModule extends GdbcBaseAdminModule
40
  parent::__construct();
41
 
42
  $this->saveSecuredOptions(false);
 
43
  }
44
 
45
  public function getDefaultOptions()
40
  parent::__construct();
41
 
42
  $this->saveSecuredOptions(false);
43
+
44
  }
45
 
46
  public function getDefaultOptions()
engine/modules/settings/GdbcSettingsPublicModule.php CHANGED
@@ -19,6 +19,7 @@
19
 
20
  class GdbcSettingsPublicModule extends GdbcBasePublicModule
21
  {
 
22
  protected function __construct()
23
  {
24
  parent::__construct();
19
 
20
  class GdbcSettingsPublicModule extends GdbcBasePublicModule
21
  {
22
+ private $updatedPluginsHookIndex = null;
23
  protected function __construct()
24
  {
25
  parent::__construct();
engine/modules/ultimate-member/GdbcUltimateMemberPublicModule.php CHANGED
@@ -39,13 +39,25 @@ final class GdbcUltimateMemberPublicModule extends GdbcBasePublicModule
39
  if($this->getOption(GdbcUltimateMemberAdminModule::OPTION_ULTIMATE_MEMBER_LOST_PASSWORD_FORM)){
40
  $this->registerLostPasswordHooks();
41
  }
42
-
43
  }
44
 
45
  private function registerLoginHooks()
46
  {
47
  add_action('um_submit_form_errors_hook_login', array($this, 'validateFormEncryptedToken'), 1);
48
  add_action('um_after_login_fields', array($this, 'renderHiddenFieldIntoForm'));
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  }
50
 
51
  public function registerRegistrationHooks()
@@ -105,8 +117,9 @@ final class GdbcUltimateMemberPublicModule extends GdbcBasePublicModule
105
 
106
  if(isset($_POST['username_b']) && $umSection === GdbcUltimateMemberAdminModule::OPTION_ULTIMATE_MEMBER_LOST_PASSWORD_FORM)
107
  {
108
- $key = is_email($_POST['username_b']) ? __('Email', GoodByeCaptcha::PLUGIN_SLUG) : __('Username', GoodByeCaptcha::PLUGIN_SLUG);
109
- $arrSubmittedData[$key] = $_POST['username_b'];
 
110
  }
111
 
112
  $this->getAttemptEntity()->Notes = $arrSubmittedData;
39
  if($this->getOption(GdbcUltimateMemberAdminModule::OPTION_ULTIMATE_MEMBER_LOST_PASSWORD_FORM)){
40
  $this->registerLostPasswordHooks();
41
  }
 
42
  }
43
 
44
  private function registerLoginHooks()
45
  {
46
  add_action('um_submit_form_errors_hook_login', array($this, 'validateFormEncryptedToken'), 1);
47
  add_action('um_after_login_fields', array($this, 'renderHiddenFieldIntoForm'));
48
+
49
+ if(MchGdbcWpUtils::isAjaxRequest()){
50
+ add_action('um_after_form', array($this, 'renderRefreshTokensScript'), 10, 1);
51
+ }
52
+
53
+ }
54
+
55
+ public function renderRefreshTokensScript($arrRequestInfo)
56
+ {
57
+ if((empty($arrRequestInfo['mode']) || 'login' !== $arrRequestInfo['mode']))
58
+ return;
59
+
60
+ echo GdbcBasePublicModule::getRefreshTokensScriptFileContent(true);
61
  }
62
 
63
  public function registerRegistrationHooks()
117
 
118
  if(isset($_POST['username_b']) && $umSection === GdbcUltimateMemberAdminModule::OPTION_ULTIMATE_MEMBER_LOST_PASSWORD_FORM)
119
  {
120
+ is_email($_POST['username_b']) ?
121
+ $arrSubmittedData['email'] = sanitize_email($_POST['username_b']) :
122
+ $arrSubmittedData['username'] = sanitize_user($_POST['username_b']);
123
  }
124
 
125
  $this->getAttemptEntity()->Notes = $arrSubmittedData;
engine/modules/white-listed-ips/partials/admin-settings.php CHANGED
@@ -133,9 +133,9 @@ $formAction = GoodByeCaptcha::isNetworkActivated() ? '' : 'options.php';
133
  if(count($arrFormattedIp) != 2)
134
  continue;
135
 
136
- $countryCode = sanitize_text_field(MchGdbcIPUtils::getCountryCode($arrFormattedIp[0]));
137
 
138
- $countryName = GoodByeCaptchaUtils::getCountryNameById(GoodByeCaptchaUtils::getCountryIdByCode($countryCode));
139
 
140
  if(empty($countryName))
141
  {
133
  if(count($arrFormattedIp) != 2)
134
  continue;
135
 
136
+ //$countryCode = sanitize_text_field(MchGdbcIPUtils::getCountryCode($arrFormattedIp[0]));
137
 
138
+ $countryName = GdbcIPUtils::getCountryName($arrFormattedIp[0]);// GoodByeCaptchaUtils::getCountryNameById(GoodByeCaptchaUtils::getCountryIdByCode($countryCode));
139
 
140
  if(empty($countryName))
141
  {
engine/modules/wordpress-tweaks/GdbcWordPressTweaksAdminModule.php CHANGED
@@ -26,7 +26,9 @@ class GdbcWordPressTweaksAdminModule extends GdbcBaseAdminModule
26
  CONST WORDPRESS_HIDE_VERSION = 'HideVersion';
27
 
28
  CONST WORDPRESS_XML_RPC_FULLY_DISABLED = 'XmlRpcFullyDisabled';
29
- CONST WORDPRESS_XML_RPC_PINGBACK_DISABLED = 'XmlRpcPingDisabled';
 
 
30
 
31
  CONST WORDPRESS_COMMENTS_FORM_WEBSITE_FIELD = 'CommentsWebsiteFieldHidden';
32
  CONST WORDPRESS_COMMENTS_FORM_NOTES_FIELDS = 'CommentsNoteHidden'; // hides allowed tags and text like "Your email address will not be published"
@@ -76,17 +78,27 @@ class GdbcWordPressTweaksAdminModule extends GdbcBaseAdminModule
76
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
77
  ),
78
 
79
- self::WORDPRESS_XML_RPC_PINGBACK_DISABLED => array(
80
  'Id' => 5,
81
  'Value' => NULL,
82
  'LabelText' => __('Disable XML-RPC Pingbacks', GoodByeCaptcha::PLUGIN_SLUG),
83
- 'Description' => __('Removes just the Pingbacks methods from the XML-RPC service. This will also remove the X-Pingback header', GoodByeCaptcha::PLUGIN_SLUG),
84
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
85
  ),
86
 
 
 
 
 
 
 
 
 
 
 
87
  self::WORDPRESS_COMMENTS_FORM_WEBSITE_FIELD => array(
88
- 'Id' => 6,
89
- 'Value' => NULL,
90
  'LabelText' => __('Hide Comments Website Field', GoodByeCaptcha::PLUGIN_SLUG),
91
  'Description' => __('Hides Comments Form Website Url', GoodByeCaptcha::PLUGIN_SLUG),
92
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
@@ -94,7 +106,7 @@ class GdbcWordPressTweaksAdminModule extends GdbcBaseAdminModule
94
 
95
 
96
  self::WORDPRESS_COMMENTS_FORM_NOTES_FIELDS => array(
97
- 'Id' => 7,
98
  'Value' => NULL,
99
  'LabelText' => __('Hide Comments Form Notes Fields', GoodByeCaptcha::PLUGIN_SLUG),
100
  'Description' => __('Hides form allowed tags and text like "Your email address will not be published"', GoodByeCaptcha::PLUGIN_SLUG),
26
  CONST WORDPRESS_HIDE_VERSION = 'HideVersion';
27
 
28
  CONST WORDPRESS_XML_RPC_FULLY_DISABLED = 'XmlRpcFullyDisabled';
29
+ CONST WORDPRESS_XML_RPC_PINGBACKS_DISABLED = 'XmlRpcPingDisabled';
30
+
31
+ CONST WORDPRESS_COMMENTS_TRACKBACKS_DISABLED = 'CommentsTrackBackDisabled';
32
 
33
  CONST WORDPRESS_COMMENTS_FORM_WEBSITE_FIELD = 'CommentsWebsiteFieldHidden';
34
  CONST WORDPRESS_COMMENTS_FORM_NOTES_FIELDS = 'CommentsNoteHidden'; // hides allowed tags and text like "Your email address will not be published"
78
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
79
  ),
80
 
81
+ self::WORDPRESS_XML_RPC_PINGBACKS_DISABLED => array(
82
  'Id' => 5,
83
  'Value' => NULL,
84
  'LabelText' => __('Disable XML-RPC Pingbacks', GoodByeCaptcha::PLUGIN_SLUG),
85
+ 'Description' => __('Removes the Pingbacks methods from the XML-RPC service. This will also remove the X-Pingback header', GoodByeCaptcha::PLUGIN_SLUG),
86
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
87
  ),
88
 
89
+
90
+ // self::WORDPRESS_COMMENTS_TRACKBACKS_DISABLED => array(
91
+ // 'Id' => 6,
92
+ // 'Value' => NULL,
93
+ // 'LabelText' => __('Disable Comments Trackbacks', GoodByeCaptcha::PLUGIN_SLUG),
94
+ // 'Description' => __('Blocks all Comments Trackbacks', GoodByeCaptcha::PLUGIN_SLUG),
95
+ // 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
96
+ // ),
97
+
98
+
99
  self::WORDPRESS_COMMENTS_FORM_WEBSITE_FIELD => array(
100
+ 'Id' => 7,
101
+ 'Value' => TRUE,
102
  'LabelText' => __('Hide Comments Website Field', GoodByeCaptcha::PLUGIN_SLUG),
103
  'Description' => __('Hides Comments Form Website Url', GoodByeCaptcha::PLUGIN_SLUG),
104
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
106
 
107
 
108
  self::WORDPRESS_COMMENTS_FORM_NOTES_FIELDS => array(
109
+ 'Id' => 8,
110
  'Value' => NULL,
111
  'LabelText' => __('Hide Comments Form Notes Fields', GoodByeCaptcha::PLUGIN_SLUG),
112
  'Description' => __('Hides form allowed tags and text like "Your email address will not be published"', GoodByeCaptcha::PLUGIN_SLUG),
engine/modules/wordpress-tweaks/GdbcWordPressTweaksPublicModule.php CHANGED
@@ -56,13 +56,13 @@ class GdbcWordPressTweaksPublicModule extends GdbcBasePublicModule
56
  $this->blockXmlRpcRequest();
57
  }
58
 
59
- if(MchGdbcWpUtils::isXmlRpcRequest() && (bool)$this->getOption(GdbcWordPressTweaksAdminModule::WORDPRESS_XML_RPC_PINGBACK_DISABLED))
60
  {
61
  add_filter('xmlrpc_methods', array($this, 'removeXPingBackXmlRpcMethods'));
62
  }
63
 
64
 
65
- if($this->getOption(GdbcWordPressTweaksAdminModule::WORDPRESS_XML_RPC_FULLY_DISABLED) || $this->getOption(GdbcWordPressTweaksAdminModule::WORDPRESS_XML_RPC_PINGBACK_DISABLED))
66
  {
67
  add_filter('wp_headers', array($this, 'removeXPingBackHeader'), 9999);
68
  add_filter('bloginfo_url', array($this, 'filterXPingBackLink'), 9999, 2);
56
  $this->blockXmlRpcRequest();
57
  }
58
 
59
+ if(MchGdbcWpUtils::isXmlRpcRequest() && (bool)$this->getOption(GdbcWordPressTweaksAdminModule::WORDPRESS_XML_RPC_PINGBACKS_DISABLED))
60
  {
61
  add_filter('xmlrpc_methods', array($this, 'removeXPingBackXmlRpcMethods'));
62
  }
63
 
64
 
65
+ if($this->getOption(GdbcWordPressTweaksAdminModule::WORDPRESS_XML_RPC_FULLY_DISABLED) || $this->getOption(GdbcWordPressTweaksAdminModule::WORDPRESS_XML_RPC_PINGBACKS_DISABLED))
66
  {
67
  add_filter('wp_headers', array($this, 'removeXPingBackHeader'), 9999);
68
  add_filter('bloginfo_url', array($this, 'filterXPingBackLink'), 9999, 2);
engine/modules/wordpress/GdbcWordPressAdminModule.php CHANGED
@@ -25,6 +25,11 @@ class GdbcWordPressAdminModule extends GdbcBaseAdminModule
25
  CONST WORDPRESS_REGISTRATION_FORM = 'UserRegisterActivated';
26
  CONST WORDPRESS_LOGIN_XML_RPC = 'LoginXmlRpc';
27
 
 
 
 
 
 
28
 
29
  protected function __construct()
30
  {
@@ -39,20 +44,12 @@ class GdbcWordPressAdminModule extends GdbcBaseAdminModule
39
 
40
  $arrDefaultSettingOptions = array(
41
 
42
- self::WORDPRESS_COMMENTS_FORM => array(
43
- 'Id' => 1,
44
- 'Value' => NULL,
45
- 'LabelText' => __('Protect Comments Form', GoodByeCaptcha::PLUGIN_SLUG),
46
- 'DisplayText' => __('Comments', GoodByeCaptcha::PLUGIN_SLUG),
47
- 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
48
- ),
49
-
50
  self::WORDPRESS_LOGIN_FORM => array(
51
- 'Id' => 2,
52
- 'Value' => NULL,
53
- 'LabelText' => __('Protect Login Form', GoodByeCaptcha::PLUGIN_SLUG),
54
- 'DisplayText' => __('Login', GoodByeCaptcha::PLUGIN_SLUG),
55
- 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
56
  ),
57
 
58
  self::WORDPRESS_LOST_PASSWORD_FORM => array(
@@ -79,7 +76,64 @@ class GdbcWordPressAdminModule extends GdbcBaseAdminModule
79
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_HIDDEN
80
  ),
81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
 
84
  return $arrDefaultSettingOptions;
85
 
@@ -87,6 +141,71 @@ class GdbcWordPressAdminModule extends GdbcBaseAdminModule
87
 
88
  public function validateModuleSettingsFields($arrSettingOptions)
89
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  $this->registerSuccessMessage(__('Your changes were successfully saved!', GoodByeCaptcha::PLUGIN_SLUG));
91
  return $arrSettingOptions;
92
  }
@@ -176,6 +295,54 @@ class GdbcWordPressAdminModule extends GdbcBaseAdminModule
176
  return $arrContent;
177
  }
178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  public static function getInstance()
180
  {
181
  static $adminInstance = null;
25
  CONST WORDPRESS_REGISTRATION_FORM = 'UserRegisterActivated';
26
  CONST WORDPRESS_LOGIN_XML_RPC = 'LoginXmlRpc';
27
 
28
+ CONST WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH = "CommentsContentLength";
29
+ CONST WORDPRESS_COMMENTS_FORM_NAME_LENGTH = "CommentsNameLength";
30
+ CONST WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH = "CommentsEmailLength";
31
+ CONST WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH = "CommentsWebSiteLength";
32
+
33
 
34
  protected function __construct()
35
  {
44
 
45
  $arrDefaultSettingOptions = array(
46
 
 
 
 
 
 
 
 
 
47
  self::WORDPRESS_LOGIN_FORM => array(
48
+ 'Id' => 2,
49
+ 'Value' => NULL,
50
+ 'LabelText' => __('Protect Login Form', GoodByeCaptcha::PLUGIN_SLUG),
51
+ 'DisplayText' => __('Login', GoodByeCaptcha::PLUGIN_SLUG),
52
+ 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
53
  ),
54
 
55
  self::WORDPRESS_LOST_PASSWORD_FORM => array(
76
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_HIDDEN
77
  ),
78
 
79
+ self::WORDPRESS_COMMENTS_FORM => array(
80
+ 'Id' => 1,
81
+ 'Value' => NULL,
82
+ 'LabelText' => __('Protect Comments Form', GoodByeCaptcha::PLUGIN_SLUG),
83
+ 'DisplayText' => __('Comments', GoodByeCaptcha::PLUGIN_SLUG),
84
+ 'Description' => __('If this option is not selected the Fields Maximum Length options have no effect!', GoodByeCaptcha::PLUGIN_SLUG),
85
+ //'Description' => __('It seamlessly working with <a target="_blank" href="https://wordpress.org/plugins/wpdiscuz">wpDiscuz</a> - the AJAX realtime commenting system', GoodByeCaptcha::PLUGIN_SLUG),
86
+ 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
87
+ ),
88
+
89
+ self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH => array(
90
+ 'Id' => 6,
91
+ 'Value' => 65525,
92
+ 'LabelText' => __('Comment Field Maximum Length', GoodByeCaptcha::PLUGIN_SLUG),
93
+ 'Description' => __('Sets the maximum number of characters for the Comment field', GoodByeCaptcha::PLUGIN_SLUG),
94
+ 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_TEXT
95
+ ),
96
+
97
+ self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH => array(
98
+ 'Id' => 7,
99
+ 'Value' => 245,
100
+ 'LabelText' => __('Comment Name Field Maximum Length', GoodByeCaptcha::PLUGIN_SLUG),
101
+ 'Description' => __('Sets the maximum number of characters for the Name field', GoodByeCaptcha::PLUGIN_SLUG),
102
+ 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_TEXT
103
+ ),
104
+
105
+ self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH => array(
106
+ 'Id' => 8,
107
+ 'Value' => 100,
108
+ 'LabelText' => __('Comment Email Field Maximum Length', GoodByeCaptcha::PLUGIN_SLUG),
109
+ 'Description' => __('Sets the maximum number of characters for the Email field', GoodByeCaptcha::PLUGIN_SLUG),
110
+ 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_TEXT
111
+ ),
112
+
113
+ self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH => array(
114
+ 'Id' => 9,
115
+ 'Value' => 200,
116
+ 'LabelText' => __('Comment Website Field Maximum Length', GoodByeCaptcha::PLUGIN_SLUG),
117
+ 'Description' => __('Sets the maximum number of characters for the Website field', GoodByeCaptcha::PLUGIN_SLUG),
118
+ 'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_TEXT
119
+ ),
120
+
121
+
122
  );
123
+ // Available since WordPress 4.5
124
+ $arrCommentFieldsMaxLength = function_exists('wp_get_comment_fields_max_lengths') ? wp_get_comment_fields_max_lengths() : $this->getCommentFieldsMaximumLengths();
125
+
126
+ if(!empty($arrCommentFieldsMaxLength['comment_content']))
127
+ $arrDefaultSettingOptions[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH]['Value'] = (int)$arrCommentFieldsMaxLength['comment_content'];
128
+
129
+ if(!empty($arrCommentFieldsMaxLength['comment_author_url']))
130
+ $arrDefaultSettingOptions[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH]['Value'] = (int)$arrCommentFieldsMaxLength['comment_author_url'];
131
+
132
+ if(!empty($arrCommentFieldsMaxLength['comment_author_email']))
133
+ $arrDefaultSettingOptions[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH]['Value'] = (int)$arrCommentFieldsMaxLength['comment_author_email'];
134
+
135
+ if(!empty($arrCommentFieldsMaxLength['comment_author']))
136
+ $arrDefaultSettingOptions[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH]['Value'] = (int)$arrCommentFieldsMaxLength['comment_author'];
137
 
138
  return $arrDefaultSettingOptions;
139
 
141
 
142
  public function validateModuleSettingsFields($arrSettingOptions)
143
  {
144
+
145
+ $arrSettingOptions = array_map('sanitize_text_field', (array)$arrSettingOptions);
146
+ $arrDefaultOptionsValues = $this->getDefaultOptionsValues();
147
+
148
+ $arrOldSettingsValues = $this->getAllSavedOptions();
149
+
150
+ if(!empty($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH]))
151
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH] = absint($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH]);
152
+ else
153
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH] = 0;
154
+
155
+ if(!empty($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH]))
156
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH] = absint($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH]);
157
+ else
158
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH] = 0;
159
+
160
+ if(!empty($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH]))
161
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH] = absint($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH]);
162
+ else
163
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH] = 0;
164
+
165
+ if(!empty($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH]))
166
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH] = absint($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH]);
167
+ else
168
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH] = 0;
169
+
170
+
171
+ if(empty($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH]) || $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH] > $arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH])
172
+ {
173
+ $this->registerErrorMessage(__("The Comment Field Maximum Length should be a numeric value between 1 and {$arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH]} !", GoodByeCaptcha::PLUGIN_SLUG));
174
+
175
+ if(!empty($arrOldSettingsValues[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH]))
176
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH] = $arrOldSettingsValues[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH];
177
+ else
178
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH] = $arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH];
179
+
180
+ }
181
+
182
+ if(empty($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH]) || $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH] > $arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH])
183
+ {
184
+ $this->registerErrorMessage(__("The Email Field Maximum Length should be a numeric value between 1 and {$arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH]} !", GoodByeCaptcha::PLUGIN_SLUG));
185
+ if(!empty($arrOldSettingsValues[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH]))
186
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH] = $arrOldSettingsValues[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH];
187
+ else
188
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH] = $arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH];
189
+ }
190
+
191
+ if(empty($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH]) || $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH] > $arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH])
192
+ {
193
+ $this->registerErrorMessage(__("The Email Field Maximum Length should be a numeric value between 1 and {$arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH]} !", GoodByeCaptcha::PLUGIN_SLUG));
194
+ if(!empty($arrOldSettingsValues[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH]))
195
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH] = $arrOldSettingsValues[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH];
196
+ else
197
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH] = $arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH];
198
+ }
199
+
200
+ if(empty($arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH]) || $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH] > $arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH])
201
+ {
202
+ $this->registerErrorMessage(__("The Website Field Maximum Length should be a numeric value between 1 and {$arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_NAME_LENGTH]}!", GoodByeCaptcha::PLUGIN_SLUG));
203
+ if(!empty($arrOldSettingsValues[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH]))
204
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH] = $arrOldSettingsValues[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH];
205
+ else
206
+ $arrSettingOptions[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH] = $arrDefaultOptionsValues[self::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH];
207
+ }
208
+
209
  $this->registerSuccessMessage(__('Your changes were successfully saved!', GoodByeCaptcha::PLUGIN_SLUG));
210
  return $arrSettingOptions;
211
  }
295
  return $arrContent;
296
  }
297
 
298
+
299
+ /**
300
+ * Retrieves the maximum character lengths for the comment form fields.
301
+ *
302
+ * @since 4.5.0
303
+ *
304
+ * @global wpdb $wpdb WordPress database abstraction object.
305
+ *
306
+ * @return array Maximum character length for the comment form fields.
307
+ */
308
+ private function getCommentFieldsMaximumLengths()
309
+ {
310
+ global $wpdb;
311
+ $lengths = array(
312
+ 'comment_author' => 245,
313
+ 'comment_author_email' => 100,
314
+ 'comment_author_url' => 200,
315
+ 'comment_content' => 65525,
316
+ );
317
+
318
+ if( $wpdb->is_mysql && is_callable( array($wpdb, 'get_col_length') ) )
319
+ {
320
+ foreach ( $lengths as $column => $length )
321
+ {
322
+ $col_length = $wpdb->get_col_length( $wpdb->comments, $column );
323
+ $max_length = 0;
324
+ // No point if we can't get the DB column lengths
325
+ if ( is_wp_error( $col_length ) ) {
326
+ break;
327
+ }
328
+ if ( ! is_array( $col_length ) && (int) $col_length > 0 ) {
329
+ $max_length = (int) $col_length;
330
+ } elseif ( is_array( $col_length ) && isset( $col_length['length'] ) && intval( $col_length['length'] ) > 0 ) {
331
+ $max_length = (int) $col_length['length'];
332
+ if ( ! empty( $col_length['type'] ) && 'byte' === $col_length['type'] ) {
333
+ $max_length = $max_length - 10;
334
+ }
335
+ }
336
+ if ( $max_length > 0 ) {
337
+ $lengths[ $column ] = $max_length;
338
+ }
339
+ }
340
+ }
341
+
342
+ return $lengths;
343
+ }
344
+
345
+
346
  public static function getInstance()
347
  {
348
  static $adminInstance = null;
engine/modules/wordpress/GdbcWordPressPublicModule.php CHANGED
@@ -19,11 +19,13 @@
19
 
20
  class GdbcWordPressPublicModule extends GdbcBasePublicModule
21
  {
22
- private $commentFormActionIndex = null;
23
  private $loginFormHookIndex = null;
24
  private $loginFormBottomHookIndex = null;
25
  private $loginAuthenticateFilterHookIndex = null;
26
 
 
 
27
  protected function __construct()
28
  {
29
  parent::__construct();
@@ -54,39 +56,84 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
54
  private function activateCommentsHooks()
55
  {
56
 
57
- $this->addActionHook('comment_form_after_fields', array($this, 'renderTokenFieldIntoCommentsForm'), 1);
58
-
59
- $this->addActionHook('comment_form_logged_in_after', array($this, 'renderTokenFieldIntoCommentsForm'), 1);
60
 
61
- $this->commentFormActionIndex = $this->addActionHook('comment_form', array($this, 'renderTokenFieldIntoForm'));
62
 
63
- $this->addFilterHook('preprocess_comment', array($this, 'validateCommentsFormEncryptedToken'), 1);
 
 
 
64
 
65
  if(defined('EPOCH_VER'))
66
  {
67
- $this->addFilterHook('epoch_iframe_scripts', array($this, 'registerEpochGgbcScriptId'));
 
 
 
 
 
 
 
68
  }
69
 
70
  }
71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  public function registerEpochGgbcScriptId($arrScripts)
73
  {
74
  if( !is_array($arrScripts))
75
  $arrScripts = array();
76
 
77
- $arrScripts[] = 'jquery-core';
78
- $arrScripts[] = GoodByeCaptcha::PLUGIN_SLUG . '-public-script';
 
 
 
 
79
 
80
  return $arrScripts;
81
- }
82
 
 
83
 
84
- public function renderTokenFieldIntoCommentsForm()
85
  {
86
- $this->removeHookByIndex($this->commentFormActionIndex);
87
- $this->renderTokenFieldIntoForm();
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  }
89
 
 
 
90
  private function activateLoginHooks()
91
  {
92
  $this->loginFormHookIndex = $this->addActionHook('login_form', array($this, 'renderTokenFieldIntoLoginForm'));
@@ -131,6 +178,8 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
131
  if($validateResponse->get_error_code() !== GoodByeCaptcha::PLUGIN_SLUG)
132
  return;
133
 
 
 
134
  }
135
 
136
  public function validateLoginUserAuthentication($wpUser, $password)
@@ -146,9 +195,6 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
146
  if($this->isUserAuthenticatedByGoogleAppsLogin())
147
  return $wpUser;
148
 
149
- // if( is_a($wpUser, 'WP_User') )
150
- // return $wpUser;
151
-
152
  if (is_wp_error($wpUser) && in_array($wpUser->get_error_code(), array('empty_username', 'empty_password')) ) {
153
  return $wpUser;
154
  }
@@ -158,7 +204,7 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
158
  }
159
 
160
  $arrSubmittedData = array(
161
- 'username' => sanitize_user($userName),
162
  //'password' => $password
163
  );
164
 
@@ -166,8 +212,8 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
166
  $this->attemptEntity->Notes = $arrSubmittedData;
167
 
168
  return GdbcRequestController::isValid($this->attemptEntity)
169
- ? $wpUser
170
- : new WP_Error(GoodByeCaptcha::PLUGIN_SLUG, __('Invalid username or incorrect password!', GoodByeCaptcha::PLUGIN_SLUG));
171
 
172
  }
173
 
@@ -198,8 +244,8 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
198
  $this->attemptEntity->SectionId = $this->getOptionIdByOptionName(GdbcWordpressAdminModule::WORDPRESS_REGISTRATION_FORM);
199
 
200
  $this->attemptEntity->Notes = array(
201
- 'username' => !empty($results['user_name']) ? $results['user_name'] : '',
202
- 'email' => !empty($results['user_email']) ? $results['user_email'] : '',
203
  );
204
 
205
  if(GdbcRequestController::isValid($this->attemptEntity))
@@ -216,8 +262,8 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
216
  {
217
  $this->attemptEntity->SectionId = $this->getOptionIdByOptionName(GdbcWordpressAdminModule::WORDPRESS_REGISTRATION_FORM);
218
  $this->attemptEntity->Notes = array(
219
- 'username' => $sanitizedUserName,
220
- 'email' => sanitize_email($userEmail)
221
  );
222
 
223
  if(GdbcRequestController::isValid($this->attemptEntity))
@@ -261,40 +307,59 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
261
  }
262
 
263
 
264
- public function validateCommentsFormEncryptedToken($arrComment)
265
  {
266
- if(is_admin() && is_user_logged_in() && current_user_can( 'moderate_comments' ))
267
  return $arrComment;
268
 
269
- // $arrWordPressCommentsType = array('comment' => 1, 'pingback' => 1, 'trackback' => 1);
270
- //
271
- // if( is_admin() || ( !empty($arrComment['comment_type']) && !isset($arrWordPressCommentsType[strtolower($arrComment['comment_type'])]) ) )
272
- // return $arrComment;
273
- //
274
- // $arrComment['comment_post_ID'] = (!empty($arrComment['comment_post_ID']) && is_numeric($arrComment['comment_post_ID'])) ? (int)$arrComment['comment_post_ID'] : 0;
275
- //
276
- // if(0 === $arrComment['comment_post_ID']) {
277
- // wp_safe_redirect(home_url('/'));exit;
278
- // }
279
- //
280
- // if(!array_key_exists(get_post_type($arrComment['comment_post_ID']), get_post_types( array('public' => true, '_builtin' => true)) ))
281
- // {
282
- // return $arrComment; // not a regular wordpress post
283
- // }
284
 
285
  $arrComment['comment_post_ID'] = (!empty($arrComment['comment_post_ID']) && is_numeric($arrComment['comment_post_ID'])) ? (int)$arrComment['comment_post_ID'] : 0;
286
 
 
 
 
 
 
287
  $this->getAttemptEntity()->SectionId = $this->getOptionIdByOptionName(GdbcWordpressAdminModule::WORDPRESS_COMMENTS_FORM);
288
  $this->getAttemptEntity()->Notes = array_filter($arrComment);
289
 
290
- unset(
291
- $this->attemptEntity->Notes['user_ID']
292
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
 
294
 
295
  if( GdbcRequestController::isValid($this->getAttemptEntity()) )
296
  return $arrComment;
297
 
 
 
 
 
 
298
 
299
  $postPermaLink = get_permalink($arrComment['comment_post_ID']);
300
 
@@ -302,14 +367,50 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
302
 
303
  exit;
304
 
305
- // if(null !== GoodByeCaptcha::getModulesControllerInstance()->getModuleSettingOption(GdbcModulesController::MODULE_WORDPRESS, GdbcWordpressAdminModule::STORE_SPAM_ATTEMPTS))
306
- // {
307
- // $arrComment['comment_approved'] = 'spam';
308
- // wp_insert_comment($arrComment);
309
- //
310
- // return $arrComment;
311
- // }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312
 
 
313
  }
314
 
315
 
@@ -329,6 +430,16 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
329
  return $this->loginAuthenticateFilterHookIndex;
330
  }
331
 
 
 
 
 
 
 
 
 
 
 
332
  public static function getInstance()
333
  {
334
  static $publicInstance = null;
19
 
20
  class GdbcWordPressPublicModule extends GdbcBasePublicModule
21
  {
22
+ private $commentValidationHookIndex = null;
23
  private $loginFormHookIndex = null;
24
  private $loginFormBottomHookIndex = null;
25
  private $loginAuthenticateFilterHookIndex = null;
26
 
27
+ private $wasCommentFieldsLengthFilterApplied = false;
28
+
29
  protected function __construct()
30
  {
31
  parent::__construct();
56
  private function activateCommentsHooks()
57
  {
58
 
59
+ $this->addActionHook('comment_form_top', array($this, 'renderTokenFieldIntoCommentsForm'));
60
+ $this->addActionHook('comment_form' , array($this, 'renderTokenFieldIntoCommentsForm'));
 
61
 
62
+ $this->commentValidationHookIndex = $this->addFilterHook('preprocess_comment', array($this, 'validateCommentsRequest'), 9);
63
 
64
+ if(function_exists('wp_get_comment_fields_max_lengths')) // Available since WordPress 4.5
65
+ {
66
+ $this->addFilterHook('wp_get_comment_fields_max_lengths', array($this, 'getCommentFieldsMaxLength'), 999, 1);
67
+ }
68
 
69
  if(defined('EPOCH_VER'))
70
  {
71
+ if(defined('GoodByeCaptcha::TEMP_USE_JQUERY') && GoodByeCaptcha::TEMP_USE_JQUERY)
72
+ {
73
+ $this->addFilterHook('epoch_iframe_scripts', array($this, 'registerEpochGgbcScriptId'));
74
+ }
75
+ else
76
+ {
77
+ $this->addActionHook('epoch_iframe_footer', array($this, 'renderPublicScriptIntoEpochIframe'));
78
+ }
79
  }
80
 
81
  }
82
 
83
+ public function renderTokenFieldIntoCommentsForm()
84
+ {
85
+ static $alreadyRendered = false;
86
+ if($alreadyRendered)
87
+ return;
88
+
89
+ $alreadyRendered = true;
90
+
91
+ $this->renderTokenFieldIntoForm();
92
+ }
93
+
94
+
95
+ public function renderPublicScriptIntoEpochIframe()
96
+ {
97
+ echo parent::getPublicScriptInlineContent();
98
+ }
99
+
100
  public function registerEpochGgbcScriptId($arrScripts)
101
  {
102
  if( !is_array($arrScripts))
103
  $arrScripts = array();
104
 
105
+ if(defined('GoodByeCaptcha::TEMP_USE_JQUERY') && GoodByeCaptcha::TEMP_USE_JQUERY)
106
+ {
107
+ $arrScripts[] = 'jquery-core';
108
+ $arrScripts[] = GdbcBasePublicModule::MAIN_PUBLIC_SCRIPT_HANDLE;
109
+ return $arrScripts;
110
+ }
111
 
112
  return $arrScripts;
 
113
 
114
+ }
115
 
116
+ public function getCommentFieldsMaxLength($arrFieldsMaxLength)
117
  {
118
+ $arrFieldsMaxLength = (array)$arrFieldsMaxLength;
119
+
120
+ $authorFieldLength = $this->getOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_NAME_LENGTH);
121
+ $emailFieldLength = $this->getOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH);
122
+ $webSiteFieldLength = $this->getOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH);
123
+ $contentFieldLength = $this->getOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH);
124
+
125
+ !empty($authorFieldLength) ? $arrFieldsMaxLength['comment_author'] = $authorFieldLength : null;
126
+ !empty($emailFieldLength) ? $arrFieldsMaxLength['comment_author_email'] = $emailFieldLength : null;
127
+ !empty($webSiteFieldLength) ? $arrFieldsMaxLength['comment_author_url'] = $webSiteFieldLength : null;
128
+ !empty($contentFieldLength) ? $arrFieldsMaxLength['comment_content'] = $contentFieldLength : null;
129
+
130
+ $this->wasCommentFieldsLengthFilterApplied = true;
131
+
132
+ return $arrFieldsMaxLength;
133
  }
134
 
135
+
136
+
137
  private function activateLoginHooks()
138
  {
139
  $this->loginFormHookIndex = $this->addActionHook('login_form', array($this, 'renderTokenFieldIntoLoginForm'));
178
  if($validateResponse->get_error_code() !== GoodByeCaptcha::PLUGIN_SLUG)
179
  return;
180
 
181
+ if(GdbcBruteGuardian::isSiteUnderAttack())
182
+ exit;
183
  }
184
 
185
  public function validateLoginUserAuthentication($wpUser, $password)
195
  if($this->isUserAuthenticatedByGoogleAppsLogin())
196
  return $wpUser;
197
 
 
 
 
198
  if (is_wp_error($wpUser) && in_array($wpUser->get_error_code(), array('empty_username', 'empty_password')) ) {
199
  return $wpUser;
200
  }
204
  }
205
 
206
  $arrSubmittedData = array(
207
+ 'username' => sanitize_user($userName),
208
  //'password' => $password
209
  );
210
 
212
  $this->attemptEntity->Notes = $arrSubmittedData;
213
 
214
  return GdbcRequestController::isValid($this->attemptEntity)
215
+ ? $wpUser
216
+ : new WP_Error(GoodByeCaptcha::PLUGIN_SLUG, __('Invalid username or incorrect password!', GoodByeCaptcha::PLUGIN_SLUG));
217
 
218
  }
219
 
244
  $this->attemptEntity->SectionId = $this->getOptionIdByOptionName(GdbcWordpressAdminModule::WORDPRESS_REGISTRATION_FORM);
245
 
246
  $this->attemptEntity->Notes = array(
247
+ 'username' => !empty($results['user_name']) ? $results['user_name'] : '',
248
+ 'email' => !empty($results['user_email']) ? $results['user_email'] : '',
249
  );
250
 
251
  if(GdbcRequestController::isValid($this->attemptEntity))
262
  {
263
  $this->attemptEntity->SectionId = $this->getOptionIdByOptionName(GdbcWordpressAdminModule::WORDPRESS_REGISTRATION_FORM);
264
  $this->attemptEntity->Notes = array(
265
+ 'username' => $sanitizedUserName,
266
+ 'email' => sanitize_email($userEmail)
267
  );
268
 
269
  if(GdbcRequestController::isValid($this->attemptEntity))
307
  }
308
 
309
 
310
+ public function validateCommentsRequest($arrComment)
311
  {
312
+ if(is_admin() && current_user_can( 'moderate_comments' ))
313
  return $arrComment;
314
 
315
+ $arrWordPressCommentsType = array('pingback' => 1, 'trackback' => 1);
316
+
317
+ if( (!empty($arrComment['comment_type']) && isset($arrWordPressCommentsType[strtolower($arrComment['comment_type'])]) ) ) {
318
+ wp_die( '<p>' . __( 'Link Notifications are disabled!', GoodByeCaptcha::PLUGIN_SLUG ) . '</p>', __( 'Comment Submission Failure' ), array( 'response' => 200 ) );
319
+ }
 
 
 
 
 
 
 
 
 
 
320
 
321
  $arrComment['comment_post_ID'] = (!empty($arrComment['comment_post_ID']) && is_numeric($arrComment['comment_post_ID'])) ? (int)$arrComment['comment_post_ID'] : 0;
322
 
323
+ if ( ! isset( $arrComment['comment_agent'] ) ) {
324
+ $arrComment['comment_agent'] = isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT']: '';
325
+ }
326
+ $arrComment['comment_agent'] = substr( $arrComment['comment_agent'], 0, 254 );
327
+
328
  $this->getAttemptEntity()->SectionId = $this->getOptionIdByOptionName(GdbcWordpressAdminModule::WORDPRESS_COMMENTS_FORM);
329
  $this->getAttemptEntity()->Notes = array_filter($arrComment);
330
 
331
+ unset($this->attemptEntity->Notes['user_ID'], $this->attemptEntity->Notes['comment_author_IP'], $this->attemptEntity->Notes['comment_date'], $this->attemptEntity->Notes['comment_date_gmt']);
332
+ unset($this->attemptEntity->Notes['comment_as_submitted'], $this->attemptEntity->Notes['akismet_result']);
333
+
334
+ //unset($this->attemptEntity->Notes['comment_agent']);
335
+
336
+ if(!$this->wasCommentFieldsLengthFilterApplied && is_wp_error($commentFieldsLengthError = $this->validateCommentFieldsLength($arrComment)))
337
+ {
338
+ $this->getAttemptEntity()->ReasonId = GdbcRequestController::REJECT_REASON_COMMENT_FIELD_TOO_LONG;
339
+ GdbcBruteGuardian::logRejectedAttempt($this->getAttemptEntity());
340
+
341
+ $errorCode = intval($commentFieldsLengthError->get_error_data());
342
+ $errorMessage = '<p>' . $commentFieldsLengthError->get_error_message() . '</p>';
343
+
344
+ if( MchGdbcWpUtils::isAjaxRequest() || defined('EPOCH_API') )
345
+ {
346
+ $errorMessage = strip_tags ($commentFieldsLengthError->get_error_message());
347
+ $errorCode = 403;
348
+ }
349
+
350
+ wp_die( $errorMessage, __( 'Comment Submission Failure' ), array( 'response' => $errorCode, 'back_link' => true ) );
351
+
352
+ }
353
 
354
 
355
  if( GdbcRequestController::isValid($this->getAttemptEntity()) )
356
  return $arrComment;
357
 
358
+ if(GdbcAjaxController::isWpDiscuzPostCommentAjaxRequest())
359
+ {
360
+ wp_die(json_encode(array('code' => 'wc_invalid_field')));
361
+ }
362
+
363
 
364
  $postPermaLink = get_permalink($arrComment['comment_post_ID']);
365
 
367
 
368
  exit;
369
 
370
+ }
371
+
372
+
373
+ private function validateCommentFieldsLength(array $arrComment)
374
+ {
375
+ $arrComment = wp_unslash($arrComment);
376
+
377
+ $authorFieldLength = $this->getOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_NAME_LENGTH);
378
+ $emailFieldLength = $this->getOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_EMAIL_LENGTH);
379
+ $webSiteFieldLength = $this->getOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_WEBSITE_LENGTH);
380
+ $contentFieldLength = $this->getOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM_CONTENT_LENGTH);
381
+
382
+ $comment_author = isset($arrComment['comment_author']) && is_string($arrComment['comment_author']) ? trim(strip_tags($arrComment['comment_author'])) : null;
383
+ $comment_content = isset($arrComment['comment_content']) && is_string($arrComment['comment_content']) ? trim($arrComment['comment_content']) : null;
384
+ $comment_author_url = isset($arrComment['comment_author_url']) && is_string($arrComment['comment_author_url']) ? trim($arrComment['comment_author_url']) : null;
385
+ $comment_author_email = isset($arrComment['comment_author_email']) && is_string($arrComment['comment_author_email']) ? trim($arrComment['comment_author_email']) : null;
386
+
387
+ if ( isset( $comment_author ) && $authorFieldLength < mb_strlen( $comment_author, '8bit' ) )
388
+ {
389
+ return new WP_Error( 'comment_author_column_length', __( '<strong>ERROR</strong>: your name is too long.' ), 200 );
390
+ }
391
+
392
+ if ( isset( $comment_author_email ) && $emailFieldLength < strlen( $comment_author_email ) )
393
+ {
394
+ return new WP_Error( 'comment_author_email_column_length', __( '<strong>ERROR</strong>: your email address is too long.' ), 200 );
395
+ }
396
+
397
+ if ( isset( $comment_author_url ) && $webSiteFieldLength < strlen( $comment_author_url ) )
398
+ {
399
+ return new WP_Error( 'comment_author_url_column_length', __( '<strong>ERROR</strong>: your url is too long.' ), 200 );
400
+ }
401
+
402
+ if ( empty($comment_content) )
403
+ {
404
+ return new WP_Error( 'require_valid_comment', __( '<strong>ERROR</strong>: please type a comment.' ), 200 );
405
+ }
406
+
407
+ if ( $contentFieldLength < mb_strlen( $comment_content, '8bit' ) )
408
+ {
409
+ return new WP_Error( 'comment_content_column_length', __( '<strong>ERROR</strong>: your comment is too long.' ), 200 );
410
+ }
411
+
412
 
413
+ return true;
414
  }
415
 
416
 
430
  return $this->loginAuthenticateFilterHookIndex;
431
  }
432
 
433
+ public static function isCommentsProtectionActivated()
434
+ {
435
+ return (bool)self::getInstance()->getOption(GdbcWordPressAdminModule::WORDPRESS_COMMENTS_FORM);
436
+ }
437
+
438
+ public function getCommentValidationHookIndex()
439
+ {
440
+ return $this->commentValidationHookIndex;
441
+ }
442
+
443
  public static function getInstance()
444
  {
445
  static $publicInstance = null;
engine/modules/zm-ajax-login-register/GdbcZmAlrPublicModule.php CHANGED
@@ -128,7 +128,10 @@ final class GdbcZmAlrPublicModule extends GdbcBasePublicModule
128
  if( ! MchGdbcWpUtils::isAjaxRequest() )
129
  return $aboveFieldsHtml;
130
 
131
- return '<script type="text/javascript">(new jQuery.GdbcClient()).requestTokens();</script>' . $aboveFieldsHtml;
 
 
 
132
  }
133
 
134
 
128
  if( ! MchGdbcWpUtils::isAjaxRequest() )
129
  return $aboveFieldsHtml;
130
 
131
+ //return '<script type="text/javascript">(new jQuery.GdbcClient()).requestTokens();</script>' . $aboveFieldsHtml;
132
+
133
+ return GdbcBasePublicModule::getRefreshTokensScriptFileContent(true) . $aboveFieldsHtml;
134
+
135
  }
136
 
137
 
goodbye-captcha.php CHANGED
@@ -4,30 +4,32 @@
4
  * @package WPBruiser
5
  * @author Mihai Chelaru
6
  * @license GPL-2.0+
7
- * @link http://www.goodbyecaptcha.com
8
  * @copyright 2015 WPBruiser
9
  *
10
  * @wordpress-plugin
11
  * Plugin Name: WPBruiser
12
- * Plugin URI: http://www.goodbyecaptcha.com
13
  * Description: An extremely powerful anti-spam plugin that blocks spambots without annoying captcha images.
14
- * Version: 2.2.2
15
  * Author: Mihai Chelaru
16
- * Author URI: http://www.goodbyecaptcha.com
17
- * Text Domain: goodbye-captcha
18
  * License: GPL-2.0+
19
  * Domain Path: /languages
20
  */
21
 
22
  class GoodByeCaptcha
23
  {
24
- CONST PLUGIN_VERSION = '2.2.2';
25
  CONST PLUGIN_SHORT_CODE = 'wpb';
26
  CONST PLUGIN_SLUG = 'wp-bruiser';
27
  CONST PLUGIN_NAME = 'WPBruiser';
28
- CONST PLUGIN_SITE_URL = 'http://www.goodbyecaptcha.com';
29
  CONST PLUGIN_MAIN_FILE = __FILE__;
30
 
 
 
31
  private static $arrPluginInfo = array(
32
 
33
  'PLUGIN_DOMAIN_PATH' => 'languages',
@@ -54,6 +56,7 @@ class GoodByeCaptcha
54
  'GdbcContactFormsAdminPage' => '/engine/admin/pages/GdbcContactFormsAdminPage.php',
55
  'GdbcSettingsAdminPage' => '/engine/admin/pages/GdbcSettingsAdminPage.php',
56
  'GdbcWordpressAdminPage' => '/engine/admin/pages/GdbcWordpressAdminPage.php',
 
57
  'GdbcNotificationsAdminPage' => '/engine/admin/pages/GdbcNotificationsAdminPage.php',
58
  'GdbcMembershipAdminPage' => '/engine/admin/pages/GdbcMembershipAdminPage.php',
59
  'GdbcSecurityAdminPage' => '/engine/admin/pages/GdbcSecurityAdminPage.php',
@@ -125,11 +128,11 @@ spl_autoload_register( array( 'GoodByeCaptcha', 'classAutoLoad' ), false);
125
 
126
  GdbcIPUtils::getClientIpAddress();
127
 
128
- if(!empty($_GET['gdbc-client']) && file_exists(dirname(__FILE__) . '/assets/public/scripts/gdbc-client.js.php'))
129
  {
130
  require_once(ABSPATH .'wp-includes/pluggable.php');
131
  ( !defined('LOGGED_IN_COOKIE') && function_exists('wp_cookie_constants') ) ? wp_cookie_constants() : null;
132
- require dirname( __FILE__ ) . '/assets/public/scripts/gdbc-client.js.php';
133
  exit;
134
  }
135
 
4
  * @package WPBruiser
5
  * @author Mihai Chelaru
6
  * @license GPL-2.0+
7
+ * @link http://www.wpbruiser.com
8
  * @copyright 2015 WPBruiser
9
  *
10
  * @wordpress-plugin
11
  * Plugin Name: WPBruiser
12
+ * Plugin URI: http://www.wpbruiser.com
13
  * Description: An extremely powerful anti-spam plugin that blocks spambots without annoying captcha images.
14
+ * Version: 3.0.5
15
  * Author: Mihai Chelaru
16
+ * Author URI: http://www.wpbruiser.com
17
+ * Text Domain: wp-bruiser
18
  * License: GPL-2.0+
19
  * Domain Path: /languages
20
  */
21
 
22
  class GoodByeCaptcha
23
  {
24
+ CONST PLUGIN_VERSION = '3.0.5';
25
  CONST PLUGIN_SHORT_CODE = 'wpb';
26
  CONST PLUGIN_SLUG = 'wp-bruiser';
27
  CONST PLUGIN_NAME = 'WPBruiser';
28
+ CONST PLUGIN_SITE_URL = 'http://www.wpbruiser.com';
29
  CONST PLUGIN_MAIN_FILE = __FILE__;
30
 
31
+ CONST TEMP_USE_JQUERY = FALSE;
32
+
33
  private static $arrPluginInfo = array(
34
 
35
  'PLUGIN_DOMAIN_PATH' => 'languages',
56
  'GdbcContactFormsAdminPage' => '/engine/admin/pages/GdbcContactFormsAdminPage.php',
57
  'GdbcSettingsAdminPage' => '/engine/admin/pages/GdbcSettingsAdminPage.php',
58
  'GdbcWordpressAdminPage' => '/engine/admin/pages/GdbcWordpressAdminPage.php',
59
+ 'GdbcExtensionsAdminPage' => '/engine/admin/pages/GdbcExtensionsAdminPage.php',
60
  'GdbcNotificationsAdminPage' => '/engine/admin/pages/GdbcNotificationsAdminPage.php',
61
  'GdbcMembershipAdminPage' => '/engine/admin/pages/GdbcMembershipAdminPage.php',
62
  'GdbcSecurityAdminPage' => '/engine/admin/pages/GdbcSecurityAdminPage.php',
128
 
129
  GdbcIPUtils::getClientIpAddress();
130
 
131
+ if(defined('ABSPATH') && !empty($_GET['gdbc-client']) && file_exists($filePath = GoodByeCaptcha::TEMP_USE_JQUERY ? dirname(__FILE__) . '/assets/public/scripts/gdbc-client.js.php' : dirname(__FILE__) . '/assets/public/scripts/gdbc-client-new.js.php'))
132
  {
133
  require_once(ABSPATH .'wp-includes/pluggable.php');
134
  ( !defined('LOGGED_IN_COOKIE') && function_exists('wp_cookie_constants') ) ? wp_cookie_constants() : null;
135
+ require $filePath;
136
  exit;
137
  }
138
 
includes/MchGdbcLibAutoloader.php CHANGED
@@ -71,9 +71,9 @@ final class MchGdbcLibAutoloader
71
  'MchGdbcHttpRequest' => '/vendor/MchHttp/MchGdbcHttpRequest.php',
72
  'MchGdbcTrustedIPRanges' =>'/vendor/MchHttp/MchGdbcTrustedIPRanges.php',
73
  'MchGdbcUnTrustedIPRanges' =>'/vendor/MchHttp/MchGdbcUnTrustedIPRanges.php',
74
-
75
  'MchGdbcHttpUtil' => '/vendor/MchHttp/MchGdbcHttpUtil.php',
76
- 'MchMaxMindGeoIp' => '/vendor/MaxMind/MchMaxMindGeoIp.php',
77
 
78
  'MchGdbcCache' => '/vendor/MchCache/MchGdbcCache.php',
79
  'MchGdbcCacheFileStorage' => '/vendor/MchCache/Storage/MchGdbcCacheFileStorage.php',
71
  'MchGdbcHttpRequest' => '/vendor/MchHttp/MchGdbcHttpRequest.php',
72
  'MchGdbcTrustedIPRanges' =>'/vendor/MchHttp/MchGdbcTrustedIPRanges.php',
73
  'MchGdbcUnTrustedIPRanges' =>'/vendor/MchHttp/MchGdbcUnTrustedIPRanges.php',
74
+ 'MchGdbcIpCountryLocator' => '/vendor/MchHttp/MchGdbcIpCountryLocator.php',
75
  'MchGdbcHttpUtil' => '/vendor/MchHttp/MchGdbcHttpUtil.php',
76
+ //'MchMaxMindGeoIp' => '/vendor/MaxMind/MchMaxMindGeoIp.php',
77
 
78
  'MchGdbcCache' => '/vendor/MchCache/MchGdbcCache.php',
79
  'MchGdbcCacheFileStorage' => '/vendor/MchCache/Storage/MchGdbcCacheFileStorage.php',
includes/modules/MchGdbcGroupedModules.php CHANGED
@@ -1,5 +1,21 @@
1
  <?php
2
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
  class MchGdbcGroupedModules
5
  {
1
  <?php
2
+ /**
3
+ * Copyright (C) 2016 Mihai Chelaru
4
+ *
5
+ * This program is free software; you can redistribute it and/or
6
+ * modify it under the terms of the GNU General Public License
7
+ * as published by the Free Software Foundation; either version 2
8
+ * of the License, or (at your option) any later version.
9
+ *
10
+ * This program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ * GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public License
16
+ * along with this program; if not, write to the Free Software
17
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
+ */
19
 
20
  class MchGdbcGroupedModules
21
  {
includes/modules/MchGdbcModulesController.php CHANGED
@@ -1,12 +1,21 @@
1
  <?php
2
  /**
3
- * Created by PhpStorm.
4
- * User: 4over
5
- * Date: 6/5/15
6
- * Time: 4:41 PM
 
 
 
 
 
 
 
 
 
 
 
7
  */
8
-
9
  class MchGdbcModulesController
10
  {
11
- //public
12
  }
1
  <?php
2
  /**
3
+ * Copyright (C) 2016 Mihai Chelaru
4
+ *
5
+ * This program is free software; you can redistribute it and/or
6
+ * modify it under the terms of the GNU General Public License
7
+ * as published by the Free Software Foundation; either version 2
8
+ * of the License, or (at your option) any later version.
9
+ *
10
+ * This program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ * GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public License
16
+ * along with this program; if not, write to the Free Software
17
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
  */
 
19
  class MchGdbcModulesController
20
  {
 
21
  }
includes/plugin/MchGdbcBaseAdminPlugin.php CHANGED
@@ -22,8 +22,6 @@ abstract class MchGdbcBaseAdminPlugin extends MchGdbcBasePlugin
22
 
23
  protected $adminPagesList = array();
24
 
25
- //public abstract function getAdminPages();
26
-
27
  public abstract function enqueueAdminScriptsAndStyles();
28
 
29
  protected function __construct(array $arrPluginInfo)
@@ -60,6 +58,25 @@ abstract class MchGdbcBaseAdminPlugin extends MchGdbcBasePlugin
60
  public function initializeAdminPlugin()
61
  {}
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  private function __clone()
64
  {}
65
 
22
 
23
  protected $adminPagesList = array();
24
 
 
 
25
  public abstract function enqueueAdminScriptsAndStyles();
26
 
27
  protected function __construct(array $arrPluginInfo)
58
  public function initializeAdminPlugin()
59
  {}
60
 
61
+ public function checkCompatibilityPlugins($arrNewValue = null, $arrOldValue = null)
62
+ {
63
+ // $pluginBaseName = plugin_basename(self::$PLUGIN_MAIN_FILE);
64
+
65
+ // $arrBlogActivePlugins = null;
66
+ // if(null === $option)$arrBlogActivePlugins = (array) get_option('active_plugins', array());
67
+ // elseif('active_plugins' === $option)$arrBlogActivePlugins = (array)$arrNewValue;
68
+ // if(null === $arrBlogActivePlugins) return;
69
+ // $pluginBaseName = plugin_basename(GoodByeCaptcha::PLUGIN_MAIN_FILE);
70
+ // if(isset($arrBlogActivePlugins[0]) && $arrBlogActivePlugins[0] === $pluginBaseName) return;
71
+ // if(false === ($gdbcPluginKey = array_search( $pluginBaseName, $arrBlogActivePlugins ))) return;
72
+ // array_splice( $arrBlogActivePlugins, $gdbcPluginKey, 1 );
73
+ // array_unshift( $arrBlogActivePlugins, $pluginBaseName );
74
+ // $this->removeHookByIndex($this->updatedPluginsHookIndex);
75
+ // update_option( 'active_plugins', $arrBlogActivePlugins );
76
+ // $this->updatedPluginsHookIndex = $this->addActionHook('updated_option', array($this, 'ensureCompatibilityWithGoodByeCaptcha'), PHP_INT_MAX, 3);
77
+
78
+ }
79
+
80
  private function __clone()
81
  {}
82
 
includes/plugin/MchGdbcBasePlugin.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- /**
3
  * Copyright (C) 2014 Mihai Chelaru
4
  *
5
  * This program is free software; you can redistribute it and/or
@@ -30,8 +30,6 @@ abstract class MchGdbcBasePlugin
30
 
31
  protected static $PLUGIN_URL = null;
32
 
33
- //private $isPluginNetworkActivated = null;
34
-
35
  protected function __construct(array $arrPluginInfo)
36
  {
37
  self::$PLUGIN_SLUG = isset($arrPluginInfo['PLUGIN_SLUG']) ? $arrPluginInfo['PLUGIN_SLUG'] : null;
@@ -51,7 +49,6 @@ abstract class MchGdbcBasePlugin
51
 
52
  }
53
 
54
-
55
  public function initializePlugin()
56
  {
57
  $locale = apply_filters('plugin_locale', get_locale(), self::$PLUGIN_SLUG);
@@ -59,6 +56,7 @@ abstract class MchGdbcBasePlugin
59
  load_textdomain(self::$PLUGIN_SLUG, trailingslashit( WP_LANG_DIR ) . self::$PLUGIN_SLUG . DIRECTORY_SEPARATOR . self::$PLUGIN_SLUG . '-' . $locale . '.mo' );
60
 
61
  load_plugin_textdomain(self::$PLUGIN_SLUG, false, self::$PLUGIN_SLUG . DIRECTORY_SEPARATOR . 'languages' . DIRECTORY_SEPARATOR );
 
62
  }
63
 
64
  }
1
  <?php
2
+ /**
3
  * Copyright (C) 2014 Mihai Chelaru
4
  *
5
  * This program is free software; you can redistribute it and/or
30
 
31
  protected static $PLUGIN_URL = null;
32
 
 
 
33
  protected function __construct(array $arrPluginInfo)
34
  {
35
  self::$PLUGIN_SLUG = isset($arrPluginInfo['PLUGIN_SLUG']) ? $arrPluginInfo['PLUGIN_SLUG'] : null;
49
 
50
  }
51
 
 
52
  public function initializePlugin()
53
  {
54
  $locale = apply_filters('plugin_locale', get_locale(), self::$PLUGIN_SLUG);
56
  load_textdomain(self::$PLUGIN_SLUG, trailingslashit( WP_LANG_DIR ) . self::$PLUGIN_SLUG . DIRECTORY_SEPARATOR . self::$PLUGIN_SLUG . '-' . $locale . '.mo' );
57
 
58
  load_plugin_textdomain(self::$PLUGIN_SLUG, false, self::$PLUGIN_SLUG . DIRECTORY_SEPARATOR . 'languages' . DIRECTORY_SEPARATOR );
59
+
60
  }
61
 
62
  }
includes/plugin/MchGdbcPluginUpdater.php CHANGED
@@ -283,7 +283,7 @@ class MchGdbcPluginUpdater
283
  'item_name' => isset( $data['item_name'] ) ? $data['item_name'] : false,
284
  'item_id' => isset( $data['item_id'] ) ? $data['item_id'] : false,
285
  'slug' => $data['slug'],
286
- 'author' => $data['author'],
287
  'url' => home_url()
288
  );
289
 
283
  'item_name' => isset( $data['item_name'] ) ? $data['item_name'] : false,
284
  'item_id' => isset( $data['item_id'] ) ? $data['item_id'] : false,
285
  'slug' => $data['slug'],
286
+ 'author' => ! empty( $data['author'] ) ? $data['author'] : '',
287
  'url' => home_url()
288
  );
289
 
includes/utils/MchGdbcIPUtils.php CHANGED
@@ -96,6 +96,26 @@ final class MchGdbcIPUtils
96
  return false !== filter_var($ipAddress, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE);
97
  }
98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  public static function compressIPV6($ipAddress, $shouldValidate = false)
100
  {
101
  if($shouldValidate && (self::IP_VERSION_6 !== self::getIpAddressVersion($ipAddress)))
96
  return false !== filter_var($ipAddress, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE);
97
  }
98
 
99
+ public static function isIPV4MappedIPV6($ipAddress)
100
+ {
101
+ if( self::IP_VERSION_6 !== self::getIpAddressVersion($ipAddress))
102
+ return false;
103
+
104
+ return 1 === preg_match("/^::ffff:(.+)$/i", $ipAddress);
105
+ }
106
+
107
+
108
+ public static function extractMappedIPV4FromIPv6($ipAddress)
109
+ {
110
+ if( self::IP_VERSION_6 !== self::getIpAddressVersion($ipAddress))
111
+ return null;
112
+
113
+ if(1 !== preg_match("/^::ffff:(.+)$/i", $ipAddress, $matches) || empty($matches[1]) || self::IP_VERSION_4 !== self::getIpAddressVersion($matches[1]))
114
+ return null;
115
+
116
+ return $matches[1];
117
+ }
118
+
119
  public static function compressIPV6($ipAddress, $shouldValidate = false)
120
  {
121
  if($shouldValidate && (self::IP_VERSION_6 !== self::getIpAddressVersion($ipAddress)))
includes/utils/MchGdbcUtils.php CHANGED
@@ -74,22 +74,6 @@ final class MchGdbcUtils
74
  return str_replace($arrNewLine, $to, $strText);
75
  }
76
 
77
- /*
78
- * $arr = array(
79
- 0 => array(1, 5),
80
- 1 => array(4, 8),
81
- 2 => array(19, 24),
82
- 3 => array(6, 9),
83
- 4 => array(11, 17),
84
- );
85
-
86
- should return
87
- array(
88
- 0 => array(1, 9), // 1-5, 4-8 and 6-9 are overlapping, so they are merged
89
- 1 => array(11, 17),
90
- 2 => array(19, 24),
91
- );
92
- */
93
  public static function overlapIntervals(array $arrIntervals)
94
  {
95
  if(!isset($arrIntervals[1]))
@@ -119,4 +103,98 @@ final class MchGdbcUtils
119
  {
120
  return $firstArray[0] - $secondArray[0];
121
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  }
74
  return str_replace($arrNewLine, $to, $strText);
75
  }
76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  public static function overlapIntervals(array $arrIntervals)
78
  {
79
  if(!isset($arrIntervals[1]))
103
  {
104
  return $firstArray[0] - $secondArray[0];
105
  }
106
+
107
+
108
+ public static function longDigitBaseConvert($longDigit, $sourceBase, $destBase, $minDigits = 1)
109
+ {
110
+ $longDigit = strtolower($longDigit);
111
+ $sourceBase = (int)$sourceBase;
112
+ $destBase = (int)$destBase;
113
+ $minDigits = (int)$minDigits;
114
+
115
+ if($minDigits < 1 || $sourceBase < 2 || $destBase < 2 || $sourceBase > 36 || $destBase > 36)
116
+ return null;
117
+
118
+
119
+ static $gmpExtensionLoaded = null;
120
+ (null === $gmpExtensionLoaded) ? $gmpExtensionLoaded = extension_loaded( 'gmp' ) : null;
121
+
122
+ $result = null;
123
+
124
+ if( $gmpExtensionLoaded )
125
+ {
126
+ $longDigit = ltrim( $longDigit, '0' );
127
+ $result = gmp_strval( gmp_init( $longDigit ? $longDigit : '0', $sourceBase ), $destBase );
128
+ return str_pad( $result, $minDigits, '0', STR_PAD_LEFT );
129
+ }
130
+
131
+ static $bcmathExtensionLoaded = null;
132
+ (null === $bcmathExtensionLoaded) ? $bcmathExtensionLoaded = extension_loaded( 'bcmath' ) : null;
133
+
134
+ static $arrBaseChars = array(
135
+ 10 => 'a', 11 => 'b', 12 => 'c', 13 => 'd', 14 => 'e', 15 => 'f',
136
+ 16 => 'g', 17 => 'h', 18 => 'i', 19 => 'j', 20 => 'k', 21 => 'l',
137
+ 22 => 'm', 23 => 'n', 24 => 'o', 25 => 'p', 26 => 'q', 27 => 'r',
138
+ 28 => 's', 29 => 't', 30 => 'u', 31 => 'v', 32 => 'w', 33 => 'x',
139
+ 34 => 'y', 35 => 'z',
140
+
141
+ '0' => 0, '1' => 1, '2' => 2, '3' => 3, '4' => 4, '5' => 5,
142
+ '6' => 6, '7' => 7, '8' => 8, '9' => 9, 'a' => 10, 'b' => 11,
143
+ 'c' => 12, 'd' => 13, 'e' => 14, 'f' => 15, 'g' => 16, 'h' => 17,
144
+ 'i' => 18, 'j' => 19, 'k' => 20, 'l' => 21, 'm' => 22, 'n' => 23,
145
+ 'o' => 24, 'p' => 25, 'q' => 26, 'r' => 27, 's' => 28, 't' => 29,
146
+ 'u' => 30, 'v' => 31, 'w' => 32, 'x' => 33, 'y' => 34, 'z' => 35
147
+ );
148
+
149
+
150
+ if($bcmathExtensionLoaded)
151
+ {
152
+ $decimal = '0';
153
+ foreach ( str_split($longDigit) as $char ) {
154
+ $decimal = bcmul( $decimal, $sourceBase );
155
+ $decimal = bcadd( $decimal, $arrBaseChars[$char] );
156
+ }
157
+
158
+ for ( $result = ''; bccomp( $decimal, 0 ); $decimal = bcdiv( $decimal, $destBase, 0 ) ) {
159
+ $result .= $arrBaseChars[bcmod( $decimal, $destBase )];
160
+ }
161
+
162
+ return str_pad( strrev( $result ), $minDigits, '0', STR_PAD_LEFT );
163
+ }
164
+
165
+
166
+ $inDigits = array();
167
+ foreach ( str_split($longDigit) as $char ) {
168
+ $inDigits[] = $arrBaseChars[$char];
169
+ }
170
+
171
+ $result = '';
172
+ while ( $inDigits )
173
+ {
174
+ $work = 0;
175
+ $workDigits = array();
176
+
177
+ foreach ( $inDigits as $digit )
178
+ {
179
+ $work *= $sourceBase;
180
+ $work += $digit;
181
+
182
+ if ( $workDigits || $work >= $destBase ) {
183
+ $workDigits[] = (int)( $work / $destBase );
184
+ }
185
+
186
+ $work %= $destBase;
187
+ }
188
+
189
+ $result .= $arrBaseChars[$work];
190
+ $inDigits = $workDigits;
191
+ }
192
+
193
+ return str_pad( strrev( $result ), $minDigits, '0', STR_PAD_LEFT );
194
+
195
+ }
196
+
197
+
198
+
199
+
200
  }
includes/utils/MchGdbcWpUtils.php CHANGED
@@ -181,8 +181,8 @@ final class MchGdbcWpUtils
181
  if(null !== $pageUrl)
182
  return $pageUrl;
183
 
184
- if(is_front_page())
185
- return $pageUrl = home_url('/', self::isSslRequest());
186
 
187
  $pageUrl = self::isSslRequest() ? 'https://' : 'http://';
188
 
@@ -227,19 +227,19 @@ final class MchGdbcWpUtils
227
  restore_current_blog();
228
  }
229
 
230
- (!empty($arrUploadDirInfo['error']) && !empty($arrUploadDirInfo['basedir']))
231
  ? $arrPossibleDirectoryPath[] = $arrUploadDirInfo['basedir'] : null;
232
 
233
  defined('WP_TEMP_DIR') ? $arrPossibleDirectoryPath[] = WP_TEMP_DIR : null;
234
 
235
- $arrPossibleDirectoryPath[] = @sys_get_temp_dir();
236
- $arrPossibleDirectoryPath[] = @ini_get('upload_tmp_dir');
237
-
238
- !empty($_SERVER['TMP']) ? $arrPossibleDirectoryPath[] = $_SERVER['TMP'] : null;
239
- !empty($_SERVER['TEMP']) ? $arrPossibleDirectoryPath[] = $_SERVER['TEMP'] : null;
240
- !empty($_SERVER['TMPDIR']) ? $arrPossibleDirectoryPath[] = $_SERVER['TMPDIR'] : null;
241
-
242
- $arrPossibleDirectoryPath[] = ('so' !== PHP_SHLIB_SUFFIX) ? 'C:/Temp' : '/tmp';
243
 
244
  foreach($arrPossibleDirectoryPath as $directoryPath)
245
  {
@@ -283,19 +283,13 @@ final class MchGdbcWpUtils
283
  if(!self::isPathAccessible($directoryPath))
284
  return false;
285
 
286
- if(!self::createDirectory($directoryPath))
287
  return false;
288
  }
289
 
290
  return function_exists('wp_is_writable') ? wp_is_writable($directoryPath) && @is_readable($directoryPath): @is_writable($directoryPath) && @is_readable($directoryPath);
291
  }
292
 
293
- // public static function lockFile($exclusiveLock = true)
294
- // {
295
- //
296
- // }
297
-
298
-
299
  public static function createDirectory($directoryPath)
300
  {
301
  return wp_mkdir_p(rtrim($directoryPath, '/\\'));
@@ -303,7 +297,7 @@ final class MchGdbcWpUtils
303
 
304
  public static function writeContentToFile($content, $filePath, $exclusiveLock = true)
305
  {
306
- $filePointer = @fopen($filePath, 'wb'); // ab - for append
307
  if(false === $filePointer)
308
  return 0;
309
 
181
  if(null !== $pageUrl)
182
  return $pageUrl;
183
 
184
+ // if(is_front_page())
185
+ // return $pageUrl = home_url('/', self::isSslRequest());
186
 
187
  $pageUrl = self::isSslRequest() ? 'https://' : 'http://';
188
 
227
  restore_current_blog();
228
  }
229
 
230
+ (empty($arrUploadDirInfo['error']) && !empty($arrUploadDirInfo['basedir']))
231
  ? $arrPossibleDirectoryPath[] = $arrUploadDirInfo['basedir'] : null;
232
 
233
  defined('WP_TEMP_DIR') ? $arrPossibleDirectoryPath[] = WP_TEMP_DIR : null;
234
 
235
+ // $arrPossibleDirectoryPath[] = @sys_get_temp_dir();
236
+ // $arrPossibleDirectoryPath[] = @ini_get('upload_tmp_dir');
237
+ //
238
+ // !empty($_SERVER['TMP']) ? $arrPossibleDirectoryPath[] = $_SERVER['TMP'] : null;
239
+ // !empty($_SERVER['TEMP']) ? $arrPossibleDirectoryPath[] = $_SERVER['TEMP'] : null;
240
+ // !empty($_SERVER['TMPDIR']) ? $arrPossibleDirectoryPath[] = $_SERVER['TMPDIR'] : null;
241
+ //
242
+ // $arrPossibleDirectoryPath[] = ('so' !== PHP_SHLIB_SUFFIX) ? 'C:/Temp' : '/tmp';
243
 
244
  foreach($arrPossibleDirectoryPath as $directoryPath)
245
  {
283
  if(!self::isPathAccessible($directoryPath))
284
  return false;
285
 
286
+ if($createIfNotExists && !self::createDirectory($directoryPath))
287
  return false;
288
  }
289
 
290
  return function_exists('wp_is_writable') ? wp_is_writable($directoryPath) && @is_readable($directoryPath): @is_writable($directoryPath) && @is_readable($directoryPath);
291
  }
292
 
 
 
 
 
 
 
293
  public static function createDirectory($directoryPath)
294
  {
295
  return wp_mkdir_p(rtrim($directoryPath, '/\\'));
297
 
298
  public static function writeContentToFile($content, $filePath, $exclusiveLock = true)
299
  {
300
+ $filePointer = @fopen($filePath, 'wb');
301
  if(false === $filePointer)
302
  return 0;
303
 
includes/vendor/MchHttp/MchGdbcIpCountryLocator.php ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class MchGdbcIpCountryLocator
4
+ {
5
+ public static function getCountryIdByIpAddress($ipAddress, $ipVersion = null)
6
+ {
7
+ empty($ipVersion) ? $ipVersion = MchGdbcIPUtils::getIpAddressVersion($ipAddress) : null;
8
+
9
+ if( -1 === $ipVersion)
10
+ return null;
11
+
12
+ if($ipVersion === MchGdbcIPUtils::IP_VERSION_4)
13
+ return self::getCountryIdByIPV4($ipAddress);
14
+
15
+ if(null !== ($mappedIPV4 = MchGdbcIPUtils::extractMappedIPV4FromIPv6($ipAddress)))
16
+ return self::getCountryIdByIPV4($mappedIPV4);
17
+
18
+ return self::getCountryIdByIPV6($ipAddress);
19
+ }
20
+
21
+
22
+ private static function getCountryIdByIPV4($ipAddress)
23
+ {
24
+ if(null === ($ipNumber = MchGdbcIPUtils::ipAddressToNumber($ipAddress, MchGdbcIPUtils::IP_VERSION_4)))
25
+ return null;
26
+
27
+ $dataFilePath = null;
28
+
29
+ if(16777216 <= $ipNumber && $ipNumber <= 1410337738)
30
+ $dataFilePath = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'country-ips' . DIRECTORY_SEPARATOR . 'ipv4' . DIRECTORY_SEPARATOR . 'country-ipv4-0.dat';
31
+ elseif(1410337739 <= $ipNumber && $ipNumber <= 2647523327)
32
+ $dataFilePath = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'country-ips' . DIRECTORY_SEPARATOR . 'ipv4' . DIRECTORY_SEPARATOR . 'country-ipv4-1.dat';
33
+ elseif(2647523328 <= $ipNumber && $ipNumber <= 3486610431)
34
+ $dataFilePath = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'country-ips' . DIRECTORY_SEPARATOR . 'ipv4' . DIRECTORY_SEPARATOR . 'country-ipv4-2.dat';
35
+ elseif(3486610432 <= $ipNumber && $ipNumber <= 3758096383)
36
+ $dataFilePath = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'country-ips' . DIRECTORY_SEPARATOR . 'ipv4' . DIRECTORY_SEPARATOR . 'country-ipv4-3.dat';
37
+
38
+ if(null === $dataFilePath)
39
+ return null;
40
+
41
+ if(false === ($fileHandle = @fopen($dataFilePath, 'rb')))
42
+ return null;
43
+
44
+ fseek($fileHandle, 0, SEEK_END);
45
+ $startPosition = 0;
46
+ $endPosition = ftell($fileHandle);
47
+ fseek($fileHandle, SEEK_SET);
48
+
49
+ $bufferSize = 10;
50
+
51
+ if(($endPosition % $bufferSize) !== 0) // data file corrupted
52
+ {
53
+ fclose($fileHandle);
54
+ return null;
55
+ }
56
+
57
+ while($startPosition < $endPosition)
58
+ {
59
+ $midPosition = ceil( (($startPosition + $endPosition) / 2) / $bufferSize ) * $bufferSize;
60
+
61
+ fseek($fileHandle, $midPosition - $bufferSize, SEEK_SET);
62
+ $data = fread($fileHandle, $bufferSize);
63
+ $data = unpack("NminIp/NmaxIp/ncid", $data);
64
+
65
+ if( empty($data['minIp']) || empty($data['maxIp']) )
66
+ break;
67
+
68
+ if($data['minIp'] < 0) $data['minIp'] += 4294967296;
69
+
70
+ if($ipNumber < $data['minIp']){
71
+ $endPosition = $midPosition - $bufferSize;
72
+ continue;
73
+ }
74
+
75
+ if($data['maxIp'] < 0) $data['maxIp'] += 4294967296;
76
+
77
+ if($ipNumber > $data['maxIp']){
78
+ $startPosition = $midPosition;
79
+ continue;
80
+ }
81
+
82
+ fclose($fileHandle);
83
+ return !empty($data['cid']) ? $data['cid'] : null;
84
+ }
85
+
86
+ fclose($fileHandle);
87
+ return null;
88
+ }
89
+
90
+ private static function getCountryIdByIPV6($ipAddress)
91
+ {
92
+ if(null === ($ipBinary = MchGdbcIPUtils::ipAddressToBinary($ipAddress, MchGdbcIPUtils::IP_VERSION_6)))
93
+ return null;
94
+
95
+ $dataFilePath = null;
96
+
97
+ if(MchGdbcIPUtils::ipAddressToBinary('::ffff:5.8.62.0', MchGdbcIPUtils::IP_VERSION_6) <= $ipBinary && $ipBinary <= MchGdbcIPUtils::ipAddressToBinary('2c0f:ffff:ffff:ffff:ffff:ffff:ffff:ffff', MchGdbcIPUtils::IP_VERSION_6))
98
+ $dataFilePath = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'country-ips' . DIRECTORY_SEPARATOR . 'ipv6' . DIRECTORY_SEPARATOR . 'country-ipv6-0.dat';
99
+
100
+ if(null === $dataFilePath)
101
+ return null;
102
+
103
+ if(false === ($fileHandle = @fopen($dataFilePath, 'rb')))
104
+ return null;
105
+
106
+ fseek($fileHandle, 0, SEEK_END);
107
+ $startPosition = 0;
108
+ $endPosition = ftell($fileHandle);
109
+ fseek($fileHandle, SEEK_SET);
110
+
111
+ $bufferSize = 34;
112
+
113
+ if(($endPosition % $bufferSize) !== 0) // data file corrupted
114
+ {
115
+ fclose($fileHandle);
116
+ return null;
117
+ }
118
+
119
+ while($startPosition < $endPosition)
120
+ {
121
+ $midPosition = ceil( (($startPosition + $endPosition) / 2) / $bufferSize ) * $bufferSize;
122
+
123
+ fseek($fileHandle, $midPosition - $bufferSize, SEEK_SET);
124
+
125
+ if($ipBinary < fread($fileHandle, 16)){
126
+ $endPosition = $midPosition - $bufferSize;
127
+ continue;
128
+ }
129
+
130
+ if($ipBinary > fread($fileHandle, 16)){
131
+ $startPosition = $midPosition;
132
+ continue;
133
+ }
134
+
135
+ $data = @unpack("ncid", fread($fileHandle, 2));
136
+
137
+ fclose($fileHandle);
138
+ return !empty($data['cid']) ? $data['cid'] : null;
139
+
140
+ }
141
+
142
+ fclose($fileHandle);
143
+ return null;
144
+ }
145
+
146
+ }
147
+
includes/vendor/MchHttp/MchGdbcTrustedIPRanges.php CHANGED
@@ -30,7 +30,7 @@ final class MchGdbcTrustedIPRanges
30
  {
31
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
32
  ?
33
- self::isIPInRanges($ipAddress, $ipVersion, array(759185408=>759186431,1729951744=>1729952767,2508081152=>2508083199,3104537600=>3104538623,3236315136=>3236331519,3331268608=>3331276799,3344138240=>3344140287,))
34
  :
35
  self::isIPInRanges($ipAddress, $ipVersion, array('2a02:e980::/29'=>1,));
36
 
@@ -51,7 +51,7 @@ final class MchGdbcTrustedIPRanges
51
  {
52
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
53
  ?
54
- self::isIPInRanges($ipAddress, $ipVersion, array(387186688=>387448831,775127040=>775147519,775149568=>775159807,780730368=>780795903,839909376=>840171519,846200832=>846266367,872415232=>873332735,873463808=>875298815,875560960=>875954175,876216320=>876347391,876478464=>876740607,876806144=>877330431,877395968=>877527039,877592576=>877658111,878051328=>878444543,878702592=>878705151,878705664=>878705919,878706432=>878706591,884998144=>885129215,885260288=>886571007,886833152=>886964223,910163968=>912261119,915406848=>917766143,917962752=>918552575,918618112=>920518655,920551424=>921042943,921174016=>921632767,921763840=>922746879,1137311744=>1137328127,1210851328=>1210859519,1264943104=>1264975871,1333592064=>1333624831,1618935808=>1618968575,1728317440=>1728319487,1796472832=>1796734975,2063122432=>2063138815,2927689728=>2927755263,2938732544=>2938765311,2954903552=>2954911743,2955018240=>2955083775,2974253056=>2974285823,3091726336=>3091857407,3098116096=>3098148863,3106961408=>3106962431,3438051328=>3438084095,3635863552=>3635867647,))
55
  :
56
  self::isIPInRanges($ipAddress, $ipVersion, array());
57
 
30
  {
31
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
32
  ?
33
+ self::isIPInRanges($ipAddress, $ipVersion, array(759185408=>759186431,1729951744=>1729952767,1805286912=>1805287167,2508081152=>2508083199,3104537600=>3104538623,3236315136=>3236331519,3331268608=>3331276799,3344138240=>3344140287,))
34
  :
35
  self::isIPInRanges($ipAddress, $ipVersion, array('2a02:e980::/29'=>1,));
36
 
51
  {
52
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
53
  ?
54
+ self::isIPInRanges($ipAddress, $ipVersion, array(387186688=>387448831,775127040=>775147519,775149568=>775159807,780730368=>780795903,839909376=>840171519,846200832=>846266367,872415232=>873332735,873463808=>875298815,875560960=>875954175,876216320=>876347391,876478464=>876740607,876806144=>877330431,877395968=>877658111,878051328=>878444543,878702592=>878705151,878705664=>878705919,878706432=>878706591,884998144=>885129215,885260288=>886571007,886833152=>886996991,910163968=>912261119,915406848=>917766143,917962752=>918552575,918618112=>920518655,920551424=>921042943,921174016=>921632767,921763840=>922746879,1137311744=>1137328127,1210851328=>1210859519,1264943104=>1264975871,1333592064=>1333624831,1618935808=>1618968575,1728317440=>1728319487,1796472832=>1796734975,2063122432=>2063138815,2927689728=>2927755263,2938732544=>2938765311,2954903552=>2954911743,2955018240=>2955083775,2974253056=>2974285823,3091726336=>3091857407,3098116096=>3098148863,3106961408=>3106962431,3438051328=>3438084095,3635863552=>3635867647,))
55
  :
56
  self::isIPInRanges($ipAddress, $ipVersion, array());
57
 
includes/vendor/MchHttp/MchGdbcUnTrustedIPRanges.php CHANGED
@@ -12,7 +12,7 @@ class MchGdbcUnTrustedIPRanges
12
  if( $ipNumber < 16815956 )
13
  return false;
14
 
15
- if( (16815956 <= $ipNumber) && ($ipNumber <= 84494961) ){
16
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-0.php';
17
  if( isset($a[$ipNumber]) ) return true;
18
  foreach($a as $minIpValue => $maxIpValue){
@@ -23,10 +23,10 @@ class MchGdbcUnTrustedIPRanges
23
  return false;
24
  }
25
 
26
- if( $ipNumber < 84495484 )
27
  return false;
28
 
29
- if( (84495484 <= $ipNumber) && ($ipNumber <= 93900468) ){
30
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-1.php';
31
  if( isset($a[$ipNumber]) ) return true;
32
  foreach($a as $minIpValue => $maxIpValue){
@@ -37,10 +37,10 @@ class MchGdbcUnTrustedIPRanges
37
  return false;
38
  }
39
 
40
- if( $ipNumber < 93900469 )
41
  return false;
42
 
43
- if( (93900469 <= $ipNumber) && ($ipNumber <= 237240845) ){
44
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-2.php';
45
  if( isset($a[$ipNumber]) ) return true;
46
  foreach($a as $minIpValue => $maxIpValue){
@@ -51,17 +51,24 @@ class MchGdbcUnTrustedIPRanges
51
  return false;
52
  }
53
 
54
- if( $ipNumber < 237246119 )
55
  return false;
56
 
57
- if( (237246119 <= $ipNumber) && ($ipNumber <= 246539194) ){
58
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-3.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
59
  }
60
 
61
- if( $ipNumber < 246744404 )
62
  return false;
63
 
64
- if( (246744404 <= $ipNumber) && ($ipNumber <= 400881047) ){
65
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-4.php';
66
  if( isset($a[$ipNumber]) ) return true;
67
  foreach($a as $minIpValue => $maxIpValue){
@@ -72,10 +79,10 @@ class MchGdbcUnTrustedIPRanges
72
  return false;
73
  }
74
 
75
- if( $ipNumber < 400881051 )
76
  return false;
77
 
78
- if( (400881051 <= $ipNumber) && ($ipNumber <= 463063229) ){
79
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-5.php';
80
  if( isset($a[$ipNumber]) ) return true;
81
  foreach($a as $minIpValue => $maxIpValue){
@@ -86,10 +93,10 @@ class MchGdbcUnTrustedIPRanges
86
  return false;
87
  }
88
 
89
- if( $ipNumber < 463063231 )
90
  return false;
91
 
92
- if( (463063231 <= $ipNumber) && ($ipNumber <= 541188135) ){
93
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-6.php';
94
  if( isset($a[$ipNumber]) ) return true;
95
  foreach($a as $minIpValue => $maxIpValue){
@@ -100,10 +107,10 @@ class MchGdbcUnTrustedIPRanges
100
  return false;
101
  }
102
 
103
- if( $ipNumber < 541188143 )
104
  return false;
105
 
106
- if( (541188143 <= $ipNumber) && ($ipNumber <= 633023779) ){
107
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-7.php';
108
  if( isset($a[$ipNumber]) ) return true;
109
  foreach($a as $minIpValue => $maxIpValue){
@@ -114,10 +121,10 @@ class MchGdbcUnTrustedIPRanges
114
  return false;
115
  }
116
 
117
- if( $ipNumber < 633023987 )
118
  return false;
119
 
120
- if( (633023987 <= $ipNumber) && ($ipNumber <= 696602648) ){
121
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-8.php';
122
  if( isset($a[$ipNumber]) ) return true;
123
  foreach($a as $minIpValue => $maxIpValue){
@@ -128,10 +135,10 @@ class MchGdbcUnTrustedIPRanges
128
  return false;
129
  }
130
 
131
- if( $ipNumber < 696610512 )
132
  return false;
133
 
134
- if( (696610512 <= $ipNumber) && ($ipNumber <= 736442367) ){
135
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-9.php';
136
  if( isset($a[$ipNumber]) ) return true;
137
  foreach($a as $minIpValue => $maxIpValue){
@@ -142,10 +149,10 @@ class MchGdbcUnTrustedIPRanges
142
  return false;
143
  }
144
 
145
- if( $ipNumber < 736441614 )
146
  return false;
147
 
148
- if( (736441614 <= $ipNumber) && ($ipNumber <= 773718015) ){
149
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-10.php';
150
  if( isset($a[$ipNumber]) ) return true;
151
  foreach($a as $minIpValue => $maxIpValue){
@@ -156,24 +163,17 @@ class MchGdbcUnTrustedIPRanges
156
  return false;
157
  }
158
 
159
- if( $ipNumber < 773717942 )
160
  return false;
161
 
162
- if( (773717942 <= $ipNumber) && ($ipNumber <= 782319173) ){
163
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-11.php';
164
- if( isset($a[$ipNumber]) ) return true;
165
- foreach($a as $minIpValue => $maxIpValue){
166
- if( 1 === $maxIpValue ) break;
167
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
168
- return true;
169
- }
170
- return false;
171
  }
172
 
173
- if( $ipNumber < 782319174 )
174
  return false;
175
 
176
- if( (782319174 <= $ipNumber) && ($ipNumber <= 832354624) ){
177
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-12.php';
178
  if( isset($a[$ipNumber]) ) return true;
179
  foreach($a as $minIpValue => $maxIpValue){
@@ -184,25 +184,25 @@ class MchGdbcUnTrustedIPRanges
184
  return false;
185
  }
186
 
187
- if( $ipNumber < 832356099 )
188
  return false;
189
 
190
- if( (832356099 <= $ipNumber) && ($ipNumber <= 846440047) ){
191
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-13.php';
192
- if( isset($a[$ipNumber]) ) return true;
193
- foreach($a as $minIpValue => $maxIpValue){
194
- if( 1 === $maxIpValue ) break;
195
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
196
- return true;
197
- }
198
  return false;
 
 
 
199
  }
200
 
201
- if( $ipNumber < 846440053 )
202
  return false;
203
 
204
- if( (846440053 <= $ipNumber) && ($ipNumber <= 974393219) ){
205
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-14.php';
206
  if( isset($a[$ipNumber]) ) return true;
207
  foreach($a as $minIpValue => $maxIpValue){
208
  if( 1 === $maxIpValue ) break;
@@ -212,11 +212,11 @@ class MchGdbcUnTrustedIPRanges
212
  return false;
213
  }
214
 
215
- if( $ipNumber < 974393222 )
216
  return false;
217
 
218
- if( (974393222 <= $ipNumber) && ($ipNumber <= 987417652) ){
219
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-15.php';
220
  if( isset($a[$ipNumber]) ) return true;
221
  foreach($a as $minIpValue => $maxIpValue){
222
  if( 1 === $maxIpValue ) break;
@@ -226,32 +226,25 @@ class MchGdbcUnTrustedIPRanges
226
  return false;
227
  }
228
 
229
- if( $ipNumber < 987417653 )
230
  return false;
231
 
232
- if( (987417653 <= $ipNumber) && ($ipNumber <= 992150959) ){
233
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-16.php'; return isset($a[$ipNumber]);
234
  }
235
 
236
- if( $ipNumber < 992152720 )
237
  return false;
238
 
239
- if( (992152720 <= $ipNumber) && ($ipNumber <= 1007463730) ){
240
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-17.php';
241
- if( isset($a[$ipNumber]) ) return true;
242
- foreach($a as $minIpValue => $maxIpValue){
243
- if( 1 === $maxIpValue ) break;
244
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
245
- return true;
246
- }
247
- return false;
248
  }
249
 
250
- if( $ipNumber < 1007464035 )
251
  return false;
252
 
253
- if( (1007464035 <= $ipNumber) && ($ipNumber <= 1022792944) ){
254
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-18.php';
255
  if( isset($a[$ipNumber]) ) return true;
256
  foreach($a as $minIpValue => $maxIpValue){
257
  if( 1 === $maxIpValue ) break;
@@ -261,11 +254,11 @@ class MchGdbcUnTrustedIPRanges
261
  return false;
262
  }
263
 
264
- if( $ipNumber < 1022796286 )
265
  return false;
266
 
267
- if( (1022796286 <= $ipNumber) && ($ipNumber <= 1030689570) ){
268
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-19.php';
269
  if( isset($a[$ipNumber]) ) return true;
270
  foreach($a as $minIpValue => $maxIpValue){
271
  if( 1 === $maxIpValue ) break;
@@ -275,24 +268,17 @@ class MchGdbcUnTrustedIPRanges
275
  return false;
276
  }
277
 
278
- if( $ipNumber < 1030901994 )
279
- return false;
280
-
281
- if( (1030901994 <= $ipNumber) && ($ipNumber <= 1033956397) ){
282
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-20.php'; return isset($a[$ipNumber]);
283
- }
284
-
285
- if( $ipNumber < 1033956467 )
286
  return false;
287
 
288
- if( (1033956467 <= $ipNumber) && ($ipNumber <= 1042393118) ){
289
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-21.php'; return isset($a[$ipNumber]);
290
  }
291
 
292
- if( $ipNumber < 1042399030 )
293
  return false;
294
 
295
- if( (1042399030 <= $ipNumber) && ($ipNumber <= 1053993285) ){
296
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-22.php';
297
  if( isset($a[$ipNumber]) ) return true;
298
  foreach($a as $minIpValue => $maxIpValue){
@@ -303,10 +289,10 @@ class MchGdbcUnTrustedIPRanges
303
  return false;
304
  }
305
 
306
- if( $ipNumber < 1053994040 )
307
  return false;
308
 
309
- if( (1053994040 <= $ipNumber) && ($ipNumber <= 1076325072) ){
310
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-23.php';
311
  if( isset($a[$ipNumber]) ) return true;
312
  foreach($a as $minIpValue => $maxIpValue){
@@ -317,18 +303,11 @@ class MchGdbcUnTrustedIPRanges
317
  return false;
318
  }
319
 
320
- if( $ipNumber < 1076325073 )
321
  return false;
322
 
323
- if( (1076325073 <= $ipNumber) && ($ipNumber <= 1110368034) ){
324
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-24.php'; return isset($a[$ipNumber]);
325
- }
326
-
327
- if( $ipNumber < 1110444291 )
328
- return false;
329
-
330
- if( (1110444291 <= $ipNumber) && ($ipNumber <= 1138781837) ){
331
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-25.php';
332
  if( isset($a[$ipNumber]) ) return true;
333
  foreach($a as $minIpValue => $maxIpValue){
334
  if( 1 === $maxIpValue ) break;
@@ -338,60 +317,25 @@ class MchGdbcUnTrustedIPRanges
338
  return false;
339
  }
340
 
341
- if( $ipNumber < 1138862114 )
342
  return false;
343
 
344
- if( (1138862114 <= $ipNumber) && ($ipNumber <= 1168267795) ){
345
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-26.php'; return isset($a[$ipNumber]);
346
  }
347
 
348
- if( $ipNumber < 1168268588 )
349
  return false;
350
 
351
- if( (1168268588 <= $ipNumber) && ($ipNumber <= 1211399732) ){
352
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-27.php';
353
- if( isset($a[$ipNumber]) ) return true;
354
- foreach($a as $minIpValue => $maxIpValue){
355
- if( 1 === $maxIpValue ) break;
356
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
357
- return true;
358
- }
359
- return false;
360
- }
361
-
362
- if( $ipNumber < 1211402418 )
363
- return false;
364
-
365
- if( (1211402418 <= $ipNumber) && ($ipNumber <= 1255208645) ){
366
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-28.php'; return isset($a[$ipNumber]);
367
- }
368
-
369
- if( $ipNumber < 1255209539 )
370
- return false;
371
-
372
- if( (1255209539 <= $ipNumber) && ($ipNumber <= 1298949518) ){
373
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-29.php'; return isset($a[$ipNumber]);
374
- }
375
-
376
- if( $ipNumber < 1298973722 )
377
- return false;
378
-
379
- if( (1298973722 <= $ipNumber) && ($ipNumber <= 1318875272) ){
380
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-30.php';
381
- if( isset($a[$ipNumber]) ) return true;
382
- foreach($a as $minIpValue => $maxIpValue){
383
- if( 1 === $maxIpValue ) break;
384
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
385
- return true;
386
- }
387
- return false;
388
  }
389
 
390
- if( $ipNumber < 1318875534 )
391
  return false;
392
 
393
- if( (1318875534 <= $ipNumber) && ($ipNumber <= 1336631833) ){
394
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-31.php';
395
  if( isset($a[$ipNumber]) ) return true;
396
  foreach($a as $minIpValue => $maxIpValue){
397
  if( 1 === $maxIpValue ) break;
@@ -401,11 +345,11 @@ class MchGdbcUnTrustedIPRanges
401
  return false;
402
  }
403
 
404
- if( $ipNumber < 1336632421 )
405
  return false;
406
 
407
- if( (1336632421 <= $ipNumber) && ($ipNumber <= 1357985706) ){
408
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-32.php';
409
  if( isset($a[$ipNumber]) ) return true;
410
  foreach($a as $minIpValue => $maxIpValue){
411
  if( 1 === $maxIpValue ) break;
@@ -415,11 +359,11 @@ class MchGdbcUnTrustedIPRanges
415
  return false;
416
  }
417
 
418
- if( $ipNumber < 1358024730 )
419
  return false;
420
 
421
- if( (1358024730 <= $ipNumber) && ($ipNumber <= 1375680108) ){
422
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-33.php';
423
  if( isset($a[$ipNumber]) ) return true;
424
  foreach($a as $minIpValue => $maxIpValue){
425
  if( 1 === $maxIpValue ) break;
@@ -429,18 +373,11 @@ class MchGdbcUnTrustedIPRanges
429
  return false;
430
  }
431
 
432
- if( $ipNumber < 1375710708 )
433
- return false;
434
-
435
- if( (1375710708 <= $ipNumber) && ($ipNumber <= 1393727602) ){
436
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-34.php'; return isset($a[$ipNumber]);
437
- }
438
-
439
- if( $ipNumber < 1393731314 )
440
  return false;
441
 
442
- if( (1393731314 <= $ipNumber) && ($ipNumber <= 1417459882) ){
443
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-35.php';
444
  if( isset($a[$ipNumber]) ) return true;
445
  foreach($a as $minIpValue => $maxIpValue){
446
  if( 1 === $maxIpValue ) break;
@@ -450,18 +387,18 @@ class MchGdbcUnTrustedIPRanges
450
  return false;
451
  }
452
 
453
- if( $ipNumber < 1417552341 )
454
  return false;
455
 
456
- if( (1417552341 <= $ipNumber) && ($ipNumber <= 1432998681) ){
457
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-36.php'; return isset($a[$ipNumber]);
458
  }
459
 
460
- if( $ipNumber < 1432998891 )
461
  return false;
462
 
463
- if( (1432998891 <= $ipNumber) && ($ipNumber <= 1445134607) ){
464
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-37.php';
465
  if( isset($a[$ipNumber]) ) return true;
466
  foreach($a as $minIpValue => $maxIpValue){
467
  if( 1 === $maxIpValue ) break;
@@ -471,11 +408,11 @@ class MchGdbcUnTrustedIPRanges
471
  return false;
472
  }
473
 
474
- if( $ipNumber < 1445138331 )
475
  return false;
476
 
477
- if( (1445138331 <= $ipNumber) && ($ipNumber <= 1468734073) ){
478
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-38.php';
479
  if( isset($a[$ipNumber]) ) return true;
480
  foreach($a as $minIpValue => $maxIpValue){
481
  if( 1 === $maxIpValue ) break;
@@ -485,11 +422,11 @@ class MchGdbcUnTrustedIPRanges
485
  return false;
486
  }
487
 
488
- if( $ipNumber < 1468737309 )
489
  return false;
490
 
491
- if( (1468737309 <= $ipNumber) && ($ipNumber <= 1488932705) ){
492
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-39.php';
493
  if( isset($a[$ipNumber]) ) return true;
494
  foreach($a as $minIpValue => $maxIpValue){
495
  if( 1 === $maxIpValue ) break;
@@ -499,39 +436,32 @@ class MchGdbcUnTrustedIPRanges
499
  return false;
500
  }
501
 
502
- if( $ipNumber < 1488932711 )
503
  return false;
504
 
505
- if( (1488932711 <= $ipNumber) && ($ipNumber <= 1496259629) ){
506
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-40.php'; return isset($a[$ipNumber]);
507
  }
508
 
509
- if( $ipNumber < 1496259651 )
510
  return false;
511
 
512
- if( (1496259651 <= $ipNumber) && ($ipNumber <= 1521685873) ){
513
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-41.php'; return isset($a[$ipNumber]);
514
  }
515
 
516
- if( $ipNumber < 1521714376 )
517
  return false;
518
 
519
- if( (1521714376 <= $ipNumber) && ($ipNumber <= 1540247117) ){
520
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-42.php';
521
- if( isset($a[$ipNumber]) ) return true;
522
- foreach($a as $minIpValue => $maxIpValue){
523
- if( 1 === $maxIpValue ) break;
524
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
525
- return true;
526
- }
527
- return false;
528
  }
529
 
530
- if( $ipNumber < 1540263764 )
531
  return false;
532
 
533
- if( (1540263764 <= $ipNumber) && ($ipNumber <= 1548940646) ){
534
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-43.php';
535
  if( isset($a[$ipNumber]) ) return true;
536
  foreach($a as $minIpValue => $maxIpValue){
537
  if( 1 === $maxIpValue ) break;
@@ -541,11 +471,11 @@ class MchGdbcUnTrustedIPRanges
541
  return false;
542
  }
543
 
544
- if( $ipNumber < 1548974969 )
545
  return false;
546
 
547
- if( (1548974969 <= $ipNumber) && ($ipNumber <= 1571708170) ){
548
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-44.php';
549
  if( isset($a[$ipNumber]) ) return true;
550
  foreach($a as $minIpValue => $maxIpValue){
551
  if( 1 === $maxIpValue ) break;
@@ -555,11 +485,11 @@ class MchGdbcUnTrustedIPRanges
555
  return false;
556
  }
557
 
558
- if( $ipNumber < 1571708177 )
559
  return false;
560
 
561
- if( (1571708177 <= $ipNumber) && ($ipNumber <= 1583755671) ){
562
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-45.php';
563
  if( isset($a[$ipNumber]) ) return true;
564
  foreach($a as $minIpValue => $maxIpValue){
565
  if( 1 === $maxIpValue ) break;
@@ -569,11 +499,11 @@ class MchGdbcUnTrustedIPRanges
569
  return false;
570
  }
571
 
572
- if( $ipNumber < 1583755688 )
573
  return false;
574
 
575
- if( (1583755688 <= $ipNumber) && ($ipNumber <= 1595936353) ){
576
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-46.php';
577
  if( isset($a[$ipNumber]) ) return true;
578
  foreach($a as $minIpValue => $maxIpValue){
579
  if( 1 === $maxIpValue ) break;
@@ -583,18 +513,18 @@ class MchGdbcUnTrustedIPRanges
583
  return false;
584
  }
585
 
586
- if( $ipNumber < 1595937066 )
587
  return false;
588
 
589
- if( (1595937066 <= $ipNumber) && ($ipNumber <= 1605215974) ){
590
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-47.php'; return isset($a[$ipNumber]);
591
  }
592
 
593
- if( $ipNumber < 1605215980 )
594
  return false;
595
 
596
- if( (1605215980 <= $ipNumber) && ($ipNumber <= 1663993377) ){
597
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-48.php';
598
  if( isset($a[$ipNumber]) ) return true;
599
  foreach($a as $minIpValue => $maxIpValue){
600
  if( 1 === $maxIpValue ) break;
@@ -604,11 +534,11 @@ class MchGdbcUnTrustedIPRanges
604
  return false;
605
  }
606
 
607
- if( $ipNumber < 1664287199 )
608
  return false;
609
 
610
- if( (1664287199 <= $ipNumber) && ($ipNumber <= 1730772116) ){
611
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-49.php';
612
  if( isset($a[$ipNumber]) ) return true;
613
  foreach($a as $minIpValue => $maxIpValue){
614
  if( 1 === $maxIpValue ) break;
@@ -618,11 +548,11 @@ class MchGdbcUnTrustedIPRanges
618
  return false;
619
  }
620
 
621
- if( $ipNumber < 1730772117 )
622
  return false;
623
 
624
- if( (1730772117 <= $ipNumber) && ($ipNumber <= 1755117246) ){
625
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-50.php';
626
  if( isset($a[$ipNumber]) ) return true;
627
  foreach($a as $minIpValue => $maxIpValue){
628
  if( 1 === $maxIpValue ) break;
@@ -632,11 +562,11 @@ class MchGdbcUnTrustedIPRanges
632
  return false;
633
  }
634
 
635
- if( $ipNumber < 1755119030 )
636
  return false;
637
 
638
- if( (1755119030 <= $ipNumber) && ($ipNumber <= 1795189233) ){
639
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-51.php';
640
  if( isset($a[$ipNumber]) ) return true;
641
  foreach($a as $minIpValue => $maxIpValue){
642
  if( 1 === $maxIpValue ) break;
@@ -646,11 +576,11 @@ class MchGdbcUnTrustedIPRanges
646
  return false;
647
  }
648
 
649
- if( $ipNumber < 1795249930 )
650
  return false;
651
 
652
- if( (1795249930 <= $ipNumber) && ($ipNumber <= 1823639701) ){
653
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-52.php';
654
  if( isset($a[$ipNumber]) ) return true;
655
  foreach($a as $minIpValue => $maxIpValue){
656
  if( 1 === $maxIpValue ) break;
@@ -660,53 +590,53 @@ class MchGdbcUnTrustedIPRanges
660
  return false;
661
  }
662
 
663
- if( $ipNumber < 1824097106 )
664
  return false;
665
 
666
- if( (1824097106 <= $ipNumber) && ($ipNumber <= 1836709657) ){
667
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-53.php'; return isset($a[$ipNumber]);
668
  }
669
 
670
- if( $ipNumber < 1836718555 )
671
  return false;
672
 
673
- if( (1836718555 <= $ipNumber) && ($ipNumber <= 1840086702) ){
674
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-54.php'; return isset($a[$ipNumber]);
675
  }
676
 
677
- if( $ipNumber < 1840096141 )
678
  return false;
679
 
680
- if( (1840096141 <= $ipNumber) && ($ipNumber <= 1855659523) ){
681
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-55.php'; return isset($a[$ipNumber]);
682
- }
683
-
684
- if( $ipNumber < 1855690944 )
 
 
 
685
  return false;
686
-
687
- if( (1855690944 <= $ipNumber) && ($ipNumber <= 1883370996) ){
688
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-56.php'; return isset($a[$ipNumber]);
689
  }
690
 
691
- if( $ipNumber < 1883371083 )
692
  return false;
693
 
694
- if( (1883371083 <= $ipNumber) && ($ipNumber <= 1896515930) ){
695
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-57.php'; return isset($a[$ipNumber]);
696
  }
697
 
698
- if( $ipNumber < 1896515978 )
699
  return false;
700
 
701
- if( (1896515978 <= $ipNumber) && ($ipNumber <= 1907277915) ){
702
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-58.php'; return isset($a[$ipNumber]);
703
  }
704
 
705
- if( $ipNumber < 1907278229 )
706
  return false;
707
 
708
- if( (1907278229 <= $ipNumber) && ($ipNumber <= 1925674506) ){
709
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-59.php';
710
  if( isset($a[$ipNumber]) ) return true;
711
  foreach($a as $minIpValue => $maxIpValue){
712
  if( 1 === $maxIpValue ) break;
@@ -716,11 +646,11 @@ class MchGdbcUnTrustedIPRanges
716
  return false;
717
  }
718
 
719
- if( $ipNumber < 1925674586 )
720
  return false;
721
 
722
- if( (1925674586 <= $ipNumber) && ($ipNumber <= 1942179819) ){
723
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-60.php';
724
  if( isset($a[$ipNumber]) ) return true;
725
  foreach($a as $minIpValue => $maxIpValue){
726
  if( 1 === $maxIpValue ) break;
@@ -730,18 +660,11 @@ class MchGdbcUnTrustedIPRanges
730
  return false;
731
  }
732
 
733
- if( $ipNumber < 1942180582 )
734
- return false;
735
-
736
- if( (1942180582 <= $ipNumber) && ($ipNumber <= 1951221801) ){
737
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-61.php'; return isset($a[$ipNumber]);
738
- }
739
-
740
- if( $ipNumber < 1951221864 )
741
  return false;
742
 
743
- if( (1951221864 <= $ipNumber) && ($ipNumber <= 1968132434) ){
744
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-62.php';
745
  if( isset($a[$ipNumber]) ) return true;
746
  foreach($a as $minIpValue => $maxIpValue){
747
  if( 1 === $maxIpValue ) break;
@@ -751,11 +674,11 @@ class MchGdbcUnTrustedIPRanges
751
  return false;
752
  }
753
 
754
- if( $ipNumber < 1968132699 )
755
  return false;
756
 
757
- if( (1968132699 <= $ipNumber) && ($ipNumber <= 1979571425) ){
758
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-63.php';
759
  if( isset($a[$ipNumber]) ) return true;
760
  foreach($a as $minIpValue => $maxIpValue){
761
  if( 1 === $maxIpValue ) break;
@@ -765,18 +688,18 @@ class MchGdbcUnTrustedIPRanges
765
  return false;
766
  }
767
 
768
- if( $ipNumber < 1979571476 )
769
  return false;
770
 
771
- if( (1979571476 <= $ipNumber) && ($ipNumber <= 1990261280) ){
772
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-64.php'; return isset($a[$ipNumber]);
773
  }
774
 
775
- if( $ipNumber < 1990280323 )
776
  return false;
777
 
778
- if( (1990280323 <= $ipNumber) && ($ipNumber <= 2004641003) ){
779
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-65.php';
780
  if( isset($a[$ipNumber]) ) return true;
781
  foreach($a as $minIpValue => $maxIpValue){
782
  if( 1 === $maxIpValue ) break;
@@ -786,11 +709,11 @@ class MchGdbcUnTrustedIPRanges
786
  return false;
787
  }
788
 
789
- if( $ipNumber < 2004645110 )
790
  return false;
791
 
792
- if( (2004645110 <= $ipNumber) && ($ipNumber <= 2014943613) ){
793
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-66.php';
794
  if( isset($a[$ipNumber]) ) return true;
795
  foreach($a as $minIpValue => $maxIpValue){
796
  if( 1 === $maxIpValue ) break;
@@ -800,11 +723,11 @@ class MchGdbcUnTrustedIPRanges
800
  return false;
801
  }
802
 
803
- if( $ipNumber < 2014946361 )
804
  return false;
805
 
806
- if( (2014946361 <= $ipNumber) && ($ipNumber <= 2032695649) ){
807
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-67.php';
808
  if( isset($a[$ipNumber]) ) return true;
809
  foreach($a as $minIpValue => $maxIpValue){
810
  if( 1 === $maxIpValue ) break;
@@ -814,11 +737,11 @@ class MchGdbcUnTrustedIPRanges
814
  return false;
815
  }
816
 
817
- if( $ipNumber < 2032696001 )
818
  return false;
819
 
820
- if( (2032696001 <= $ipNumber) && ($ipNumber <= 2040643188) ){
821
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-68.php';
822
  if( isset($a[$ipNumber]) ) return true;
823
  foreach($a as $minIpValue => $maxIpValue){
824
  if( 1 === $maxIpValue ) break;
@@ -828,18 +751,18 @@ class MchGdbcUnTrustedIPRanges
828
  return false;
829
  }
830
 
831
- if( $ipNumber < 2040647099 )
832
  return false;
833
 
834
- if( (2040647099 <= $ipNumber) && ($ipNumber <= 2047552312) ){
835
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-69.php'; return isset($a[$ipNumber]);
836
  }
837
 
838
- if( $ipNumber < 2047552392 )
839
  return false;
840
 
841
- if( (2047552392 <= $ipNumber) && ($ipNumber <= 2061590890) ){
842
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-70.php';
843
  if( isset($a[$ipNumber]) ) return true;
844
  foreach($a as $minIpValue => $maxIpValue){
845
  if( 1 === $maxIpValue ) break;
@@ -849,32 +772,18 @@ class MchGdbcUnTrustedIPRanges
849
  return false;
850
  }
851
 
852
- if( $ipNumber < 2061590891 )
853
  return false;
854
 
855
- if( (2061590891 <= $ipNumber) && ($ipNumber <= 2072403557) ){
856
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-71.php'; return isset($a[$ipNumber]);
857
- }
858
-
859
- if( $ipNumber < 2072403565 )
860
- return false;
861
-
862
- if( (2072403565 <= $ipNumber) && ($ipNumber <= 2089986149) ){
863
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-72.php';
864
- if( isset($a[$ipNumber]) ) return true;
865
- foreach($a as $minIpValue => $maxIpValue){
866
- if( 1 === $maxIpValue ) break;
867
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
868
- return true;
869
- }
870
- return false;
871
  }
872
 
873
- if( $ipNumber < 2089998131 )
874
  return false;
875
 
876
- if( (2089998131 <= $ipNumber) && ($ipNumber <= 2103072921) ){
877
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-73.php';
878
  if( isset($a[$ipNumber]) ) return true;
879
  foreach($a as $minIpValue => $maxIpValue){
880
  if( 1 === $maxIpValue ) break;
@@ -884,11 +793,11 @@ class MchGdbcUnTrustedIPRanges
884
  return false;
885
  }
886
 
887
- if( $ipNumber < 2103072970 )
888
  return false;
889
 
890
- if( (2103072970 <= $ipNumber) && ($ipNumber <= 2181074138) ){
891
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-74.php';
892
  if( isset($a[$ipNumber]) ) return true;
893
  foreach($a as $minIpValue => $maxIpValue){
894
  if( 1 === $maxIpValue ) break;
@@ -898,11 +807,11 @@ class MchGdbcUnTrustedIPRanges
898
  return false;
899
  }
900
 
901
- if( $ipNumber < 2181075524 )
902
  return false;
903
 
904
- if( (2181075524 <= $ipNumber) && ($ipNumber <= 2342688009) ){
905
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-75.php';
906
  if( isset($a[$ipNumber]) ) return true;
907
  foreach($a as $minIpValue => $maxIpValue){
908
  if( 1 === $maxIpValue ) break;
@@ -912,11 +821,11 @@ class MchGdbcUnTrustedIPRanges
912
  return false;
913
  }
914
 
915
- if( $ipNumber < 2342689168 )
916
  return false;
917
 
918
- if( (2342689168 <= $ipNumber) && ($ipNumber <= 2461648996) ){
919
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-76.php';
920
  if( isset($a[$ipNumber]) ) return true;
921
  foreach($a as $minIpValue => $maxIpValue){
922
  if( 1 === $maxIpValue ) break;
@@ -926,11 +835,11 @@ class MchGdbcUnTrustedIPRanges
926
  return false;
927
  }
928
 
929
- if( $ipNumber < 2461648997 )
930
  return false;
931
 
932
- if( (2461648997 <= $ipNumber) && ($ipNumber <= 2606647020) ){
933
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-77.php';
934
  if( isset($a[$ipNumber]) ) return true;
935
  foreach($a as $minIpValue => $maxIpValue){
936
  if( 1 === $maxIpValue ) break;
@@ -940,11 +849,11 @@ class MchGdbcUnTrustedIPRanges
940
  return false;
941
  }
942
 
943
- if( $ipNumber < 2606647945 )
944
  return false;
945
 
946
- if( (2606647945 <= $ipNumber) && ($ipNumber <= 2730940411) ){
947
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-78.php';
948
  if( isset($a[$ipNumber]) ) return true;
949
  foreach($a as $minIpValue => $maxIpValue){
950
  if( 1 === $maxIpValue ) break;
@@ -954,11 +863,11 @@ class MchGdbcUnTrustedIPRanges
954
  return false;
955
  }
956
 
957
- if( $ipNumber < 2731104945 )
958
  return false;
959
 
960
- if( (2731104945 <= $ipNumber) && ($ipNumber <= 2812309080) ){
961
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-79.php';
962
  if( isset($a[$ipNumber]) ) return true;
963
  foreach($a as $minIpValue => $maxIpValue){
964
  if( 1 === $maxIpValue ) break;
@@ -968,11 +877,11 @@ class MchGdbcUnTrustedIPRanges
968
  return false;
969
  }
970
 
971
- if( $ipNumber < 2812309112 )
972
  return false;
973
 
974
- if( (2812309112 <= $ipNumber) && ($ipNumber <= 2905424762) ){
975
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-80.php';
976
  if( isset($a[$ipNumber]) ) return true;
977
  foreach($a as $minIpValue => $maxIpValue){
978
  if( 1 === $maxIpValue ) break;
@@ -982,11 +891,11 @@ class MchGdbcUnTrustedIPRanges
982
  return false;
983
  }
984
 
985
- if( $ipNumber < 2905426194 )
986
  return false;
987
 
988
- if( (2905426194 <= $ipNumber) && ($ipNumber <= 2921511298) ){
989
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-81.php';
990
  if( isset($a[$ipNumber]) ) return true;
991
  foreach($a as $minIpValue => $maxIpValue){
992
  if( 1 === $maxIpValue ) break;
@@ -996,11 +905,11 @@ class MchGdbcUnTrustedIPRanges
996
  return false;
997
  }
998
 
999
- if( $ipNumber < 2921516358 )
1000
  return false;
1001
 
1002
- if( (2921516358 <= $ipNumber) && ($ipNumber <= 2949343275) ){
1003
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-82.php';
1004
  if( isset($a[$ipNumber]) ) return true;
1005
  foreach($a as $minIpValue => $maxIpValue){
1006
  if( 1 === $maxIpValue ) break;
@@ -1010,11 +919,11 @@ class MchGdbcUnTrustedIPRanges
1010
  return false;
1011
  }
1012
 
1013
- if( $ipNumber < 2949352597 )
1014
  return false;
1015
 
1016
- if( (2949352597 <= $ipNumber) && ($ipNumber <= 2960596681) ){
1017
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-83.php';
1018
  if( isset($a[$ipNumber]) ) return true;
1019
  foreach($a as $minIpValue => $maxIpValue){
1020
  if( 1 === $maxIpValue ) break;
@@ -1024,11 +933,11 @@ class MchGdbcUnTrustedIPRanges
1024
  return false;
1025
  }
1026
 
1027
- if( $ipNumber < 2960596709 )
1028
  return false;
1029
 
1030
- if( (2960596709 <= $ipNumber) && ($ipNumber <= 2979695274) ){
1031
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-84.php';
1032
  if( isset($a[$ipNumber]) ) return true;
1033
  foreach($a as $minIpValue => $maxIpValue){
1034
  if( 1 === $maxIpValue ) break;
@@ -1038,18 +947,18 @@ class MchGdbcUnTrustedIPRanges
1038
  return false;
1039
  }
1040
 
1041
- if( $ipNumber < 2979709816 )
1042
  return false;
1043
 
1044
- if( (2979709816 <= $ipNumber) && ($ipNumber <= 2990793632) ){
1045
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-85.php'; return isset($a[$ipNumber]);
1046
  }
1047
 
1048
- if( $ipNumber < 2990801458 )
1049
  return false;
1050
 
1051
- if( (2990801458 <= $ipNumber) && ($ipNumber <= 3002023537) ){
1052
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-86.php';
1053
  if( isset($a[$ipNumber]) ) return true;
1054
  foreach($a as $minIpValue => $maxIpValue){
1055
  if( 1 === $maxIpValue ) break;
@@ -1059,11 +968,11 @@ class MchGdbcUnTrustedIPRanges
1059
  return false;
1060
  }
1061
 
1062
- if( $ipNumber < 3002023555 )
1063
  return false;
1064
 
1065
- if( (3002023555 <= $ipNumber) && ($ipNumber <= 3030990494) ){
1066
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-87.php';
1067
  if( isset($a[$ipNumber]) ) return true;
1068
  foreach($a as $minIpValue => $maxIpValue){
1069
  if( 1 === $maxIpValue ) break;
@@ -1073,11 +982,11 @@ class MchGdbcUnTrustedIPRanges
1073
  return false;
1074
  }
1075
 
1076
- if( $ipNumber < 3030997751 )
1077
  return false;
1078
 
1079
- if( (3030997751 <= $ipNumber) && ($ipNumber <= 3056611059) ){
1080
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-88.php';
1081
  if( isset($a[$ipNumber]) ) return true;
1082
  foreach($a as $minIpValue => $maxIpValue){
1083
  if( 1 === $maxIpValue ) break;
@@ -1087,39 +996,25 @@ class MchGdbcUnTrustedIPRanges
1087
  return false;
1088
  }
1089
 
1090
- if( $ipNumber < 3056612028 )
1091
- return false;
1092
-
1093
- if( (3056612028 <= $ipNumber) && ($ipNumber <= 3071375737) ){
1094
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-89.php'; return isset($a[$ipNumber]);
1095
- }
1096
-
1097
- if( $ipNumber < 3071409279 )
1098
  return false;
1099
 
1100
- if( (3071409279 <= $ipNumber) && ($ipNumber <= 3082016529) ){
1101
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-90.php'; return isset($a[$ipNumber]);
1102
  }
1103
 
1104
- if( $ipNumber < 3082023864 )
1105
  return false;
1106
 
1107
- if( (3082023864 <= $ipNumber) && ($ipNumber <= 3104747446) ){
1108
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-91.php';
1109
- if( isset($a[$ipNumber]) ) return true;
1110
- foreach($a as $minIpValue => $maxIpValue){
1111
- if( 1 === $maxIpValue ) break;
1112
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1113
- return true;
1114
- }
1115
- return false;
1116
  }
1117
 
1118
- if( $ipNumber < 3104747518 )
1119
  return false;
1120
 
1121
- if( (3104747518 <= $ipNumber) && ($ipNumber <= 3121747945) ){
1122
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-92.php';
1123
  if( isset($a[$ipNumber]) ) return true;
1124
  foreach($a as $minIpValue => $maxIpValue){
1125
  if( 1 === $maxIpValue ) break;
@@ -1129,11 +1024,11 @@ class MchGdbcUnTrustedIPRanges
1129
  return false;
1130
  }
1131
 
1132
- if( $ipNumber < 3121749718 )
1133
  return false;
1134
 
1135
- if( (3121749718 <= $ipNumber) && ($ipNumber <= 3128165986) ){
1136
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-93.php';
1137
  if( isset($a[$ipNumber]) ) return true;
1138
  foreach($a as $minIpValue => $maxIpValue){
1139
  if( 1 === $maxIpValue ) break;
@@ -1143,11 +1038,11 @@ class MchGdbcUnTrustedIPRanges
1143
  return false;
1144
  }
1145
 
1146
- if( $ipNumber < 3128173157 )
1147
  return false;
1148
 
1149
- if( (3128173157 <= $ipNumber) && ($ipNumber <= 3140223385) ){
1150
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-94.php';
1151
  if( isset($a[$ipNumber]) ) return true;
1152
  foreach($a as $minIpValue => $maxIpValue){
1153
  if( 1 === $maxIpValue ) break;
@@ -1157,18 +1052,18 @@ class MchGdbcUnTrustedIPRanges
1157
  return false;
1158
  }
1159
 
1160
- if( $ipNumber < 3140226595 )
1161
  return false;
1162
 
1163
- if( (3140226595 <= $ipNumber) && ($ipNumber <= 3150090768) ){
1164
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-95.php'; return isset($a[$ipNumber]);
1165
  }
1166
 
1167
- if( $ipNumber < 3150100410 )
1168
  return false;
1169
 
1170
- if( (3150100410 <= $ipNumber) && ($ipNumber <= 3162681860) ){
1171
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-96.php';
1172
  if( isset($a[$ipNumber]) ) return true;
1173
  foreach($a as $minIpValue => $maxIpValue){
1174
  if( 1 === $maxIpValue ) break;
@@ -1178,11 +1073,11 @@ class MchGdbcUnTrustedIPRanges
1178
  return false;
1179
  }
1180
 
1181
- if( $ipNumber < 3162690506 )
1182
  return false;
1183
 
1184
- if( (3162690506 <= $ipNumber) && ($ipNumber <= 3170845518) ){
1185
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-97.php';
1186
  if( isset($a[$ipNumber]) ) return true;
1187
  foreach($a as $minIpValue => $maxIpValue){
1188
  if( 1 === $maxIpValue ) break;
@@ -1192,18 +1087,18 @@ class MchGdbcUnTrustedIPRanges
1192
  return false;
1193
  }
1194
 
1195
- if( $ipNumber < 3170854862 )
1196
  return false;
1197
 
1198
- if( (3170854862 <= $ipNumber) && ($ipNumber <= 3181898042) ){
1199
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-98.php'; return isset($a[$ipNumber]);
1200
  }
1201
 
1202
- if( $ipNumber < 3181908694 )
1203
  return false;
1204
 
1205
- if( (3181908694 <= $ipNumber) && ($ipNumber <= 3189872243) ){
1206
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-99.php';
1207
  if( isset($a[$ipNumber]) ) return true;
1208
  foreach($a as $minIpValue => $maxIpValue){
1209
  if( 1 === $maxIpValue ) break;
@@ -1213,25 +1108,25 @@ class MchGdbcUnTrustedIPRanges
1213
  return false;
1214
  }
1215
 
1216
- if( $ipNumber < 3189877637 )
1217
  return false;
1218
 
1219
- if( (3189877637 <= $ipNumber) && ($ipNumber <= 3196779223) ){
1220
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-100.php'; return isset($a[$ipNumber]);
1221
  }
1222
 
1223
- if( $ipNumber < 3196779228 )
1224
  return false;
1225
 
1226
- if( (3196779228 <= $ipNumber) && ($ipNumber <= 3201976675) ){
1227
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-101.php'; return isset($a[$ipNumber]);
1228
  }
1229
 
1230
- if( $ipNumber < 3201981360 )
1231
  return false;
1232
 
1233
- if( (3201981360 <= $ipNumber) && ($ipNumber <= 3223854591) ){
1234
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-102.php';
1235
  if( isset($a[$ipNumber]) ) return true;
1236
  foreach($a as $minIpValue => $maxIpValue){
1237
  if( 1 === $maxIpValue ) break;
@@ -1241,11 +1136,11 @@ class MchGdbcUnTrustedIPRanges
1241
  return false;
1242
  }
1243
 
1244
- if( $ipNumber < 3223875862 )
1245
  return false;
1246
 
1247
- if( (3223875862 <= $ipNumber) && ($ipNumber <= 3237057563) ){
1248
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-103.php';
1249
  if( isset($a[$ipNumber]) ) return true;
1250
  foreach($a as $minIpValue => $maxIpValue){
1251
  if( 1 === $maxIpValue ) break;
@@ -1255,11 +1150,11 @@ class MchGdbcUnTrustedIPRanges
1255
  return false;
1256
  }
1257
 
1258
- if( $ipNumber < 3237058337 )
1259
  return false;
1260
 
1261
- if( (3237058337 <= $ipNumber) && ($ipNumber <= 3256659139) ){
1262
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-104.php';
1263
  if( isset($a[$ipNumber]) ) return true;
1264
  foreach($a as $minIpValue => $maxIpValue){
1265
  if( 1 === $maxIpValue ) break;
@@ -1269,11 +1164,11 @@ class MchGdbcUnTrustedIPRanges
1269
  return false;
1270
  }
1271
 
1272
- if( $ipNumber < 3256659676 )
1273
  return false;
1274
 
1275
- if( (3256659676 <= $ipNumber) && ($ipNumber <= 3281664055) ){
1276
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-105.php';
1277
  if( isset($a[$ipNumber]) ) return true;
1278
  foreach($a as $minIpValue => $maxIpValue){
1279
  if( 1 === $maxIpValue ) break;
@@ -1283,11 +1178,11 @@ class MchGdbcUnTrustedIPRanges
1283
  return false;
1284
  }
1285
 
1286
- if( $ipNumber < 3281664056 )
1287
  return false;
1288
 
1289
- if( (3281664056 <= $ipNumber) && ($ipNumber <= 3313739012) ){
1290
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-106.php';
1291
  if( isset($a[$ipNumber]) ) return true;
1292
  foreach($a as $minIpValue => $maxIpValue){
1293
  if( 1 === $maxIpValue ) break;
@@ -1297,11 +1192,11 @@ class MchGdbcUnTrustedIPRanges
1297
  return false;
1298
  }
1299
 
1300
- if( $ipNumber < 3313742700 )
1301
  return false;
1302
 
1303
- if( (3313742700 <= $ipNumber) && ($ipNumber <= 3331997571) ){
1304
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-107.php';
1305
  if( isset($a[$ipNumber]) ) return true;
1306
  foreach($a as $minIpValue => $maxIpValue){
1307
  if( 1 === $maxIpValue ) break;
@@ -1311,11 +1206,11 @@ class MchGdbcUnTrustedIPRanges
1311
  return false;
1312
  }
1313
 
1314
- if( $ipNumber < 3331997598 )
1315
  return false;
1316
 
1317
- if( (3331997598 <= $ipNumber) && ($ipNumber <= 3357248612) ){
1318
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-108.php';
1319
  if( isset($a[$ipNumber]) ) return true;
1320
  foreach($a as $minIpValue => $maxIpValue){
1321
  if( 1 === $maxIpValue ) break;
@@ -1325,25 +1220,18 @@ class MchGdbcUnTrustedIPRanges
1325
  return false;
1326
  }
1327
 
1328
- if( $ipNumber < 3357249051 )
1329
- return false;
1330
-
1331
- if( (3357249051 <= $ipNumber) && ($ipNumber <= 3365031440) ){
1332
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-109.php'; return isset($a[$ipNumber]);
1333
- }
1334
-
1335
- if( $ipNumber < 3365033277 )
1336
  return false;
1337
 
1338
- if( (3365033277 <= $ipNumber) && ($ipNumber <= 3378132277) ){
1339
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-110.php'; return isset($a[$ipNumber]);
1340
  }
1341
 
1342
- if( $ipNumber < 3378132818 )
1343
  return false;
1344
 
1345
- if( (3378132818 <= $ipNumber) && ($ipNumber <= 3388837128) ){
1346
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-111.php';
1347
  if( isset($a[$ipNumber]) ) return true;
1348
  foreach($a as $minIpValue => $maxIpValue){
1349
  if( 1 === $maxIpValue ) break;
@@ -1353,11 +1241,11 @@ class MchGdbcUnTrustedIPRanges
1353
  return false;
1354
  }
1355
 
1356
- if( $ipNumber < 3388837333 )
1357
  return false;
1358
 
1359
- if( (3388837333 <= $ipNumber) && ($ipNumber <= 3396110654) ){
1360
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-112.php';
1361
  if( isset($a[$ipNumber]) ) return true;
1362
  foreach($a as $minIpValue => $maxIpValue){
1363
  if( 1 === $maxIpValue ) break;
@@ -1367,11 +1255,11 @@ class MchGdbcUnTrustedIPRanges
1367
  return false;
1368
  }
1369
 
1370
- if( $ipNumber < 3396112131 )
1371
  return false;
1372
 
1373
- if( (3396112131 <= $ipNumber) && ($ipNumber <= 3408561728) ){
1374
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-113.php';
1375
  if( isset($a[$ipNumber]) ) return true;
1376
  foreach($a as $minIpValue => $maxIpValue){
1377
  if( 1 === $maxIpValue ) break;
@@ -1381,11 +1269,11 @@ class MchGdbcUnTrustedIPRanges
1381
  return false;
1382
  }
1383
 
1384
- if( $ipNumber < 3408623829 )
1385
  return false;
1386
 
1387
- if( (3408623829 <= $ipNumber) && ($ipNumber <= 3417916328) ){
1388
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-114.php';
1389
  if( isset($a[$ipNumber]) ) return true;
1390
  foreach($a as $minIpValue => $maxIpValue){
1391
  if( 1 === $maxIpValue ) break;
@@ -1395,11 +1283,11 @@ class MchGdbcUnTrustedIPRanges
1395
  return false;
1396
  }
1397
 
1398
- if( $ipNumber < 3417933027 )
1399
  return false;
1400
 
1401
- if( (3417933027 <= $ipNumber) && ($ipNumber <= 3464398714) ){
1402
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-115.php';
1403
  if( isset($a[$ipNumber]) ) return true;
1404
  foreach($a as $minIpValue => $maxIpValue){
1405
  if( 1 === $maxIpValue ) break;
@@ -1409,11 +1297,11 @@ class MchGdbcUnTrustedIPRanges
1409
  return false;
1410
  }
1411
 
1412
- if( $ipNumber < 3464446104 )
1413
  return false;
1414
 
1415
- if( (3464446104 <= $ipNumber) && ($ipNumber <= 3500664147) ){
1416
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-116.php';
1417
  if( isset($a[$ipNumber]) ) return true;
1418
  foreach($a as $minIpValue => $maxIpValue){
1419
  if( 1 === $maxIpValue ) break;
@@ -1423,11 +1311,11 @@ class MchGdbcUnTrustedIPRanges
1423
  return false;
1424
  }
1425
 
1426
- if( $ipNumber < 3500664579 )
1427
  return false;
1428
 
1429
- if( (3500664579 <= $ipNumber) && ($ipNumber <= 3527966733) ){
1430
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-117.php';
1431
  if( isset($a[$ipNumber]) ) return true;
1432
  foreach($a as $minIpValue => $maxIpValue){
1433
  if( 1 === $maxIpValue ) break;
@@ -1437,32 +1325,25 @@ class MchGdbcUnTrustedIPRanges
1437
  return false;
1438
  }
1439
 
1440
- if( $ipNumber < 3527967426 )
1441
  return false;
1442
 
1443
- if( (3527967426 <= $ipNumber) && ($ipNumber <= 3546663563) ){
1444
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-118.php';
1445
- if( isset($a[$ipNumber]) ) return true;
1446
- foreach($a as $minIpValue => $maxIpValue){
1447
- if( 1 === $maxIpValue ) break;
1448
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1449
- return true;
1450
- }
1451
- return false;
1452
  }
1453
 
1454
- if( $ipNumber < 3546717914 )
1455
  return false;
1456
 
1457
- if( (3546717914 <= $ipNumber) && ($ipNumber <= 3557559078) ){
1458
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-119.php'; return isset($a[$ipNumber]);
1459
  }
1460
 
1461
- if( $ipNumber < 3557560641 )
1462
  return false;
1463
 
1464
- if( (3557560641 <= $ipNumber) && ($ipNumber <= 3567049254) ){
1465
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-120.php';
1466
  if( isset($a[$ipNumber]) ) return true;
1467
  foreach($a as $minIpValue => $maxIpValue){
1468
  if( 1 === $maxIpValue ) break;
@@ -1472,11 +1353,11 @@ class MchGdbcUnTrustedIPRanges
1472
  return false;
1473
  }
1474
 
1475
- if( $ipNumber < 3567160862 )
1476
  return false;
1477
 
1478
- if( (3567160862 <= $ipNumber) && ($ipNumber <= 3585066784) ){
1479
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-121.php';
1480
  if( isset($a[$ipNumber]) ) return true;
1481
  foreach($a as $minIpValue => $maxIpValue){
1482
  if( 1 === $maxIpValue ) break;
@@ -1486,11 +1367,11 @@ class MchGdbcUnTrustedIPRanges
1486
  return false;
1487
  }
1488
 
1489
- if( $ipNumber < 3585067358 )
1490
  return false;
1491
 
1492
- if( (3585067358 <= $ipNumber) && ($ipNumber <= 3639065862) ){
1493
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-122.php';
1494
  if( isset($a[$ipNumber]) ) return true;
1495
  foreach($a as $minIpValue => $maxIpValue){
1496
  if( 1 === $maxIpValue ) break;
@@ -1500,39 +1381,46 @@ class MchGdbcUnTrustedIPRanges
1500
  return false;
1501
  }
1502
 
1503
- if( $ipNumber < 3639123822 )
1504
  return false;
1505
 
1506
- if( (3639123822 <= $ipNumber) && ($ipNumber <= 3653662150) ){
1507
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-123.php'; return isset($a[$ipNumber]);
1508
  }
1509
 
1510
- if( $ipNumber < 3653682802 )
1511
  return false;
1512
 
1513
- if( (3653682802 <= $ipNumber) && ($ipNumber <= 3662741063) ){
1514
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-124.php'; return isset($a[$ipNumber]);
1515
  }
1516
 
1517
- if( $ipNumber < 3662741066 )
1518
  return false;
1519
 
1520
- if( (3662741066 <= $ipNumber) && ($ipNumber <= 3680293940) ){
1521
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-125.php'; return isset($a[$ipNumber]);
1522
  }
1523
 
1524
- if( $ipNumber < 3680294272 )
1525
  return false;
1526
 
1527
- if( (3680294272 <= $ipNumber) && ($ipNumber <= 3699805744) ){
1528
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-126.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
1529
  }
1530
 
1531
- if( $ipNumber < 3699806141 )
1532
  return false;
1533
 
1534
- if( (3699806141 <= $ipNumber) && ($ipNumber <= 3716874759) ){
1535
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-127.php';
1536
  if( isset($a[$ipNumber]) ) return true;
1537
  foreach($a as $minIpValue => $maxIpValue){
1538
  if( 1 === $maxIpValue ) break;
@@ -1542,32 +1430,39 @@ class MchGdbcUnTrustedIPRanges
1542
  return false;
1543
  }
1544
 
1545
- if( $ipNumber < 3716875022 )
1546
  return false;
1547
 
1548
- if( (3716875022 <= $ipNumber) && ($ipNumber <= 3727551302) ){
1549
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-128.php'; return isset($a[$ipNumber]);
1550
  }
1551
 
1552
- if( $ipNumber < 3727551306 )
1553
  return false;
1554
 
1555
- if( (3727551306 <= $ipNumber) && ($ipNumber <= 3735946543) ){
1556
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-129.php'; return isset($a[$ipNumber]);
1557
  }
1558
 
1559
- if( $ipNumber < 3735946545 )
1560
  return false;
1561
 
1562
- if( (3735946545 <= $ipNumber) && ($ipNumber <= 3736854236) ){
1563
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-130.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
1564
  }
1565
 
1566
- if( $ipNumber < 3736854247 )
1567
  return false;
1568
 
1569
- if( (3736854247 <= $ipNumber) && ($ipNumber <= 3758092949) ){
1570
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-131.php';
1571
  if( isset($a[$ipNumber]) ) return true;
1572
  foreach($a as $minIpValue => $maxIpValue){
1573
  if( 1 === $maxIpValue ) break;
@@ -1587,10 +1482,10 @@ class MchGdbcUnTrustedIPRanges
1587
 
1588
  $ipNumber = MchGdbcIPUtils::ipAddressToNumber($ipAddress, $ipVersion, true);
1589
 
1590
- if( $ipNumber < 16838796 )
1591
  return false;
1592
 
1593
- if( (16838796 <= $ipNumber) && ($ipNumber <= 401541776) ){
1594
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-0.php';
1595
  if( isset($a[$ipNumber]) ) return true;
1596
  foreach($a as $minIpValue => $maxIpValue){
@@ -1601,17 +1496,17 @@ class MchGdbcUnTrustedIPRanges
1601
  return false;
1602
  }
1603
 
1604
- if( $ipNumber < 401543351 )
1605
  return false;
1606
 
1607
- if( (401543351 <= $ipNumber) && ($ipNumber <= 618695023) ){
1608
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-1.php'; return isset($a[$ipNumber]);
1609
  }
1610
 
1611
- if( $ipNumber < 618800069 )
1612
  return false;
1613
 
1614
- if( (618800069 <= $ipNumber) && ($ipNumber <= 704278725) ){
1615
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-2.php';
1616
  if( isset($a[$ipNumber]) ) return true;
1617
  foreach($a as $minIpValue => $maxIpValue){
@@ -1622,24 +1517,17 @@ class MchGdbcUnTrustedIPRanges
1622
  return false;
1623
  }
1624
 
1625
- if( $ipNumber < 704278921 )
1626
  return false;
1627
 
1628
- if( (704278921 <= $ipNumber) && ($ipNumber <= 839365220) ){
1629
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-3.php';
1630
- if( isset($a[$ipNumber]) ) return true;
1631
- foreach($a as $minIpValue => $maxIpValue){
1632
- if( 1 === $maxIpValue ) break;
1633
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1634
- return true;
1635
- }
1636
- return false;
1637
  }
1638
 
1639
- if( $ipNumber < 839365266 )
1640
  return false;
1641
 
1642
- if( (839365266 <= $ipNumber) && ($ipNumber <= 973651718) ){
1643
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-4.php';
1644
  if( isset($a[$ipNumber]) ) return true;
1645
  foreach($a as $minIpValue => $maxIpValue){
@@ -1650,25 +1538,60 @@ class MchGdbcUnTrustedIPRanges
1650
  return false;
1651
  }
1652
 
1653
- if( $ipNumber < 973651752 )
1654
  return false;
1655
 
1656
- if( (973651752 <= $ipNumber) && ($ipNumber <= 973818570) ){
1657
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-5.php'; return isset($a[$ipNumber]);
1658
  }
1659
 
1660
- if( $ipNumber < 973818587 )
1661
  return false;
1662
 
1663
- if( (973818587 <= $ipNumber) && ($ipNumber <= 1029311767) ){
1664
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-6.php'; return isset($a[$ipNumber]);
1665
  }
1666
 
1667
- if( $ipNumber < 1029311786 )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1668
  return false;
1669
 
1670
- if( (1029311786 <= $ipNumber) && ($ipNumber <= 1046910124) ){
1671
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-7.php';
1672
  if( isset($a[$ipNumber]) ) return true;
1673
  foreach($a as $minIpValue => $maxIpValue){
1674
  if( 1 === $maxIpValue ) break;
@@ -1678,11 +1601,11 @@ class MchGdbcUnTrustedIPRanges
1678
  return false;
1679
  }
1680
 
1681
- if( $ipNumber < 1046959528 )
1682
  return false;
1683
 
1684
- if( (1046959528 <= $ipNumber) && ($ipNumber <= 1176778950) ){
1685
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-8.php';
1686
  if( isset($a[$ipNumber]) ) return true;
1687
  foreach($a as $minIpValue => $maxIpValue){
1688
  if( 1 === $maxIpValue ) break;
@@ -1692,11 +1615,11 @@ class MchGdbcUnTrustedIPRanges
1692
  return false;
1693
  }
1694
 
1695
- if( $ipNumber < 1176802039 )
1696
  return false;
1697
 
1698
- if( (1176802039 <= $ipNumber) && ($ipNumber <= 1303289118) ){
1699
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-9.php';
1700
  if( isset($a[$ipNumber]) ) return true;
1701
  foreach($a as $minIpValue => $maxIpValue){
1702
  if( 1 === $maxIpValue ) break;
@@ -1706,11 +1629,11 @@ class MchGdbcUnTrustedIPRanges
1706
  return false;
1707
  }
1708
 
1709
- if( $ipNumber < 1303296148 )
1710
  return false;
1711
 
1712
- if( (1303296148 <= $ipNumber) && ($ipNumber <= 1359414263) ){
1713
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-10.php';
1714
  if( isset($a[$ipNumber]) ) return true;
1715
  foreach($a as $minIpValue => $maxIpValue){
1716
  if( 1 === $maxIpValue ) break;
@@ -1720,11 +1643,11 @@ class MchGdbcUnTrustedIPRanges
1720
  return false;
1721
  }
1722
 
1723
- if( $ipNumber < 1359415159 )
1724
  return false;
1725
 
1726
- if( (1359415159 <= $ipNumber) && ($ipNumber <= 1426947975) ){
1727
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-11.php';
1728
  if( isset($a[$ipNumber]) ) return true;
1729
  foreach($a as $minIpValue => $maxIpValue){
1730
  if( 1 === $maxIpValue ) break;
@@ -1734,11 +1657,11 @@ class MchGdbcUnTrustedIPRanges
1734
  return false;
1735
  }
1736
 
1737
- if( $ipNumber < 1427042336 )
1738
  return false;
1739
 
1740
- if( (1427042336 <= $ipNumber) && ($ipNumber <= 1499320219) ){
1741
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-12.php';
1742
  if( isset($a[$ipNumber]) ) return true;
1743
  foreach($a as $minIpValue => $maxIpValue){
1744
  if( 1 === $maxIpValue ) break;
@@ -1748,11 +1671,11 @@ class MchGdbcUnTrustedIPRanges
1748
  return false;
1749
  }
1750
 
1751
- if( $ipNumber < 1499326846 )
1752
  return false;
1753
 
1754
- if( (1499326846 <= $ipNumber) && ($ipNumber <= 1567150397) ){
1755
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-13.php';
1756
  if( isset($a[$ipNumber]) ) return true;
1757
  foreach($a as $minIpValue => $maxIpValue){
1758
  if( 1 === $maxIpValue ) break;
@@ -1762,11 +1685,11 @@ class MchGdbcUnTrustedIPRanges
1762
  return false;
1763
  }
1764
 
1765
- if( $ipNumber < 1567150494 )
1766
  return false;
1767
 
1768
- if( (1567150494 <= $ipNumber) && ($ipNumber <= 1627329961) ){
1769
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-14.php';
1770
  if( isset($a[$ipNumber]) ) return true;
1771
  foreach($a as $minIpValue => $maxIpValue){
1772
  if( 1 === $maxIpValue ) break;
@@ -1776,11 +1699,18 @@ class MchGdbcUnTrustedIPRanges
1776
  return false;
1777
  }
1778
 
1779
- if( $ipNumber < 1627377593 )
1780
  return false;
1781
 
1782
- if( (1627377593 <= $ipNumber) && ($ipNumber <= 1755823590) ){
1783
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-15.php';
 
 
 
 
 
 
 
1784
  if( isset($a[$ipNumber]) ) return true;
1785
  foreach($a as $minIpValue => $maxIpValue){
1786
  if( 1 === $maxIpValue ) break;
@@ -1790,11 +1720,11 @@ class MchGdbcUnTrustedIPRanges
1790
  return false;
1791
  }
1792
 
1793
- if( $ipNumber < 1755856558 )
1794
  return false;
1795
 
1796
- if( (1755856558 <= $ipNumber) && ($ipNumber <= 1844181891) ){
1797
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-16.php';
1798
  if( isset($a[$ipNumber]) ) return true;
1799
  foreach($a as $minIpValue => $maxIpValue){
1800
  if( 1 === $maxIpValue ) break;
@@ -1804,18 +1734,18 @@ class MchGdbcUnTrustedIPRanges
1804
  return false;
1805
  }
1806
 
1807
- if( $ipNumber < 1844181892 )
1808
  return false;
1809
 
1810
- if( (1844181892 <= $ipNumber) && ($ipNumber <= 1944350573) ){
1811
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-17.php'; return isset($a[$ipNumber]);
1812
  }
1813
 
1814
- if( $ipNumber < 1944350674 )
1815
  return false;
1816
 
1817
- if( (1944350674 <= $ipNumber) && ($ipNumber <= 2026095111) ){
1818
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-18.php';
1819
  if( isset($a[$ipNumber]) ) return true;
1820
  foreach($a as $minIpValue => $maxIpValue){
1821
  if( 1 === $maxIpValue ) break;
@@ -1825,11 +1755,53 @@ class MchGdbcUnTrustedIPRanges
1825
  return false;
1826
  }
1827
 
1828
- if( $ipNumber < 2026095112 )
1829
  return false;
1830
 
1831
- if( (2026095112 <= $ipNumber) && ($ipNumber <= 2088258334) ){
1832
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-19.php';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1833
  if( isset($a[$ipNumber]) ) return true;
1834
  foreach($a as $minIpValue => $maxIpValue){
1835
  if( 1 === $maxIpValue ) break;
@@ -1839,18 +1811,18 @@ class MchGdbcUnTrustedIPRanges
1839
  return false;
1840
  }
1841
 
1842
- if( $ipNumber < 2088258362 )
1843
  return false;
1844
 
1845
- if( (2088258362 <= $ipNumber) && ($ipNumber <= 2088414717) ){
1846
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-20.php'; return isset($a[$ipNumber]);
1847
  }
1848
 
1849
- if( $ipNumber < 2088414821 )
1850
  return false;
1851
 
1852
- if( (2088414821 <= $ipNumber) && ($ipNumber <= 2356360700) ){
1853
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-21.php';
1854
  if( isset($a[$ipNumber]) ) return true;
1855
  foreach($a as $minIpValue => $maxIpValue){
1856
  if( 1 === $maxIpValue ) break;
@@ -1860,11 +1832,11 @@ class MchGdbcUnTrustedIPRanges
1860
  return false;
1861
  }
1862
 
1863
- if( $ipNumber < 2356395428 )
1864
  return false;
1865
 
1866
- if( (2356395428 <= $ipNumber) && ($ipNumber <= 2734198434) ){
1867
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-22.php';
1868
  if( isset($a[$ipNumber]) ) return true;
1869
  foreach($a as $minIpValue => $maxIpValue){
1870
  if( 1 === $maxIpValue ) break;
@@ -1874,18 +1846,25 @@ class MchGdbcUnTrustedIPRanges
1874
  return false;
1875
  }
1876
 
1877
- if( $ipNumber < 2734202931 )
1878
  return false;
1879
 
1880
- if( (2734202931 <= $ipNumber) && ($ipNumber <= 2875316633) ){
1881
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-23.php'; return isset($a[$ipNumber]);
1882
  }
1883
 
1884
- if( $ipNumber < 2875316668 )
1885
  return false;
1886
 
1887
- if( (2875316668 <= $ipNumber) && ($ipNumber <= 2971113036) ){
1888
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-24.php';
 
 
 
 
 
 
 
1889
  if( isset($a[$ipNumber]) ) return true;
1890
  foreach($a as $minIpValue => $maxIpValue){
1891
  if( 1 === $maxIpValue ) break;
@@ -1895,11 +1874,11 @@ class MchGdbcUnTrustedIPRanges
1895
  return false;
1896
  }
1897
 
1898
- if( $ipNumber < 2971115618 )
1899
  return false;
1900
 
1901
- if( (2971115618 <= $ipNumber) && ($ipNumber <= 2990439805) ){
1902
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-25.php';
1903
  if( isset($a[$ipNumber]) ) return true;
1904
  foreach($a as $minIpValue => $maxIpValue){
1905
  if( 1 === $maxIpValue ) break;
@@ -1909,18 +1888,25 @@ class MchGdbcUnTrustedIPRanges
1909
  return false;
1910
  }
1911
 
1912
- if( $ipNumber < 2990442431 )
1913
  return false;
1914
 
1915
- if( (2990442431 <= $ipNumber) && ($ipNumber <= 3049022201) ){
1916
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-26.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
1917
  }
1918
 
1919
- if( $ipNumber < 3049022310 )
1920
  return false;
1921
 
1922
- if( (3049022310 <= $ipNumber) && ($ipNumber <= 3121510403) ){
1923
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-27.php';
1924
  if( isset($a[$ipNumber]) ) return true;
1925
  foreach($a as $minIpValue => $maxIpValue){
1926
  if( 1 === $maxIpValue ) break;
@@ -1930,32 +1916,32 @@ class MchGdbcUnTrustedIPRanges
1930
  return false;
1931
  }
1932
 
1933
- if( $ipNumber < 3121515936 )
1934
  return false;
1935
 
1936
- if( (3121515936 <= $ipNumber) && ($ipNumber <= 3135482735) ){
1937
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-28.php'; return isset($a[$ipNumber]);
1938
- }
1939
-
1940
- if( $ipNumber < 3135483320 )
 
 
 
1941
  return false;
1942
-
1943
- if( (3135483320 <= $ipNumber) && ($ipNumber <= 3147879963) ){
1944
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-29.php'; return isset($a[$ipNumber]);
1945
  }
1946
 
1947
- if( $ipNumber < 3147879973 )
1948
  return false;
1949
 
1950
- if( (3147879973 <= $ipNumber) && ($ipNumber <= 3153316909) ){
1951
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-30.php'; return isset($a[$ipNumber]);
1952
  }
1953
 
1954
- if( $ipNumber < 3153320971 )
1955
  return false;
1956
 
1957
- if( (3153320971 <= $ipNumber) && ($ipNumber <= 3184929388) ){
1958
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-31.php';
1959
  if( isset($a[$ipNumber]) ) return true;
1960
  foreach($a as $minIpValue => $maxIpValue){
1961
  if( 1 === $maxIpValue ) break;
@@ -1965,39 +1951,46 @@ class MchGdbcUnTrustedIPRanges
1965
  return false;
1966
  }
1967
 
1968
- if( $ipNumber < 3184929450 )
1969
  return false;
1970
 
1971
- if( (3184929450 <= $ipNumber) && ($ipNumber <= 3185244505) ){
1972
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-32.php'; return isset($a[$ipNumber]);
1973
  }
1974
 
1975
- if( $ipNumber < 3185244533 )
1976
  return false;
1977
 
1978
- if( (3185244533 <= $ipNumber) && ($ipNumber <= 3185294635) ){
1979
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-33.php'; return isset($a[$ipNumber]);
1980
  }
1981
 
1982
- if( $ipNumber < 3185294639 )
1983
  return false;
1984
 
1985
- if( (3185294639 <= $ipNumber) && ($ipNumber <= 3192798432) ){
1986
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-34.php'; return isset($a[$ipNumber]);
1987
  }
1988
 
1989
- if( $ipNumber < 3192799158 )
1990
  return false;
1991
 
1992
- if( (3192799158 <= $ipNumber) && ($ipNumber <= 3201640752) ){
1993
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-35.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
1994
  }
1995
 
1996
- if( $ipNumber < 3201644096 )
1997
  return false;
1998
 
1999
- if( (3201644096 <= $ipNumber) && ($ipNumber <= 3302350458) ){
2000
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-36.php';
2001
  if( isset($a[$ipNumber]) ) return true;
2002
  foreach($a as $minIpValue => $maxIpValue){
2003
  if( 1 === $maxIpValue ) break;
@@ -2007,46 +2000,53 @@ class MchGdbcUnTrustedIPRanges
2007
  return false;
2008
  }
2009
 
2010
- if( $ipNumber < 3302502467 )
2011
  return false;
2012
 
2013
- if( (3302502467 <= $ipNumber) && ($ipNumber <= 3371108239) ){
2014
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-37.php';
2015
- if( isset($a[$ipNumber]) ) return true;
2016
- foreach($a as $minIpValue => $maxIpValue){
2017
- if( 1 === $maxIpValue ) break;
2018
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
2019
- return true;
2020
- }
2021
  return false;
 
 
 
2022
  }
2023
 
2024
- if( $ipNumber < 3371108256 )
2025
  return false;
2026
 
2027
- if( (3371108256 <= $ipNumber) && ($ipNumber <= 3383511918) ){
2028
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-38.php'; return isset($a[$ipNumber]);
2029
  }
2030
 
2031
- if( $ipNumber < 3383511952 )
2032
  return false;
2033
 
2034
- if( (3383511952 <= $ipNumber) && ($ipNumber <= 3383587094) ){
2035
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-39.php'; return isset($a[$ipNumber]);
2036
  }
2037
 
2038
- if( $ipNumber < 3383587101 )
2039
  return false;
2040
 
2041
- if( (3383587101 <= $ipNumber) && ($ipNumber <= 3386049839) ){
2042
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-40.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
2043
  }
2044
 
2045
- if( $ipNumber < 3386050252 )
2046
  return false;
2047
 
2048
- if( (3386050252 <= $ipNumber) && ($ipNumber <= 3501473576) ){
2049
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-41.php';
2050
  if( isset($a[$ipNumber]) ) return true;
2051
  foreach($a as $minIpValue => $maxIpValue){
2052
  if( 1 === $maxIpValue ) break;
@@ -2056,11 +2056,18 @@ class MchGdbcUnTrustedIPRanges
2056
  return false;
2057
  }
2058
 
2059
- if( $ipNumber < 3501493925 )
2060
  return false;
2061
 
2062
- if( (3501493925 <= $ipNumber) && ($ipNumber <= 3588946291) ){
2063
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-42.php';
 
 
 
 
 
 
 
2064
  if( isset($a[$ipNumber]) ) return true;
2065
  foreach($a as $minIpValue => $maxIpValue){
2066
  if( 1 === $maxIpValue ) break;
@@ -2070,11 +2077,11 @@ class MchGdbcUnTrustedIPRanges
2070
  return false;
2071
  }
2072
 
2073
- if( $ipNumber < 3589195114 )
2074
  return false;
2075
 
2076
- if( (3589195114 <= $ipNumber) && ($ipNumber <= 3730435645) ){
2077
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-43.php';
2078
  if( isset($a[$ipNumber]) ) return true;
2079
  foreach($a as $minIpValue => $maxIpValue){
2080
  if( 1 === $maxIpValue ) break;
@@ -2084,11 +2091,18 @@ class MchGdbcUnTrustedIPRanges
2084
  return false;
2085
  }
2086
 
2087
- if( $ipNumber < 3730468762 )
2088
  return false;
2089
 
2090
- if( (3730468762 <= $ipNumber) && ($ipNumber <= 3758092949) ){
2091
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-44.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
2092
  }
2093
 
2094
  return false;
12
  if( $ipNumber < 16815956 )
13
  return false;
14
 
15
+ if( (16815956 <= $ipNumber) && ($ipNumber <= 86176879) ){
16
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-0.php';
17
  if( isset($a[$ipNumber]) ) return true;
18
  foreach($a as $minIpValue => $maxIpValue){
23
  return false;
24
  }
25
 
26
+ if( $ipNumber < 86176885 )
27
  return false;
28
 
29
+ if( (86176885 <= $ipNumber) && ($ipNumber <= 222889771) ){
30
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-1.php';
31
  if( isset($a[$ipNumber]) ) return true;
32
  foreach($a as $minIpValue => $maxIpValue){
37
  return false;
38
  }
39
 
40
+ if( $ipNumber < 223030280 )
41
  return false;
42
 
43
+ if( (223030280 <= $ipNumber) && ($ipNumber <= 244641179) ){
44
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-2.php';
45
  if( isset($a[$ipNumber]) ) return true;
46
  foreach($a as $minIpValue => $maxIpValue){
51
  return false;
52
  }
53
 
54
+ if( $ipNumber < 244641407 )
55
  return false;
56
 
57
+ if( (244641407 <= $ipNumber) && ($ipNumber <= 402060522) ){
58
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-3.php';
59
+ if( isset($a[$ipNumber]) ) return true;
60
+ foreach($a as $minIpValue => $maxIpValue){
61
+ if( 1 === $maxIpValue ) break;
62
+ if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
63
+ return true;
64
+ }
65
+ return false;
66
  }
67
 
68
+ if( $ipNumber < 402060532 )
69
  return false;
70
 
71
+ if( (402060532 <= $ipNumber) && ($ipNumber <= 521017657) ){
72
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-4.php';
73
  if( isset($a[$ipNumber]) ) return true;
74
  foreach($a as $minIpValue => $maxIpValue){
79
  return false;
80
  }
81
 
82
+ if( $ipNumber < 521046755 )
83
  return false;
84
 
85
+ if( (521046755 <= $ipNumber) && ($ipNumber <= 624551793) ){
86
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-5.php';
87
  if( isset($a[$ipNumber]) ) return true;
88
  foreach($a as $minIpValue => $maxIpValue){
93
  return false;
94
  }
95
 
96
+ if( $ipNumber < 624551795 )
97
  return false;
98
 
99
+ if( (624551795 <= $ipNumber) && ($ipNumber <= 689966022) ){
100
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-6.php';
101
  if( isset($a[$ipNumber]) ) return true;
102
  foreach($a as $minIpValue => $maxIpValue){
107
  return false;
108
  }
109
 
110
+ if( $ipNumber < 689966046 )
111
  return false;
112
 
113
+ if( (689966046 <= $ipNumber) && ($ipNumber <= 712130697) ){
114
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-7.php';
115
  if( isset($a[$ipNumber]) ) return true;
116
  foreach($a as $minIpValue => $maxIpValue){
121
  return false;
122
  }
123
 
124
+ if( $ipNumber < 712131271 )
125
  return false;
126
 
127
+ if( (712131271 <= $ipNumber) && ($ipNumber <= 773171795) ){
128
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-8.php';
129
  if( isset($a[$ipNumber]) ) return true;
130
  foreach($a as $minIpValue => $maxIpValue){
135
  return false;
136
  }
137
 
138
+ if( $ipNumber < 773172866 )
139
  return false;
140
 
141
+ if( (773172866 <= $ipNumber) && ($ipNumber <= 786060613) ){
142
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-9.php';
143
  if( isset($a[$ipNumber]) ) return true;
144
  foreach($a as $minIpValue => $maxIpValue){
149
  return false;
150
  }
151
 
152
+ if( $ipNumber < 786060623 )
153
  return false;
154
 
155
+ if( (786060623 <= $ipNumber) && ($ipNumber <= 842607278) ){
156
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-10.php';
157
  if( isset($a[$ipNumber]) ) return true;
158
  foreach($a as $minIpValue => $maxIpValue){
163
  return false;
164
  }
165
 
166
+ if( $ipNumber < 842608244 )
167
  return false;
168
 
169
+ if( (842608244 <= $ipNumber) && ($ipNumber <= 918815954) ){
170
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-11.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
171
  }
172
 
173
+ if( $ipNumber < 918822732 )
174
  return false;
175
 
176
+ if( (918822732 <= $ipNumber) && ($ipNumber <= 985339511) ){
177
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-12.php';
178
  if( isset($a[$ipNumber]) ) return true;
179
  foreach($a as $minIpValue => $maxIpValue){
184
  return false;
185
  }
186
 
187
+ if( $ipNumber < 985339633 )
188
  return false;
189
 
190
+ if( (985339633 <= $ipNumber) && ($ipNumber <= 991135749) ){
191
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-13.php'; return isset($a[$ipNumber]);
192
+ }
193
+
194
+ if( $ipNumber < 991137830 )
 
 
 
195
  return false;
196
+
197
+ if( (991137830 <= $ipNumber) && ($ipNumber <= 999575816) ){
198
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-14.php'; return isset($a[$ipNumber]);
199
  }
200
 
201
+ if( $ipNumber < 999576705 )
202
  return false;
203
 
204
+ if( (999576705 <= $ipNumber) && ($ipNumber <= 1019189186) ){
205
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-15.php';
206
  if( isset($a[$ipNumber]) ) return true;
207
  foreach($a as $minIpValue => $maxIpValue){
208
  if( 1 === $maxIpValue ) break;
212
  return false;
213
  }
214
 
215
+ if( $ipNumber < 1019189638 )
216
  return false;
217
 
218
+ if( (1019189638 <= $ipNumber) && ($ipNumber <= 1028776988) ){
219
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-16.php';
220
  if( isset($a[$ipNumber]) ) return true;
221
  foreach($a as $minIpValue => $maxIpValue){
222
  if( 1 === $maxIpValue ) break;
226
  return false;
227
  }
228
 
229
+ if( $ipNumber < 1028786766 )
230
  return false;
231
 
232
+ if( (1028786766 <= $ipNumber) && ($ipNumber <= 1033945627) ){
233
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-17.php'; return isset($a[$ipNumber]);
234
  }
235
 
236
+ if( $ipNumber < 1033945632 )
237
  return false;
238
 
239
+ if( (1033945632 <= $ipNumber) && ($ipNumber <= 1038840269) ){
240
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-18.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
241
  }
242
 
243
+ if( $ipNumber < 1038840495 )
244
  return false;
245
 
246
+ if( (1038840495 <= $ipNumber) && ($ipNumber <= 1053971390) ){
247
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-19.php';
248
  if( isset($a[$ipNumber]) ) return true;
249
  foreach($a as $minIpValue => $maxIpValue){
250
  if( 1 === $maxIpValue ) break;
254
  return false;
255
  }
256
 
257
+ if( $ipNumber < 1053971400 )
258
  return false;
259
 
260
+ if( (1053971400 <= $ipNumber) && ($ipNumber <= 1076324672) ){
261
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-20.php';
262
  if( isset($a[$ipNumber]) ) return true;
263
  foreach($a as $minIpValue => $maxIpValue){
264
  if( 1 === $maxIpValue ) break;
268
  return false;
269
  }
270
 
271
+ if( $ipNumber < 1076324673 )
 
 
 
 
 
 
 
272
  return false;
273
 
274
+ if( (1076324673 <= $ipNumber) && ($ipNumber <= 1102675304) ){
275
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-21.php'; return isset($a[$ipNumber]);
276
  }
277
 
278
+ if( $ipNumber < 1102987103 )
279
  return false;
280
 
281
+ if( (1102987103 <= $ipNumber) && ($ipNumber <= 1137537204) ){
282
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-22.php';
283
  if( isset($a[$ipNumber]) ) return true;
284
  foreach($a as $minIpValue => $maxIpValue){
289
  return false;
290
  }
291
 
292
+ if( $ipNumber < 1137537233 )
293
  return false;
294
 
295
+ if( (1137537233 <= $ipNumber) && ($ipNumber <= 1165457730) ){
296
  $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-23.php';
297
  if( isset($a[$ipNumber]) ) return true;
298
  foreach($a as $minIpValue => $maxIpValue){
303
  return false;
304
  }
305
 
306
+ if( $ipNumber < 1165460370 )
307
  return false;
308
 
309
+ if( (1165460370 <= $ipNumber) && ($ipNumber <= 1210786355) ){
310
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-24.php';
 
 
 
 
 
 
 
311
  if( isset($a[$ipNumber]) ) return true;
312
  foreach($a as $minIpValue => $maxIpValue){
313
  if( 1 === $maxIpValue ) break;
317
  return false;
318
  }
319
 
320
+ if( $ipNumber < 1210805685 )
321
  return false;
322
 
323
+ if( (1210805685 <= $ipNumber) && ($ipNumber <= 1255187191) ){
324
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-25.php'; return isset($a[$ipNumber]);
325
  }
326
 
327
+ if( $ipNumber < 1255187688 )
328
  return false;
329
 
330
+ if( (1255187688 <= $ipNumber) && ($ipNumber <= 1297942091) ){
331
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-26.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
  }
333
 
334
+ if( $ipNumber < 1298027554 )
335
  return false;
336
 
337
+ if( (1298027554 <= $ipNumber) && ($ipNumber <= 1318966461) ){
338
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-27.php';
339
  if( isset($a[$ipNumber]) ) return true;
340
  foreach($a as $minIpValue => $maxIpValue){
341
  if( 1 === $maxIpValue ) break;
345
  return false;
346
  }
347
 
348
+ if( $ipNumber < 1318968314 )
349
  return false;
350
 
351
+ if( (1318968314 <= $ipNumber) && ($ipNumber <= 1342987485) ){
352
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-28.php';
353
  if( isset($a[$ipNumber]) ) return true;
354
  foreach($a as $minIpValue => $maxIpValue){
355
  if( 1 === $maxIpValue ) break;
359
  return false;
360
  }
361
 
362
+ if( $ipNumber < 1343037361 )
363
  return false;
364
 
365
+ if( (1343037361 <= $ipNumber) && ($ipNumber <= 1360149714) ){
366
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-29.php';
367
  if( isset($a[$ipNumber]) ) return true;
368
  foreach($a as $minIpValue => $maxIpValue){
369
  if( 1 === $maxIpValue ) break;
373
  return false;
374
  }
375
 
376
+ if( $ipNumber < 1360167147 )
 
 
 
 
 
 
 
377
  return false;
378
 
379
+ if( (1360167147 <= $ipNumber) && ($ipNumber <= 1383471263) ){
380
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-30.php';
381
  if( isset($a[$ipNumber]) ) return true;
382
  foreach($a as $minIpValue => $maxIpValue){
383
  if( 1 === $maxIpValue ) break;
387
  return false;
388
  }
389
 
390
+ if( $ipNumber < 1383502265 )
391
  return false;
392
 
393
+ if( (1383502265 <= $ipNumber) && ($ipNumber <= 1403431668) ){
394
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-31.php'; return isset($a[$ipNumber]);
395
  }
396
 
397
+ if( $ipNumber < 1403444290 )
398
  return false;
399
 
400
+ if( (1403444290 <= $ipNumber) && ($ipNumber <= 1427451732) ){
401
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-32.php';
402
  if( isset($a[$ipNumber]) ) return true;
403
  foreach($a as $minIpValue => $maxIpValue){
404
  if( 1 === $maxIpValue ) break;
408
  return false;
409
  }
410
 
411
+ if( $ipNumber < 1427452441 )
412
  return false;
413
 
414
+ if( (1427452441 <= $ipNumber) && ($ipNumber <= 1439450607) ){
415
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-33.php';
416
  if( isset($a[$ipNumber]) ) return true;
417
  foreach($a as $minIpValue => $maxIpValue){
418
  if( 1 === $maxIpValue ) break;
422
  return false;
423
  }
424
 
425
+ if( $ipNumber < 1439459179 )
426
  return false;
427
 
428
+ if( (1439459179 <= $ipNumber) && ($ipNumber <= 1466578033) ){
429
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-34.php';
430
  if( isset($a[$ipNumber]) ) return true;
431
  foreach($a as $minIpValue => $maxIpValue){
432
  if( 1 === $maxIpValue ) break;
436
  return false;
437
  }
438
 
439
+ if( $ipNumber < 1466578318 )
440
  return false;
441
 
442
+ if( (1466578318 <= $ipNumber) && ($ipNumber <= 1483260186) ){
443
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-35.php'; return isset($a[$ipNumber]);
444
  }
445
 
446
+ if( $ipNumber < 1483261587 )
447
  return false;
448
 
449
+ if( (1483261587 <= $ipNumber) && ($ipNumber <= 1492930765) ){
450
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-36.php'; return isset($a[$ipNumber]);
451
  }
452
 
453
+ if( $ipNumber < 1492934454 )
454
  return false;
455
 
456
+ if( (1492934454 <= $ipNumber) && ($ipNumber <= 1515251607) ){
457
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-37.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
458
  }
459
 
460
+ if( $ipNumber < 1515436073 )
461
  return false;
462
 
463
+ if( (1515436073 <= $ipNumber) && ($ipNumber <= 1540225969) ){
464
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-38.php';
465
  if( isset($a[$ipNumber]) ) return true;
466
  foreach($a as $minIpValue => $maxIpValue){
467
  if( 1 === $maxIpValue ) break;
471
  return false;
472
  }
473
 
474
+ if( $ipNumber < 1540230693 )
475
  return false;
476
 
477
+ if( (1540230693 <= $ipNumber) && ($ipNumber <= 1558163600) ){
478
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-39.php';
479
  if( isset($a[$ipNumber]) ) return true;
480
  foreach($a as $minIpValue => $maxIpValue){
481
  if( 1 === $maxIpValue ) break;
485
  return false;
486
  }
487
 
488
+ if( $ipNumber < 1558175650 )
489
  return false;
490
 
491
+ if( (1558175650 <= $ipNumber) && ($ipNumber <= 1578620951) ){
492
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-40.php';
493
  if( isset($a[$ipNumber]) ) return true;
494
  foreach($a as $minIpValue => $maxIpValue){
495
  if( 1 === $maxIpValue ) break;
499
  return false;
500
  }
501
 
502
+ if( $ipNumber < 1578621189 )
503
  return false;
504
 
505
+ if( (1578621189 <= $ipNumber) && ($ipNumber <= 1593424786) ){
506
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-41.php';
507
  if( isset($a[$ipNumber]) ) return true;
508
  foreach($a as $minIpValue => $maxIpValue){
509
  if( 1 === $maxIpValue ) break;
513
  return false;
514
  }
515
 
516
+ if( $ipNumber < 1593424821 )
517
  return false;
518
 
519
+ if( (1593424821 <= $ipNumber) && ($ipNumber <= 1605064733) ){
520
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-42.php'; return isset($a[$ipNumber]);
521
  }
522
 
523
+ if( $ipNumber < 1605104912 )
524
  return false;
525
 
526
+ if( (1605104912 <= $ipNumber) && ($ipNumber <= 1663358604) ){
527
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-43.php';
528
  if( isset($a[$ipNumber]) ) return true;
529
  foreach($a as $minIpValue => $maxIpValue){
530
  if( 1 === $maxIpValue ) break;
534
  return false;
535
  }
536
 
537
+ if( $ipNumber < 1663421987 )
538
  return false;
539
 
540
+ if( (1663421987 <= $ipNumber) && ($ipNumber <= 1730772273) ){
541
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-44.php';
542
  if( isset($a[$ipNumber]) ) return true;
543
  foreach($a as $minIpValue => $maxIpValue){
544
  if( 1 === $maxIpValue ) break;
548
  return false;
549
  }
550
 
551
+ if( $ipNumber < 1730772274 )
552
  return false;
553
 
554
+ if( (1730772274 <= $ipNumber) && ($ipNumber <= 1759520884) ){
555
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-45.php';
556
  if( isset($a[$ipNumber]) ) return true;
557
  foreach($a as $minIpValue => $maxIpValue){
558
  if( 1 === $maxIpValue ) break;
562
  return false;
563
  }
564
 
565
+ if( $ipNumber < 1759539439 )
566
  return false;
567
 
568
+ if( (1759539439 <= $ipNumber) && ($ipNumber <= 1822611572) ){
569
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-46.php';
570
  if( isset($a[$ipNumber]) ) return true;
571
  foreach($a as $minIpValue => $maxIpValue){
572
  if( 1 === $maxIpValue ) break;
576
  return false;
577
  }
578
 
579
+ if( $ipNumber < 1822611587 )
580
  return false;
581
 
582
+ if( (1822611587 <= $ipNumber) && ($ipNumber <= 1834403338) ){
583
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-47.php';
584
  if( isset($a[$ipNumber]) ) return true;
585
  foreach($a as $minIpValue => $maxIpValue){
586
  if( 1 === $maxIpValue ) break;
590
  return false;
591
  }
592
 
593
+ if( $ipNumber < 1834403374 )
594
  return false;
595
 
596
+ if( (1834403374 <= $ipNumber) && ($ipNumber <= 1839458823) ){
597
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-48.php'; return isset($a[$ipNumber]);
598
  }
599
 
600
+ if( $ipNumber < 1839458825 )
601
  return false;
602
 
603
+ if( (1839458825 <= $ipNumber) && ($ipNumber <= 1855690944) ){
604
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-49.php'; return isset($a[$ipNumber]);
605
  }
606
 
607
+ if( $ipNumber < 1855706775 )
608
  return false;
609
 
610
+ if( (1855706775 <= $ipNumber) && ($ipNumber <= 1884369789) ){
611
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-50.php';
612
+ if( isset($a[$ipNumber]) ) return true;
613
+ foreach($a as $minIpValue => $maxIpValue){
614
+ if( 1 === $maxIpValue ) break;
615
+ if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
616
+ return true;
617
+ }
618
  return false;
 
 
 
619
  }
620
 
621
+ if( $ipNumber < 1884394722 )
622
  return false;
623
 
624
+ if( (1884394722 <= $ipNumber) && ($ipNumber <= 1897864586) ){
625
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-51.php'; return isset($a[$ipNumber]);
626
  }
627
 
628
+ if( $ipNumber < 1897864782 )
629
  return false;
630
 
631
+ if( (1897864782 <= $ipNumber) && ($ipNumber <= 1908996998) ){
632
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-52.php'; return isset($a[$ipNumber]);
633
  }
634
 
635
+ if( $ipNumber < 1908997123 )
636
  return false;
637
 
638
+ if( (1908997123 <= $ipNumber) && ($ipNumber <= 1929094241) ){
639
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-53.php';
640
  if( isset($a[$ipNumber]) ) return true;
641
  foreach($a as $minIpValue => $maxIpValue){
642
  if( 1 === $maxIpValue ) break;
646
  return false;
647
  }
648
 
649
+ if( $ipNumber < 1929098114 )
650
  return false;
651
 
652
+ if( (1929098114 <= $ipNumber) && ($ipNumber <= 1944240327) ){
653
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-54.php';
654
  if( isset($a[$ipNumber]) ) return true;
655
  foreach($a as $minIpValue => $maxIpValue){
656
  if( 1 === $maxIpValue ) break;
660
  return false;
661
  }
662
 
663
+ if( $ipNumber < 1944240441 )
 
 
 
 
 
 
 
664
  return false;
665
 
666
+ if( (1944240441 <= $ipNumber) && ($ipNumber <= 1959543313) ){
667
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-55.php';
668
  if( isset($a[$ipNumber]) ) return true;
669
  foreach($a as $minIpValue => $maxIpValue){
670
  if( 1 === $maxIpValue ) break;
674
  return false;
675
  }
676
 
677
+ if( $ipNumber < 1959543904 )
678
  return false;
679
 
680
+ if( (1959543904 <= $ipNumber) && ($ipNumber <= 1972482354) ){
681
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-56.php';
682
  if( isset($a[$ipNumber]) ) return true;
683
  foreach($a as $minIpValue => $maxIpValue){
684
  if( 1 === $maxIpValue ) break;
688
  return false;
689
  }
690
 
691
+ if( $ipNumber < 1972482355 )
692
  return false;
693
 
694
+ if( (1972482355 <= $ipNumber) && ($ipNumber <= 1981841343) ){
695
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-57.php'; return isset($a[$ipNumber]);
696
  }
697
 
698
+ if( $ipNumber < 1981851600 )
699
  return false;
700
 
701
+ if( (1981851600 <= $ipNumber) && ($ipNumber <= 1992468236) ){
702
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-58.php';
703
  if( isset($a[$ipNumber]) ) return true;
704
  foreach($a as $minIpValue => $maxIpValue){
705
  if( 1 === $maxIpValue ) break;
709
  return false;
710
  }
711
 
712
+ if( $ipNumber < 1992474702 )
713
  return false;
714
 
715
+ if( (1992474702 <= $ipNumber) && ($ipNumber <= 2008841822) ){
716
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-59.php';
717
  if( isset($a[$ipNumber]) ) return true;
718
  foreach($a as $minIpValue => $maxIpValue){
719
  if( 1 === $maxIpValue ) break;
723
  return false;
724
  }
725
 
726
+ if( $ipNumber < 2008853529 )
727
  return false;
728
 
729
+ if( (2008853529 <= $ipNumber) && ($ipNumber <= 2023220831) ){
730
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-60.php';
731
  if( isset($a[$ipNumber]) ) return true;
732
  foreach($a as $minIpValue => $maxIpValue){
733
  if( 1 === $maxIpValue ) break;
737
  return false;
738
  }
739
 
740
+ if( $ipNumber < 2023225067 )
741
  return false;
742
 
743
+ if( (2023225067 <= $ipNumber) && ($ipNumber <= 2039014551) ){
744
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-61.php';
745
  if( isset($a[$ipNumber]) ) return true;
746
  foreach($a as $minIpValue => $maxIpValue){
747
  if( 1 === $maxIpValue ) break;
751
  return false;
752
  }
753
 
754
+ if( $ipNumber < 2039014570 )
755
  return false;
756
 
757
+ if( (2039014570 <= $ipNumber) && ($ipNumber <= 2042207600) ){
758
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-62.php'; return isset($a[$ipNumber]);
759
  }
760
 
761
+ if( $ipNumber < 2042211155 )
762
  return false;
763
 
764
+ if( (2042211155 <= $ipNumber) && ($ipNumber <= 2057024516) ){
765
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-63.php';
766
  if( isset($a[$ipNumber]) ) return true;
767
  foreach($a as $minIpValue => $maxIpValue){
768
  if( 1 === $maxIpValue ) break;
772
  return false;
773
  }
774
 
775
+ if( $ipNumber < 2057024602 )
776
  return false;
777
 
778
+ if( (2057024602 <= $ipNumber) && ($ipNumber <= 2065617847) ){
779
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-64.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
780
  }
781
 
782
+ if( $ipNumber < 2065618028 )
783
  return false;
784
 
785
+ if( (2065618028 <= $ipNumber) && ($ipNumber <= 2086530628) ){
786
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-65.php';
787
  if( isset($a[$ipNumber]) ) return true;
788
  foreach($a as $minIpValue => $maxIpValue){
789
  if( 1 === $maxIpValue ) break;
793
  return false;
794
  }
795
 
796
+ if( $ipNumber < 2086530806 )
797
  return false;
798
 
799
+ if( (2086530806 <= $ipNumber) && ($ipNumber <= 2099422734) ){
800
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-66.php';
801
  if( isset($a[$ipNumber]) ) return true;
802
  foreach($a as $minIpValue => $maxIpValue){
803
  if( 1 === $maxIpValue ) break;
807
  return false;
808
  }
809
 
810
+ if( $ipNumber < 2099446268 )
811
  return false;
812
 
813
+ if( (2099446268 <= $ipNumber) && ($ipNumber <= 2112556435) ){
814
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-67.php';
815
  if( isset($a[$ipNumber]) ) return true;
816
  foreach($a as $minIpValue => $maxIpValue){
817
  if( 1 === $maxIpValue ) break;
821
  return false;
822
  }
823
 
824
+ if( $ipNumber < 2112561460 )
825
  return false;
826
 
827
+ if( (2112561460 <= $ipNumber) && ($ipNumber <= 2307338366) ){
828
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-68.php';
829
  if( isset($a[$ipNumber]) ) return true;
830
  foreach($a as $minIpValue => $maxIpValue){
831
  if( 1 === $maxIpValue ) break;
835
  return false;
836
  }
837
 
838
+ if( $ipNumber < 2307339017 )
839
  return false;
840
 
841
+ if( (2307339017 <= $ipNumber) && ($ipNumber <= 2417003198) ){
842
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-69.php';
843
  if( isset($a[$ipNumber]) ) return true;
844
  foreach($a as $minIpValue => $maxIpValue){
845
  if( 1 === $maxIpValue ) break;
849
  return false;
850
  }
851
 
852
+ if( $ipNumber < 2420118893 )
853
  return false;
854
 
855
+ if( (2420118893 <= $ipNumber) && ($ipNumber <= 2606677568) ){
856
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-70.php';
857
  if( isset($a[$ipNumber]) ) return true;
858
  foreach($a as $minIpValue => $maxIpValue){
859
  if( 1 === $maxIpValue ) break;
863
  return false;
864
  }
865
 
866
+ if( $ipNumber < 2606682381 )
867
  return false;
868
 
869
+ if( (2606682381 <= $ipNumber) && ($ipNumber <= 2732439470) ){
870
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-71.php';
871
  if( isset($a[$ipNumber]) ) return true;
872
  foreach($a as $minIpValue => $maxIpValue){
873
  if( 1 === $maxIpValue ) break;
877
  return false;
878
  }
879
 
880
+ if( $ipNumber < 2732439492 )
881
  return false;
882
 
883
+ if( (2732439492 <= $ipNumber) && ($ipNumber <= 2833920859) ){
884
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-72.php';
885
  if( isset($a[$ipNumber]) ) return true;
886
  foreach($a as $minIpValue => $maxIpValue){
887
  if( 1 === $maxIpValue ) break;
891
  return false;
892
  }
893
 
894
+ if( $ipNumber < 2833995843 )
895
  return false;
896
 
897
+ if( (2833995843 <= $ipNumber) && ($ipNumber <= 2915789209) ){
898
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-73.php';
899
  if( isset($a[$ipNumber]) ) return true;
900
  foreach($a as $minIpValue => $maxIpValue){
901
  if( 1 === $maxIpValue ) break;
905
  return false;
906
  }
907
 
908
+ if( $ipNumber < 2915789320 )
909
  return false;
910
 
911
+ if( (2915789320 <= $ipNumber) && ($ipNumber <= 2942579939) ){
912
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-74.php';
913
  if( isset($a[$ipNumber]) ) return true;
914
  foreach($a as $minIpValue => $maxIpValue){
915
  if( 1 === $maxIpValue ) break;
919
  return false;
920
  }
921
 
922
+ if( $ipNumber < 2942579972 )
923
  return false;
924
 
925
+ if( (2942579972 <= $ipNumber) && ($ipNumber <= 2956356313) ){
926
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-75.php';
927
  if( isset($a[$ipNumber]) ) return true;
928
  foreach($a as $minIpValue => $maxIpValue){
929
  if( 1 === $maxIpValue ) break;
933
  return false;
934
  }
935
 
936
+ if( $ipNumber < 2956463997 )
937
  return false;
938
 
939
+ if( (2956463997 <= $ipNumber) && ($ipNumber <= 2976034017) ){
940
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-76.php';
941
  if( isset($a[$ipNumber]) ) return true;
942
  foreach($a as $minIpValue => $maxIpValue){
943
  if( 1 === $maxIpValue ) break;
947
  return false;
948
  }
949
 
950
+ if( $ipNumber < 2976037021 )
951
  return false;
952
 
953
+ if( (2976037021 <= $ipNumber) && ($ipNumber <= 2989346775) ){
954
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-77.php'; return isset($a[$ipNumber]);
955
  }
956
 
957
+ if( $ipNumber < 2989346786 )
958
  return false;
959
 
960
+ if( (2989346786 <= $ipNumber) && ($ipNumber <= 3002053655) ){
961
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-78.php';
962
  if( isset($a[$ipNumber]) ) return true;
963
  foreach($a as $minIpValue => $maxIpValue){
964
  if( 1 === $maxIpValue ) break;
968
  return false;
969
  }
970
 
971
+ if( $ipNumber < 3002053952 )
972
  return false;
973
 
974
+ if( (3002053952 <= $ipNumber) && ($ipNumber <= 3031723691) ){
975
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-79.php';
976
  if( isset($a[$ipNumber]) ) return true;
977
  foreach($a as $minIpValue => $maxIpValue){
978
  if( 1 === $maxIpValue ) break;
982
  return false;
983
  }
984
 
985
+ if( $ipNumber < 3031730595 )
986
  return false;
987
 
988
+ if( (3031730595 <= $ipNumber) && ($ipNumber <= 3058135606) ){
989
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-80.php';
990
  if( isset($a[$ipNumber]) ) return true;
991
  foreach($a as $minIpValue => $maxIpValue){
992
  if( 1 === $maxIpValue ) break;
996
  return false;
997
  }
998
 
999
+ if( $ipNumber < 3058136422 )
 
 
 
 
 
 
 
1000
  return false;
1001
 
1002
+ if( (3058136422 <= $ipNumber) && ($ipNumber <= 3074079794) ){
1003
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-81.php'; return isset($a[$ipNumber]);
1004
  }
1005
 
1006
+ if( $ipNumber < 3074087072 )
1007
  return false;
1008
 
1009
+ if( (3074087072 <= $ipNumber) && ($ipNumber <= 3091848560) ){
1010
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-82.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
1011
  }
1012
 
1013
+ if( $ipNumber < 3091851070 )
1014
  return false;
1015
 
1016
+ if( (3091851070 <= $ipNumber) && ($ipNumber <= 3108620872) ){
1017
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-83.php';
1018
  if( isset($a[$ipNumber]) ) return true;
1019
  foreach($a as $minIpValue => $maxIpValue){
1020
  if( 1 === $maxIpValue ) break;
1024
  return false;
1025
  }
1026
 
1027
+ if( $ipNumber < 3108714496 )
1028
  return false;
1029
 
1030
+ if( (3108714496 <= $ipNumber) && ($ipNumber <= 3125510234) ){
1031
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-84.php';
1032
  if( isset($a[$ipNumber]) ) return true;
1033
  foreach($a as $minIpValue => $maxIpValue){
1034
  if( 1 === $maxIpValue ) break;
1038
  return false;
1039
  }
1040
 
1041
+ if( $ipNumber < 3125513283 )
1042
  return false;
1043
 
1044
+ if( (3125513283 <= $ipNumber) && ($ipNumber <= 3135330766) ){
1045
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-85.php';
1046
  if( isset($a[$ipNumber]) ) return true;
1047
  foreach($a as $minIpValue => $maxIpValue){
1048
  if( 1 === $maxIpValue ) break;
1052
  return false;
1053
  }
1054
 
1055
+ if( $ipNumber < 3135334388 )
1056
  return false;
1057
 
1058
+ if( (3135334388 <= $ipNumber) && ($ipNumber <= 3145240937) ){
1059
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-86.php'; return isset($a[$ipNumber]);
1060
  }
1061
 
1062
+ if( $ipNumber < 3145249122 )
1063
  return false;
1064
 
1065
+ if( (3145249122 <= $ipNumber) && ($ipNumber <= 3158887084) ){
1066
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-87.php';
1067
  if( isset($a[$ipNumber]) ) return true;
1068
  foreach($a as $minIpValue => $maxIpValue){
1069
  if( 1 === $maxIpValue ) break;
1073
  return false;
1074
  }
1075
 
1076
+ if( $ipNumber < 3158889633 )
1077
  return false;
1078
 
1079
+ if( (3158889633 <= $ipNumber) && ($ipNumber <= 3170403671) ){
1080
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-88.php';
1081
  if( isset($a[$ipNumber]) ) return true;
1082
  foreach($a as $minIpValue => $maxIpValue){
1083
  if( 1 === $maxIpValue ) break;
1087
  return false;
1088
  }
1089
 
1090
+ if( $ipNumber < 3170502266 )
1091
  return false;
1092
 
1093
+ if( (3170502266 <= $ipNumber) && ($ipNumber <= 3181267141) ){
1094
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-89.php'; return isset($a[$ipNumber]);
1095
  }
1096
 
1097
+ if( $ipNumber < 3181267265 )
1098
  return false;
1099
 
1100
+ if( (3181267265 <= $ipNumber) && ($ipNumber <= 3189739815) ){
1101
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-90.php';
1102
  if( isset($a[$ipNumber]) ) return true;
1103
  foreach($a as $minIpValue => $maxIpValue){
1104
  if( 1 === $maxIpValue ) break;
1108
  return false;
1109
  }
1110
 
1111
+ if( $ipNumber < 3189757236 )
1112
  return false;
1113
 
1114
+ if( (3189757236 <= $ipNumber) && ($ipNumber <= 3196879504) ){
1115
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-91.php'; return isset($a[$ipNumber]);
1116
  }
1117
 
1118
+ if( $ipNumber < 3196880164 )
1119
  return false;
1120
 
1121
+ if( (3196880164 <= $ipNumber) && ($ipNumber <= 3202046187) ){
1122
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-92.php'; return isset($a[$ipNumber]);
1123
  }
1124
 
1125
+ if( $ipNumber < 3202049740 )
1126
  return false;
1127
 
1128
+ if( (3202049740 <= $ipNumber) && ($ipNumber <= 3227307682) ){
1129
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-93.php';
1130
  if( isset($a[$ipNumber]) ) return true;
1131
  foreach($a as $minIpValue => $maxIpValue){
1132
  if( 1 === $maxIpValue ) break;
1136
  return false;
1137
  }
1138
 
1139
+ if( $ipNumber < 3227383874 )
1140
  return false;
1141
 
1142
+ if( (3227383874 <= $ipNumber) && ($ipNumber <= 3244840394) ){
1143
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-94.php';
1144
  if( isset($a[$ipNumber]) ) return true;
1145
  foreach($a as $minIpValue => $maxIpValue){
1146
  if( 1 === $maxIpValue ) break;
1150
  return false;
1151
  }
1152
 
1153
+ if( $ipNumber < 3244840406 )
1154
  return false;
1155
 
1156
+ if( (3244840406 <= $ipNumber) && ($ipNumber <= 3271894151) ){
1157
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-95.php';
1158
  if( isset($a[$ipNumber]) ) return true;
1159
  foreach($a as $minIpValue => $maxIpValue){
1160
  if( 1 === $maxIpValue ) break;
1164
  return false;
1165
  }
1166
 
1167
+ if( $ipNumber < 3271895146 )
1168
  return false;
1169
 
1170
+ if( (3271895146 <= $ipNumber) && ($ipNumber <= 3288041994) ){
1171
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-96.php';
1172
  if( isset($a[$ipNumber]) ) return true;
1173
  foreach($a as $minIpValue => $maxIpValue){
1174
  if( 1 === $maxIpValue ) break;
1178
  return false;
1179
  }
1180
 
1181
+ if( $ipNumber < 3288085278 )
1182
  return false;
1183
 
1184
+ if( (3288085278 <= $ipNumber) && ($ipNumber <= 3325674103) ){
1185
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-97.php';
1186
  if( isset($a[$ipNumber]) ) return true;
1187
  foreach($a as $minIpValue => $maxIpValue){
1188
  if( 1 === $maxIpValue ) break;
1192
  return false;
1193
  }
1194
 
1195
+ if( $ipNumber < 3325677798 )
1196
  return false;
1197
 
1198
+ if( (3325677798 <= $ipNumber) && ($ipNumber <= 3354370828) ){
1199
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-98.php';
1200
  if( isset($a[$ipNumber]) ) return true;
1201
  foreach($a as $minIpValue => $maxIpValue){
1202
  if( 1 === $maxIpValue ) break;
1206
  return false;
1207
  }
1208
 
1209
+ if( $ipNumber < 3354487426 )
1210
  return false;
1211
 
1212
+ if( (3354487426 <= $ipNumber) && ($ipNumber <= 3362751542) ){
1213
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-99.php';
1214
  if( isset($a[$ipNumber]) ) return true;
1215
  foreach($a as $minIpValue => $maxIpValue){
1216
  if( 1 === $maxIpValue ) break;
1220
  return false;
1221
  }
1222
 
1223
+ if( $ipNumber < 3362753474 )
 
 
 
 
 
 
 
1224
  return false;
1225
 
1226
+ if( (3362753474 <= $ipNumber) && ($ipNumber <= 3375859722) ){
1227
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-100.php'; return isset($a[$ipNumber]);
1228
  }
1229
 
1230
+ if( $ipNumber < 3375863356 )
1231
  return false;
1232
 
1233
+ if( (3375863356 <= $ipNumber) && ($ipNumber <= 3387343988) ){
1234
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-101.php';
1235
  if( isset($a[$ipNumber]) ) return true;
1236
  foreach($a as $minIpValue => $maxIpValue){
1237
  if( 1 === $maxIpValue ) break;
1241
  return false;
1242
  }
1243
 
1244
+ if( $ipNumber < 3387344308 )
1245
  return false;
1246
 
1247
+ if( (3387344308 <= $ipNumber) && ($ipNumber <= 3395711124) ){
1248
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-102.php';
1249
  if( isset($a[$ipNumber]) ) return true;
1250
  foreach($a as $minIpValue => $maxIpValue){
1251
  if( 1 === $maxIpValue ) break;
1255
  return false;
1256
  }
1257
 
1258
+ if( $ipNumber < 3395712808 )
1259
  return false;
1260
 
1261
+ if( (3395712808 <= $ipNumber) && ($ipNumber <= 3402195024) ){
1262
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-103.php';
1263
  if( isset($a[$ipNumber]) ) return true;
1264
  foreach($a as $minIpValue => $maxIpValue){
1265
  if( 1 === $maxIpValue ) break;
1269
  return false;
1270
  }
1271
 
1272
+ if( $ipNumber < 3402209321 )
1273
  return false;
1274
 
1275
+ if( (3402209321 <= $ipNumber) && ($ipNumber <= 3417088210) ){
1276
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-104.php';
1277
  if( isset($a[$ipNumber]) ) return true;
1278
  foreach($a as $minIpValue => $maxIpValue){
1279
  if( 1 === $maxIpValue ) break;
1283
  return false;
1284
  }
1285
 
1286
+ if( $ipNumber < 3417088263 )
1287
  return false;
1288
 
1289
+ if( (3417088263 <= $ipNumber) && ($ipNumber <= 3461022254) ){
1290
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-105.php';
1291
  if( isset($a[$ipNumber]) ) return true;
1292
  foreach($a as $minIpValue => $maxIpValue){
1293
  if( 1 === $maxIpValue ) break;
1297
  return false;
1298
  }
1299
 
1300
+ if( $ipNumber < 3461052398 )
1301
  return false;
1302
 
1303
+ if( (3461052398 <= $ipNumber) && ($ipNumber <= 3500352171) ){
1304
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-106.php';
1305
  if( isset($a[$ipNumber]) ) return true;
1306
  foreach($a as $minIpValue => $maxIpValue){
1307
  if( 1 === $maxIpValue ) break;
1311
  return false;
1312
  }
1313
 
1314
+ if( $ipNumber < 3500357635 )
1315
  return false;
1316
 
1317
+ if( (3500357635 <= $ipNumber) && ($ipNumber <= 3528057342) ){
1318
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-107.php';
1319
  if( isset($a[$ipNumber]) ) return true;
1320
  foreach($a as $minIpValue => $maxIpValue){
1321
  if( 1 === $maxIpValue ) break;
1325
  return false;
1326
  }
1327
 
1328
+ if( $ipNumber < 3528092737 )
1329
  return false;
1330
 
1331
+ if( (3528092737 <= $ipNumber) && ($ipNumber <= 3546956618) ){
1332
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-108.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
1333
  }
1334
 
1335
+ if( $ipNumber < 3546979269 )
1336
  return false;
1337
 
1338
+ if( (3546979269 <= $ipNumber) && ($ipNumber <= 3558422295) ){
1339
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-109.php'; return isset($a[$ipNumber]);
1340
  }
1341
 
1342
+ if( $ipNumber < 3558423051 )
1343
  return false;
1344
 
1345
+ if( (3558423051 <= $ipNumber) && ($ipNumber <= 3568804207) ){
1346
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-110.php';
1347
  if( isset($a[$ipNumber]) ) return true;
1348
  foreach($a as $minIpValue => $maxIpValue){
1349
  if( 1 === $maxIpValue ) break;
1353
  return false;
1354
  }
1355
 
1356
+ if( $ipNumber < 3568805150 )
1357
  return false;
1358
 
1359
+ if( (3568805150 <= $ipNumber) && ($ipNumber <= 3588574941) ){
1360
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-111.php';
1361
  if( isset($a[$ipNumber]) ) return true;
1362
  foreach($a as $minIpValue => $maxIpValue){
1363
  if( 1 === $maxIpValue ) break;
1367
  return false;
1368
  }
1369
 
1370
+ if( $ipNumber < 3588575874 )
1371
  return false;
1372
 
1373
+ if( (3588575874 <= $ipNumber) && ($ipNumber <= 3642924126) ){
1374
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-112.php';
1375
  if( isset($a[$ipNumber]) ) return true;
1376
  foreach($a as $minIpValue => $maxIpValue){
1377
  if( 1 === $maxIpValue ) break;
1381
  return false;
1382
  }
1383
 
1384
+ if( $ipNumber < 3642972728 )
1385
  return false;
1386
 
1387
+ if( (3642972728 <= $ipNumber) && ($ipNumber <= 3658926501) ){
1388
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-113.php'; return isset($a[$ipNumber]);
1389
  }
1390
 
1391
+ if( $ipNumber < 3658926782 )
1392
  return false;
1393
 
1394
+ if( (3658926782 <= $ipNumber) && ($ipNumber <= 3668222268) ){
1395
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-114.php'; return isset($a[$ipNumber]);
1396
  }
1397
 
1398
+ if( $ipNumber < 3668226682 )
1399
  return false;
1400
 
1401
+ if( (3668226682 <= $ipNumber) && ($ipNumber <= 3689441282) ){
1402
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-115.php'; return isset($a[$ipNumber]);
1403
  }
1404
 
1405
+ if( $ipNumber < 3689455850 )
1406
  return false;
1407
 
1408
+ if( (3689455850 <= $ipNumber) && ($ipNumber <= 3705782968) ){
1409
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-116.php';
1410
+ if( isset($a[$ipNumber]) ) return true;
1411
+ foreach($a as $minIpValue => $maxIpValue){
1412
+ if( 1 === $maxIpValue ) break;
1413
+ if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1414
+ return true;
1415
+ }
1416
+ return false;
1417
  }
1418
 
1419
+ if( $ipNumber < 3705783403 )
1420
  return false;
1421
 
1422
+ if( (3705783403 <= $ipNumber) && ($ipNumber <= 3721198734) ){
1423
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-117.php';
1424
  if( isset($a[$ipNumber]) ) return true;
1425
  foreach($a as $minIpValue => $maxIpValue){
1426
  if( 1 === $maxIpValue ) break;
1430
  return false;
1431
  }
1432
 
1433
+ if( $ipNumber < 3721198741 )
1434
  return false;
1435
 
1436
+ if( (3721198741 <= $ipNumber) && ($ipNumber <= 3732058175) ){
1437
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-118.php'; return isset($a[$ipNumber]);
1438
  }
1439
 
1440
+ if( $ipNumber < 3732058310 )
1441
  return false;
1442
 
1443
+ if( (3732058310 <= $ipNumber) && ($ipNumber <= 3736742519) ){
1444
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-119.php'; return isset($a[$ipNumber]);
1445
  }
1446
 
1447
+ if( $ipNumber < 3736742528 )
1448
  return false;
1449
 
1450
+ if( (3736742528 <= $ipNumber) && ($ipNumber <= 3742040066) ){
1451
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-120.php';
1452
+ if( isset($a[$ipNumber]) ) return true;
1453
+ foreach($a as $minIpValue => $maxIpValue){
1454
+ if( 1 === $maxIpValue ) break;
1455
+ if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1456
+ return true;
1457
+ }
1458
+ return false;
1459
  }
1460
 
1461
+ if( $ipNumber < 3742043128 )
1462
  return false;
1463
 
1464
+ if( (3742043128 <= $ipNumber) && ($ipNumber <= 3758080110) ){
1465
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-121.php';
1466
  if( isset($a[$ipNumber]) ) return true;
1467
  foreach($a as $minIpValue => $maxIpValue){
1468
  if( 1 === $maxIpValue ) break;
1482
 
1483
  $ipNumber = MchGdbcIPUtils::ipAddressToNumber($ipAddress, $ipVersion, true);
1484
 
1485
+ if( $ipNumber < 16834714 )
1486
  return false;
1487
 
1488
+ if( (16834714 <= $ipNumber) && ($ipNumber <= 392394788) ){
1489
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-0.php';
1490
  if( isset($a[$ipNumber]) ) return true;
1491
  foreach($a as $minIpValue => $maxIpValue){
1496
  return false;
1497
  }
1498
 
1499
+ if( $ipNumber < 392561589 )
1500
  return false;
1501
 
1502
+ if( (392561589 <= $ipNumber) && ($ipNumber <= 609323057) ){
1503
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-1.php'; return isset($a[$ipNumber]);
1504
  }
1505
 
1506
+ if( $ipNumber < 609323667 )
1507
  return false;
1508
 
1509
+ if( (609323667 <= $ipNumber) && ($ipNumber <= 636444741) ){
1510
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-2.php';
1511
  if( isset($a[$ipNumber]) ) return true;
1512
  foreach($a as $minIpValue => $maxIpValue){
1517
  return false;
1518
  }
1519
 
1520
+ if( $ipNumber < 636445086 )
1521
  return false;
1522
 
1523
+ if( (636445086 <= $ipNumber) && ($ipNumber <= 762445478) ){
1524
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-3.php'; return isset($a[$ipNumber]);
 
 
 
 
 
 
 
1525
  }
1526
 
1527
+ if( $ipNumber < 762445479 )
1528
  return false;
1529
 
1530
+ if( (762445479 <= $ipNumber) && ($ipNumber <= 872358196) ){
1531
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-4.php';
1532
  if( isset($a[$ipNumber]) ) return true;
1533
  foreach($a as $minIpValue => $maxIpValue){
1538
  return false;
1539
  }
1540
 
1541
+ if( $ipNumber < 872359746 )
1542
  return false;
1543
 
1544
+ if( (872359746 <= $ipNumber) && ($ipNumber <= 973647509) ){
1545
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-5.php'; return isset($a[$ipNumber]);
1546
  }
1547
 
1548
+ if( $ipNumber < 973647515 )
1549
  return false;
1550
 
1551
+ if( (973647515 <= $ipNumber) && ($ipNumber <= 973664301) ){
1552
  $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-6.php'; return isset($a[$ipNumber]);
1553
  }
1554
 
1555
+ if( $ipNumber < 973664313 )
1556
+ return false;
1557
+
1558
+ if( (973664313 <= $ipNumber) && ($ipNumber <= 973811624) ){
1559
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-7.php'; return isset($a[$ipNumber]);
1560
+ }
1561
+
1562
+ if( $ipNumber < 973811626 )
1563
+ return false;
1564
+
1565
+ if( (973811626 <= $ipNumber) && ($ipNumber <= 973830340) ){
1566
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-8.php'; return isset($a[$ipNumber]);
1567
+ }
1568
+
1569
+ if( $ipNumber < 973830360 )
1570
+ return false;
1571
+
1572
+ if( (973830360 <= $ipNumber) && ($ipNumber <= 1019191796) ){
1573
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-9.php'; return isset($a[$ipNumber]);
1574
+ }
1575
+
1576
+ if( $ipNumber < 1019192211 )
1577
+ return false;
1578
+
1579
+ if( (1019192211 <= $ipNumber) && ($ipNumber <= 1029318948) ){
1580
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-10.php'; return isset($a[$ipNumber]);
1581
+ }
1582
+
1583
+ if( $ipNumber < 1029318953 )
1584
+ return false;
1585
+
1586
+ if( (1029318953 <= $ipNumber) && ($ipNumber <= 1029336319) ){
1587
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-11.php'; return isset($a[$ipNumber]);
1588
+ }
1589
+
1590
+ if( $ipNumber < 1029336349 )
1591
  return false;
1592
 
1593
+ if( (1029336349 <= $ipNumber) && ($ipNumber <= 1119532764) ){
1594
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-12.php';
1595
  if( isset($a[$ipNumber]) ) return true;
1596
  foreach($a as $minIpValue => $maxIpValue){
1597
  if( 1 === $maxIpValue ) break;
1601
  return false;
1602
  }
1603
 
1604
+ if( $ipNumber < 1119534568 )
1605
  return false;
1606
 
1607
+ if( (1119534568 <= $ipNumber) && ($ipNumber <= 1202601517) ){
1608
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-13.php';
1609
  if( isset($a[$ipNumber]) ) return true;
1610
  foreach($a as $minIpValue => $maxIpValue){
1611
  if( 1 === $maxIpValue ) break;
1615
  return false;
1616
  }
1617
 
1618
+ if( $ipNumber < 1202753439 )
1619
  return false;
1620
 
1621
+ if( (1202753439 <= $ipNumber) && ($ipNumber <= 1311753836) ){
1622
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-14.php';
1623
  if( isset($a[$ipNumber]) ) return true;
1624
  foreach($a as $minIpValue => $maxIpValue){
1625
  if( 1 === $maxIpValue ) break;
1629
  return false;
1630
  }
1631
 
1632
+ if( $ipNumber < 1311754677 )
1633
  return false;
1634
 
1635
+ if( (1311754677 <= $ipNumber) && ($ipNumber <= 1386329620) ){
1636
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-15.php';
1637
  if( isset($a[$ipNumber]) ) return true;
1638
  foreach($a as $minIpValue => $maxIpValue){
1639
  if( 1 === $maxIpValue ) break;
1643
  return false;
1644
  }
1645
 
1646
+ if( $ipNumber < 1386336855 )
1647
  return false;
1648
 
1649
+ if( (1386336855 <= $ipNumber) && ($ipNumber <= 1466076985) ){
1650
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-16.php';
1651
  if( isset($a[$ipNumber]) ) return true;
1652
  foreach($a as $minIpValue => $maxIpValue){
1653
  if( 1 === $maxIpValue ) break;
1657
  return false;
1658
  }
1659
 
1660
+ if( $ipNumber < 1466082043 )
1661
  return false;
1662
 
1663
+ if( (1466082043 <= $ipNumber) && ($ipNumber <= 1541139587) ){
1664
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-17.php';
1665
  if( isset($a[$ipNumber]) ) return true;
1666
  foreach($a as $minIpValue => $maxIpValue){
1667
  if( 1 === $maxIpValue ) break;
1671
  return false;
1672
  }
1673
 
1674
+ if( $ipNumber < 1541139591 )
1675
  return false;
1676
 
1677
+ if( (1541139591 <= $ipNumber) && ($ipNumber <= 1599802059) ){
1678
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-18.php';
1679
  if( isset($a[$ipNumber]) ) return true;
1680
  foreach($a as $minIpValue => $maxIpValue){
1681
  if( 1 === $maxIpValue ) break;
1685
  return false;
1686
  }
1687
 
1688
+ if( $ipNumber < 1599815246 )
1689
  return false;
1690
 
1691
+ if( (1599815246 <= $ipNumber) && ($ipNumber <= 1730790792) ){
1692
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-19.php';
1693
  if( isset($a[$ipNumber]) ) return true;
1694
  foreach($a as $minIpValue => $maxIpValue){
1695
  if( 1 === $maxIpValue ) break;
1699
  return false;
1700
  }
1701
 
1702
+ if( $ipNumber < 1730790848 )
1703
  return false;
1704
 
1705
+ if( (1730790848 <= $ipNumber) && ($ipNumber <= 1759294943) ){
1706
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-20.php'; return isset($a[$ipNumber]);
1707
+ }
1708
+
1709
+ if( $ipNumber < 1759294979 )
1710
+ return false;
1711
+
1712
+ if( (1759294979 <= $ipNumber) && ($ipNumber <= 1844251481) ){
1713
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-21.php';
1714
  if( isset($a[$ipNumber]) ) return true;
1715
  foreach($a as $minIpValue => $maxIpValue){
1716
  if( 1 === $maxIpValue ) break;
1720
  return false;
1721
  }
1722
 
1723
+ if( $ipNumber < 1844255325 )
1724
  return false;
1725
 
1726
+ if( (1844255325 <= $ipNumber) && ($ipNumber <= 1935095704) ){
1727
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-22.php';
1728
  if( isset($a[$ipNumber]) ) return true;
1729
  foreach($a as $minIpValue => $maxIpValue){
1730
  if( 1 === $maxIpValue ) break;
1734
  return false;
1735
  }
1736
 
1737
+ if( $ipNumber < 1935095784 )
1738
  return false;
1739
 
1740
+ if( (1935095784 <= $ipNumber) && ($ipNumber <= 1990281106) ){
1741
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-23.php'; return isset($a[$ipNumber]);
1742
  }
1743
 
1744
+ if( $ipNumber < 1990281970 )
1745
  return false;
1746
 
1747
+ if( (1990281970 <= $ipNumber) && ($ipNumber <= 2087342376) ){
1748
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-24.php';
1749
  if( isset($a[$ipNumber]) ) return true;
1750
  foreach($a as $minIpValue => $maxIpValue){
1751
  if( 1 === $maxIpValue ) break;
1755
  return false;
1756
  }
1757
 
1758
+ if( $ipNumber < 2087666980 )
1759
  return false;
1760
 
1761
+ if( (2087666980 <= $ipNumber) && ($ipNumber <= 2088259794) ){
1762
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-25.php'; return isset($a[$ipNumber]);
1763
+ }
1764
+
1765
+ if( $ipNumber < 2088259802 )
1766
+ return false;
1767
+
1768
+ if( (2088259802 <= $ipNumber) && ($ipNumber <= 2088284446) ){
1769
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-26.php'; return isset($a[$ipNumber]);
1770
+ }
1771
+
1772
+ if( $ipNumber < 2088284486 )
1773
+ return false;
1774
+
1775
+ if( (2088284486 <= $ipNumber) && ($ipNumber <= 2088375359) ){
1776
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-27.php'; return isset($a[$ipNumber]);
1777
+ }
1778
+
1779
+ if( $ipNumber < 2088375362 )
1780
+ return false;
1781
+
1782
+ if( (2088375362 <= $ipNumber) && ($ipNumber <= 2088397459) ){
1783
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-28.php'; return isset($a[$ipNumber]);
1784
+ }
1785
+
1786
+ if( $ipNumber < 2088397490 )
1787
+ return false;
1788
+
1789
+ if( (2088397490 <= $ipNumber) && ($ipNumber <= 2088422885) ){
1790
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-29.php'; return isset($a[$ipNumber]);
1791
+ }
1792
+
1793
+ if( $ipNumber < 2088422890 )
1794
+ return false;
1795
+
1796
+ if( (2088422890 <= $ipNumber) && ($ipNumber <= 2152259059) ){
1797
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-30.php'; return isset($a[$ipNumber]);
1798
+ }
1799
+
1800
+ if( $ipNumber < 2152269637 )
1801
+ return false;
1802
+
1803
+ if( (2152269637 <= $ipNumber) && ($ipNumber <= 2311917069) ){
1804
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-31.php';
1805
  if( isset($a[$ipNumber]) ) return true;
1806
  foreach($a as $minIpValue => $maxIpValue){
1807
  if( 1 === $maxIpValue ) break;
1811
  return false;
1812
  }
1813
 
1814
+ if( $ipNumber < 2311945251 )
1815
  return false;
1816
 
1817
+ if( (2311945251 <= $ipNumber) && ($ipNumber <= 2327495104) ){
1818
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-32.php'; return isset($a[$ipNumber]);
1819
  }
1820
 
1821
+ if( $ipNumber < 2327495115 )
1822
  return false;
1823
 
1824
+ if( (2327495115 <= $ipNumber) && ($ipNumber <= 2549892986) ){
1825
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-33.php';
1826
  if( isset($a[$ipNumber]) ) return true;
1827
  foreach($a as $minIpValue => $maxIpValue){
1828
  if( 1 === $maxIpValue ) break;
1832
  return false;
1833
  }
1834
 
1835
+ if( $ipNumber < 2549893973 )
1836
  return false;
1837
 
1838
+ if( (2549893973 <= $ipNumber) && ($ipNumber <= 2829550837) ){
1839
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-34.php';
1840
  if( isset($a[$ipNumber]) ) return true;
1841
  foreach($a as $minIpValue => $maxIpValue){
1842
  if( 1 === $maxIpValue ) break;
1846
  return false;
1847
  }
1848
 
1849
+ if( $ipNumber < 2829550852 )
1850
  return false;
1851
 
1852
+ if( (2829550852 <= $ipNumber) && ($ipNumber <= 2875279830) ){
1853
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-35.php'; return isset($a[$ipNumber]);
1854
  }
1855
 
1856
+ if( $ipNumber < 2875279856 )
1857
  return false;
1858
 
1859
+ if( (2875279856 <= $ipNumber) && ($ipNumber <= 2875315992) ){
1860
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-36.php'; return isset($a[$ipNumber]);
1861
+ }
1862
+
1863
+ if( $ipNumber < 2875315994 )
1864
+ return false;
1865
+
1866
+ if( (2875315994 <= $ipNumber) && ($ipNumber <= 2953417154) ){
1867
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-37.php';
1868
  if( isset($a[$ipNumber]) ) return true;
1869
  foreach($a as $minIpValue => $maxIpValue){
1870
  if( 1 === $maxIpValue ) break;
1874
  return false;
1875
  }
1876
 
1877
+ if( $ipNumber < 2953417685 )
1878
  return false;
1879
 
1880
+ if( (2953417685 <= $ipNumber) && ($ipNumber <= 2972155212) ){
1881
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-38.php';
1882
  if( isset($a[$ipNumber]) ) return true;
1883
  foreach($a as $minIpValue => $maxIpValue){
1884
  if( 1 === $maxIpValue ) break;
1888
  return false;
1889
  }
1890
 
1891
+ if( $ipNumber < 2972155214 )
1892
  return false;
1893
 
1894
+ if( (2972155214 <= $ipNumber) && ($ipNumber <= 2975180889) ){
1895
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-39.php'; return isset($a[$ipNumber]);
1896
+ }
1897
+
1898
+ if( $ipNumber < 2975183435 )
1899
+ return false;
1900
+
1901
+ if( (2975183435 <= $ipNumber) && ($ipNumber <= 2979569728) ){
1902
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-40.php'; return isset($a[$ipNumber]);
1903
  }
1904
 
1905
+ if( $ipNumber < 2979569730 )
1906
  return false;
1907
 
1908
+ if( (2979569730 <= $ipNumber) && ($ipNumber <= 2979790701) ){
1909
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-41.php';
1910
  if( isset($a[$ipNumber]) ) return true;
1911
  foreach($a as $minIpValue => $maxIpValue){
1912
  if( 1 === $maxIpValue ) break;
1916
  return false;
1917
  }
1918
 
1919
+ if( $ipNumber < 2979790708 )
1920
  return false;
1921
 
1922
+ if( (2979790708 <= $ipNumber) && ($ipNumber <= 3010087821) ){
1923
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-42.php';
1924
+ if( isset($a[$ipNumber]) ) return true;
1925
+ foreach($a as $minIpValue => $maxIpValue){
1926
+ if( 1 === $maxIpValue ) break;
1927
+ if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1928
+ return true;
1929
+ }
1930
  return false;
 
 
 
1931
  }
1932
 
1933
+ if( $ipNumber < 3010087893 )
1934
  return false;
1935
 
1936
+ if( (3010087893 <= $ipNumber) && ($ipNumber <= 3054968258) ){
1937
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-43.php'; return isset($a[$ipNumber]);
1938
  }
1939
 
1940
+ if( $ipNumber < 3054969114 )
1941
  return false;
1942
 
1943
+ if( (3054969114 <= $ipNumber) && ($ipNumber <= 3110597707) ){
1944
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-44.php';
1945
  if( isset($a[$ipNumber]) ) return true;
1946
  foreach($a as $minIpValue => $maxIpValue){
1947
  if( 1 === $maxIpValue ) break;
1951
  return false;
1952
  }
1953
 
1954
+ if( $ipNumber < 3110597715 )
1955
  return false;
1956
 
1957
+ if( (3110597715 <= $ipNumber) && ($ipNumber <= 3134751773) ){
1958
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-45.php'; return isset($a[$ipNumber]);
1959
  }
1960
 
1961
+ if( $ipNumber < 3134751774 )
1962
  return false;
1963
 
1964
+ if( (3134751774 <= $ipNumber) && ($ipNumber <= 3136141618) ){
1965
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-46.php'; return isset($a[$ipNumber]);
1966
  }
1967
 
1968
+ if( $ipNumber < 3136141620 )
1969
  return false;
1970
 
1971
+ if( (3136141620 <= $ipNumber) && ($ipNumber <= 3142125540) ){
1972
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-47.php'; return isset($a[$ipNumber]);
1973
  }
1974
 
1975
+ if( $ipNumber < 3142125549 )
1976
  return false;
1977
 
1978
+ if( (3142125549 <= $ipNumber) && ($ipNumber <= 3142993103) ){
1979
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-48.php'; return isset($a[$ipNumber]);
1980
+ }
1981
+
1982
+ if( $ipNumber < 3142993105 )
1983
+ return false;
1984
+
1985
+ if( (3142993105 <= $ipNumber) && ($ipNumber <= 3144653731) ){
1986
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-49.php'; return isset($a[$ipNumber]);
1987
  }
1988
 
1989
+ if( $ipNumber < 3144653737 )
1990
  return false;
1991
 
1992
+ if( (3144653737 <= $ipNumber) && ($ipNumber <= 3174208982) ){
1993
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-50.php';
1994
  if( isset($a[$ipNumber]) ) return true;
1995
  foreach($a as $minIpValue => $maxIpValue){
1996
  if( 1 === $maxIpValue ) break;
2000
  return false;
2001
  }
2002
 
2003
+ if( $ipNumber < 3174208992 )
2004
  return false;
2005
 
2006
+ if( (3174208992 <= $ipNumber) && ($ipNumber <= 3176856831) ){
2007
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-51.php'; return isset($a[$ipNumber]);
2008
+ }
2009
+
2010
+ if( $ipNumber < 3176856846 )
 
 
 
2011
  return false;
2012
+
2013
+ if( (3176856846 <= $ipNumber) && ($ipNumber <= 3194748108) ){
2014
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-52.php'; return isset($a[$ipNumber]);
2015
  }
2016
 
2017
+ if( $ipNumber < 3194748152 )
2018
  return false;
2019
 
2020
+ if( (3194748152 <= $ipNumber) && ($ipNumber <= 3204797907) ){
2021
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-53.php'; return isset($a[$ipNumber]);
2022
  }
2023
 
2024
+ if( $ipNumber < 3204797909 )
2025
  return false;
2026
 
2027
+ if( (3204797909 <= $ipNumber) && ($ipNumber <= 3211195460) ){
2028
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-54.php'; return isset($a[$ipNumber]);
2029
  }
2030
 
2031
+ if( $ipNumber < 3211195507 )
2032
  return false;
2033
 
2034
+ if( (3211195507 <= $ipNumber) && ($ipNumber <= 3307854778) ){
2035
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-55.php';
2036
+ if( isset($a[$ipNumber]) ) return true;
2037
+ foreach($a as $minIpValue => $maxIpValue){
2038
+ if( 1 === $maxIpValue ) break;
2039
+ if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
2040
+ return true;
2041
+ }
2042
+ return false;
2043
  }
2044
 
2045
+ if( $ipNumber < 3307858992 )
2046
  return false;
2047
 
2048
+ if( (3307858992 <= $ipNumber) && ($ipNumber <= 3371039031) ){
2049
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-56.php';
2050
  if( isset($a[$ipNumber]) ) return true;
2051
  foreach($a as $minIpValue => $maxIpValue){
2052
  if( 1 === $maxIpValue ) break;
2056
  return false;
2057
  }
2058
 
2059
+ if( $ipNumber < 3371067116 )
2060
  return false;
2061
 
2062
+ if( (3371067116 <= $ipNumber) && ($ipNumber <= 3393080242) ){
2063
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-57.php'; return isset($a[$ipNumber]);
2064
+ }
2065
+
2066
+ if( $ipNumber < 3393080243 )
2067
+ return false;
2068
+
2069
+ if( (3393080243 <= $ipNumber) && ($ipNumber <= 3515171542) ){
2070
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-58.php';
2071
  if( isset($a[$ipNumber]) ) return true;
2072
  foreach($a as $minIpValue => $maxIpValue){
2073
  if( 1 === $maxIpValue ) break;
2077
  return false;
2078
  }
2079
 
2080
+ if( $ipNumber < 3515687602 )
2081
  return false;
2082
 
2083
+ if( (3515687602 <= $ipNumber) && ($ipNumber <= 3638207313) ){
2084
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-59.php';
2085
  if( isset($a[$ipNumber]) ) return true;
2086
  foreach($a as $minIpValue => $maxIpValue){
2087
  if( 1 === $maxIpValue ) break;
2091
  return false;
2092
  }
2093
 
2094
+ if( $ipNumber < 3638220997 )
2095
  return false;
2096
 
2097
+ if( (3638220997 <= $ipNumber) && ($ipNumber <= 3758092949) ){
2098
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-60.php';
2099
+ if( isset($a[$ipNumber]) ) return true;
2100
+ foreach($a as $minIpValue => $maxIpValue){
2101
+ if( 1 === $maxIpValue ) break;
2102
+ if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
2103
+ return true;
2104
+ }
2105
+ return false;
2106
  }
2107
 
2108
  return false;
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-0.php CHANGED
@@ -1 +1 @@
1
- <?php return array(90614272=>90614783,87957504=>87965695,87954832=>87955455,87954432=>87954823,87951064=>87952383,87951024=>87951055,87951000=>87951015,87950848=>87950991,87560192=>87560447,96750535=>1,96750295=>1,96751776=>1,96753786=>1,96754090=>1,96749767=>1,96744805=>1,96747828=>1,96748273=>1,96749080=>1,96755692=>1,96749471=>1,96748194=>1,96762426=>1,96779914=>1,96779913=>1,96779917=>1,96779918=>1,96779919=>1,96779912=>1,96771347=>1,96762427=>1,96744804=>1,96767754=>1,96767756=>1,96767759=>1,96762424=>1,96742386=>1,96317198=>1,96314902=>1,96317236=>1,96317354=>1,96334811=>1,96317546=>1,96314781=>1,96313695=>1,96309268=>1,96308947=>1,96309893=>1,96311437=>1,96312632=>1,96311737=>1,96359941=>1,96388097=>1,96737990=>1,96736341=>1,96738322=>1,96739152=>1,96742383=>1,96740374=>1,96736261=>1,96735618=>1,96731521=>1,96731285=>1,96733846=>1,96734360=>1,96734771=>1,96779956=>1,96779958=>1,98862318=>1,98845112=>1,98865488=>1,98891644=>1,100242841=>1,100241828=>1,201872493=>1,98831698=>1,98540834=>1,98538505=>1,98704664=>1,98714842=>1,98720366=>1,98719315=>1,100245446=>1,100245457=>1,135946797=>1,135937352=>1,135952853=>1,136291851=>1,136811384=>1,136466072=>1,135937351=>1,135937350=>1,100569674=>1,100558192=>1,100614293=>1,134509886=>1,135937349=>1,135041608=>1,98395043=>1,98340609=>1,96886342=>1,96792434=>1,96960897=>1,96961212=>1,96963718=>1,96961985=>1,201872500=>1,201872509=>1,96779959=>1,136880433=>1,96308854=>1,96784076=>1,96789409=>1,96784388=>1,96964114=>1,96964208=>1,97011242=>1,96989301=>1,97011244=>1,97152239=>1,97403795=>1,97391910=>1,96970703=>1,96970011=>1,96964257=>1,96964220=>1,96964291=>1,96964332=>1,96966273=>1,136852424=>1,96306677=>1,93165630=>1,93164961=>1,93169131=>1,93170598=>1,93174797=>1,93172118=>1,93162407=>1,93161309=>1,93024863=>1,93019449=>1,93129046=>1,93132403=>1,93160581=>1,93150323=>1,93175458=>1,93245205=>1,93539956=>1,93512997=>1,93656903=>1,93714999=>1,93715036=>1,93715011=>1,93487989=>1,93399617=>1,93257024=>1,93247379=>1,93292528=>1,93296219=>1,93322590=>1,93018222=>1,93016482=>1,92784058=>1,92783330=>1,92784060=>1,92784397=>1,92788745=>1,92784398=>1,92782209=>1,92781915=>1,92780945=>1,92780568=>1,92780973=>1,92781113=>1,92781129=>1,92788746=>1,92789652=>1,92792120=>1,92792106=>1,92794711=>1,92797671=>1,93014551=>1,92798499=>1,92792105=>1,92792104=>1,92790608=>1,92789655=>1,92790611=>1,92790661=>1,92792070=>1,93745565=>1,93768880=>1,94874176=>1,94844370=>1,95194071=>1,95206787=>1,95404533=>1,95392689=>1,94821994=>1,94817405=>1,94718118=>1,94717360=>1,94750990=>1,94751555=>1,94797722=>1,94797537=>1,95404613=>1,95412564=>1,201872562=>1,96306255=>1,96306854=>1,96306997=>1,96307414=>1,96307353=>1,96305851=>1,96305813=>1,95569502=>1,95414614=>1,95611429=>1,96116526=>1,96287278=>1,94699391=>1,94696796=>1,93943393=>1,93907209=>1,94008498=>1,94196443=>1,94331425=>1,94273153=>1,93907201=>1,93779785=>1,93769942=>1,93768943=>1,93773193=>1,93773265=>1,93775833=>1,94387728=>1,94388050=>1,94641739=>1,94435148=>1,94684541=>1,94686305=>1,94690811=>1,94687893=>1,94435132=>1,94435091=>1,94394786=>1,94392037=>1,94427806=>1,94432645=>1,94435088=>1,96308451=>1,203619524=>1,387712873=>1,387573629=>1,387716030=>1,387716696=>1,387717410=>1,387716842=>1,387568305=>1,387504434=>1,386977899=>1,318243157=>1,387231941=>1,387457666=>1,387491418=>1,387487141=>1,387719300=>1,387722740=>1,391702533=>1,391696496=>1,391704074=>1,391704236=>1,391759547=>1,391704468=>1,391672187=>1,387962721=>1,387742859=>1,387732455=>1,387758653=>1,387774628=>1,387915489=>1,387775074=>1,317982001=>1,313853221=>1,249191852=>1,249191488=>1,249191989=>1,249193164=>1,249208296=>1,249193937=>1,249191475=>1,249190516=>1,249188292=>1,249188276=>1,249188646=>1,249188953=>1,249190463=>1,249189706=>1,249212421=>1,249212697=>1,307363934=>1,259880840=>1,307364744=>1,307364804=>1,310182366=>1,307364813=>1,249230502=>1,249229557=>1,249215182=>1,249213679=>1,249222444=>1,249223256=>1,249223978=>1,391840323=>1,391856651=>1,392790394=>1,392760187=>1,392801986=>1,393101367=>1,393660953=>1,393640045=>1,392705401=>1,392705387=>1,392696301=>1,392695326=>1,392696303=>1,392696317=>1,392705370=>1,392705363=>1,393907456=>1,400720100=>1,401335149=>1,401335148=>1,401478117=>1,401528175=>1,401541776=>1,401540990=>1,401335146=>1,401182495=>1,400722237=>1,400721028=>1,400802939=>1,400803214=>1,401145940=>1,400803426=>1,392694958=>1,392694926=>1,391961450=>1,391961412=>1,392045668=>1,392046319=>1,392062357=>1,392052644=>1,391960443=>1,391959624=>1,391909605=>1,391871612=>1,391910257=>1,391910730=>1,391919335=>1,391912050=>1,392063088=>1,392083341=>1,392395806=>1,392248604=>1,392561589=>1,392571634=>1,392694919=>1,392601719=>1,392130821=>1,392112925=>1,392093646=>1,392091427=>1,392099974=>1,392104239=>1,392104660=>1,249188204=>1,249187776=>1,241568793=>1,241394209=>1,241573891=>1,241573985=>1,241576243=>1,241576241=>1,241373995=>1,241373511=>1,241293831=>1,241242013=>1,241294905=>1,241316593=>1,241357379=>1,241331756=>1,241592898=>1,241752358=>1,242661513=>1,242408196=>1,242690240=>1,242690448=>1,242691299=>1,242690969=>1,242143349=>1,241891170=>1,241889669=>1,241786656=>1,241889999=>1,241890866=>1,241891148=>1,241891009=>1,241240691=>1,241231904=>1,214895892=>1,214890719=>1,222666014=>1,223030271=>1,223118333=>1,223095942=>1,214890710=>1,214825229=>1,211598487=>1,211356930=>1,212232444=>1,212394767=>1,213359421=>1,212858226=>1,223352529=>1,223414417=>1,239051300=>1,238362993=>1,239052092=>1,239067212=>1,241220347=>1,241194163=>1,238103074=>1,237472774=>1,236320643=>1,236113757=>1,236772723=>1,236801642=>1,237000891=>1,242692805=>1,242692835=>1,247951225=>1,247951043=>1,247951795=>1,248001875=>1,248159705=>1,248146946=>1,247950663=>1,247950623=>1,247901265=>1,247135935=>1,247910873=>1,247910885=>1,247949696=>1,247949605=>1,248178225=>1,248198359=>1,248947322=>1,248944669=>1,249181645=>1,249187341=>1,249187633=>1,249187433=>1,248936218=>1,248928727=>1,248446986=>1,248236273=>1,248447034=>1,248448095=>1,248463248=>1,248449962=>1,247134468=>1,247133126=>1,244055010=>1,244053464=>1,244055070=>1,244094750=>1,244145489=>1,244112710=>1,244044247=>1,244038658=>1,242693565=>1,242693045=>1,243558451=>1,243854465=>1,243854486=>1,243854468=>1,244169618=>1,244188193=>1,245532981=>1,245532275=>1,245858288=>1,247105131=>1,247127773=>1,247109079=>1,245444008=>1,245436183=>1,244409171=>1,244404696=>1,244476545=>1,244852162=>1,244852167=>1,92780430=>1,92776044=>1,30264275=>1,30032243=>1,30264375=>1,30265264=>1,30364362=>1,30359234=>1,29766423=>1,29707599=>1,29467227=>1,29300041=>1,29467259=>1,29467424=>1,29691537=>1,29691494=>1,30499811=>1,30505527=>1,32797712=>1,32303380=>1,32797867=>1,33515012=>1,35207760=>1,34482656=>1,32124210=>1,31942863=>1,30522548=>1,30522547=>1,30522550=>1,30894661=>1,31500643=>1,29029876=>1,29016066=>1,28554550=>1,28553253=>1,28555093=>1,28555097=>1,28555117=>1,28555101=>1,28548329=>1,28545689=>1,28259346=>1,28259314=>1,28259350=>1,28288345=>1,28544946=>1,28309458=>1,28555769=>1,28555773=>1,28975666=>1,28559634=>1,28975667=>1,28985572=>1,29000075=>1,28989331=>1,28558885=>1,28558865=>1,28556761=>1,28556634=>1,28556925=>1,28557865=>1,28558601=>1,35208224=>1,36115862=>1,45879464=>1,45879404=>1,46220369=>1,48336262=>1,48405584=>1,48359260=>1,45819503=>1,45818503=>1,45626114=>1,45621536=>1,45703937=>1,45716654=>1,45717261=>1,45716823=>1,48534054=>1,48534055=>1,49319228=>1,49318540=>1,49335265=>1,49349879=>1,49460202=>1,49366152=>1,49307988=>1,49294096=>1,48669950=>1,48666932=>1,48746809=>1,48951228=>1,49287423=>1,45587202=>1,43730704=>1,39559377=>1,39525342=>1,39604856=>1,39628207=>1,39677632=>1,39647857=>1,39520826=>1,39310946=>1,37176347=>1,36953429=>1,37760029=>1,38876683=>1,39215681=>1,39116190=>1,39710309=>1,39711802=>1,40819503=>1,40800902=>1,40846876=>1,41662958=>1,42720863=>1,42462956=>1,40798318=>1,40778820=>1,39848999=>1,39751691=>1,40360457=>1,40560471=>1,40766333=>1,28259310=>1,28259304=>1,19016117=>1,18890242=>1,19047225=>1,19060962=>1,19983379=>1,19973325=>1,18876107=>1,18152034=>1,17094540=>1,17094513=>1,17405510=>1,18151941=>1,18152033=>1,18151978=>1,19984131=>1,19984513=>1,27272417=>1,27270119=>1,27272507=>1,27306320=>1,27402809=>1,27332295=>1,27269647=>1,27267986=>1,22361506=>1,19985326=>1,22515468=>1,22872767=>1,27266892=>1,16953763=>1,16952145=>1,16884374=>1,16884202=>1,16884847=>1,16885188=>1,16885425=>1,16885386=>1,16884144=>1,16879227=>1,16839605=>1,16839008=>1,16840524=>1,16840997=>1,16841808=>1,16841753=>1,16885490=>1,16885844=>1,16889114=>1,16889098=>1,16889199=>1,16889230=>1,16890941=>1,16889242=>1,16888434=>1,16887428=>1,16886496=>1,16886279=>1,16886558=>1,16886909=>1,16887304=>1,27403731=>1,27449896=>1,28097739=>1,28096354=>1,28107925=>1,28109182=>1,28115049=>1,28113968=>1,28094549=>1,28094116=>1,28090500=>1,28090466=>1,28090934=>1,28092182=>1,28093859=>1,28092401=>1,28115409=>1,28115765=>1,28257920=>1,28257817=>1,28257950=>1,28257953=>1,28258513=>1,28258215=>1,28257669=>1,28257410=>1,28225839=>1,28116845=>1,28242034=>1,28242754=>1,28256986=>1,28018744=>1,28018380=>1,27486132=>1,27485606=>1,27486442=>1,27632540=>1,27635809=>1,27634362=>1,27473100=>1,27472857=>1,27450075=>1,27449972=>1,27469862=>1,27470428=>1,27471690=>1,27470587=>1,27641245=>1,27641376=>1,27905720=>1,27905032=>1,27915142=>1,27915769=>1,27993037=>1,27986225=>1,27904764=>1,27903685=>1,27855557=>1,27650426=>1,27856728=>1,27902468=>1,27902541=>1,49479292=>1,49628246=>1,87613757=>1,87590534=>1,87648082=>1,87677305=>1,87892543=>1,87708862=>1,87590163=>1,87559196=>1,87559177=>1,87364321=>1,87559178=>1,87559181=>1,87559191=>1,87559189=>1,87893006=>1,87924951=>1,87951016=>1,87950995=>1,87951018=>1,87951019=>1,87951062=>1,87951061=>1,87950994=>1,87950992=>1,87925592=>1,87925542=>1,87929356=>1,87929699=>1,87949564=>1,87363767=>1,87284344=>1,86809307=>1,86797073=>1,86809308=>1,86852155=>1,86853660=>1,86853649=>1,86795710=>1,86795169=>1,86489102=>1,86473824=>1,86497430=>1,86497550=>1,86757829=>1,86497923=>1,86854106=>1,86854591=>1,86862648=>1,86860822=>1,86862896=>1,86863037=>1,87280881=>1,86863166=>1,86860399=>1,86860339=>1,86855683=>1,86854929=>1,86855685=>1,86855689=>1,86860159=>1,87951063=>1,87953901=>1,92755223=>1,92738853=>1,92762914=>1,92772495=>1,92773241=>1,92773070=>1,92404397=>1,92311439=>1,90548286=>1,90536183=>1,90649828=>1,90728991=>1,90729103=>1,90728998=>1,92773989=>1,92774254=>1,16838796=>1,92775393=>1,92778559=>1,92778617=>1,92779984=>1,92779192=>1,92775350=>1,92775241=>1,92774717=>1,92774272=>1,92774961=>1,92775004=>1,92775129=>1,90531969=>1,90531654=>1,89048782=>1,89018333=>1,89079948=>1,89080993=>1,89081961=>1,89081518=>1,89015216=>1,88297830=>1,87954826=>1,87954825=>1,87954827=>1,88052932=>1,88054057=>1,88053978=>1,89085396=>1,89088372=>1,89331053=>1,89235710=>1,90522040=>1,90522216=>1,90531410=>1,90530452=>1,89170868=>1,89128809=>1,89089213=>1,89089054=>1,89090583=>1,89110630=>1,89115126=>1,86473282=>1,86471232=>1,84504068=>1,84503640=>1,84504098=>1,84504300=>1,84505851=>1,84505829=>1,84503639=>1,84503638=>1,84496681=>1,84496282=>1,84497356=>1,84498167=>1,84502214=>1,84501035=>1,84508858=>1,84509146=>1,84516246=>1,84515857=>1,84516427=>1,84519716=>1,84524852=>1,84519785=>1,84515186=>1,84514801=>1,84511882=>1,84511746=>1,84511939=>1,84512585=>1,84513483=>1,84496134=>1,84494907=>1,84462626=>1,84079493=>1,84465062=>1,84477826=>1,84477961=>1,84477948=>1,84074862=>1,84052599=>1,49838695=>1,49663389=>1,69156934=>1,69445221=>1,84049994=>1,83978524=>1,84482166=>1,84482779=>1,84490252=>1,84489772=>1,84490706=>1,84490889=>1,84494312=>1,84491793=>1,84489108=>1,84488788=>1,84484381=>1,84484079=>1,84486819=>1,84486915=>1,84486992=>1,84525964=>1,84526523=>1,86462053=>1,86461904=>1,86462185=>1,86462216=>1,86462599=>1,86462492=>1,86461455=>1,86452799=>1,86245026=>1,86244343=>1,86444989=>1,86444991=>1,86452798=>1,86445795=>1,86462873=>1,86463168=>1,86466446=>1,86465735=>1,86471186=>1,86471190=>1,86471198=>1,86471192=>1,86464892=>1,86464566=>1,86463705=>1,86463449=>1,86464058=>1,86464206=>1,86464565=>1,86242831=>1,86206931=>1,84553550=>1,84553276=>1,84643757=>1,84684629=>1,84716708=>1,84715420=>1,84552678=>1,84552309=>1,84534123=>1,84530380=>1,84538156=>1,84540906=>1,84552216=>1,84551876=>1,84892244=>1,85044307=>1,85739005=>1,85737045=>1,86160632=>1,86161178=>1,86176879=>1,86161357=>1,85684438=>1,85378007=>1,85172839=>1,85167608=>1,85178405=>1,85181877=>1,85185095=>1,92779989=>1,);?>
1
+ <?php return array(90614272=>90614527,87957504=>87965695,87954832=>87955455,87954432=>87954823,87951616=>87952383,87951064=>87951359,87951024=>87951055,87951000=>87951015,87950848=>87950991,87560192=>87560447,96753786=>1,96750295=>1,96755692=>1,96758221=>1,96334811=>1,96767754=>1,96749471=>1,96748273=>1,96742386=>1,96740374=>1,96742536=>1,96747828=>1,96748194=>1,96767756=>1,96767759=>1,96789409=>1,96317236=>1,96792434=>1,96886342=>1,96314902=>1,96317198=>1,96317546=>1,96317665=>1,96322734=>1,96767908=>1,96779884=>1,96784077=>1,96784388=>1,96739152=>1,96736341=>1,96358727=>1,96358725=>1,96358730=>1,96358754=>1,96362139=>1,96362067=>1,96358712=>1,96358703=>1,96346851=>1,96346817=>1,96353448=>1,96358336=>1,96358374=>1,96362597=>1,96362730=>1,96734771=>1,96346721=>1,96346703=>1,96735618=>1,96736261=>1,96734287=>1,96733846=>1,96394904=>1,96394809=>1,96397573=>1,96731285=>1,96731521=>1,96346757=>1,96960897=>1,100614293=>1,100558192=>1,100618267=>1,134427116=>1,134510631=>1,134509886=>1,100245457=>1,100245446=>1,99585015=>1,99385148=>1,100139874=>1,100193042=>1,100242841=>1,100241828=>1,134805367=>1,135364537=>1,136092976=>1,136043080=>1,136291851=>1,136646364=>1,136851752=>1,136811384=>1,136041883=>1,135993498=>1,135937349=>1,135873006=>1,135937350=>1,135937351=>1,135952853=>1,135937352=>1,99121096=>1,98860662=>1,96970011=>1,96966273=>1,96970703=>1,96977573=>1,97011242=>1,96989301=>1,96966013=>1,96964332=>1,96961985=>1,96961212=>1,96963718=>1,96964208=>1,96964291=>1,96964220=>1,97011244=>1,97011246=>1,98736675=>1,98719315=>1,98831698=>1,98840273=>1,98845112=>1,98841172=>1,98538505=>1,98395043=>1,97152452=>1,97013645=>1,97414791=>1,98340609=>1,98367775=>1,96314781=>1,96311893=>1,93980404=>1,93980322=>1,94000307=>1,94000622=>1,94010430=>1,94008498=>1,93901263=>1,93779786=>1,93769942=>1,93768943=>1,93773193=>1,93773265=>1,93779785=>1,93775195=>1,94025707=>1,94027539=>1,94415521=>1,94415511=>1,94415569=>1,94416109=>1,94419162=>1,94417255=>1,94414941=>1,94394786=>1,94320133=>1,94196443=>1,94320144=>1,94381046=>1,94387728=>1,93768880=>1,93715036=>1,92793025=>1,92792070=>1,92797671=>1,92798499=>1,93129046=>1,92968340=>1,92788745=>1,92784398=>1,92784053=>1,92783330=>1,92784058=>1,92784060=>1,92784397=>1,93132403=>1,93272533=>1,93673343=>1,93673313=>1,93673431=>1,93677963=>1,93715011=>1,93714999=>1,93673303=>1,93672124=>1,93427506=>1,93400776=>1,93500650=>1,93520205=>1,93538533=>1,94419289=>1,94419335=>1,96192484=>1,96190965=>1,96287278=>1,96305813=>1,96306255=>1,96305851=>1,96152139=>1,96127848=>1,95393432=>1,95380993=>1,95393433=>1,95393447=>1,95414614=>1,96306309=>1,96306677=>1,136852424=>1,96311737=>1,96311969=>1,96312632=>1,96313695=>1,96312781=>1,96309893=>1,96309268=>1,96307353=>1,96306854=>1,96308182=>1,96308854=>1,96308947=>1,95374983=>1,95206787=>1,94821497=>1,94732592=>1,94853216=>1,94863679=>1,95166658=>1,94895225=>1,94716236=>1,94696425=>1,94432645=>1,94427992=>1,94435088=>1,94435091=>1,94435132=>1,95166682=>1,95166697=>1,95168016=>1,95167689=>1,95168017=>1,95168074=>1,95170356=>1,95168366=>1,95167000=>1,95166965=>1,95166773=>1,95166698=>1,95166925=>1,95166926=>1,95166951=>1,96314521=>1,136852803=>1,387573629=>1,387561345=>1,387711968=>1,387712873=>1,387715531=>1,387713015=>1,387524058=>1,387504434=>1,307364804=>1,307364744=>1,307364813=>1,313853221=>1,387231941=>1,386977899=>1,387715987=>1,387716842=>1,387732455=>1,387732045=>1,387732866=>1,387732978=>1,387742859=>1,387737539=>1,387729735=>1,387729110=>1,387717806=>1,387717498=>1,387719025=>1,387721612=>1,387722937=>1,387722714=>1,307363934=>1,307363926=>1,248257331=>1,248193643=>1,248257443=>1,248455524=>1,248461479=>1,248457404=>1,248178225=>1,248159705=>1,247951225=>1,247910885=>1,247951795=>1,248001875=>1,248146946=>1,248085132=>1,248461630=>1,248471024=>1,249208164=>1,249194440=>1,249208444=>1,249211331=>1,302178771=>1,249225345=>1,249190538=>1,249189156=>1,248939230=>1,248545250=>1,249120379=>1,249182748=>1,249188292=>1,249187732=>1,387746100=>1,387758532=>1,392060427=>1,392060424=>1,392060429=>1,392060430=>1,392062357=>1,392060431=>1,392060423=>1,392060422=>1,391912050=>1,391910730=>1,392037379=>1,392045668=>1,392060421=>1,392052644=>1,392063088=>1,392098462=>1,392227197=>1,392130821=>1,392230553=>1,392276269=>1,392394788=>1,392286571=>1,392124942=>1,392124941=>1,392104660=>1,392104239=>1,392113067=>1,392120104=>1,392124940=>1,392124938=>1,391910257=>1,391909605=>1,387798850=>1,387798508=>1,387882466=>1,387893413=>1,391375469=>1,387915489=>1,387798282=>1,387798029=>1,387768765=>1,387768684=>1,387770857=>1,387774628=>1,387775074=>1,387774713=>1,391375498=>1,391644122=>1,391759547=>1,391704236=>1,391856651=>1,391859131=>1,391871612=>1,391865550=>1,391702675=>1,391696496=>1,391658348=>1,391644124=>1,391672187=>1,391680842=>1,391680843=>1,247910873=>1,247910705=>1,238103074=>1,236801642=>1,239067212=>1,241177679=>1,241251736=>1,241213624=>1,236587826=>1,236121188=>1,234956294=>1,234902011=>1,235059038=>1,236113757=>1,236121187=>1,236121186=>1,241264038=>1,241280289=>1,241340273=>1,241335719=>1,241349568=>1,241357595=>1,241566882=>1,241424250=>1,241335191=>1,241332396=>1,241286980=>1,241283257=>1,241288271=>1,241288414=>1,241320734=>1,241294288=>1,224182513=>1,224056917=>1,202775560=>1,201872509=>1,203619524=>1,205862930=>1,209884148=>1,209884147=>1,201872496=>1,201872454=>1,136933842=>1,136888763=>1,136933916=>1,136934006=>1,137139981=>1,136936984=>1,209893007=>1,210045382=>1,222743843=>1,215633579=>1,223029294=>1,223046080=>1,223350269=>1,223146285=>1,215633571=>1,214890731=>1,211906343=>1,210048454=>1,212848468=>1,213090768=>1,213151112=>1,241566898=>1,241567429=>1,244046434=>1,244045250=>1,244050450=>1,244053239=>1,244094750=>1,244084422=>1,243854486=>1,243854468=>1,242691628=>1,242691568=>1,242692879=>1,242693706=>1,243854465=>1,242980278=>1,244112710=>1,244128363=>1,245508585=>1,245444008=>1,245534476=>1,246543217=>1,247901265=>1,246543530=>1,245436183=>1,245288590=>1,244145489=>1,244136136=>1,244185710=>1,244188193=>1,245023200=>1,244961894=>1,242691168=>1,242690448=>1,241578057=>1,241578052=>1,241578088=>1,241578102=>1,241578838=>1,241578837=>1,241576241=>1,241573985=>1,241568026=>1,241567438=>1,241568793=>1,241568942=>1,241573891=>1,241568959=>1,241578989=>1,241581608=>1,241891322=>1,241890895=>1,241991834=>1,242007434=>1,242661710=>1,242371457=>1,241890374=>1,241889828=>1,241588701=>1,241586076=>1,241590586=>1,241595723=>1,241715746=>1,92782209=>1,92779989=>1,28983798=>1,28982225=>1,29003420=>1,29016066=>1,29189630=>1,29029876=>1,28559634=>1,28558885=>1,28556925=>1,28556761=>1,28557865=>1,28558482=>1,28558865=>1,28558601=>1,29383469=>1,29383474=>1,29724050=>1,29707599=>1,29766423=>1,29795660=>1,30060261=>1,30060258=>1,29691537=>1,29691494=>1,29467227=>1,29419061=>1,29467259=>1,29467424=>1,29563908=>1,28555773=>1,28555769=>1,28146167=>1,28143385=>1,28201001=>1,28206997=>1,28242170=>1,28227188=>1,28141123=>1,28117259=>1,28063759=>1,28019320=>1,28070211=>1,28070560=>1,28116041=>1,28097739=>1,28242459=>1,28242902=>1,28553253=>1,28544946=>1,28555035=>1,28555097=>1,28555117=>1,28555101=>1,28290401=>1,28260674=>1,28259239=>1,28258976=>1,28259469=>1,28259506=>1,28259517=>1,30060265=>1,30060268=>1,45357574=>1,45351665=>1,45436437=>1,45587202=>1,45717281=>1,45703937=>1,45337363=>1,45153784=>1,40846876=>1,40819503=>1,41452049=>1,42380365=>1,44490548=>1,42462956=>1,45818503=>1,45879347=>1,48700664=>1,48669950=>1,48746809=>1,48898851=>1,49309950=>1,49283526=>1,48567330=>1,48534055=>1,45977700=>1,45977696=>1,47976862=>1,48336262=>1,48359260=>1,40800902=>1,40766333=>1,32124210=>1,30522550=>1,32797712=>1,33420029=>1,35399949=>1,33934801=>1,30522548=>1,30522547=>1,30264581=>1,30060270=>1,30359234=>1,30365165=>1,30505527=>1,30499811=>1,35739738=>1,35985876=>1,39309925=>1,39298615=>1,39705635=>1,39710423=>1,40360457=>1,40070210=>1,39296958=>1,39130451=>1,37798783=>1,37176375=>1,38986082=>1,39062428=>1,39114630=>1,27997404=>1,27997373=>1,16889158=>1,16889145=>1,16889248=>1,16889263=>1,16889301=>1,16889287=>1,16889107=>1,16882818=>1,16879298=>1,16879278=>1,16880758=>1,16880774=>1,16881838=>1,16881131=>1,16890973=>1,16891664=>1,16898915=>1,16898415=>1,16908227=>1,16952592=>1,17094654=>1,17094578=>1,16898375=>1,16898321=>1,16891754=>1,16891736=>1,16891791=>1,16891888=>1,16898271=>1,16879173=>1,16879121=>1,16839709=>1,16839615=>1,16839915=>1,16839931=>1,16840169=>1,16839953=>1,16839614=>1,16839361=>1,16836236=>1,16835272=>1,16838267=>1,16838693=>1,16839172=>1,16839158=>1,16840259=>1,16840284=>1,16842085=>1,16842020=>1,16842356=>1,16842375=>1,16879114=>1,16842716=>1,16841897=>1,16841685=>1,16841184=>1,16840918=>1,16841211=>1,16841373=>1,16841677=>1,17370675=>1,18890242=>1,27459886=>1,27451351=>1,27463357=>1,27469998=>1,27471346=>1,27470213=>1,27450527=>1,27450194=>1,27449933=>1,27449532=>1,27449934=>1,27449951=>1,27449959=>1,27449952=>1,27471791=>1,27479779=>1,27650581=>1,27639757=>1,27850813=>1,27853860=>1,27902423=>1,27855736=>1,27639492=>1,27639037=>1,27535602=>1,27514757=>1,27632358=>1,27635770=>1,27638987=>1,27402795=>1,27402135=>1,22361506=>1,22312853=>1,22390265=>1,22515468=>1,27265058=>1,22872767=>1,20605637=>1,19962024=>1,19016117=>1,18898953=>1,19047225=>1,19060962=>1,19189977=>1,19189913=>1,27265718=>1,27266327=>1,27306614=>1,27304093=>1,27342375=>1,27396025=>1,27402093=>1,27398992=>1,27272328=>1,27271755=>1,27267930=>1,27267560=>1,27268903=>1,27268963=>1,27269048=>1,49327232=>1,49337158=>1,87623216=>1,87623211=>1,87624683=>1,87629937=>1,87677305=>1,87630483=>1,87623208=>1,87597059=>1,87559194=>1,87559193=>1,87559195=>1,87559196=>1,87590534=>1,87590163=>1,87695312=>1,87892543=>1,87951016=>1,87950995=>1,87951018=>1,87951019=>1,87951062=>1,87951061=>1,87950994=>1,87950992=>1,87924951=>1,87924798=>1,87924981=>1,87925542=>1,87929356=>1,87559191=>1,87559189=>1,86852357=>1,86797073=>1,86854106=>1,86854591=>1,86860159=>1,86855683=>1,86795710=>1,86530678=>1,86473824=>1,86471232=>1,86497550=>1,86497815=>1,86530602=>1,86497923=>1,86860339=>1,86860399=>1,87363767=>1,87284766=>1,87449523=>1,87559177=>1,87559181=>1,87559178=>1,87284344=>1,87280881=>1,86862896=>1,86862648=>1,86863037=>1,86863166=>1,87113031=>1,87951063=>1,87954825=>1,92772495=>1,92772418=>1,92773070=>1,92773241=>1,92774254=>1,92773989=>1,92770755=>1,92762914=>1,92647621=>1,92404397=>1,92738853=>1,92740523=>1,92755223=>1,92750225=>1,92774272=>1,92774961=>1,16834714=>1,92779984=>1,92780514=>1,92780568=>1,92781129=>1,92780945=>1,92779192=>1,92778617=>1,92775129=>1,92775004=>1,92775736=>1,92776044=>1,92778559=>1,90810087=>1,90759830=>1,89052913=>1,89036601=>1,89080993=>1,89081518=>1,89083532=>1,89083522=>1,89017458=>1,88948051=>1,87954827=>1,87954826=>1,87955723=>1,88053899=>1,88547757=>1,88055186=>1,89085396=>1,89089213=>1,90531654=>1,90531410=>1,90531969=>1,90548286=>1,90728998=>1,90728991=>1,90530452=>1,90504601=>1,89138987=>1,89090583=>1,89331053=>1,89677035=>1,90504600=>1,86471198=>1,86471195=>1,84490889=>1,84490252=>1,84491793=>1,84492460=>1,84496134=>1,84494907=>1,84489772=>1,84489108=>1,84484381=>1,84482779=>1,84486915=>1,84486992=>1,84488891=>1,84488788=>1,84496282=>1,84496681=>1,84504068=>1,84503640=>1,84504300=>1,84505829=>1,84505896=>1,84505851=>1,84503639=>1,84502214=>1,84497940=>1,84497356=>1,84498339=>1,84501035=>1,84501318=>1,84482166=>1,84477961=>1,84029989=>1,84029588=>1,84030702=>1,84030703=>1,84030715=>1,84030704=>1,83954696=>1,69156934=>1,49471212=>1,49432101=>1,49481893=>1,49670425=>1,49759149=>1,49670580=>1,84030716=>1,84030885=>1,84135671=>1,84131026=>1,84462626=>1,84465062=>1,84477948=>1,84477826=>1,84127764=>1,84079494=>1,84052599=>1,84049994=>1,84074862=>1,84079372=>1,84079493=>1,84508858=>1,84509146=>1,86461598=>1,86452368=>1,86461904=>1,86462053=>1,86462492=>1,86462185=>1,86447687=>1,86445795=>1,86168141=>1,86161357=>1,86169865=>1,86206931=>1,86245026=>1,86244343=>1,86462599=>1,86462873=>1,86466446=>1,86465735=>1,86469088=>1,86471186=>1,86471192=>1,86471190=>1,86464892=>1,86464566=>1,86463449=>1,86463168=>1,86463705=>1,86464206=>1,86464565=>1,86161178=>1,85744853=>1,84515857=>1,84515186=>1,84516427=>1,84519716=>1,84525964=>1,84524852=>1,84515026=>1,84514801=>1,84511882=>1,84511746=>1,84511939=>1,84512585=>1,84513483=>1,84526523=>1,84530380=>1,85192074=>1,85181877=>1,85378007=>1,85558889=>1,85737045=>1,85562691=>1,85178405=>1,85167608=>1,84540906=>1,84534123=>1,84550590=>1,84570205=>1,84643757=>1,92781261=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-1.php CHANGED
@@ -1 +1 @@
1
- <?php return array(532703362=>1,532351784=>1,532703509=>1,532703936=>1,532722426=>1,532717040=>1,532320344=>1,532271086=>1,532214520=>1,532214519=>1,532214521=>1,532224769=>1,532225427=>1,532224971=>1,532729036=>1,532735161=>1,533417968=>1,533410901=>1,533441032=>1,533441361=>1,533452091=>1,533445194=>1,533407021=>1,533402640=>1,532751337=>1,532750684=>1,532777742=>1,533184529=>1,533402110=>1,533184532=>1,532214512=>1,532214507=>1,531448941=>1,531448939=>1,531448993=>1,531449240=>1,531450441=>1,531449251=>1,531448886=>1,531432370=>1,531263650=>1,531261773=>1,531340140=>1,531362867=>1,531431672=>1,531374031=>1,531478862=>1,531478902=>1,532214323=>1,532214316=>1,532214350=>1,532214389=>1,532214474=>1,532214445=>1,531858474=>1,531775532=>1,531495050=>1,531490570=>1,531666192=>1,531666828=>1,531692858=>1,533459023=>1,533459582=>1,607646524=>1,607645629=>1,608324738=>1,608324742=>1,608355234=>1,608354810=>1,607645465=>1,607644188=>1,604477213=>1,604466232=>1,606440201=>1,607642769=>1,607644068=>1,607643887=>1,608355236=>1,608355237=>1,608499581=>1,608470691=>1,608508144=>1,608547921=>1,608578201=>1,608576120=>1,608470289=>1,608470265=>1,608367506=>1,608356130=>1,608438001=>1,608448043=>1,608463953=>1,608449662=>1,604108103=>1,587775066=>1,533873046=>1,533872771=>1,533881011=>1,533883210=>1,534155442=>1,533886290=>1,533805941=>1,533804112=>1,533723974=>1,533660692=>1,533733336=>1,533735721=>1,533745524=>1,533743533=>1,534513049=>1,534513058=>1,534594548=>1,534553151=>1,534668741=>1,534678798=>1,587235124=>1,551063131=>1,534539586=>1,534523142=>1,534513551=>1,534513096=>1,534515667=>1,534522518=>1,534522709=>1,531255849=>1,531190721=>1,521767525=>1,521743415=>1,521768340=>1,521930253=>1,521971886=>1,521931686=>1,521705393=>1,521620516=>1,521383954=>1,521365806=>1,521537479=>1,521562223=>1,521612180=>1,521602885=>1,521979190=>1,522002961=>1,522264496=>1,522212424=>1,522303765=>1,522619197=>1,522836985=>1,522836964=>1,522177296=>1,522145329=>1,522144303=>1,522144222=>1,522144693=>1,522144937=>1,522145266=>1,522145090=>1,521321533=>1,521317929=>1,521171249=>1,521171161=>1,521171389=>1,521171392=>1,521171844=>1,521171683=>1,521171129=>1,521171059=>1,521045698=>1,521045441=>1,521093850=>1,521143865=>1,521148485=>1,521146545=>1,521171999=>1,521172159=>1,521272583=>1,521260239=>1,521273568=>1,521283494=>1,521309304=>1,521306097=>1,521248570=>1,521208260=>1,521174335=>1,521172398=>1,521176774=>1,521203718=>1,521204285=>1,522857241=>1,522878645=>1,530767018=>1,530766919=>1,530767465=>1,530767920=>1,530768572=>1,530768252=>1,530763617=>1,530762446=>1,530247687=>1,529959761=>1,530732281=>1,530737461=>1,530762175=>1,530742032=>1,530770123=>1,530772097=>1,530825254=>1,530782025=>1,530827835=>1,531147914=>1,531187393=>1,531185874=>1,530778095=>1,530777939=>1,530774004=>1,530773381=>1,530774395=>1,530774495=>1,530775645=>1,529849277=>1,529849268=>1,523513308=>1,523218794=>1,528503831=>1,528590414=>1,528596379=>1,528591902=>1,523217041=>1,523147455=>1,522918046=>1,522913643=>1,522939507=>1,522949220=>1,523035152=>1,522949370=>1,528605177=>1,528664898=>1,529606544=>1,529003286=>1,529668741=>1,529708666=>1,529849167=>1,529799219=>1,528924515=>1,528913250=>1,528696140=>1,528685263=>1,528743204=>1,528743270=>1,528781834=>1,608596274=>1,608602081=>1,609220481=>1,609220439=>1,609220515=>1,609220591=>1,609231351=>1,609228685=>1,609220377=>1,609220337=>1,609219494=>1,609219245=>1,609219531=>1,609220233=>1,609220319=>1,609220295=>1,609231585=>1,609235679=>1,609287555=>1,609285794=>1,609288633=>1,609288910=>1,609291978=>1,609289152=>1,609283992=>1,609266814=>1,609237994=>1,609237346=>1,609241880=>1,609244829=>1,609262839=>1,609250201=>1,609219225=>1,609219191=>1,609134206=>1,609125473=>1,609148108=>1,609148249=>1,609169079=>1,609157987=>1,609125451=>1,609124643=>1,609070820=>1,609064873=>1,609098244=>1,609101549=>1,609104969=>1,609102830=>1,609180235=>1,609180410=>1,609218796=>1,609218764=>1,609218808=>1,609218874=>1,609219020=>1,609218901=>1,609218621=>1,609218609=>1,609199791=>1,609198654=>1,609211944=>1,609214265=>1,609218565=>1,609293192=>1,609296004=>1,609446217=>1,609444150=>1,609448270=>1,609455891=>1,609483394=>1,609476991=>1,609443954=>1,609442045=>1,609423754=>1,609419458=>1,609423957=>1,609425253=>1,609431558=>1,609428033=>1,609504481=>1,609507856=>1,610644368=>1,609646290=>1,610685752=>1,611216938=>1,618695023=>1,611216940=>1,609615069=>1,609614402=>1,609573044=>1,609517735=>1,609573727=>1,609597102=>1,609614265=>1,609416264=>1,609383611=>1,609323003=>1,609322704=>1,609325596=>1,609329448=>1,609330032=>1,609329453=>1,609317535=>1,609317391=>1,609298910=>1,609296980=>1,609299643=>1,609303175=>1,609310164=>1,609305447=>1,609331111=>1,609331191=>1,609362922=>1,609362901=>1,609363909=>1,609365660=>1,609380394=>1,609365837=>1,609362528=>1,609353545=>1,609335341=>1,609333226=>1,609340055=>1,609340388=>1,609352922=>1,609058308=>1,609053535=>1,608760447=>1,608760370=>1,608765234=>1,608766512=>1,608775420=>1,608770581=>1,608760361=>1,608757171=>1,608738218=>1,608737771=>1,608742636=>1,608742730=>1,608757094=>1,608746891=>1,608776321=>1,608777416=>1,608782881=>1,608782562=>1,608783913=>1,608786893=>1,608789019=>1,608788253=>1,608782480=>1,608780130=>1,608778623=>1,608778504=>1,608778771=>1,608778938=>1,608779965=>1,608779140=>1,608737454=>1,608737395=>1,608673478=>1,608672431=>1,608712103=>1,608714787=>1,608716876=>1,608716318=>1,608669548=>1,608666378=>1,608622716=>1,608621554=>1,608643238=>1,608655412=>1,608663360=>1,608659558=>1,608717361=>1,608720511=>1,608731951=>1,608730912=>1,608734717=>1,608735147=>1,608735863=>1,608735723=>1,608729432=>1,608729130=>1,608720887=>1,608720613=>1,608723886=>1,608727626=>1,608729046=>1,608790777=>1,608791548=>1,608949961=>1,608949711=>1,608956721=>1,608957385=>1,608969836=>1,608957981=>1,608949687=>1,608949496=>1,608920986=>1,608919983=>1,608921194=>1,608921258=>1,608936734=>1,608927173=>1,608976857=>1,608978350=>1,609027800=>1,609027764=>1,609038025=>1,609042867=>1,609051167=>1,609050349=>1,609022598=>1,609022061=>1,609001242=>1,609001033=>1,609003697=>1,609005294=>1,609020032=>1,608907232=>1,608906621=>1,608839166=>1,608834738=>1,608842129=>1,608843448=>1,608848077=>1,608847993=>1,608831270=>1,608812958=>1,608793173=>1,608792337=>1,608795688=>1,608796617=>1,608809736=>1,608797201=>1,608848746=>1,608848815=>1,608891734=>1,608890508=>1,608897416=>1,608901534=>1,608906478=>1,608903810=>1,608889387=>1,608888265=>1,608860548=>1,608855582=>1,608869519=>1,608875278=>1,608878345=>1,521045287=>1,520950734=>1,406281541=>1,406281500=>1,406284837=>1,406286837=>1,406289037=>1,406288777=>1,406280995=>1,406280350=>1,406278254=>1,406275055=>1,406278421=>1,406278691=>1,406279138=>1,406278981=>1,406352369=>1,406353597=>1,408493254=>1,408161349=>1,408496072=>1,408651558=>1,408965275=>1,408954430=>1,408158860=>1,407701809=>1,406387016=>1,406385209=>1,406868189=>1,406918769=>1,407606479=>1,407480546=>1,406270944=>1,406236015=>1,405842940=>1,405824829=>1,405868951=>1,405870102=>1,405891994=>1,405870257=>1,405622770=>1,405590109=>1,405404806=>1,405404745=>1,405404832=>1,405405114=>1,405570684=>1,405474893=>1,405898525=>1,405930645=>1,406030461=>1,406030160=>1,406036778=>1,406044227=>1,406145612=>1,406044321=>1,406029355=>1,406010959=>1,405932019=>1,405931427=>1,405935543=>1,405960625=>1,405966400=>1,408979590=>1,408989032=>1,411692016=>1,411689338=>1,411692319=>1,411692452=>1,411693850=>1,411692662=>1,411689143=>1,411668936=>1,411667249=>1,411667239=>1,411667270=>1,411667303=>1,411667370=>1,411667335=>1,411696391=>1,411696436=>1,411869527=>1,411863973=>1,412053155=>1,412053816=>1,412084336=>1,412082275=>1,411816401=>1,411810901=>1,411755389=>1,411753722=>1,411759101=>1,411795686=>1,411809957=>1,411667225=>1,411663387=>1,410018298=>1,410013557=>1,410087444=>1,410117644=>1,410221913=>1,410122893=>1,409711391=>1,409654446=>1,409021590=>1,409003645=>1,409037740=>1,409046683=>1,409186818=>1,409108669=>1,410223816=>1,410254294=>1,411444239=>1,411336612=>1,411479752=>1,411485820=>1,411615439=>1,411525672=>1,411181419=>1,410798873=>1,410428279=>1,410295431=>1,410605118=>1,410683014=>1,410790233=>1,405404705=>1,405402713=>1,404407299=>1,404049271=>1,404418838=>1,404506171=>1,404617119=>1,404615521=>1,404011329=>1,403702059=>1,403091038=>1,403080592=>1,403197102=>1,403440690=>1,403696245=>1,403579503=>1,404732295=>1,404917805=>1,404985137=>1,404984793=>1,404985140=>1,404985481=>1,404986384=>1,404986054=>1,404984659=>1,404984019=>1,404980962=>1,404980415=>1,404981527=>1,404982450=>1,404983355=>1,404982526=>1,403019773=>1,402940117=>1,401579322=>1,401576317=>1,401680796=>1,401877906=>1,402019491=>1,401912994=>1,401568101=>1,401566310=>1,401544723=>1,401544290=>1,401546012=>1,401546167=>1,401546722=>1,401546561=>1,402062564=>1,402100996=>1,402564830=>1,402564602=>1,402565095=>1,402641464=>1,402829240=>1,402712083=>1,402564484=>1,402554918=>1,402405077=>1,402100997=>1,402433584=>1,402494883=>1,402510065=>1,404986667=>1,404986669=>1,405335773=>1,405334726=>1,405335889=>1,405338291=>1,405338725=>1,405338494=>1,405334635=>1,405333546=>1,405011059=>1,405010537=>1,405011340=>1,405011448=>1,405333452=>1,405296052=>1,405339062=>1,405381714=>1,405397934=>1,405397810=>1,405398011=>1,405398652=>1,405402615=>1,405400964=>1,405396054=>1,405395029=>1,405392154=>1,405390025=>1,405394376=>1,405394453=>1,405394936=>1,405009610=>1,405009379=>1,404990777=>1,404990772=>1,404996869=>1,405000551=>1,405004169=>1,405004020=>1,404989871=>1,404989190=>1,404987804=>1,404986789=>1,404988391=>1,404988554=>1,404989164=>1,404989092=>1,405004187=>1,405004397=>1,405008023=>1,405006854=>1,405008094=>1,405008629=>1,405009360=>1,405008997=>1,405006310=>1,405006185=>1,405005038=>1,405004411=>1,405005219=>1,405005394=>1,405005529=>1,412084839=>1,412085841=>1,455712263=>1,455711913=>1,455718868=>1,455726086=>1,455732137=>1,455726902=>1,455711848=>1,455711828=>1,455710617=>1,455709555=>1,455710964=>1,455711020=>1,455711628=>1,455711233=>1,455733705=>1,455887891=>1,456012114=>1,456012039=>1,456012253=>1,456012315=>1,459876715=>1,459458444=>1,456009329=>1,456005021=>1,455888213=>1,455888183=>1,455888253=>1,455888571=>1,455912389=>1,455910991=>1,455709362=>1,455709102=>1,455698506=>1,455698496=>1,455698593=>1,455698838=>1,455699094=>1,455698901=>1,455698454=>1,455698450=>1,455256348=>1,455229677=>1,455276148=>1,455688289=>1,455689740=>1,455688882=>1,455699210=>1,455699316=>1,455706996=>1,455706539=>1,455707321=>1,455707742=>1,455708768=>1,455708093=>1,455699380=>1,455699378=>1,455699340=>1,455699337=>1,455699357=>1,455699358=>1,455699372=>1,459912521=>1,459953955=>1,466542906=>1,465562181=>1,466762202=>1,467422381=>1,469643211=>1,467888752=>1,465465608=>1,465443100=>1,462657789=>1,462657788=>1,462658314=>1,462674090=>1,465297322=>1,465297274=>1,469667361=>1,469668079=>1,520599590=>1,520568395=>1,520611805=>1,520611942=>1,520950050=>1,520651963=>1,520505057=>1,520504960=>1,469687307=>1,469669442=>1,520316197=>1,520327613=>1,520354622=>1,462657422=>1,462655994=>1,460983341=>1,460877858=>1,461046062=>1,461046178=>1,461046990=>1,461046185=>1,460877851=>1,460877842=>1,460271464=>1,460271461=>1,460540786=>1,460591774=>1,460877835=>1,460877360=>1,461047662=>1,461047729=>1,462492171=>1,461614338=>1,462524777=>1,462529381=>1,462654066=>1,462653347=>1,461610602=>1,461606962=>1,461571166=>1,461102564=>1,461573218=>1,461574006=>1,461582212=>1,455151519=>1,455138502=>1,414767710=>1,414630086=>1,414782394=>1,414870788=>1,414913007=>1,414874817=>1,414516839=>1,414452108=>1,414241275=>1,413959962=>1,414338406=>1,414368597=>1,414405827=>1,414379657=>1,414990636=>1,415114749=>1,416216437=>1,416150618=>1,416424674=>1,416543884=>1,416654738=>1,416607087=>1,415979933=>1,415787976=>1,415272390=>1,415254181=>1,415332323=>1,415516084=>1,415751934=>1,415602193=>1,413940164=>1,413930244=>1,412554935=>1,412438267=>1,412564383=>1,412782589=>1,412830815=>1,412829869=>1,412435799=>1,412367818=>1,412088994=>1,412085870=>1,412128940=>1,412318477=>1,412367801=>1,412353088=>1,412844882=>1,412881194=>1,413901403=>1,413860552=>1,413914620=>1,413919210=>1,413920853=>1,413919501=>1,413317761=>1,413186845=>1,412956984=>1,412951869=>1,413038851=>1,413173958=>1,413180616=>1,416677326=>1,416703875=>1,418282595=>1,418280082=>1,418365923=>1,418368775=>1,418407877=>1,418403000=>1,418258199=>1,418184841=>1,417966577=>1,417948771=>1,418004560=>1,418006126=>1,418145566=>1,418034952=>1,418546548=>1,418712614=>1,454005855=>1,453371743=>1,454091952=>1,454107514=>1,454906802=>1,454138016=>1,453301803=>1,453271886=>1,418996917=>1,418795523=>1,419058165=>1,419223907=>1,452988604=>1,417944500=>1,417944291=>1,417063250=>1,417050582=>1,417116766=>1,417346746=>1,417354176=>1,417350899=>1,417036392=>1,417022106=>1,416893758=>1,416825407=>1,416905440=>1,416951784=>1,417013877=>1,417013777=>1,417663829=>1,417691842=>1,417943225=>1,417942950=>1,417943627=>1,417943855=>1,417944111=>1,417944030=>1,417942814=>1,417942683=>1,417757958=>1,417714515=>1,417759386=>1,417764990=>1,417942127=>1,401543351=>1,);?>
1
+ <?php return array(522736008=>1,522735945=>1,522736246=>1,522736274=>1,522804807=>1,522736584=>1,522735791=>1,522715494=>1,522170701=>1,522145329=>1,522172124=>1,522264496=>1,522715429=>1,522715407=>1,522836964=>1,522922836=>1,523397406=>1,523370303=>1,523506752=>1,523552242=>1,528548988=>1,528547991=>1,523234970=>1,523220680=>1,523000796=>1,522949220=>1,523038175=>1,523132592=>1,523206110=>1,523198560=>1,522144937=>1,522144693=>1,521562223=>1,521537479=>1,521638486=>1,521638730=>1,521657783=>1,521641490=>1,521370105=>1,521353115=>1,521199818=>1,521173789=>1,521274524=>1,521309304=>1,521317564=>1,521317220=>1,521674487=>1,521743415=>1,521999586=>1,521991398=>1,522009668=>1,522144067=>1,522144303=>1,522144222=>1,521971886=>1,521955936=>1,521777867=>1,521768340=>1,521780347=>1,521930253=>1,521931686=>1,528550124=>1,528550515=>1,531432370=>1,531431672=>1,531448939=>1,531448993=>1,531449251=>1,531449240=>1,531374031=>1,531362867=>1,531247260=>1,531247240=>1,531255849=>1,531261773=>1,531340140=>1,531340135=>1,531450441=>1,531495050=>1,531858474=>1,531696615=>1,531873822=>1,531873947=>1,531888835=>1,531874018=>1,531692203=>1,531676105=>1,531495327=>1,531495326=>1,531661855=>1,531666879=>1,531672962=>1,531672872=>1,531190721=>1,531187393=>1,528705815=>1,528696140=>1,528715517=>1,528743204=>1,528784520=>1,528762599=>1,528690350=>1,528684198=>1,528590414=>1,528552529=>1,528596379=>1,528605177=>1,528664899=>1,528623661=>1,528913250=>1,529003286=>1,530247687=>1,529849277=>1,530730207=>1,530825254=>1,531185874=>1,530827835=>1,529849268=>1,529849181=>1,529708666=>1,529623563=>1,529813962=>1,529824080=>1,529849167=>1,521165805=>1,521159219=>1,456569890=>1,456567302=>1,456570499=>1,456570810=>1,456570819=>1,456570811=>1,456565466=>1,456267786=>1,455888183=>1,455887891=>1,455888213=>1,455888253=>1,456005021=>1,455888571=>1,456570901=>1,456570915=>1,460877360=>1,460602258=>1,460877835=>1,460877842=>1,460877858=>1,460877851=>1,460601411=>1,460591774=>1,459870121=>1,459289914=>1,459879481=>1,460132106=>1,460540786=>1,460268418=>1,455734011=>1,455732294=>1,455626919=>1,455278567=>1,455626922=>1,455635731=>1,455698448=>1,455689986=>1,455278425=>1,455256348=>1,454309600=>1,454134012=>1,454355676=>1,454674866=>1,455239753=>1,455235533=>1,455698450=>1,455698506=>1,455699380=>1,455699357=>1,455706618=>1,455712155=>1,455725232=>1,455712244=>1,455699356=>1,455699337=>1,455698901=>1,455698847=>1,455698930=>1,455699094=>1,455699330=>1,460936342=>1,460983341=>1,520316197=>1,469669442=>1,520327613=>1,520505057=>1,520600340=>1,520599590=>1,469668079=>1,469667361=>1,467232376=>1,467193842=>1,467374522=>1,467446462=>1,469647183=>1,469643211=>1,520600412=>1,520611942=>1,521045287=>1,520996603=>1,521045698=>1,521093850=>1,521100465=>1,521100101=>1,520994836=>1,520950734=>1,520628620=>1,520626788=>1,520629695=>1,520652980=>1,520950050=>1,467125938=>1,467101569=>1,461573734=>1,461573218=>1,461574098=>1,461582212=>1,461616670=>1,461614338=>1,461485674=>1,461133051=>1,461046178=>1,461046062=>1,461046185=>1,461046306=>1,461047729=>1,461047662=>1,462492171=>1,462524777=>1,465562181=>1,465490579=>1,466489165=>1,466796709=>1,466995471=>1,466958706=>1,465297294=>1,465297254=>1,462655994=>1,462653347=>1,462657422=>1,462658314=>1,465297081=>1,532000213=>1,532004026=>1,608949961=>1,608949904=>1,608958867=>1,608986241=>1,609000130=>1,608998570=>1,608949711=>1,608936734=>1,608924336=>1,608897265=>1,608925855=>1,608927111=>1,608933254=>1,608933218=>1,609002510=>1,609003829=>1,609056552=>1,609052097=>1,609058308=>1,609064873=>1,609081620=>1,609072007=>1,609048505=>1,609048330=>1,609021188=>1,609004910=>1,609026696=>1,609027608=>1,609046236=>1,609031566=>1,608892559=>1,608891539=>1,608796727=>1,608796639=>1,608797084=>1,608799052=>1,608812508=>1,608800096=>1,608796021=>1,608795252=>1,608782633=>1,608782601=>1,608785616=>1,608787663=>1,608793043=>1,608789625=>1,608842799=>1,608843411=>1,608855582=>1,608855406=>1,608860208=>1,608862990=>1,608889030=>1,608888640=>1,608855175=>1,608852988=>1,608843534=>1,608843531=>1,608847371=>1,608848077=>1,608852878=>1,609104882=>1,609106406=>1,609288761=>1,609288633=>1,609288910=>1,609290260=>1,609295127=>1,609295111=>1,609287858=>1,609287701=>1,609235679=>1,609231585=>1,609237994=>1,609248542=>1,609252184=>1,609250094=>1,609295945=>1,609298523=>1,609317998=>1,609311596=>1,609318066=>1,609319540=>1,609323057=>1,609319805=>1,609310426=>1,609308304=>1,609302557=>1,609300614=>1,609303691=>1,609305832=>1,609307324=>1,609231351=>1,609228840=>1,609185578=>1,609174926=>1,609198170=>1,609198994=>1,609216487=>1,609215163=>1,609172608=>1,609168417=>1,609125473=>1,609124821=>1,609132551=>1,609134206=>1,609159858=>1,609158025=>1,609218859=>1,609218950=>1,609220328=>1,609220305=>1,609220532=>1,609220542=>1,609228189=>1,609224001=>1,609220195=>1,609220076=>1,609219449=>1,609219043=>1,609219539=>1,609219806=>1,609219976=>1,608781088=>1,608779197=>1,534513096=>1,534513049=>1,534513505=>1,534513551=>1,534522709=>1,534522518=>1,534512853=>1,534155442=>1,533756909=>1,533747843=>1,533804112=>1,533869208=>1,533875309=>1,533873046=>1,534523142=>1,534678798=>1,606617021=>1,606615809=>1,606644186=>1,607067013=>1,607644188=>1,607644068=>1,606440201=>1,606380639=>1,604466232=>1,587235124=>1,604477213=>1,606083080=>1,606248940=>1,606248794=>1,533743533=>1,533735721=>1,532351784=>1,532320344=>1,532366885=>1,532701847=>1,532722426=>1,532703362=>1,532243839=>1,532225427=>1,532199488=>1,532188046=>1,532212784=>1,532223994=>1,532224971=>1,532224769=>1,532729036=>1,532735161=>1,533501703=>1,533393893=>1,533676145=>1,533719327=>1,533733336=>1,533726998=>1,533362696=>1,533362670=>1,532777742=>1,532776020=>1,533181826=>1,533184529=>1,533184532=>1,607645465=>1,607645629=>1,608722610=>1,608719800=>1,608731507=>1,608732575=>1,608743325=>1,608735733=>1,608716467=>1,608716118=>1,608666652=>1,608666378=>1,608670852=>1,608682381=>1,608704059=>1,608682891=>1,608743947=>1,608744178=>1,608776757=>1,608776229=>1,608777639=>1,608777853=>1,608778578=>1,608778418=>1,608776205=>1,608772737=>1,608749666=>1,608747433=>1,608757010=>1,608757094=>1,608771468=>1,608659558=>1,608657300=>1,608457901=>1,608457127=>1,608458242=>1,608458430=>1,608468871=>1,608468230=>1,608456647=>1,608449803=>1,608313866=>1,607646524=>1,608324290=>1,608367506=>1,608438640=>1,608368082=>1,608470060=>1,608470202=>1,608580882=>1,608579407=>1,608586467=>1,608592062=>1,608643241=>1,608592468=>1,608555350=>1,608540802=>1,608478506=>1,608471010=>1,608506659=>1,608515566=>1,608516235=>1,454107514=>1,454091952=>1,405005038=>1,405004524=>1,405005064=>1,405005219=>1,405005555=>1,405005529=>1,405004506=>1,405004411=>1,405001013=>1,405000837=>1,405002013=>1,405003034=>1,405004187=>1,405003731=>1,405005912=>1,405005956=>1,405010548=>1,405010537=>1,405011160=>1,405011340=>1,405123496=>1,405011448=>1,405009610=>1,405008997=>1,405006185=>1,405006037=>1,405006229=>1,405006854=>1,405008629=>1,405008094=>1,405000551=>1,405000057=>1,404984659=>1,404984490=>1,404984763=>1,404985137=>1,404985481=>1,404985140=>1,404984436=>1,404984085=>1,404983484=>1,404983320=>1,404983489=>1,404983928=>1,404984035=>1,404984019=>1,404986054=>1,404986381=>1,404989871=>1,404989753=>1,404990449=>1,404990772=>1,404991270=>1,404990899=>1,404988822=>1,404988554=>1,404986890=>1,404986669=>1,404987091=>1,404988391=>1,404988530=>1,405173261=>1,405254530=>1,406025517=>1,406018344=>1,406029355=>1,406030160=>1,406032954=>1,406032878=>1,406010959=>1,405966400=>1,405932019=>1,405931749=>1,405934172=>1,405934739=>1,405960625=>1,405935543=>1,406033256=>1,406033833=>1,406186702=>1,406145612=>1,406217478=>1,406229703=>1,406275222=>1,406236015=>1,406122285=>1,406104931=>1,406042661=>1,406034416=>1,406044066=>1,406044227=>1,406044321=>1,405930645=>1,405904870=>1,405336845=>1,405336689=>1,405338494=>1,405339062=>1,405392154=>1,405339134=>1,405336688=>1,405335889=>1,405333310=>1,405296052=>1,405333342=>1,405333452=>1,405335121=>1,405334610=>1,405397934=>1,405398011=>1,405900056=>1,405870102=>1,405901673=>1,405902610=>1,405904381=>1,405904083=>1,405696365=>1,405696233=>1,405474893=>1,405402615=>1,405570684=>1,405584584=>1,405639960=>1,404983086=>1,404982526=>1,401145940=>1,401116801=>1,401182495=>1,401335146=>1,401351441=>1,401350284=>1,400873226=>1,400839051=>1,400721028=>1,400720815=>1,400722237=>1,400803426=>1,400839046=>1,400804185=>1,401351442=>1,401478117=>1,401719791=>1,401691938=>1,401826700=>1,401843228=>1,401912994=>1,401857878=>1,401568101=>1,401546722=>1,401528175=>1,401524730=>1,401540990=>1,401543488=>1,401546012=>1,401544723=>1,400578673=>1,394133561=>1,392973064=>1,392973063=>1,392973065=>1,392973067=>1,392973070=>1,392973069=>1,392973060=>1,392973059=>1,392720790=>1,392601719=>1,392760187=>1,392773698=>1,392790434=>1,392790394=>1,392973071=>1,392973077=>1,392973108=>1,392973103=>1,392973109=>1,392973111=>1,392973117=>1,392973116=>1,392973101=>1,392973100=>1,392973087=>1,392973085=>1,392973093=>1,392973094=>1,392973095=>1,402019491=>1,402066500=>1,404425207=>1,404407299=>1,404432279=>1,404506171=>1,404617119=>1,404615521=>1,404152159=>1,404049271=>1,403579503=>1,403291142=>1,403696245=>1,403702059=>1,404011329=>1,403956697=>1,404657208=>1,404732295=>1,404976371=>1,404974370=>1,404980381=>1,404980415=>1,404982450=>1,404981252=>1,404972082=>1,404961406=>1,404917805=>1,404806730=>1,404953227=>1,404956192=>1,404958244=>1,403246350=>1,403197102=>1,402405077=>1,402365352=>1,402465272=>1,402487170=>1,402564484=>1,402554918=>1,402100996=>1,402100994=>1,402066505=>1,402066503=>1,402066509=>1,402071628=>1,402080322=>1,402071630=>1,402564602=>1,402564830=>1,402951917=>1,402940117=>1,403019773=>1,403091038=>1,403174824=>1,403164637=>1,402923736=>1,402829240=>1,402640983=>1,402565095=>1,402713711=>1,402763466=>1,402800895=>1,406280350=>1,406288592=>1,417051321=>1,417050582=>1,417051369=>1,417067251=>1,417220369=>1,417116766=>1,417036392=>1,417023179=>1,416814450=>1,416703875=>1,416905440=>1,417013877=>1,417022434=>1,417022106=>1,417232977=>1,417233075=>1,417759386=>1,417603834=>1,417783011=>1,417847954=>1,417942127=>1,417853374=>1,417527244=>1,417439237=>1,417334536=>1,417253318=>1,417334623=>1,417351773=>1,417425372=>1,417359822=>1,416691344=>1,416654738=>1,415298058=>1,415293551=>1,415298535=>1,415299908=>1,415509314=>1,415332323=>1,415272390=>1,415265091=>1,415249906=>1,415248965=>1,415254181=>1,415257317=>1,415264808=>1,415258638=>1,415516084=>1,415573830=>1,416360153=>1,416276567=>1,416442780=>1,416464899=>1,416637418=>1,416591036=>1,416216437=>1,416215228=>1,415979933=>1,415765781=>1,416091227=>1,416095256=>1,416150618=>1,417942560=>1,417942632=>1,418282595=>1,418280082=>1,418349183=>1,418407877=>1,418447197=>1,418411017=>1,418279155=>1,418209501=>1,418044505=>1,418006126=>1,418051365=>1,418184323=>1,418193935=>1,418184841=>1,418546548=>1,418546549=>1,419153766=>1,419109690=>1,453786177=>1,453795543=>1,453929906=>1,453808748=>1,419108311=>1,418995645=>1,418617366=>1,418610596=>1,418795523=>1,418805795=>1,418900470=>1,417948771=>1,417944500=>1,417943225=>1,417943122=>1,417943287=>1,417943296=>1,417943334=>1,417943325=>1,417943079=>1,417943069=>1,417942814=>1,417942756=>1,417942921=>1,417942947=>1,417943059=>1,417942950=>1,417943537=>1,417943627=>1,417944111=>1,417944094=>1,417944212=>1,417944247=>1,417944285=>1,417944248=>1,417944035=>1,417943827=>1,417943753=>1,417943713=>1,417943760=>1,417943776=>1,417943797=>1,415248719=>1,415243733=>1,410605118=>1,410020885=>1,410664708=>1,410798873=>1,410874287=>1,410810202=>1,410013557=>1,409997539=>1,409044822=>1,409037740=>1,409108669=>1,409186818=>1,409739670=>1,409630514=>1,410917143=>1,410973889=>1,411667741=>1,411667707=>1,411669021=>1,411689256=>1,411863973=>1,411773105=>1,411667303=>1,411667225=>1,411181419=>1,411171067=>1,411312241=>1,411336612=>1,411485155=>1,411465489=>1,409005641=>1,408999306=>1,408255262=>1,408158860=>1,408496072=>1,408558708=>1,408644214=>1,408598326=>1,407825293=>1,407512633=>1,406387016=>1,406360605=>1,406868189=>1,407240973=>1,407452844=>1,407419968=>1,408819510=>1,408948760=>1,408989032=>1,408982337=>1,408991161=>1,408993820=>1,408998589=>1,408996144=>1,408979590=>1,408971383=>1,408962536=>1,408954430=>1,408965275=>1,408966225=>1,408968458=>1,411869527=>1,411983855=>1,413625342=>1,413317761=>1,413860552=>1,413890841=>1,413940164=>1,413914620=>1,413186845=>1,413180616=>1,412951869=>1,412948705=>1,412956984=>1,413018665=>1,413045158=>1,413026796=>1,414012474=>1,414027226=>1,414913007=>1,414874817=>1,415237413=>1,415238222=>1,415240051=>1,415238541=>1,414870788=>1,414799515=>1,414386401=>1,414181505=>1,414452108=>1,414546914=>1,414587522=>1,412948595=>1,412948301=>1,412085036=>1,412084923=>1,412085157=>1,412085841=>1,412085924=>1,412085870=>1,412084904=>1,412084262=>1,412053816=>1,412035220=>1,412082562=>1,412083189=>1,412084229=>1,412083458=>1,412086308=>1,412086571=>1,412744292=>1,412658334=>1,412828247=>1,412830815=>1,412947268=>1,412881194=>1,412578824=>1,412554935=>1,412353088=>1,412285662=>1,412367801=>1,412438267=>1,412473303=>1,392561589=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-10.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1358890752=>1358890879,1358842368=>1358842879,1339811586=>1,1339808100=>1,1339811911=>1,1339812525=>1,1339813090=>1,1339812796=>1,1339783973=>1,1339662040=>1,1339658118=>1,1339703769=>1,1339779938=>1,1339813439=>1,1339783530=>1,1339802589=>1,1339814042=>1,1340006162=>1,1339882698=>1,1340273488=>1,1340398532=>1,1340662426=>1,1340557863=>1,1339867853=>1,1339817031=>1,1339815341=>1,1339815277=>1,1339815462=>1,1339815809=>1,1339816983=>1,1339816114=>1,1339550236=>1,1339541663=>1,1339221880=>1,1339221828=>1,1339222612=>1,1339223426=>1,1339223878=>1,1339223583=>1,1339221089=>1,1339221085=>1,1339218536=>1,1339217968=>1,1339219213=>1,1339219407=>1,1339220574=>1,1339219886=>1,1339223964=>1,1339224263=>1,1339517150=>1,1339515458=>1,1339517647=>1,1339518094=>1,1339518766=>1,1339518164=>1,1339481700=>1,1339322794=>1,1339226824=>1,1339225838=>1,1339226898=>1,1339228116=>1,1339321817=>1,1339251618=>1,1340746331=>1,1341113710=>1,1343152752=>1,1343098017=>1,1343215356=>1,1343463410=>1,1344234795=>1,1344071607=>1,1343081930=>1,1343066228=>1,1342902931=>1,1342811262=>1,1342948942=>1,1342987960=>1,1343060259=>1,1343039375=>1,1344937863=>1,1344940907=>1,1346004866=>1,1345965758=>1,1346172394=>1,1346320530=>1,1346388249=>1,1346376249=>1,1345962568=>1,1345941007=>1,1345340024=>1,1345024925=>1,1345363378=>1,1345689052=>1,1345929139=>1,1342330689=>1,1342107902=>1,1341341798=>1,1341253152=>1,1341343188=>1,1341410548=>1,1341464713=>1,1341425464=>1,1341252313=>1,1341249049=>1,1341187664=>1,1339216463=>1,1341188268=>1,1341192675=>1,1341248473=>1,1341248410=>1,1341468658=>1,1341473453=>1,1341987170=>1,1341986851=>1,1341997855=>1,1341999018=>1,1342005158=>1,1341999849=>1,1341697470=>1,1341696898=>1,1341476439=>1,1341476428=>1,1341491818=>1,1341573885=>1,1341691967=>1,1340924882=>1,1339215215=>1,1337070179=>1,1337044683=>1,1337105110=>1,1337156737=>1,1337360280=>1,1337206410=>1,1337005102=>1,1336980013=>1,1336821282=>1,1336821272=>1,1336821496=>1,1336876134=>1,1336965946=>1,1336896459=>1,1337372244=>1,1337373837=>1,1338272509=>1,1338265396=>1,1338272610=>1,1338325560=>1,1338329485=>1,1338328989=>1,1338203713=>1,1338158097=>1,1337437651=>1,1337408641=>1,1337786931=>1,1338046955=>1,1338156718=>1,1338136790=>1,1336816161=>1,1336734459=>1,1335832896=>1,1335637423=>1,1335910048=>1,1335917912=>1,1336259827=>1,1336184137=>1,1335331228=>1,1335129704=>1,1334631934=>1,1334585718=>1,1334725407=>1,1334817787=>1,1334819962=>1,1334817930=>1,1336418937=>1,1336676882=>1,1336734397=>1,1336734371=>1,1336734434=>1,1336734445=>1,1336734457=>1,1336734446=>1,1336734351=>1,1336734347=>1,1336703881=>1,1336679629=>1,1336721696=>1,1336724516=>1,1336734346=>1,1338355870=>1,1338359832=>1,1339087175=>1,1339086200=>1,1339088402=>1,1339088695=>1,1339088749=>1,1339088713=>1,1339062546=>1,1339016522=>1,1338894978=>1,1338848336=>1,1338900122=>1,1338900140=>1,1338946103=>1,1338900317=>1,1339088806=>1,1339088844=>1,1339212425=>1,1339166188=>1,1339212460=>1,1339214333=>1,1346537339=>1,1339215147=>1,1339164044=>1,1339161133=>1,1339152967=>1,1339149596=>1,1339157544=>1,1339157822=>1,1339158057=>1,1338847989=>1,1338816304=>1,1338364440=>1,1338363908=>1,1338366364=>1,1338366858=>1,1338431602=>1,1338367528=>1,1338363727=>1,1338363686=>1,1338360622=>1,1338359957=>1,1338361117=>1,1338362096=>1,1338363280=>1,1338362403=>1,1338563653=>1,1338566183=>1,1338730872=>1,1338701816=>1,1338732342=>1,1338733498=>1,1338783697=>1,1338781064=>1,1338571277=>1,1338570245=>1,1338567053=>1,1338566599=>1,1338567481=>1,1338568517=>1,1338568699=>1,1339215578=>1,1346614044=>1,1356587255=>1,1356580662=>1,1356593282=>1,1356593308=>1,1356618408=>1,1356616025=>1,1356565545=>1,1356551353=>1,1355516183=>1,1354532621=>1,1356123217=>1,1356364796=>1,1356530244=>1,1356500715=>1,1356855472=>1,1357203005=>1,1357767244=>1,1357767243=>1,1357940470=>1,1357941615=>1,1357985706=>1,1357970804=>1,1357767242=>1,1357767241=>1,1357437055=>1,1357221103=>1,1357524049=>1,1357524730=>1,1357757660=>1,1357741006=>1,1354532620=>1,1354532619=>1,1351405283=>1,1351331456=>1,1351460867=>1,1351653327=>1,1351819677=>1,1351812396=>1,1351329854=>1,1351250333=>1,1351178891=>1,1351151888=>1,1351180077=>1,1351230001=>1,1351250102=>1,1351230877=>1,1352199959=>1,1352206084=>1,1353958526=>1,1353882920=>1,1354100005=>1,1354381958=>1,1354532618=>1,1354518410=>1,1353393964=>1,1353314636=>1,1352794225=>1,1352258707=>1,1352940986=>1,1353146379=>1,1353182797=>1,1357987023=>1,1358027997=>1,1359242694=>1,1359242693=>1,1359243011=>1,1359243178=>1,1359243248=>1,1359243222=>1,1359242589=>1,1359148446=>1,1359145640=>1,1359141071=>1,1359146458=>1,1359147034=>1,1359147582=>1,1359147376=>1,1359243280=>1,1359243712=>1,1359247796=>1,1359247664=>1,1359249391=>1,1359310894=>1,1359414263=>1,1359414157=>1,1359245307=>1,1359245163=>1,1359244591=>1,1359244487=>1,1359244669=>1,1359244752=>1,1359244949=>1,1359139082=>1,1359136033=>1,1358483587=>1,1358315118=>1,1358500890=>1,1358516954=>1,1358536957=>1,1358519343=>1,1358263686=>1,1358263683=>1,1358174757=>1,1358093106=>1,1358174925=>1,1358188991=>1,1358263682=>1,1358230430=>1,1358576778=>1,1358621181=>1,1358890507=>1,1358890168=>1,1358891981=>1,1358892013=>1,1359011733=>1,1358928381=>1,1358889850=>1,1358879536=>1,1358765230=>1,1358629162=>1,1358793634=>1,1358793635=>1,1358793637=>1,1351145481=>1,1350997288=>1,1347478634=>1,1347478623=>1,1347488797=>1,1347490079=>1,1347548130=>1,1347548024=>1,1347478622=>1,1347478619=>1,1347478595=>1,1347478588=>1,1347478599=>1,1347478605=>1,1347478618=>1,1347478614=>1,1347548139=>1,1347567649=>1,1347696587=>1,1347647172=>1,1347727570=>1,1347727573=>1,1347769566=>1,1347769416=>1,1347608353=>1,1347590865=>1,1347568361=>1,1347567755=>1,1347568968=>1,1347569016=>1,1347590864=>1,1347478567=>1,1347478566=>1,1346963787=>1,1346953651=>1,1346964775=>1,1347014674=>1,1347114282=>1,1347023502=>1,1346866185=>1,1346864503=>1,1346616776=>1,1334585717=>1,1346657529=>1,1346657980=>1,1346863929=>1,1346860321=>1,1347230998=>1,1347263868=>1,1347478547=>1,1347478541=>1,1347478550=>1,1347478554=>1,1347478560=>1,1347478558=>1,1347478533=>1,1347464187=>1,1347360519=>1,1347354104=>1,1347384564=>1,1347387275=>1,1347387289=>1,1347837069=>1,1347837312=>1,1349552729=>1,1349550145=>1,1349553983=>1,1349557092=>1,1349841224=>1,1349841188=>1,1349481978=>1,1349435027=>1,1348804498=>1,1348798038=>1,1348809602=>1,1349321098=>1,1349389081=>1,1349330354=>1,1349841239=>1,1349841338=>1,1350595620=>1,1350565323=>1,1350596346=>1,1350727775=>1,1350993965=>1,1350727828=>1,1350539172=>1,1350537050=>1,1350124378=>1,1349930086=>1,1350284618=>1,1350527898=>1,1350530653=>1,1348795124=>1,1348783766=>1,1347930122=>1,1347928703=>1,1347930152=>1,1347930341=>1,1347930452=>1,1347930442=>1,1347928690=>1,1347928555=>1,1347912514=>1,1347887494=>1,1347928396=>1,1347928457=>1,1347928509=>1,1347928505=>1,1348059294=>1,1348086749=>1,1348688582=>1,1348663361=>1,1348690192=>1,1348742397=>1,1348779267=>1,1348763651=>1,1348656517=>1,1348655697=>1,1348163620=>1,1348119263=>1,1348189884=>1,1348227614=>1,1348359956=>1,1346612243=>1,1334585613=>1,1311658285=>1,1311654243=>1,1311658619=>1,1311661091=>1,1311662549=>1,1311661844=>1,1311654133=>1,1311652894=>1,1311649266=>1,1311648817=>1,1311649295=>1,1311650684=>1,1311651811=>1,1311651083=>1,1311664938=>1,1311666395=>1,1311686040=>1,1311684988=>1,1311686987=>1,1311687979=>1,1311691122=>1,1311691120=>1,1311684391=>1,1311681135=>1,1311673241=>1,1311668304=>1,1311673270=>1,1311676171=>1,1311679027=>1,1311676574=>1,1311648733=>1,1311647002=>1,1311136746=>1,1311112492=>1,1311141794=>1,1311158041=>1,1311228683=>1,1311161854=>1,1311105474=>1,1311103825=>1,1311026148=>1,1310993462=>1,1311034005=>1,1311068680=>1,1311098494=>1,1311079678=>1,1311243389=>1,1311301912=>1,1311488831=>1,1311470882=>1,1311574164=>1,1311641992=>1,1311647001=>1,1311643159=>1,1311443230=>1,1311435792=>1,1311303165=>1,1311302706=>1,1311339409=>1,1311387576=>1,1311424480=>1,1311693264=>1,1311693323=>1,1311739603=>1,1311737350=>1,1311741102=>1,1311746116=>1,1311748170=>1,1311747739=>1,1311735317=>1,1311734874=>1,1311727048=>1,1311727024=>1,1311727393=>1,1311728328=>1,1311734027=>1,1311733910=>1,1311750935=>1,1311751050=>1,1311766051=>1,1311764304=>1,1311767010=>1,1311772840=>1,1311786785=>1,1311781280=>1,1311761771=>1,1311760603=>1,1311753836=>1,1311752580=>1,1311754677=>1,1311755154=>1,1311759038=>1,1311726860=>1,1311725266=>1,1311705447=>1,1311704070=>1,1311707758=>1,1311712035=>1,1311713084=>1,1311712686=>1,1311700772=>1,1311698871=>1,1311693512=>1,1311693367=>1,1311693954=>1,1311694128=>1,1311698693=>1,1311697366=>1,1311713212=>1,1311714596=>1,1311722731=>1,1311719515=>1,1311722966=>1,1311724228=>1,1311724642=>1,1311724324=>1,1311719501=>1,1311718878=>1,1311715286=>1,1311715161=>1,1311715761=>1,1311715932=>1,1311718750=>1,1310980104=>1,1310904398=>1,1304947894=>1,1304883500=>1,1304953510=>1,1304954330=>1,1305137069=>1,1304960095=>1,1304482625=>1,1303823472=>1,1303812403=>1,1303811312=>1,1303818366=>1,1303818891=>1,1303821346=>1,1303820345=>1,1305147116=>1,1305150573=>1,1307191979=>1,1307191969=>1,1307192472=>1,1307239106=>1,1307370462=>1,1307281378=>1,1307191964=>1,1307176578=>1,1305431474=>1,1305309927=>1,1305688202=>1,1306434005=>1,1307062883=>1,1307062882=>1,1303809180=>1,1303807980=>1,1303594006=>1,1303582873=>1,1303594768=>1,1303598518=>1,1303609907=>1,1303599024=>1,1303578290=>1,1303577306=>1,1303351867=>1,1303299595=>1,1303356863=>1,1303367652=>1,1303436829=>1,1303371030=>1,1303619943=>1,1303624128=>1,1303724321=>1,1303723673=>1,1303725523=>1,1303740437=>1,1303791678=>1,1303788720=>1,1303712940=>1,1303709129=>1,1303659633=>1,1303652079=>1,1303660825=>1,1303677906=>1,1303689730=>1,1307375150=>1,1307449868=>1,1309192446=>1,1308806066=>1,1309261204=>1,1309369064=>1,1310125790=>1,1309984183=>1,1308748853=>1,1308674899=>1,1308142725=>1,1308126980=>1,1308190550=>1,1308209761=>1,1308304395=>1,1308254033=>1,1310191784=>1,1310192785=>1,1310527188=>1,1310487562=>1,1310671224=>1,1310696489=>1,1310873449=>1,1310853963=>1,1310470610=>1,1310465162=>1,1310252932=>1,1310214965=>1,1310265861=>1,1310278114=>1,1310286586=>1,1308123012=>1,1308122268=>1,1307797521=>1,1307760086=>1,1307797983=>1,1307942023=>1,1308008175=>1,1308008139=>1,1307711230=>1,1307705948=>1,1307464551=>1,1307461080=>1,1307520922=>1,1307627029=>1,1307644272=>1,1307637127=>1,1308008183=>1,1308008189=>1,1308079524=>1,1308079523=>1,1308079525=>1,1308079526=>1,1308112077=>1,1308079857=>1,1308079522=>1,1308079264=>1,1308008354=>1,1308008312=>1,1308008361=>1,1308028002=>1,1308079260=>1,1311795029=>1,1311835439=>1,1326639067=>1,1326639047=>1,1327151314=>1,1327451947=>1,1327618747=>1,1327598654=>1,1326638956=>1,1326638920=>1,1325411389=>1,1324930905=>1,1326242110=>1,1326242193=>1,1326638714=>1,1326638628=>1,1327748237=>1,1327751707=>1,1327858441=>1,1327828204=>1,1327858493=>1,1327858507=>1,1327858604=>1,1327858575=>1,1327828070=>1,1327828051=>1,1327751773=>1,1327751722=>1,1327751804=>1,1327753967=>1,1327827816=>1,1327827772=>1,1324814206=>1,1324662857=>1,1321361049=>1,1321346333=>1,1321393206=>1,1321553569=>1,1321723990=>1,1321630827=>1,1321310807=>1,1321293315=>1,1321237652=>1,1321214535=>1,1321267531=>1,1321279715=>1,1321291640=>1,1321281741=>1,1322078337=>1,1322082203=>1,1323498104=>1,1323434263=>1,1323770556=>1,1323918743=>1,1324175435=>1,1324088157=>1,1323400118=>1,1323371645=>1,1322540304=>1,1322294339=>1,1322799178=>1,1322949826=>1,1323163450=>1,1327875352=>1,1328129529=>1,1333896735=>1,1333859689=>1,1334073585=>1,1334080990=>1,1334170123=>1,1334146144=>1,1333737217=>1,1333737214=>1,1333531708=>1,1333309802=>1,1333531949=>1,1333666117=>1,1333737025=>1,1333736975=>1,1334183876=>1,1334189091=>1,1334337903=>1,1334330973=>1,1334346268=>1,1334473625=>1,1334582901=>1,1334579781=>1,1334323938=>1,1334320427=>1,1334238837=>1,1334236045=>1,1334247203=>1,1334247368=>1,1334262253=>1,1333285303=>1,1333283038=>1,1331850074=>1,1331841321=>1,1331850297=>1,1331859396=>1,1332027396=>1,1331888250=>1,1331830570=>1,1331704555=>1,1328629410=>1,1328212425=>1,1329286378=>1,1329296675=>1,1329799345=>1,1329381805=>1,1332027402=>1,1332027404=>1,1332980529=>1,1332893325=>1,1333267042=>1,1333267047=>1,1333277540=>1,1333275027=>1,1332755086=>1,1332717109=>1,1332214431=>1,1332027406=>1,1332226174=>1,1332619173=>1,1332677466=>1,1321081240=>1,1321051965=>1,1314538418=>1,1314525157=>1,1314542769=>1,1314557400=>1,1314579428=>1,1314563603=>1,1314226512=>1,1314214904=>1,1314113893=>1,1314080398=>1,1314179320=>1,1314188963=>1,1314197132=>1,1314189625=>1,1314580185=>1,1314613172=>1,1315695888=>1,1315609983=>1,1315696597=>1,1315696649=>1,1315700345=>1,1315696693=>1,1315608449=>1,1315584966=>1,1314791342=>1,1314613173=>1,1315075012=>1,1315220274=>1,1315360627=>1,1315266466=>1,1314067294=>1,1313626222=>1,1311957916=>1,1311951611=>1,1311969058=>1,1311992983=>1,1312095817=>1,1312095261=>1,1311949216=>1,1311943989=>1,1311851908=>1,1311851771=>1,1311863734=>1,1311873232=>1,1311881204=>1,1311877446=>1,1312142984=>1,1312155232=>1,1313001721=>1,1312993307=>1,1313213158=>1,1313220822=>1,1313377237=>1,1313251353=>1,1312976675=>1,1312312954=>1,1312218022=>1,1312217557=>1,1312227191=>1,1312232329=>1,1312303126=>1,1315720534=>1,1315774048=>1,1318967147=>1,1318967120=>1,1319019122=>1,1319023758=>1,1319149570=>1,1319058627=>1,1318967105=>1,1318963313=>1,1318824368=>1,1318485792=>1,1318876652=>1,1318876916=>1,1318911354=>1,1318877128=>1,1319149580=>1,1319149605=>1,1319629327=>1,1319513923=>1,1319629482=>1,1320855416=>1,1320903166=>1,1320886286=>1,1319462979=>1,1319163038=>1,1319149881=>1,1319149846=>1,1319150126=>1,1319150254=>1,1319150464=>1,1318414046=>1,1318104906=>1,1317194949=>1,1317175402=>1,1317222534=>1,1317222805=>1,1317347683=>1,1317340973=>1,1317129319=>1,1317114377=>1,1316397950=>1,1316243853=>1,1316556138=>1,1317021785=>1,1317112092=>1,1317035252=>1,1317473579=>1,1317499468=>1,1317933857=>1,1317933835=>1,1317933881=>1,1317933883=>1,1317973830=>1,1317965558=>1,1317869106=>1,1317761576=>1,1317560947=>1,1317499469=>1,1317618360=>1,1317623963=>1,1317746841=>1,1303296148=>1,);?>
1
+ <?php return array(1029314654=>1,1029314631=>1,1029314664=>1,1029314668=>1,1029314718=>1,1029314684=>1,1029314621=>1,1029314612=>1,1029314473=>1,1029314460=>1,1029314521=>1,1029314530=>1,1029314545=>1,1029314536=>1,1029314728=>1,1029314730=>1,1029314788=>1,1029314778=>1,1029314790=>1,1029314828=>1,1029314888=>1,1029314884=>1,1029314776=>1,1029314773=>1,1029314737=>1,1029314736=>1,1029314749=>1,1029314754=>1,1029314765=>1,1029314764=>1,1029314459=>1,1029314442=>1,1029314168=>1,1029314166=>1,1029314180=>1,1029314193=>1,1029314218=>1,1029314213=>1,1029314160=>1,1029314144=>1,1029314102=>1,1029314079=>1,1029314119=>1,1029314120=>1,1029314141=>1,1029314126=>1,1029314226=>1,1029314228=>1,1029314352=>1,1029314350=>1,1029314372=>1,1029314389=>1,1029314431=>1,1029314427=>1,1029314316=>1,1029314308=>1,1029314256=>1,1029314245=>1,1029314273=>1,1029314278=>1,1029314302=>1,1029314974=>1,1029314980=>1,1029315501=>1,1029315495=>1,1029315514=>1,1029315522=>1,1029315539=>1,1029315535=>1,1029315480=>1,1029315475=>1,1029315432=>1,1029315423=>1,1029315448=>1,1029315460=>1,1029315465=>1,1029315463=>1,1029315547=>1,1029315556=>1,1029315674=>1,1029315672=>1,1029315685=>1,1029315721=>1,1029315725=>1,1029315724=>1,1029315655=>1,1029315653=>1,1029315586=>1,1029315561=>1,1029315587=>1,1029315599=>1,1029315640=>1,1029315637=>1,1029315421=>1,1029315420=>1,1029315133=>1,1029315126=>1,1029315136=>1,1029315143=>1,1029315154=>1,1029315144=>1,1029315118=>1,1029315075=>1,1029315010=>1,1029314999=>1,1029315018=>1,1029315042=>1,1029315064=>1,1029315059=>1,1029315177=>1,1029315207=>1,1029315384=>1,1029315379=>1,1029315393=>1,1029315398=>1,1029315405=>1,1029315401=>1,1029315356=>1,1029315313=>1,1029315277=>1,1029315227=>1,1029315291=>1,1029315303=>1,1029315308=>1,1029314041=>1,1029314039=>1,1029312989=>1,1029312963=>1,1029312990=>1,1029313007=>1,1029313036=>1,1029313018=>1,1029312959=>1,1029312955=>1,1029312882=>1,1029312874=>1,1029312910=>1,1029312920=>1,1029312946=>1,1029312925=>1,1029313047=>1,1029313099=>1,1029313239=>1,1029313207=>1,1029313240=>1,1029313277=>1,1029313320=>1,1029313306=>1,1029313189=>1,1029313179=>1,1029313110=>1,1029313101=>1,1029313126=>1,1029313146=>1,1029313170=>1,1029313162=>1,1029312859=>1,1029312853=>1,1029312608=>1,1029312588=>1,1029312611=>1,1029312622=>1,1029312665=>1,1029312650=>1,1029312567=>1,1029312554=>1,1029312521=>1,1029312483=>1,1029312527=>1,1029312541=>1,1029312551=>1,1029312543=>1,1029312672=>1,1029312685=>1,1029312826=>1,1029312822=>1,1029312829=>1,1029312834=>1,1029312848=>1,1029312835=>1,1029312783=>1,1029312780=>1,1029312696=>1,1029312687=>1,1029312731=>1,1029312742=>1,1029312756=>1,1029313323=>1,1029313325=>1,1029313848=>1,1029313837=>1,1029313854=>1,1029313875=>1,1029313878=>1,1029313877=>1,1029313836=>1,1029313811=>1,1029313676=>1,1029313673=>1,1029313705=>1,1029313715=>1,1029313773=>1,1029313742=>1,1029313880=>1,1029313901=>1,1029313980=>1,1029313967=>1,1029313984=>1,1029313998=>1,1029314020=>1,1029314014=>1,1029313964=>1,1029313948=>1,1029313908=>1,1029313905=>1,1029313910=>1,1029313915=>1,1029313932=>1,1029313667=>1,1029313663=>1,1029313405=>1,1029313384=>1,1029313406=>1,1029313415=>1,1029313419=>1,1029313417=>1,1029313366=>1,1029313358=>1,1029313331=>1,1029313327=>1,1029313333=>1,1029313345=>1,1029313354=>1,1029313349=>1,1029313444=>1,1029313448=>1,1029313587=>1,1029313582=>1,1029313623=>1,1029313636=>1,1029313660=>1,1029313642=>1,1029313573=>1,1029313563=>1,1029313458=>1,1029313457=>1,1029313468=>1,1029313484=>1,1029313534=>1,1029315752=>1,1029315770=>1,1029317863=>1,1029317847=>1,1029317865=>1,1029317869=>1,1029317891=>1,1029317880=>1,1029317836=>1,1029317810=>1,1029317784=>1,1029317771=>1,1029317786=>1,1029317794=>1,1029317808=>1,1029317807=>1,1029317925=>1,1029317945=>1,1029318036=>1,1029318014=>1,1029318073=>1,1029318079=>1,1029318148=>1,1029318119=>1,1029317997=>1,1029317988=>1,1029317955=>1,1029317954=>1,1029317958=>1,1029317968=>1,1029317980=>1,1029317977=>1,1029317770=>1,1029317769=>1,1029317542=>1,1029317524=>1,1029317547=>1,1029317551=>1,1029317587=>1,1029317580=>1,1029317517=>1,1029317516=>1,1029317442=>1,1029317433=>1,1029317446=>1,1029317452=>1,1029317489=>1,1029317473=>1,1029317595=>1,1029317608=>1,1029317709=>1,1029317678=>1,1029317717=>1,1029317744=>1,1029317767=>1,1029317751=>1,1029317669=>1,1029317662=>1,1029317651=>1,1029317629=>1,1029317654=>1,1029317659=>1,1029317660=>1,1029318162=>1,1029318183=>1,1029318729=>1,1029318710=>1,1029318735=>1,1029318756=>1,1029318786=>1,1029318760=>1,1029318707=>1,1029318693=>1,1029318560=>1,1029318555=>1,1029318584=>1,1029318613=>1,1029318689=>1,1029318685=>1,1029318789=>1,1029318792=>1,1029318919=>1,1029318907=>1,1029318924=>1,1029318925=>1,1029318948=>1,1029318931=>1,1029318883=>1,1029318869=>1,1029318811=>1,1029318804=>1,1029318828=>1,1029318843=>1,1029318851=>1,1029318547=>1,1029318529=>1,1029318284=>1,1029318262=>1,1029318299=>1,1029318317=>1,1029318353=>1,1029318348=>1,1029318253=>1,1029318251=>1,1029318192=>1,1029318188=>1,1029318207=>1,1029318208=>1,1029318243=>1,1029318234=>1,1029318354=>1,1029318356=>1,1029318435=>1,1029318421=>1,1029318462=>1,1029318469=>1,1029318499=>1,1029318484=>1,1029318405=>1,1029318404=>1,1029318367=>1,1029318361=>1,1029318380=>1,1029318391=>1,1029318396=>1,1029317426=>1,1029317397=>1,1029316151=>1,1029316138=>1,1029316165=>1,1029316178=>1,1029316199=>1,1029316184=>1,1029316134=>1,1029316121=>1,1029316051=>1,1029316048=>1,1029316063=>1,1029316077=>1,1029316109=>1,1029316080=>1,1029316209=>1,1029316218=>1,1029316411=>1,1029316407=>1,1029316415=>1,1029316430=>1,1029316461=>1,1029316447=>1,1029316371=>1,1029316358=>1,1029316228=>1,1029316219=>1,1029316235=>1,1029316324=>1,1029316346=>1,1029316335=>1,1029315997=>1,1029315993=>1,1029315834=>1,1029315830=>1,1029315852=>1,1029315858=>1,1029315889=>1,1029315865=>1,1029315820=>1,1029315816=>1,1029315776=>1,1029315775=>1,1029315782=>1,1029315797=>1,1029315808=>1,1029315806=>1,1029315890=>1,1029315898=>1,1029315953=>1,1029315944=>1,1029315959=>1,1029315974=>1,1029315981=>1,1029315975=>1,1029315932=>1,1029315928=>1,1029315913=>1,1029315903=>1,1029315917=>1,1029315918=>1,1029315923=>1,1029316464=>1,1029316465=>1,1029317009=>1,1029317001=>1,1029317010=>1,1029317032=>1,1029317057=>1,1029317038=>1,1029316997=>1,1029316985=>1,1029316890=>1,1029316875=>1,1029316911=>1,1029316925=>1,1029316972=>1,1029316936=>1,1029317072=>1,1029317096=>1,1029317347=>1,1029317336=>1,1029317352=>1,1029317364=>1,1029317371=>1,1029317370=>1,1029317327=>1,1029317321=>1,1029317144=>1,1029317100=>1,1029317214=>1,1029317262=>1,1029317303=>1,1029316874=>1,1029316861=>1,1029316603=>1,1029316596=>1,1029316605=>1,1029316612=>1,1029316638=>1,1029316615=>1,1029316588=>1,1029316578=>1,1029316513=>1,1029316491=>1,1029316520=>1,1029316529=>1,1029316559=>1,1029316551=>1,1029316660=>1,1029316667=>1,1029316790=>1,1029316778=>1,1029316809=>1,1029316831=>1,1029316857=>1,1029316839=>1,1029316760=>1,1029316757=>1,1029316726=>1,1029316699=>1,1029316742=>1,1029316747=>1,1029316750=>1,1029312477=>1,1029312433=>1,1029309152=>1,1029309148=>1,1029309161=>1,1029309196=>1,1029309229=>1,1029309200=>1,1029309139=>1,1029309135=>1,1029309074=>1,1029309063=>1,1029309078=>1,1029309088=>1,1029309127=>1,1029309105=>1,1029309242=>1,1029309258=>1,1029309354=>1,1029309352=>1,1029309383=>1,1029309388=>1,1029309700=>1,1029309408=>1,1029309345=>1,1029309336=>1,1029309269=>1,1029309259=>1,1029309299=>1,1029309301=>1,1029309334=>1,1029309302=>1,1029309053=>1,1029309000=>1,1029308849=>1,1029308833=>1,1029308854=>1,1029308863=>1,1029308892=>1,1029308867=>1,1029308832=>1,1029308827=>1,1029308786=>1,1029308766=>1,1029308788=>1,1029308797=>1,1029308826=>1,1029308819=>1,1029308899=>1,1029308915=>1,1029308967=>1,1029308955=>1,1029308970=>1,1029308975=>1,1029308986=>1,1029308980=>1,1029308950=>1,1029308936=>1,1029308926=>1,1029308918=>1,1029308930=>1,1029308932=>1,1029308935=>1,1029309710=>1,1029309721=>1,1029310113=>1,1029310101=>1,1029310118=>1,1029310119=>1,1029310131=>1,1029310125=>1,1029310067=>1,1029310064=>1,1029310033=>1,1029310029=>1,1029310035=>1,1029310036=>1,1029310056=>1,1029310043=>1,1029310132=>1,1029310138=>1,1029310184=>1,1029310170=>1,1029310185=>1,1029310190=>1,1029310220=>1,1029310205=>1,1029310168=>1,1029310160=>1,1029310150=>1,1029310146=>1,1029310151=>1,1029310153=>1,1029310156=>1,1029310013=>1,1029310002=>1,1029309799=>1,1029309783=>1,1029309801=>1,1029309805=>1,1029309828=>1,1029309821=>1,1029309777=>1,1029309773=>1,1029309745=>1,1029309741=>1,1029309749=>1,1029309752=>1,1029309764=>1,1029309756=>1,1029309831=>1,1029309840=>1,1029309927=>1,1029309923=>1,1029309933=>1,1029309939=>1,1029309979=>1,1029309969=>1,1029309890=>1,1029309888=>1,1029309858=>1,1029309848=>1,1029309862=>1,1029309882=>1,1029309883=>1,1029308755=>1,1029308739=>1,1021114485=>1,1020991613=>1,1021169202=>1,1021180275=>1,1021401378=>1,1021382248=>1,1020991601=>1,1020991600=>1,1020535027=>1,1020528395=>1,1020651710=>1,1020716151=>1,1020991599=>1,1020768540=>1,1021994387=>1,1022041253=>1,1023097860=>1,1023090012=>1,1023238954=>1,1023243722=>1,1023861527=>1,1023287297=>1,1023037814=>1,1023037793=>1,1022539535=>1,1022097554=>1,1022659355=>1,1022927539=>1,1023031152=>1,1022952449=>1,1020505518=>1,1020197850=>1,1019193099=>1,1019192962=>1,1019193181=>1,1019193426=>1,1019193771=>1,1019193525=>1,1019192676=>1,1019192645=>1,1019192342=>1,1019192299=>1,1019192379=>1,1019192403=>1,1019192604=>1,1019192546=>1,1019193908=>1,1019193941=>1,1019196454=>1,1019196340=>1,1019199150=>1,1019209787=>1,1019476535=>1,1019372595=>1,1019196213=>1,1019195947=>1,1019194893=>1,1019193978=>1,1019195076=>1,1019195107=>1,1019195190=>1,1023861647=>1,1023904008=>1,1026574056=>1,1026571245=>1,1026712978=>1,1026900276=>1,1026957107=>1,1026900278=>1,1025965070=>1,1025787947=>1,1024700714=>1,1024676490=>1,1024704979=>1,1024707204=>1,1025701906=>1,1024718993=>1,1027005896=>1,1027119370=>1,1029308677=>1,1029308578=>1,1029308678=>1,1029308686=>1,1029308738=>1,1029308701=>1,1029308459=>1,1029308458=>1,1028019069=>1,1027345009=>1,1028020857=>1,1028326012=>1,1028672130=>1,1024666146=>1,1024205091=>1,1023912669=>1,1023912609=>1,1023912801=>1,1023912965=>1,1023912996=>1,1023912977=>1,1023912583=>1,1023912559=>1,1023907141=>1,1023904351=>1,1023912462=>1,1023912500=>1,1023912531=>1,1023912521=>1,1023913084=>1,1023913093=>1,1023916323=>1,1023916261=>1,1023916637=>1,1023916640=>1,1023917050=>1,1023917046=>1,1023916226=>1,1023916081=>1,1023913286=>1,1023913195=>1,1023913318=>1,1023913329=>1,1023916074=>1,1029310248=>1,1029310250=>1,1029311639=>1,1029311634=>1,1029311641=>1,1029311644=>1,1029311657=>1,1029311649=>1,1029311613=>1,1029311609=>1,1029311544=>1,1029311538=>1,1029311552=>1,1029311577=>1,1029311608=>1,1029311598=>1,1029311668=>1,1029311685=>1,1029311774=>1,1029311754=>1,1029311777=>1,1029311783=>1,1029311794=>1,1029311786=>1,1029311753=>1,1029311736=>1,1029311701=>1,1029311687=>1,1029311704=>1,1029311718=>1,1029311727=>1,1029311725=>1,1029311533=>1,1029311527=>1,1029311391=>1,1029311389=>1,1029311394=>1,1029311400=>1,1029311423=>1,1029311420=>1,1029311385=>1,1029311367=>1,1029311301=>1,1029311292=>1,1029311308=>1,1029311343=>1,1029311354=>1,1029311350=>1,1029311433=>1,1029311435=>1,1029311491=>1,1029311485=>1,1029311492=>1,1029311515=>1,1029311526=>1,1029311519=>1,1029311473=>1,1029311470=>1,1029311441=>1,1029311437=>1,1029311442=>1,1029311446=>1,1029311462=>1,1029311816=>1,1029311817=>1,1029312195=>1,1029312179=>1,1029312196=>1,1029312217=>1,1029312232=>1,1029312218=>1,1029312177=>1,1029312156=>1,1029312118=>1,1029312107=>1,1029312120=>1,1029312128=>1,1029312140=>1,1029312129=>1,1029312251=>1,1029312293=>1,1029312396=>1,1029312380=>1,1029312405=>1,1029312408=>1,1029312423=>1,1029312415=>1,1029312371=>1,1029312360=>1,1029312305=>1,1029312294=>1,1029312309=>1,1029312336=>1,1029312344=>1,1029312102=>1,1029312083=>1,1029311935=>1,1029311913=>1,1029311938=>1,1029311946=>1,1029311956=>1,1029311949=>1,1029311896=>1,1029311890=>1,1029311822=>1,1029311819=>1,1029311831=>1,1029311846=>1,1029311880=>1,1029311861=>1,1029311964=>1,1029311985=>1,1029312067=>1,1029312062=>1,1029312069=>1,1029312074=>1,1029312082=>1,1029312076=>1,1029312057=>1,1029312047=>1,1029311991=>1,1029311988=>1,1029312010=>1,1029312012=>1,1029312029=>1,1029311287=>1,1029311284=>1,1029310594=>1,1029310591=>1,1029310598=>1,1029310608=>1,1029310634=>1,1029310623=>1,1029310574=>1,1029310571=>1,1029310536=>1,1029310535=>1,1029310543=>1,1029310547=>1,1029310568=>1,1029310560=>1,1029310640=>1,1029310643=>1,1029310739=>1,1029310704=>1,1029310742=>1,1029310749=>1,1029310759=>1,1029310755=>1,1029310685=>1,1029310679=>1,1029310656=>1,1029310645=>1,1029310665=>1,1029310666=>1,1029310675=>1,1029310667=>1,1029310511=>1,1029310505=>1,1029310320=>1,1029310315=>1,1029310322=>1,1029310331=>1,1029310349=>1,1029310343=>1,1029310311=>1,1029310309=>1,1029310256=>1,1029310252=>1,1029310270=>1,1029310278=>1,1029310285=>1,1029310283=>1,1029310367=>1,1029310368=>1,1029310469=>1,1029310453=>1,1029310476=>1,1029310482=>1,1029310490=>1,1029310486=>1,1029310444=>1,1029310436=>1,1029310406=>1,1029310375=>1,1029310420=>1,1029310426=>1,1029310430=>1,1029310760=>1,1029310762=>1,1029311100=>1,1029311099=>1,1029311107=>1,1029311112=>1,1029311147=>1,1029311140=>1,1029311093=>1,1029311083=>1,1029311056=>1,1029311046=>1,1029311061=>1,1029311062=>1,1029311079=>1,1029311065=>1,1029311150=>1,1029311169=>1,1029311226=>1,1029311224=>1,1029311240=>1,1029311245=>1,1029311275=>1,1029311251=>1,1029311214=>1,1029311212=>1,1029311180=>1,1029311176=>1,1029311183=>1,1029311207=>1,1029311208=>1,1029311025=>1,1029310999=>1,1029310806=>1,1029310805=>1,1029310822=>1,1029310829=>1,1029310848=>1,1029310838=>1,1029310799=>1,1029310798=>1,1029310782=>1,1029310770=>1,1029310783=>1,1029310786=>1,1029310793=>1,1029310787=>1,1029310852=>1,1029310853=>1,1029310948=>1,1029310945=>1,1029310951=>1,1029310985=>1,1029310990=>1,1029310986=>1,1029310939=>1,1029310910=>1,1029310885=>1,1029310873=>1,1029310890=>1,1029310892=>1,1029310904=>1,1019192211=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-11.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1388811776=>1388812031,1388806400=>1388806655,1408050696=>1,1408050962=>1,1408051128=>1,1408051216=>1,1408050201=>1,1408051055=>1,1408049796=>1,1407919412=>1,1407889436=>1,1408028750=>1,1408041919=>1,1408049549=>1,1408043797=>1,1408049951=>1,1408051531=>1,1408122653=>1,1408113583=>1,1408131693=>1,1408148438=>1,1408252506=>1,1408172738=>1,1408052889=>1,1408052649=>1,1408051605=>1,1408051587=>1,1408052065=>1,1408052281=>1,1408052623=>1,1408052532=>1,1407848121=>1,1407809418=>1,1407035022=>1,1406971702=>1,1407044617=>1,1407045849=>1,1407090355=>1,1407081725=>1,1406971690=>1,1406971100=>1,1406970917=>1,1406970878=>1,1406970918=>1,1406970927=>1,1406970943=>1,1406970933=>1,1407121884=>1,1407142869=>1,1407656641=>1,1407656581=>1,1407792443=>1,1407792469=>1,1408259013=>1,1407805469=>1,1407656580=>1,1407652389=>1,1407399086=>1,1407142986=>1,1407404490=>1,1407475020=>1,1407481499=>1,1407816761=>1,1408263633=>1,1410736933=>1,1410736930=>1,1410738748=>1,1410739737=>1,1410742718=>1,1410739801=>1,1410580125=>1,1410580074=>1,1410576975=>1,1410407413=>1,1410577001=>1,1410577381=>1,1410577488=>1,1410577477=>1,1410803076=>1,1410821059=>1,1411936326=>1,1411932859=>1,1412002978=>1,1412039427=>1,1412210576=>1,1412074364=>1,1411846376=>1,1411777076=>1,1410930695=>1,1410892191=>1,1411171397=>1,1411295142=>1,1411341437=>1,1411312743=>1,1410400273=>1,1410260138=>1,1408981261=>1,1408910055=>1,1408982689=>1,1409015385=>1,1409098446=>1,1409069703=>1,1408807638=>1,1408802967=>1,1408451586=>1,1408315055=>1,1408688745=>1,1408716378=>1,1408790214=>1,1408763911=>1,1409174374=>1,1409183326=>1,1409554508=>1,1409523841=>1,1409796603=>1,1409943554=>1,1409982819=>1,1409970044=>1,1409482805=>1,1409363244=>1,1409246836=>1,1409233406=>1,1409256964=>1,1409314609=>1,1409342759=>1,1406970867=>1,1406970834=>1,1402306444=>1,1402134922=>1,1402342347=>1,1402343985=>1,1402360442=>1,1402350373=>1,1402095542=>1,1402095329=>1,1401887534=>1,1401887532=>1,1401902053=>1,1401973050=>1,1402073575=>1,1402062881=>1,1402573185=>1,1402575954=>1,1402958636=>1,1402923482=>1,1403019107=>1,1403098601=>1,1403126383=>1,1403116258=>1,1402922166=>1,1402910606=>1,1402698134=>1,1402635051=>1,1402723505=>1,1402865565=>1,1402890749=>1,1401887531=>1,1401887530=>1,1398259406=>1,1398250684=>1,1398494746=>1,1398513660=>1,1399038857=>1,1398562419=>1,1398191315=>1,1398177352=>1,1397988971=>1,1397882592=>1,1398012745=>1,1398069533=>1,1398144055=>1,1398108192=>1,1400201394=>1,1400908080=>1,1401451245=>1,1401348554=>1,1401687036=>1,1401799636=>1,1401873506=>1,1401856006=>1,1401331892=>1,1401329422=>1,1400926366=>1,1400913513=>1,1400946420=>1,1400947097=>1,1400956980=>1,1403165492=>1,1403173988=>1,1406427972=>1,1406427342=>1,1406428690=>1,1406429308=>1,1406429584=>1,1406429329=>1,1406427319=>1,1406377817=>1,1405791441=>1,1405762552=>1,1406166326=>1,1406337626=>1,1406349632=>1,1406340130=>1,1406431621=>1,1406432865=>1,1406898810=>1,1406898117=>1,1406970288=>1,1406970744=>1,1412254730=>1,1406970801=>1,1406837278=>1,1406780706=>1,1406603227=>1,1406445754=>1,1406625557=>1,1406663190=>1,1406664502=>1,1405758668=>1,1405566763=>1,1403447900=>1,1403341719=>1,1403500835=>1,1403500900=>1,1403515058=>1,1403515025=>1,1403250783=>1,1403242920=>1,1403177654=>1,1403176764=>1,1403177872=>1,1403178308=>1,1403211203=>1,1403193680=>1,1403515064=>1,1403541066=>1,1403761202=>1,1403761185=>1,1403800490=>1,1403818003=>1,1405213043=>1,1404003458=>1,1403742309=>1,1403677029=>1,1403636226=>1,1403570380=>1,1403637976=>1,1403638578=>1,1403638703=>1,1406970840=>1,1412254731=>1,1422414499=>1,1422413299=>1,1422431688=>1,1422446179=>1,1422554276=>1,1422522138=>1,1422412270=>1,1422404847=>1,1422329730=>1,1422176053=>1,1422395425=>1,1422395567=>1,1422397134=>1,1422395599=>1,1422563216=>1,1422564900=>1,1423390111=>1,1423383047=>1,1423410013=>1,1423415070=>1,1423422546=>1,1423415643=>1,1423297257=>1,1423248436=>1,1422676914=>1,1422565429=>1,1422931869=>1,1422961405=>1,1423074440=>1,1422965496=>1,1422112480=>1,1422092414=>1,1419865614=>1,1419865470=>1,1420081450=>1,1420590262=>1,1420769624=>1,1420750028=>1,1419864318=>1,1419864163=>1,1419863052=>1,1419862581=>1,1419863255=>1,1419863718=>1,1419864117=>1,1419863760=>1,1420814878=>1,1420815855=>1,1421623540=>1,1421309541=>1,1421851715=>1,1421952096=>1,1422023877=>1,1421961787=>1,1421241942=>1,1421237181=>1,1420852383=>1,1420845530=>1,1421007584=>1,1421114471=>1,1421193972=>1,1423448481=>1,1423506142=>1,1425977656=>1,1425959940=>1,1425981925=>1,1426059139=>1,1426724273=>1,1426516206=>1,1425959939=>1,1425959938=>1,1425674841=>1,1425657874=>1,1425693994=>1,1425754222=>1,1425884338=>1,1425765222=>1,1426732378=>1,1426768905=>1,1426780410=>1,1426774951=>1,1426831454=>1,1426918756=>1,1426947975=>1,1426918910=>1,1426772789=>1,1426772679=>1,1426769644=>1,1426768908=>1,1426770214=>1,1426770223=>1,1426770759=>1,1426770519=>1,1425655782=>1,1425627821=>1,1424661330=>1,1424522943=>1,1424678266=>1,1424678387=>1,1425030378=>1,1424863840=>1,1424445891=>1,1424444280=>1,1423691988=>1,1423682876=>1,1423701397=>1,1423702209=>1,1424431258=>1,1424160294=>1,1425081011=>1,1425088574=>1,1425350851=>1,1425284916=>1,1425493437=>1,1425513933=>1,1425622038=>1,1425573261=>1,1425196045=>1,1425163757=>1,1425092597=>1,1425088943=>1,1425096980=>1,1425113210=>1,1425124952=>1,1419862390=>1,1419862156=>1,1414247420=>1,1414244545=>1,1414260259=>1,1414549573=>1,1415321813=>1,1415066868=>1,1414218987=>1,1414167893=>1,1414023408=>1,1414016527=>1,1414074204=>1,1414087342=>1,1414167367=>1,1414132430=>1,1415321814=>1,1415340385=>1,1416322705=>1,1416316444=>1,1416347167=>1,1416366163=>1,1416508770=>1,1416508684=>1,1416307495=>1,1416287008=>1,1415720635=>1,1415365097=>1,1415872108=>1,1416150841=>1,1416257830=>1,1416229139=>1,1413299347=>1,1413211132=>1,1412308846=>1,1412306763=>1,1412482894=>1,1412649783=>1,1412660189=>1,1412656085=>1,1412306306=>1,1412305364=>1,1412254733=>1,1412254732=>1,1412298278=>1,1412302707=>1,1412304863=>1,1412304190=>1,1412661812=>1,1412714074=>1,1413045616=>1,1413039767=>1,1413076666=>1,1413076831=>1,1413210773=>1,1413160634=>1,1412963728=>1,1412869685=>1,1412819098=>1,1412789100=>1,1412853814=>1,1412858777=>1,1412860158=>1,1416508804=>1,1416532080=>1,1418260225=>1,1418260029=>1,1418284080=>1,1418285332=>1,1418549681=>1,1418543828=>1,1418259610=>1,1418258780=>1,1417996751=>1,1417995526=>1,1418157727=>1,1418256573=>1,1418258235=>1,1418258118=>1,1418559651=>1,1418567671=>1,1419528452=>1,1419428983=>1,1419529863=>1,1419705770=>1,1419818986=>1,1419723617=>1,1419367254=>1,1419144012=>1,1418745930=>1,1418717547=>1,1418754732=>1,1418781622=>1,1418782663=>1,1417952749=>1,1417951916=>1,1417106049=>1,1417067643=>1,1417130614=>1,1417132582=>1,1417415544=>1,1417308424=>1,1417046638=>1,1417041302=>1,1416758070=>1,1416532670=>1,1416786444=>1,1416786788=>1,1416876362=>1,1416831992=>1,1417415631=>1,1417445904=>1,1417949900=>1,1417949867=>1,1417949912=>1,1417949955=>1,1417951012=>1,1417950067=>1,1417949374=>1,1417945514=>1,1417732421=>1,1417507499=>1,1417734714=>1,1417842247=>1,1417844535=>1,1397879741=>1,1397684788=>1,1373184556=>1,1373179284=>1,1373223686=>1,1373235429=>1,1373269443=>1,1373264794=>1,1372993472=>1,1372950822=>1,1372068569=>1,1372035699=>1,1372123218=>1,1372561363=>1,1372808366=>1,1372802606=>1,1373301666=>1,1373360897=>1,1373971659=>1,1373961897=>1,1374344285=>1,1374835123=>1,1374835844=>1,1374835781=>1,1373886540=>1,1373695406=>1,1373369074=>1,1373361089=>1,1373425250=>1,1373487168=>1,1373524742=>1,1373501417=>1,1371989559=>1,1371533346=>1,1370075044=>1,1370072650=>1,1370075156=>1,1370076511=>1,1370093661=>1,1370078146=>1,1370069565=>1,1370069092=>1,1370065459=>1,1370065102=>1,1370066104=>1,1370066268=>1,1370068348=>1,1370066398=>1,1370151197=>1,1370232102=>1,1370767910=>1,1370566833=>1,1370837274=>1,1370922328=>1,1371433657=>1,1370970538=>1,1370547254=>1,1370480079=>1,1370396203=>1,1370353745=>1,1370396631=>1,1370416914=>1,1370461279=>1,1374836432=>1,1374836679=>1,1377008905=>1,1377000003=>1,1377225329=>1,1377531236=>1,1377980176=>1,1377727330=>1,1376563060=>1,1376562045=>1,1375830086=>1,1375337127=>1,1375830422=>1,1376070249=>1,1376230901=>1,1376125961=>1,1378453802=>1,1378543679=>1,1380114242=>1,1380093059=>1,1380136736=>1,1380228732=>1,1380266546=>1,1380259779=>1,1379995243=>1,1379988475=>1,1378790847=>1,1378728299=>1,1379963454=>1,1379969376=>1,1379981858=>1,1375310246=>1,1375138434=>1,1375062585=>1,1375062238=>1,1375063260=>1,1375063438=>1,1375063784=>1,1375063744=>1,1375061595=>1,1375061242=>1,1374837272=>1,1374837049=>1,1374837391=>1,1374917905=>1,1375060710=>1,1374919230=>1,1375063966=>1,1375064951=>1,1375130553=>1,1375128509=>1,1375131109=>1,1375132160=>1,1375136129=>1,1375135747=>1,1375128251=>1,1375125975=>1,1375066228=>1,1375065900=>1,1375066836=>1,1375069962=>1,1375125779=>1,1370063921=>1,1370063574=>1,1360232827=>1,1360200519=>1,1360239802=>1,1360292620=>1,1360462255=>1,1360359988=>1,1360198409=>1,1360076336=>1,1359864208=>1,1359858457=>1,1360072755=>1,1360073090=>1,1360076332=>1,1360073091=>1,1360464033=>1,1360604263=>1,1360917009=>1,1360840062=>1,1360917833=>1,1360917835=>1,1360917837=>1,1360917836=>1,1360831599=>1,1360803586=>1,1360756399=>1,1360755426=>1,1360799061=>1,1360801538=>1,1360802563=>1,1360802306=>1,1359840758=>1,1359734648=>1,1359416660=>1,1359416317=>1,1359416824=>1,1359417059=>1,1359417203=>1,1359417078=>1,1359416218=>1,1359416134=>1,1359415828=>1,1359415825=>1,1359415837=>1,1359415876=>1,1359416059=>1,1359415901=>1,1359417375=>1,1359417403=>1,1359538526=>1,1359526826=>1,1359538539=>1,1359650578=>1,1359734417=>1,1359657098=>1,1359437640=>1,1359417771=>1,1359417521=>1,1359417483=>1,1359417526=>1,1359417662=>1,1359417668=>1,1360919473=>1,1360919474=>1,1365232770=>1,1365193796=>1,1365497996=>1,1365505813=>1,1365689937=>1,1365673374=>1,1364813109=>1,1364811865=>1,1364787401=>1,1364787400=>1,1364787402=>1,1364787403=>1,1364811864=>1,1364787404=>1,1366072237=>1,1366124982=>1,1369645921=>1,1369635858=>1,1369668422=>1,1369784274=>1,1370063412=>1,1369980729=>1,1368837612=>1,1368767474=>1,1368015713=>1,1367930740=>1,1368039237=>1,1368223622=>1,1368332577=>1,1364787399=>1,1364787398=>1,1361357499=>1,1360974706=>1,1361859349=>1,1362482707=>1,1362722582=>1,1362641621=>1,1360950375=>1,1360938917=>1,1360919476=>1,1360919475=>1,1360919477=>1,1360919478=>1,1360938243=>1,1360920203=>1,1362729179=>1,1362743431=>1,1364740304=>1,1364740154=>1,1364776503=>1,1364787395=>1,1364787397=>1,1364787396=>1,1364631067=>1,1364398893=>1,1363239139=>1,1363116369=>1,1363318350=>1,1363631466=>1,1364356621=>1,1380273187=>1,1380391297=>1,1390172469=>1,1390158383=>1,1390172476=>1,1390241053=>1,1390248288=>1,1390241091=>1,1390086489=>1,1390015751=>1,1389564801=>1,1389560009=>1,1389564815=>1,1389567878=>1,1389767665=>1,1389629339=>1,1390350464=>1,1390351690=>1,1390922925=>1,1390840468=>1,1390928500=>1,1390961066=>1,1391316036=>1,1391031703=>1,1390774815=>1,1390738452=>1,1390446161=>1,1390354085=>1,1390515089=>1,1390568227=>1,1390640629=>1,1390582507=>1,1389559988=>1,1389493156=>1,1388580494=>1,1388580031=>1,1388691897=>1,1388696817=>1,1388758334=>1,1388719420=>1,1388579462=>1,1388551184=>1,1388412525=>1,1388322557=>1,1388418482=>1,1388488004=>1,1388550852=>1,1388489246=>1,1388798241=>1,1388802306=>1,1389441476=>1,1389441474=>1,1389441480=>1,1389473700=>1,1389492302=>1,1389476862=>1,1389408909=>1,1389387584=>1,1388857562=>1,1388813145=>1,1389128156=>1,1389165066=>1,1389321932=>1,1391437438=>1,1391622343=>1,1392499036=>1,1392469851=>1,1392503377=>1,1392973320=>1,1394710667=>1,1393538938=>1,1392452552=>1,1392415010=>1,1392186755=>1,1392152082=>1,1392289554=>1,1392335838=>1,1392388687=>1,1392386643=>1,1395060063=>1,1395289951=>1,1397522756=>1,1397092949=>1,1397547648=>1,1397571080=>1,1359415159=>1,1397660370=>1,1397031549=>1,1396975561=>1,1396047414=>1,1395484643=>1,1396056893=>1,1396470962=>1,1396482365=>1,1392150164=>1,1392149173=>1,1391945589=>1,1391867855=>1,1391969099=>1,1391985411=>1,1391994969=>1,1391992763=>1,1391864476=>1,1391839073=>1,1391630547=>1,1391625330=>1,1391677193=>1,1391691188=>1,1391837840=>1,1391767847=>1,1391997389=>1,1392002454=>1,1392099449=>1,1392092477=>1,1392104660=>1,1392109853=>1,1392131686=>1,1392117783=>1,1392090262=>1,1392071888=>1,1392029420=>1,1392018798=>1,1392058730=>1,1392061119=>1,1392063248=>1,1388322554=>1,1388322549=>1,1383225552=>1,1383224950=>1,1383364611=>1,1383441226=>1,1383464146=>1,1383451906=>1,1383224833=>1,1383223868=>1,1382518647=>1,1382517337=>1,1383084156=>1,1383087673=>1,1383223866=>1,1383222893=>1,1383469958=>1,1383508347=>1,1384248105=>1,1384246533=>1,1384248106=>1,1384248108=>1,1384601249=>1,1384253711=>1,1384246531=>1,1384184313=>1,1383552571=>1,1383535166=>1,1383590180=>1,1383840979=>1,1384092213=>1,1382452946=>1,1382419352=>1,1381179282=>1,1381150276=>1,1381221672=>1,1381304419=>1,1381947287=>1,1381739124=>1,1381148401=>1,1381115476=>1,1380712199=>1,1380447823=>1,1380790942=>1,1380892575=>1,1381051611=>1,1380983139=>1,1381953814=>1,1381954266=>1,1382185176=>1,1382172782=>1,1382269269=>1,1382270209=>1,1382419062=>1,1382412765=>1,1382172752=>1,1382002836=>1,1381956556=>1,1381956555=>1,1381956579=>1,1381974731=>1,1381985075=>1,1384670211=>1,1384859240=>1,1386344369=>1,1386337489=>1,1386397426=>1,1386496364=>1,1386540669=>1,1386526651=>1,1386336855=>1,1386329620=>1,1386274516=>1,1386262279=>1,1386295838=>1,1386306317=>1,1386320870=>1,1386310983=>1,1386581583=>1,1386583203=>1,1387609684=>1,1387600984=>1,1387613446=>1,1387626896=>1,1388322546=>1,1388322542=>1,1387392752=>1,1387307630=>1,1386588700=>1,1386584038=>1,1386840025=>1,1386847048=>1,1387112623=>1,1386261133=>1,1386235172=>1,1385312017=>1,1385311450=>1,1385313502=>1,1385313552=>1,1385313613=>1,1385313577=>1,1385310038=>1,1385309895=>1,1384871463=>1,1384870225=>1,1384891915=>1,1385308398=>1,1385309033=>1,1385308929=>1,1385313650=>1,1385314002=>1,1386150557=>1,1386146598=>1,1386223506=>1,1386223664=>1,1386233958=>1,1386231190=>1,1385850219=>1,1385657762=>1,1385314210=>1,1385314146=>1,1385315917=>1,1385525422=>1,1385547506=>1,1397705321=>1,);?>
1
+ <?php return array(1029325770=>1,1029325751=>1,1029325776=>1,1029325777=>1,1029325785=>1,1029325780=>1,1029325695=>1,1029325692=>1,1029325658=>1,1029325656=>1,1029325668=>1,1029325673=>1,1029325688=>1,1029325681=>1,1029325786=>1,1029325795=>1,1029325888=>1,1029325883=>1,1029325909=>1,1029325920=>1,1029325976=>1,1029325943=>1,1029325862=>1,1029325855=>1,1029325803=>1,1029325797=>1,1029325809=>1,1029325810=>1,1029325839=>1,1029325811=>1,1029325653=>1,1029325652=>1,1029325472=>1,1029325452=>1,1029325476=>1,1029325494=>1,1029325497=>1,1029325496=>1,1029325447=>1,1029325446=>1,1029325433=>1,1029325432=>1,1029325439=>1,1029325440=>1,1029325445=>1,1029325441=>1,1029325511=>1,1029325512=>1,1029325599=>1,1029325592=>1,1029325600=>1,1029325604=>1,1029325649=>1,1029325644=>1,1029325576=>1,1029325563=>1,1029325521=>1,1029325518=>1,1029325537=>1,1029325547=>1,1029325562=>1,1029326037=>1,1029326062=>1,1029327992=>1,1029327944=>1,1029328003=>1,1029328004=>1,1029328105=>1,1029328024=>1,1029327932=>1,1029327913=>1,1029327775=>1,1029327753=>1,1029327829=>1,1029327830=>1,1029327894=>1,1029327882=>1,1029328119=>1,1029328130=>1,1029328754=>1,1029328745=>1,1029328792=>1,1029328835=>1,1029328853=>1,1029328840=>1,1029328661=>1,1029328568=>1,1029328261=>1,1029328248=>1,1029328265=>1,1029328295=>1,1029328372=>1,1029328350=>1,1029327697=>1,1029327634=>1,1029327215=>1,1029327184=>1,1029327258=>1,1029327263=>1,1029327365=>1,1029327337=>1,1029327139=>1,1029327114=>1,1029326928=>1,1029326889=>1,1029327000=>1,1029327007=>1,1029327056=>1,1029327025=>1,1029327372=>1,1029327405=>1,1029327567=>1,1029327546=>1,1029327577=>1,1029327591=>1,1029327626=>1,1029327613=>1,1029327543=>1,1029327535=>1,1029327476=>1,1029327406=>1,1029327479=>1,1029327488=>1,1029327525=>1,1029325411=>1,1029325402=>1,1029324762=>1,1029324747=>1,1029324763=>1,1029324767=>1,1029324771=>1,1029324768=>1,1029324726=>1,1029324703=>1,1029324658=>1,1029324633=>1,1029324663=>1,1029324671=>1,1029324696=>1,1029324694=>1,1029324781=>1,1029324798=>1,1029324858=>1,1029324853=>1,1029324868=>1,1029324870=>1,1029324886=>1,1029324879=>1,1029324851=>1,1029324841=>1,1029324808=>1,1029324805=>1,1029324822=>1,1029324834=>1,1029324840=>1,1029324838=>1,1029324632=>1,1029324621=>1,1029324450=>1,1029324448=>1,1029324461=>1,1029324475=>1,1029324492=>1,1029324484=>1,1029324443=>1,1029324441=>1,1029324375=>1,1029324369=>1,1029324381=>1,1029324392=>1,1029324405=>1,1029324396=>1,1029324493=>1,1029324495=>1,1029324572=>1,1029324560=>1,1029324595=>1,1029324613=>1,1029324617=>1,1029324616=>1,1029324548=>1,1029324547=>1,1029324521=>1,1029324509=>1,1029324527=>1,1029324531=>1,1029324539=>1,1029324894=>1,1029324899=>1,1029325232=>1,1029325229=>1,1029325234=>1,1029325235=>1,1029325250=>1,1029325249=>1,1029325226=>1,1029325225=>1,1029325194=>1,1029325191=>1,1029325195=>1,1029325205=>1,1029325219=>1,1029325214=>1,1029325256=>1,1029325261=>1,1029325341=>1,1029325324=>1,1029325348=>1,1029325361=>1,1029325376=>1,1029325365=>1,1029325321=>1,1029325308=>1,1029325271=>1,1029325263=>1,1029325292=>1,1029325296=>1,1029325302=>1,1029325179=>1,1029325167=>1,1029324994=>1,1029324993=>1,1029325006=>1,1029325010=>1,1029325023=>1,1029325015=>1,1029324982=>1,1029324981=>1,1029324934=>1,1029324920=>1,1029324940=>1,1029324949=>1,1029324976=>1,1029324965=>1,1029325026=>1,1029325044=>1,1029325121=>1,1029325114=>1,1029325139=>1,1029325150=>1,1029325162=>1,1029325154=>1,1029325111=>1,1029325108=>1,1029325072=>1,1029325061=>1,1029325080=>1,1029325087=>1,1029325105=>1,1029328955=>1,1029329012=>1,1029334105=>1,1029334096=>1,1029334119=>1,1029334126=>1,1029334162=>1,1029334148=>1,1029334093=>1,1029334053=>1,1029333996=>1,1029333994=>1,1029334000=>1,1029334004=>1,1029334018=>1,1029334007=>1,1029334205=>1,1029334549=>1,1029334741=>1,1029334734=>1,1029334767=>1,1029334784=>1,1029334791=>1,1029334787=>1,1029334731=>1,1029334729=>1,1029334595=>1,1029334572=>1,1029334647=>1,1029334656=>1,1029334725=>1,1029334677=>1,1029333990=>1,1029333986=>1,1029333459=>1,1029333454=>1,1029333508=>1,1029333528=>1,1029333570=>1,1029333541=>1,1029333444=>1,1029333414=>1,1029333204=>1,1029333156=>1,1029333215=>1,1029333252=>1,1029333413=>1,1029333405=>1,1029333583=>1,1029333587=>1,1029333880=>1,1029333862=>1,1029333883=>1,1029333907=>1,1029333977=>1,1029333924=>1,1029333785=>1,1029333732=>1,1029333659=>1,1029333598=>1,1029333670=>1,1029333686=>1,1029333700=>1,1029334794=>1,1029334810=>1,1029335798=>1,1029335633=>1,1029336067=>1,1029336110=>1,1029336125=>1,1029336111=>1,1029335628=>1,1029335589=>1,1029335484=>1,1029335461=>1,1029335513=>1,1029335517=>1,1029335577=>1,1029335563=>1,1029336128=>1,1029336133=>1,1029336226=>1,1029336219=>1,1029336249=>1,1029336281=>1,1029336319=>1,1029336295=>1,1029336208=>1,1029336207=>1,1029336144=>1,1029336140=>1,1029336150=>1,1029336153=>1,1029336173=>1,1029335456=>1,1029335445=>1,1029335013=>1,1029335003=>1,1029335014=>1,1029335033=>1,1029335082=>1,1029335071=>1,1029334995=>1,1029334979=>1,1029334912=>1,1029334895=>1,1029334937=>1,1029334946=>1,1029334976=>1,1029334953=>1,1029335125=>1,1029335144=>1,1029335296=>1,1029335288=>1,1029335355=>1,1029335381=>1,1029335412=>1,1029335383=>1,1029335267=>1,1029335254=>1,1029335168=>1,1029335160=>1,1029335194=>1,1029335233=>1,1029335235=>1,1029333145=>1,1029333117=>1,1029329822=>1,1029329819=>1,1029329827=>1,1029329834=>1,1029329868=>1,1029329850=>1,1029329798=>1,1029329788=>1,1029329723=>1,1029329678=>1,1029329762=>1,1029329773=>1,1029329783=>1,1029329781=>1,1029329875=>1,1029330056=>1,1029330301=>1,1029330289=>1,1029330374=>1,1029330383=>1,1029330490=>1,1029330384=>1,1029330283=>1,1029330210=>1,1029330089=>1,1029330058=>1,1029330090=>1,1029330096=>1,1029330137=>1,1029330130=>1,1029329654=>1,1029329593=>1,1029329258=>1,1029329248=>1,1029329273=>1,1029329306=>1,1029329327=>1,1029329315=>1,1029329215=>1,1029329199=>1,1029329048=>1,1029329024=>1,1029329066=>1,1029329100=>1,1029329197=>1,1029329169=>1,1029329332=>1,1029329354=>1,1029329566=>1,1029329565=>1,1029329576=>1,1029329578=>1,1029329584=>1,1029329579=>1,1029329550=>1,1029329466=>1,1029329384=>1,1029329383=>1,1029329396=>1,1029329448=>1,1029329464=>1,1029330550=>1,1029330560=>1,1029331492=>1,1029331489=>1,1029331523=>1,1029331527=>1,1029331682=>1,1029331646=>1,1029331488=>1,1029331486=>1,1029331342=>1,1029331314=>1,1029331361=>1,1029331369=>1,1029331438=>1,1029331420=>1,1029331701=>1,1029331706=>1,1029333052=>1,1029333029=>1,1029333067=>1,1029333091=>1,1029333108=>1,1029333103=>1,1029332995=>1,1029331923=>1,1029331802=>1,1029331728=>1,1029331849=>1,1029331892=>1,1029331905=>1,1029331300=>1,1029331225=>1,1029330738=>1,1029330707=>1,1029330761=>1,1029330762=>1,1029330816=>1,1029330777=>1,1029330666=>1,1029330661=>1,1029330575=>1,1029330564=>1,1029330582=>1,1029330593=>1,1029330660=>1,1029330624=>1,1029330868=>1,1029330903=>1,1029331124=>1,1029331100=>1,1029331165=>1,1029331179=>1,1029331223=>1,1029331211=>1,1029331090=>1,1029331051=>1,1029330960=>1,1029330912=>1,1029330968=>1,1029330985=>1,1029331037=>1,1029324363=>1,1029324357=>1,1029320538=>1,1029320524=>1,1029320541=>1,1029320544=>1,1029320596=>1,1029320564=>1,1029320519=>1,1029320516=>1,1029320488=>1,1029320487=>1,1029320497=>1,1029320498=>1,1029320514=>1,1029320505=>1,1029320597=>1,1029320606=>1,1029320771=>1,1029320735=>1,1029320780=>1,1029320801=>1,1029320810=>1,1029320805=>1,1029320730=>1,1029320718=>1,1029320624=>1,1029320619=>1,1029320628=>1,1029320661=>1,1029320691=>1,1029320670=>1,1029320476=>1,1029320467=>1,1029320261=>1,1029320259=>1,1029320262=>1,1029320269=>1,1029320277=>1,1029320276=>1,1029320252=>1,1029320208=>1,1029320162=>1,1029320149=>1,1029320163=>1,1029320196=>1,1029320205=>1,1029320204=>1,1029320289=>1,1029320291=>1,1029320374=>1,1029320364=>1,1029320389=>1,1029320443=>1,1029320466=>1,1029320454=>1,1029320358=>1,1029320349=>1,1029320320=>1,1029320318=>1,1029320322=>1,1029320336=>1,1029320346=>1,1029320811=>1,1029320828=>1,1029321451=>1,1029321426=>1,1029321457=>1,1029321490=>1,1029321532=>1,1029321500=>1,1029321419=>1,1029321329=>1,1029321270=>1,1029321240=>1,1029321283=>1,1029321294=>1,1029321310=>1,1029321303=>1,1029321565=>1,1029321579=>1,1029321668=>1,1029321666=>1,1029321675=>1,1029321703=>1,1029321711=>1,1029321704=>1,1029321660=>1,1029321644=>1,1029321602=>1,1029321593=>1,1029321607=>1,1029321640=>1,1029321643=>1,1029321220=>1,1029321213=>1,1029320986=>1,1029320981=>1,1029321015=>1,1029321018=>1,1029321033=>1,1029321027=>1,1029320978=>1,1029320936=>1,1029320845=>1,1029320840=>1,1029320855=>1,1029320873=>1,1029320928=>1,1029320892=>1,1029321038=>1,1029321041=>1,1029321126=>1,1029321109=>1,1029321140=>1,1029321174=>1,1029321198=>1,1029321184=>1,1029321107=>1,1029321091=>1,1029321058=>1,1029321056=>1,1029321067=>1,1029321079=>1,1029321087=>1,1029320145=>1,1029320141=>1,1029319235=>1,1029319229=>1,1029319236=>1,1029319243=>1,1029319272=>1,1029319256=>1,1029319217=>1,1029319213=>1,1029319178=>1,1029319173=>1,1029319190=>1,1029319191=>1,1029319194=>1,1029319192=>1,1029319293=>1,1029319298=>1,1029319373=>1,1029319352=>1,1029319379=>1,1029319393=>1,1029319467=>1,1029319395=>1,1029319346=>1,1029319342=>1,1029319306=>1,1029319303=>1,1029319308=>1,1029319309=>1,1029319324=>1,1029319316=>1,1029319164=>1,1029319146=>1,1029319004=>1,1029319001=>1,1029319006=>1,1029319008=>1,1029319016=>1,1029319011=>1,1029318995=>1,1029318991=>1,1029318964=>1,1029318957=>1,1029318973=>1,1029318980=>1,1029318985=>1,1029318983=>1,1029319024=>1,1029319028=>1,1029319118=>1,1029319109=>1,1029319128=>1,1029319130=>1,1029319143=>1,1029319141=>1,1029319090=>1,1029319085=>1,1029319033=>1,1029319032=>1,1029319041=>1,1029319047=>1,1029319060=>1,1029319479=>1,1029319483=>1,1029319901=>1,1029319893=>1,1029319902=>1,1029319920=>1,1029319927=>1,1029319923=>1,1029319873=>1,1029319868=>1,1029319792=>1,1029319780=>1,1029319793=>1,1029319822=>1,1029319838=>1,1029319826=>1,1029319932=>1,1029319937=>1,1029320038=>1,1029320037=>1,1029320061=>1,1029320100=>1,1029320114=>1,1029320112=>1,1029320009=>1,1029320001=>1,1029319976=>1,1029319956=>1,1029319987=>1,1029319996=>1,1029319997=>1,1029319774=>1,1029319773=>1,1029319548=>1,1029319544=>1,1029319572=>1,1029319608=>1,1029319637=>1,1029319621=>1,1029319533=>1,1029319530=>1,1029319488=>1,1029319484=>1,1029319495=>1,1029319500=>1,1029319529=>1,1029319524=>1,1029319644=>1,1029319661=>1,1029319741=>1,1029319738=>1,1029319748=>1,1029319750=>1,1029319770=>1,1029319753=>1,1029319726=>1,1029319722=>1,1029319685=>1,1029319664=>1,1029319692=>1,1029319715=>1,1029319716=>1,1029321733=>1,1029321735=>1,1029323599=>1,1029323597=>1,1029323603=>1,1029323608=>1,1029323626=>1,1029323616=>1,1029323595=>1,1029323588=>1,1029323556=>1,1029323545=>1,1029323560=>1,1029323568=>1,1029323587=>1,1029323575=>1,1029323633=>1,1029323669=>1,1029323754=>1,1029323753=>1,1029323759=>1,1029323779=>1,1029323804=>1,1029323794=>1,1029323748=>1,1029323742=>1,1029323695=>1,1029323694=>1,1029323704=>1,1029323717=>1,1029323739=>1,1029323727=>1,1029323544=>1,1029323543=>1,1029323391=>1,1029323386=>1,1029323397=>1,1029323402=>1,1029323417=>1,1029323404=>1,1029323369=>1,1029323366=>1,1029323336=>1,1029323316=>1,1029323337=>1,1029323343=>1,1029323358=>1,1029323348=>1,1029323422=>1,1029323428=>1,1029323494=>1,1029323490=>1,1029323506=>1,1029323531=>1,1029323540=>1,1029323533=>1,1029323484=>1,1029323483=>1,1029323444=>1,1029323434=>1,1029323454=>1,1029323469=>1,1029323475=>1,1029323807=>1,1029323824=>1,1029324155=>1,1029324154=>1,1029324160=>1,1029324163=>1,1029324192=>1,1029324170=>1,1029324150=>1,1029324149=>1,1029324093=>1,1029324089=>1,1029324096=>1,1029324099=>1,1029324135=>1,1029324100=>1,1029324199=>1,1029324206=>1,1029324276=>1,1029324264=>1,1029324314=>1,1029324316=>1,1029324333=>1,1029324318=>1,1029324247=>1,1029324243=>1,1029324221=>1,1029324216=>1,1029324230=>1,1029324233=>1,1029324242=>1,1029324084=>1,1029324083=>1,1029323907=>1,1029323873=>1,1029323909=>1,1029323924=>1,1029323944=>1,1029323935=>1,1029323863=>1,1029323857=>1,1029323829=>1,1029323826=>1,1029323833=>1,1029323851=>1,1029323856=>1,1029323854=>1,1029323948=>1,1029323957=>1,1029324056=>1,1029324051=>1,1029324061=>1,1029324067=>1,1029324080=>1,1029324078=>1,1029324042=>1,1029324013=>1,1029323972=>1,1029323967=>1,1029323978=>1,1029323989=>1,1029323992=>1,1029323308=>1,1029323304=>1,1029322474=>1,1029322465=>1,1029322478=>1,1029322480=>1,1029322498=>1,1029322491=>1,1029322436=>1,1029322430=>1,1029322386=>1,1029322349=>1,1029322388=>1,1029322405=>1,1029322407=>1,1029322406=>1,1029322503=>1,1029322513=>1,1029322600=>1,1029322595=>1,1029322610=>1,1029322626=>1,1029322654=>1,1029322631=>1,1029322582=>1,1029322574=>1,1029322522=>1,1029322514=>1,1029322545=>1,1029322559=>1,1029322566=>1,1029322563=>1,1029322335=>1,1029322270=>1,1029321872=>1,1029321862=>1,1029321885=>1,1029321898=>1,1029321918=>1,1029321903=>1,1029321856=>1,1029321825=>1,1029321785=>1,1029321780=>1,1029321805=>1,1029321815=>1,1029321822=>1,1029321821=>1,1029321944=>1,1029321963=>1,1029322088=>1,1029322072=>1,1029322125=>1,1029322158=>1,1029322258=>1,1029322232=>1,1029322070=>1,1029322060=>1,1029322028=>1,1029322021=>1,1029322035=>1,1029322039=>1,1029322046=>1,1029322666=>1,1029322671=>1,1029323086=>1,1029323075=>1,1029323111=>1,1029323115=>1,1029323138=>1,1029323135=>1,1029323068=>1,1029323054=>1,1029323000=>1,1029322998=>1,1029323001=>1,1029323011=>1,1029323049=>1,1029323016=>1,1029323147=>1,1029323182=>1,1029323264=>1,1029323237=>1,1029323271=>1,1029323278=>1,1029323293=>1,1029323286=>1,1029323235=>1,1029323231=>1,1029323198=>1,1029323184=>1,1029323214=>1,1029323224=>1,1029323226=>1,1029322996=>1,1029322993=>1,1029322762=>1,1029322761=>1,1029322764=>1,1029322765=>1,1029322780=>1,1029322766=>1,1029322756=>1,1029322749=>1,1029322684=>1,1029322672=>1,1029322689=>1,1029322690=>1,1029322727=>1,1029322707=>1,1029322808=>1,1029322809=>1,1029322944=>1,1029322913=>1,1029322962=>1,1029322977=>1,1029322981=>1,1029322980=>1,1029322912=>1,1029322908=>1,1029322821=>1,1029322817=>1,1029322834=>1,1029322838=>1,1029322840=>1,1029318953=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-12.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1467468544=>1467468799,1467346496=>1467346559,1441652224=>1441652479,1441645824=>1441646079,1475133999=>1,1475091355=>1,1475134263=>1,1475134393=>1,1475139411=>1,1473817523=>1,1474351859=>1,1474704223=>1,1474697621=>1,1474765197=>1,1475139569=>1,1474637147=>1,1474637148=>1,1475481511=>1,1476007025=>1,1475989418=>1,1476099915=>1,1476103261=>1,1476134307=>1,1476111367=>1,1475907010=>1,1475753484=>1,1473158596=>1,1475325623=>1,1475655097=>1,1475694784=>1,1475719666=>1,1475324049=>1,1473158363=>1,1471086066=>1,1471080697=>1,1471049751=>1,1471252045=>1,1471252329=>1,1471332311=>1,1471325149=>1,1471012086=>1,1471010566=>1,1470794485=>1,1470793857=>1,1470890402=>1,1470894853=>1,1470996172=>1,1470900587=>1,1471446574=>1,1471446653=>1,1472557478=>1,1472319502=>1,1472573948=>1,1472605893=>1,1472980074=>1,1472799515=>1,1472312302=>1,1472065232=>1,1471543523=>1,1471504405=>1,1471567229=>1,1471740215=>1,1472029447=>1,1471967570=>1,1476237503=>1,1476347422=>1,1481481466=>1,1481480609=>1,1481481926=>1,1481486408=>1,1481487866=>1,1481486636=>1,1481479743=>1,1481479079=>1,1481433123=>1,1481418538=>1,1481458308=>1,1481474647=>1,1481478674=>1,1481475947=>1,1481489451=>1,1481491653=>1,1481623190=>1,1481550138=>1,1481692861=>1,1481812124=>1,1481894304=>1,1481813229=>1,1481507237=>1,1481497456=>1,1481492116=>1,1481491936=>1,1481495401=>1,1481496050=>1,1481496369=>1,1481394142=>1,1481392596=>1,1478835028=>1,1478523989=>1,1480608068=>1,1480611928=>1,1480761836=>1,1480689798=>1,1478178988=>1,1477528258=>1,1470782510=>1,1476336568=>1,1476391403=>1,1476600005=>1,1477420124=>1,1480780071=>1,1480780120=>1,1481100822=>1,1481048678=>1,1481162534=>1,1481171302=>1,1481382045=>1,1481361437=>1,1480952886=>1,1480828592=>1,1480825164=>1,1480824186=>1,1480826837=>1,1480826872=>1,1480828449=>1,1476283938=>1,1470763726=>1,1467372589=>1,1467344741=>1,1467372725=>1,1467372790=>1,1467374635=>1,1467374476=>1,1467303029=>1,1467303028=>1,1467177716=>1,1467121904=>1,1467178759=>1,1467217025=>1,1467301236=>1,1467287833=>1,1467375331=>1,1467376315=>1,1467557501=>1,1467491598=>1,1467559589=>1,1467561193=>1,1467730892=>1,1467589504=>1,1467476569=>1,1467464231=>1,1467379358=>1,1467376694=>1,1467380358=>1,1467380963=>1,1467446060=>1,1466908679=>1,1466846135=>1,1466570061=>1,1466569974=>1,1466570353=>1,1466572986=>1,1466576527=>1,1466575640=>1,1466569229=>1,1466568968=>1,1466565476=>1,1466481499=>1,1466565664=>1,1466565822=>1,1466568911=>1,1466566275=>1,1466576830=>1,1466577301=>1,1466607044=>1,1466602767=>1,1466613230=>1,1466613599=>1,1466628470=>1,1466618092=>1,1466602401=>1,1466600472=>1,1466578822=>1,1466577340=>1,1466579981=>1,1466580140=>1,1466584984=>1,1467731742=>1,1467911823=>1,1470586663=>1,1470344197=>1,1470607900=>1,1470610935=>1,1470721156=>1,1470721037=>1,1470333138=>1,1470286525=>1,1470091767=>1,1470087463=>1,1470166741=>1,1470253157=>1,1470257489=>1,1470254181=>1,1470721512=>1,1470721600=>1,1470724463=>1,1470724283=>1,1470725240=>1,1470725891=>1,1481956866=>1,1470726026=>1,1470723947=>1,1470723649=>1,1470722652=>1,1470722347=>1,1470722837=>1,1470723218=>1,1470723457=>1,1470079071=>1,1470073930=>1,1468952233=>1,1468948549=>1,1468955110=>1,1469174588=>1,1469569385=>1,1469567405=>1,1468940172=>1,1468735961=>1,1468035006=>1,1468033010=>1,1468272915=>1,1468338122=>1,1468728891=>1,1468492309=>1,1469578758=>1,1469593257=>1,1469908535=>1,1469875201=>1,1469918115=>1,1469918707=>1,1470072527=>1,1470007204=>1,1469742119=>1,1469741590=>1,1469638780=>1,1469593460=>1,1469638989=>1,1469660611=>1,1469715646=>1,1470765102=>1,1482056614=>1,1494206844=>1,1494097195=>1,1494212143=>1,1494265316=>1,1494396004=>1,1494266014=>1,1494011307=>1,1494009506=>1,1493080697=>1,1493049443=>1,1493144600=>1,1493207897=>1,1493394563=>1,1493230205=>1,1494396016=>1,1494396043=>1,1494639041=>1,1494638906=>1,1494647840=>1,1494726080=>1,1494894470=>1,1494857654=>1,1494588782=>1,1494588694=>1,1494396435=>1,1494396201=>1,1494396485=>1,1494396502=>1,1494463519=>1,1494396665=>1,1493042829=>1,1492784191=>1,1490014757=>1,1490003217=>1,1490027984=>1,1490079114=>1,1490198205=>1,1490170023=>1,1489996264=>1,1489800922=>1,1489473708=>1,1489463369=>1,1489478802=>1,1489533269=>1,1489623517=>1,1489547123=>1,1490297485=>1,1490302517=>1,1491358103=>1,1491200158=>1,1491389775=>1,1492263067=>1,1492619930=>1,1492359914=>1,1490660321=>1,1490652981=>1,1490342206=>1,1490342036=>1,1490472793=>1,1490481704=>1,1490504602=>1,1494955036=>1,1494974032=>1,1496212918=>1,1496212917=>1,1496246628=>1,1496246648=>1,1497483590=>1,1496262550=>1,1496212784=>1,1496212662=>1,1496185312=>1,1496138514=>1,1496204898=>1,1496212493=>1,1496212642=>1,1496212551=>1,1497516049=>1,1497582984=>1,1498531574=>1,1498506103=>1,1498697390=>1,1499204355=>1,1499320219=>1,1499264499=>1,1498253486=>1,1498191317=>1,1497781322=>1,1497676739=>1,1497866526=>1,1497902285=>1,1498046711=>1,1497968238=>1,1496130452=>1,1496124149=>1,1495307707=>1,1495307687=>1,1495327742=>1,1495328294=>1,1495339172=>1,1495330678=>1,1495302063=>1,1495280741=>1,1495022479=>1,1494983764=>1,1495038387=>1,1495038388=>1,1495228584=>1,1495218437=>1,1495339258=>1,1495366750=>1,1495584864=>1,1495538240=>1,1495669575=>1,1495700314=>1,1495886435=>1,1495811989=>1,1495461155=>1,1495461141=>1,1495407178=>1,1495398002=>1,1495407230=>1,1495407299=>1,1495461132=>1,1489446397=>1,1489435931=>1,1486669217=>1,1486620428=>1,1486824901=>1,1486831793=>1,1486834771=>1,1486832718=>1,1486476028=>1,1486465505=>1,1486348968=>1,1486348964=>1,1486368299=>1,1486435649=>1,1486458312=>1,1486442467=>1,1486835813=>1,1486836724=>1,1486875391=>1,1486863726=>1,1486876299=>1,1486878064=>1,1486998318=>1,1486966504=>1,1486854242=>1,1486853734=>1,1486845033=>1,1486841604=>1,1486846994=>1,1486847807=>1,1486851910=>1,1486851311=>1,1486336265=>1,1486326342=>1,1483938828=>1,1483898909=>1,1484057550=>1,1484246062=>1,1484994748=>1,1484440857=>1,1483839449=>1,1483690708=>1,1482218549=>1,1482115144=>1,1482264979=>1,1482771967=>1,1483612452=>1,1482977269=>1,1485065363=>1,1485152948=>1,1486140614=>1,1486017098=>1,1486216483=>1,1486222184=>1,1486286868=>1,1486233852=>1,1485737412=>1,1485542969=>1,1485160737=>1,1485157868=>1,1485215003=>1,1485382292=>1,1485433997=>1,1487178952=>1,1487271081=>1,1489385612=>1,1489385275=>1,1489388315=>1,1489388905=>1,1489399269=>1,1489399189=>1,1489385254=>1,1489384502=>1,1489381090=>1,1489380388=>1,1489381541=>1,1489382185=>1,1489384339=>1,1489382545=>1,1489399448=>1,1489399490=>1,1489420889=>1,1489420881=>1,1489425411=>1,1489431486=>1,1489435917=>1,1489434643=>1,1489420679=>1,1489420444=>1,1489401797=>1,1489399671=>1,1489402011=>1,1489407310=>1,1489413339=>1,1489376004=>1,1489374891=>1,1488044404=>1,1488025413=>1,1488082634=>1,1488100926=>1,1488266403=>1,1488235839=>1,1487975431=>1,1487885784=>1,1487327047=>1,1487323317=>1,1487381390=>1,1487425932=>1,1487576078=>1,1487467095=>1,1488354461=>1,1488589324=>1,1489104273=>1,1489102240=>1,1489231580=>1,1489247409=>1,1489374123=>1,1489373456=>1,1489064292=>1,1488900100=>1,1488698072=>1,1488681050=>1,1488709915=>1,1488859465=>1,1488877151=>1,1466467682=>1,1466447819=>1,1437823370=>1,1437823313=>1,1437841763=>1,1437845596=>1,1437964310=>1,1437876146=>1,1437816730=>1,1437816693=>1,1437652614=>1,1437613876=>1,1437683341=>1,1437698153=>1,1437815084=>1,1437698198=>1,1437987150=>1,1438063116=>1,1438250100=>1,1438250097=>1,1438250103=>1,1438250109=>1,1438502286=>1,1438348211=>1,1438250085=>1,1438248662=>1,1438199250=>1,1438079876=>1,1438222948=>1,1438222949=>1,1438222952=>1,1438222951=>1,1437167577=>1,1437150115=>1,1435291222=>1,1435291115=>1,1435291328=>1,1435291570=>1,1435441222=>1,1435411201=>1,1435290803=>1,1435290677=>1,1435290504=>1,1435290408=>1,1435290505=>1,1435290539=>1,1435290619=>1,1435290578=>1,1435459378=>1,1435477092=>1,1436544466=>1,1436537655=>1,1436872182=>1,1436991140=>1,1437138890=>1,1437138761=>1,1436537242=>1,1436457082=>1,1435542116=>1,1435511863=>1,1435557111=>1,1436087464=>1,1436381229=>1,1438667333=>1,1438692330=>1,1440114153=>1,1440113391=>1,1440114756=>1,1440114988=>1,1440117718=>1,1440116783=>1,1440108793=>1,1440108608=>1,1440105577=>1,1440103984=>1,1440105803=>1,1440106172=>1,1440106796=>1,1440106353=>1,1440119865=>1,1440119976=>1,1440139332=>1,1440128028=>1,1440139836=>1,1440140343=>1,1440142220=>1,1440141019=>1,1440127860=>1,1440126792=>1,1440121031=>1,1440120569=>1,1440121668=>1,1440123592=>1,1440125661=>1,1440101636=>1,1440099500=>1,1439065891=>1,1438976161=>1,1439066798=>1,1439070069=>1,1439291514=>1,1439070326=>1,1438907270=>1,1438905194=>1,1438807838=>1,1438796562=>1,1438817635=>1,1438869531=>1,1438904946=>1,1438903188=>1,1439293562=>1,1439386843=>1,1439964786=>1,1439963787=>1,1439964982=>1,1439965607=>1,1440094140=>1,1440091089=>1,1439961391=>1,1439959223=>1,1439451751=>1,1439435573=>1,1439466640=>1,1439957850=>1,1439958717=>1,1435290030=>1,1435289956=>1,1427684417=>1,1427682504=>1,1427691381=>1,1427705659=>1,1427723406=>1,1427713165=>1,1427677809=>1,1427673401=>1,1427572290=>1,1427481730=>1,1427597786=>1,1427621653=>1,1427633043=>1,1427627808=>1,1427727527=>1,1427728140=>1,1427751885=>1,1427751253=>1,1427753246=>1,1427755745=>1,1427756463=>1,1427755877=>1,1427740065=>1,1427737866=>1,1427731928=>1,1427728247=>1,1427735194=>1,1427735872=>1,1427737181=>1,1427736824=>1,1427455806=>1,1427241395=>1,1427146038=>1,1427146037=>1,1427167531=>1,1427181324=>1,1427183683=>1,1427181529=>1,1427146036=>1,1427146034=>1,1427042338=>1,1427042337=>1,1427042339=>1,1427091679=>1,1427121882=>1,1427095279=>1,1427185572=>1,1427206176=>1,1427231156=>1,1427231153=>1,1427232318=>1,1427232433=>1,1427241386=>1,1427234694=>1,1427227316=>1,1427222857=>1,1427216542=>1,1427206307=>1,1427219621=>1,1427219628=>1,1427221579=>1,1427758680=>1,1427767180=>1,1433567970=>1,1433548375=>1,1433568608=>1,1433569044=>1,1433883533=>1,1433883278=>1,1433548369=>1,1433546379=>1,1433224699=>1,1432987777=>1,1433421441=>1,1433481677=>1,1433534067=>1,1433506130=>1,1433883550=>1,1433887469=>1,1434832673=>1,1434823546=>1,1435253171=>1,1435289623=>1,1435289881=>1,1435289645=>1,1434726507=>1,1434723363=>1,1434407222=>1,1434392389=>1,1434422875=>1,1434422979=>1,1434433649=>1,1432945239=>1,1432619846=>1,1430537905=>1,1430523397=>1,1430600000=>1,1430623108=>1,1430916466=>1,1430892904=>1,1430381855=>1,1428142845=>1,1427906302=>1,1427905683=>1,1428004022=>1,1428044081=>1,1428142756=>1,1428078329=>1,1431765276=>1,1431799336=>1,1432264898=>1,1432230401=>1,1432338609=>1,1432354545=>1,1432497228=>1,1432469590=>1,1432214220=>1,1432211322=>1,1432018359=>1,1431833587=>1,1432162351=>1,1432162880=>1,1432210666=>1,1440144686=>1,1440148687=>1,1456614554=>1,1455972461=>1,1456904862=>1,1457162772=>1,1458906054=>1,1457163053=>1,1455815420=>1,1455748895=>1,1454823965=>1,1454560422=>1,1454955196=>1,1454971498=>1,1455517598=>1,1455482857=>1,1459006514=>1,1459008482=>1,1460854595=>1,1460724797=>1,1460854734=>1,1460854762=>1,1460858514=>1,1460858265=>1,1460724793=>1,1460124919=>1,1459427747=>1,1459069814=>1,1459439045=>1,1460124830=>1,1460124892=>1,1460124857=>1,1454403054=>1,1454392820=>1,1450099533=>1,1449881249=>1,1450152130=>1,1450867403=>1,1451253583=>1,1450915004=>1,1449881170=>1,1449881139=>1,1449742731=>1,1449736150=>1,1449780113=>1,1449799774=>1,1449881137=>1,1449822470=>1,1451789888=>1,1451793034=>1,1453700292=>1,1453700269=>1,1453729215=>1,1453742398=>1,1454300998=>1,1454157887=>1,1453700227=>1,1453198722=>1,1451927555=>1,1451927542=>1,1452392756=>1,1452890229=>1,1453104706=>1,1460858515=>1,1460858567=>1,1466075203=>1,1466074760=>1,1466075724=>1,1466080471=>1,1466082043=>1,1466081381=>1,1466073272=>1,1466024351=>1,1465651484=>1,1464961910=>1,1465661682=>1,1465675328=>1,1465710507=>1,1465694869=>1,1466082114=>1,1466085949=>1,1466220211=>1,1466105172=>1,1466231521=>1,1466306520=>1,1427042336=>1,1466418830=>1,1466104564=>1,1466104542=>1,1466096214=>1,1466087685=>1,1466097033=>1,1466100089=>1,1466102730=>1,1464841136=>1,1464840223=>1,1461010669=>1,1460980656=>1,1461056646=>1,1462774471=>1,1463416606=>1,1462896718=>1,1460920559=>1,1460917976=>1,1460867704=>1,1460867615=>1,1460867765=>1,1460867782=>1,1460917924=>1,1460917921=>1,1463515799=>1,1463836995=>1,1464740625=>1,1464601774=>1,1464754840=>1,1464785983=>1,1464819607=>1,1464815454=>1,1464423501=>1,1464397755=>1,1463970193=>1,1463968189=>1,1463970307=>1,1464355303=>1,1464358361=>1,1449736077=>1,1449735954=>1,1441352963=>1,1441352725=>1,1441352965=>1,1441352976=>1,1441356180=>1,1441352980=>1,1441352724=>1,1441352709=>1,1441173093=>1,1441134612=>1,1441182891=>1,1441319699=>1,1441348953=>1,1441343368=>1,1441399426=>1,1441407947=>1,1441763100=>1,1441759203=>1,1441922604=>1,1441968877=>1,1441988796=>1,1441970165=>1,1441609973=>1,1441607309=>1,1441525269=>1,1441477890=>1,1441528408=>1,1441536274=>1,1441544368=>1,1441133798=>1,1441132844=>1,1440833604=>1,1440757330=>1,1440836920=>1,1440848793=>1,1440902200=>1,1440877927=>1,1440642916=>1,1440560644=>1,1440229886=>1,1440149727=>1,1440245766=>1,1440366737=>1,1440492227=>1,1440385087=>1,1440902287=>1,1440904510=>1,1441076017=>1,1441071592=>1,1441076526=>1,1441095259=>1,1441124913=>1,1441097849=>1,1441054983=>1,1441028888=>1,1440974003=>1,1440905447=>1,1440975489=>1,1440988990=>1,1441001441=>1,1442083522=>1,1442212175=>1,1446929923=>1,1446922025=>1,1446933931=>1,1446939419=>1,1448157780=>1,1447661461=>1,1446920634=>1,1446824528=>1,1446712614=>1,1446639384=>1,1446712739=>1,1446712827=>1,1446737752=>1,1446737747=>1,1448209166=>1,1448319938=>1,1449634011=>1,1449632782=>1,1449652958=>1,1449734349=>1,1449735844=>1,1449735621=>1,1449628361=>1,1449565206=>1,1448616135=>1,1448521022=>1,1448964786=>1,1449424428=>1,1449552534=>1,1446634318=>1,1446622490=>1,1443332023=>1,1443157858=>1,1443580402=>1,1443608884=>1,1444349152=>1,1443758740=>1,1443049359=>1,1443015362=>1,1442247429=>1,1442212253=>1,1442374563=>1,1442374564=>1,1442536271=>1,1442486738=>1,1444446038=>1,1444504605=>1,1446520197=>1,1446517436=>1,1446523986=>1,1446528645=>1,1446621451=>1,1446555474=>1,1446513366=>1,1445832300=>1,1444672151=>1,1444511954=>1,1444862167=>1,1444885232=>1,1445790948=>1,1466460816=>1,);?>
1
+ <?php return array(1109848832=>1109849087,1089285440=>1089285455,1089282688=>1089282703,1044973568=>1044974079,1082298605=>1,1082299245=>1,1082299516=>1,1082300634=>1,1082300463=>1,1082298068=>1,1082297312=>1,1082296886=>1,1082297126=>1,1082297275=>1,1082300635=>1,1082297551=>1,1082300657=>1,1082303612=>1,1082303531=>1,1082303506=>1,1082303902=>1,1082304016=>1,1082304163=>1,1082304142=>1,1082303037=>1,1082302847=>1,1082301842=>1,1082301691=>1,1082301921=>1,1082302121=>1,1082302619=>1,1082302549=>1,1082296696=>1,1082296482=>1,1081556456=>1,1081556439=>1,1081617458=>1,1081693427=>1,1081719597=>1,1081700000=>1,1081556434=>1,1081556317=>1,1081134475=>1,1081026618=>1,1081155613=>1,1081543028=>1,1081556248=>1,1081553307=>1,1081781590=>1,1081876568=>1,1082088288=>1,1082086509=>1,1082294667=>1,1082296074=>1,1082304479=>1,1082296379=>1,1082086039=>1,1082085993=>1,1082041277=>1,1082028222=>1,1082065323=>1,1082065324=>1,1082085953=>1,1082296645=>1,1082305558=>1,1085520588=>1,1085519526=>1,1085521276=>1,1085758876=>1,1085845532=>1,1085792954=>1,1085517669=>1,1085517565=>1,1085511086=>1,1085509644=>1,1085512509=>1,1085516398=>1,1085517134=>1,1085516942=>1,1085847716=>1,1085861401=>1,1086040663=>1,1085899079=>1,1086040785=>1,1086096075=>1,1086098996=>1,1086096476=>1,1085876651=>1,1085874860=>1,1085865829=>1,1085861848=>1,1085865834=>1,1085869023=>1,1085871224=>1,1085509024=>1,1085506383=>1,1082307997=>1,1082307981=>1,1082308632=>1,1082309103=>1,1082309846=>1,1082309603=>1,1082307814=>1,1082307628=>1,1079963202=>1,1082304779=>1,1082305585=>1,1082306324=>1,1082307169=>1,1082306679=>1,1082309905=>1,1082310175=>1,1082970348=>1,1082957787=>1,1082979992=>1,1082982305=>1,1085127700=>1,1085083938=>1,1082835276=>1,1082704647=>1,1082310605=>1,1082310579=>1,1082421622=>1,1082704120=>1,1082704504=>1,1082304593=>1,1079785574=>1,1071606004=>1,1071600904=>1,1072257221=>1,1072405458=>1,1073218493=>1,1073053686=>1,1071596903=>1,1071596169=>1,1066342783=>1,1066342645=>1,1066343775=>1,1067192998=>1,1071596077=>1,1071484047=>1,1073479605=>1,1074029373=>1,1075014189=>1,1075014169=>1,1075014210=>1,1075014236=>1,1075471709=>1,1075064915=>1,1075003828=>1,1074942628=>1,1074222582=>1,1074034352=>1,1074747042=>1,1074780798=>1,1074878005=>1,1074875995=>1,1066341967=>1,1066341409=>1,1056005386=>1,1055962936=>1,1056019874=>1,1056019884=>1,1056182358=>1,1056170164=>1,1055490967=>1,1055466098=>1,1054653455=>1,1054651728=>1,1054654318=>1,1054686590=>1,1055465996=>1,1054909613=>1,1056274744=>1,1056280740=>1,1065827550=>1,1065827126=>1,1066263074=>1,1066311263=>1,1066335335=>1,1066334341=>1,1065827066=>1,1065788137=>1,1056548554=>1,1056448521=>1,1064236804=>1,1065714998=>1,1065786070=>1,1075731323=>1,1075742520=>1,1078848170=>1,1078838321=>1,1078892191=>1,1078898194=>1,1078898375=>1,1078898208=>1,1078622066=>1,1078433939=>1,1077853432=>1,1077843888=>1,1077861270=>1,1077864771=>1,1078399682=>1,1078116871=>1,1078898387=>1,1078918060=>1,1079350434=>1,1079350302=>1,1079574993=>1,1079662673=>1,1079765095=>1,1079722899=>1,1079020211=>1,1078940278=>1,1078932577=>1,1078932033=>1,1078932580=>1,1078932581=>1,1078932583=>1,1077277444=>1,1077277142=>1,1076851324=>1,1076344628=>1,1077233372=>1,1077236100=>1,1077250392=>1,1077245531=>1,1076332353=>1,1076168811=>1,1075781948=>1,1075781934=>1,1075832459=>1,1075838448=>1,1075945715=>1,1075873848=>1,1077252848=>1,1077252942=>1,1077270369=>1,1077265044=>1,1077270928=>1,1077272127=>1,1077272283=>1,1077272204=>1,1077262978=>1,1077262690=>1,1077253412=>1,1077253098=>1,1077254862=>1,1077256639=>1,1077257483=>1,1086105118=>1,1086116873=>1,1112173623=>1,1111790968=>1,1112280552=>1,1112283251=>1,1112323156=>1,1112322685=>1,1111552562=>1,1111417289=>1,1110920337=>1,1110865272=>1,1110955506=>1,1111158856=>1,1111417288=>1,1111281235=>1,1112338964=>1,1112777754=>1,1112927284=>1,1112914660=>1,1112995777=>1,1113229347=>1,1113647204=>1,1113373254=>1,1112904756=>1,1112903914=>1,1112829438=>1,1112796285=>1,1112870605=>1,1112900424=>1,1112902643=>1,1112900432=>1,1110284813=>1,1110043345=>1,1107256989=>1,1107166544=>1,1107266257=>1,1107785584=>1,1107787131=>1,1107786856=>1,1104904915=>1,1104561104=>1,1102545558=>1,1102482728=>1,1102551656=>1,1102763521=>1,1102972979=>1,1102786619=>1,1107787529=>1,1108524458=>1,1109692230=>1,1109631663=>1,1109794727=>1,1109795504=>1,1110003618=>1,1109795898=>1,1109607570=>1,1109607569=>1,1108972492=>1,1108864922=>1,1109087888=>1,1109275746=>1,1109607497=>1,1113649954=>1,1113651998=>1,1118331875=>1,1118215385=>1,1118528817=>1,1118531277=>1,1118571260=>1,1118552060=>1,1117712011=>1,1117711687=>1,1117702353=>1,1117702297=>1,1117705116=>1,1117705485=>1,1117710748=>1,1117710430=>1,1118571715=>1,1118571774=>1,1119221671=>1,1119142363=>1,1119255815=>1,1119495896=>1,1119532764=>1,1119528494=>1,1119135537=>1,1119135027=>1,1118821529=>1,1118600763=>1,1118821656=>1,1118822289=>1,1119107370=>1,1117378882=>1,1117205418=>1,1114104177=>1,1114092745=>1,1114112580=>1,1114378555=>1,1114571280=>1,1114539073=>1,1114091037=>1,1114090456=>1,1113713808=>1,1113652602=>1,1113716829=>1,1113716830=>1,1114078117=>1,1113761873=>1,1114571284=>1,1114582282=>1,1115763867=>1,1115085149=>1,1115819653=>1,1116187210=>1,1117025370=>1,1116187237=>1,1115082106=>1,1114926259=>1,1114842724=>1,1114586709=>1,1114856400=>1,1114860026=>1,1114894099=>1,1102482654=>1,1102481594=>1,1090330464=>1,1090323480=>1,1090432771=>1,1090473906=>1,1091807106=>1,1091680322=>1,1090323404=>1,1090323153=>1,1089896084=>1,1089894474=>1,1090194961=>1,1090197360=>1,1090228891=>1,1090219619=>1,1091807107=>1,1091807108=>1,1092902760=>1,1092603394=>1,1093105831=>1,1093105841=>1,1093708435=>1,1093615270=>1,1092596833=>1,1092304573=>1,1091809969=>1,1091807109=>1,1091810033=>1,1092184537=>1,1092214965=>1,1089894070=>1,1089891913=>1,1086414023=>1,1086414021=>1,1086600875=>1,1086786781=>1,1087077943=>1,1087077299=>1,1086294296=>1,1086127294=>1,1054650744=>1,1086114994=>1,1086117281=>1,1086119352=>1,1086127284=>1,1086127235=>1,1087087205=>1,1087094814=>1,1089100667=>1,1089095771=>1,1089139321=>1,1089286958=>1,1089441332=>1,1089377366=>1,1089095739=>1,1089092509=>1,1087096279=>1,1087095164=>1,1087098360=>1,1087331400=>1,1087331787=>1,1093730997=>1,1093751057=>1,1098859784=>1,1098792788=>1,1100807924=>1,1102019838=>1,1102411274=>1,1102409856=>1,1098780739=>1,1098592499=>1,1097753763=>1,1096933181=>1,1097822857=>1,1097841218=>1,1098592322=>1,1098480674=>1,1102412616=>1,1102412798=>1,1102462105=>1,1102462074=>1,1102462882=>1,1102470578=>1,1102471036=>1,1102470917=>1,1102461117=>1,1102458379=>1,1102456013=>1,1102455963=>1,1102456815=>1,1102457688=>1,1102457981=>1,1096933016=>1,1096933009=>1,1093811612=>1,1093811565=>1,1093813385=>1,1093814454=>1,1093816641=>1,1093816221=>1,1093807312=>1,1093804072=>1,1093798199=>1,1093776602=>1,1093798743=>1,1093799120=>1,1093804068=>1,1093800503=>1,1093816647=>1,1093816856=>1,1093847813=>1,1093827576=>1,1094716251=>1,1095400526=>1,1096228949=>1,1095751936=>1,1093827274=>1,1093827231=>1,1093817015=>1,1093816869=>1,1093817019=>1,1093817734=>1,1093827057=>1,1086114993=>1,1054650441=>1,1032864868=>1,1032822498=>1,1032897033=>1,1032897073=>1,1032968554=>1,1032954389=>1,1032813723=>1,1032750004=>1,1032352659=>1,1032343619=>1,1032355080=>1,1032386542=>1,1032656162=>1,1032499278=>1,1032968556=>1,1033107384=>1,1033685690=>1,1033506541=>1,1033686013=>1,1033750083=>1,1033812893=>1,1033809166=>1,1033499507=>1,1033499091=>1,1033268024=>1,1033263427=>1,1033441598=>1,1033488050=>1,1033496794=>1,1033488827=>1,1032217861=>1,1032201770=>1,1029339602=>1,1029339601=>1,1029339618=>1,1029339632=>1,1029340422=>1,1029339853=>1,1029339507=>1,1029339482=>1,1029339238=>1,1029339231=>1,1029339334=>1,1029339393=>1,1029339426=>1,1029339397=>1,1029340494=>1,1029411348=>1,1029698173=>1,1029623026=>1,1032077300=>1,1032193521=>1,1032200852=>1,1032198506=>1,1029568050=>1,1029507302=>1,1029411425=>1,1029411418=>1,1029411462=>1,1029411464=>1,1029411561=>1,1033867016=>1,1033917322=>1,1035975868=>1,1035869350=>1,1035979014=>1,1036384947=>1,1037780613=>1,1037568856=>1,1035776784=>1,1035690739=>1,1035169288=>1,1035108236=>1,1035516228=>1,1035519947=>1,1035595493=>1,1035569534=>1,1038041223=>1,1038045778=>1,1038306628=>1,1038306441=>1,1038313226=>1,1038318028=>1,1038360594=>1,1038355446=>1,1038087520=>1,1038067186=>1,1038053609=>1,1038050889=>1,1038056090=>1,1038056464=>1,1038066759=>1,1035073738=>1,1034938349=>1,1034102552=>1,1034101252=>1,1034104304=>1,1034107713=>1,1034115915=>1,1034110938=>1,1034100813=>1,1034100742=>1,1033947335=>1,1033929490=>1,1033950282=>1,1033959961=>1,1034084137=>1,1034074126=>1,1034138492=>1,1034142426=>1,1034816022=>1,1034645293=>1,1034816780=>1,1034819069=>1,1034935796=>1,1034935300=>1,1034449157=>1,1034364956=>1,1034181886=>1,1034151892=>1,1034196332=>1,1034303665=>1,1034303675=>1,1029339209=>1,1029339198=>1,1029337264=>1,1029337240=>1,1029337278=>1,1029337299=>1,1029337312=>1,1029337300=>1,1029337236=>1,1029337215=>1,1029337092=>1,1029337068=>1,1029337105=>1,1029337162=>1,1029337208=>1,1029337192=>1,1029337359=>1,1029337365=>1,1029337627=>1,1029337626=>1,1029337642=>1,1029337658=>1,1029337697=>1,1029337696=>1,1029337621=>1,1029337579=>1,1029337434=>1,1029337369=>1,1029337438=>1,1029337471=>1,1029337527=>1,1029337499=>1,1029337045=>1,1029337006=>1,1029336549=>1,1029336443=>1,1029336561=>1,1029336596=>1,1029336681=>1,1029336668=>1,1029336439=>1,1029336426=>1,1029336394=>1,1029336383=>1,1029336401=>1,1029336412=>1,1029336425=>1,1029336421=>1,1029336688=>1,1029336724=>1,1029336960=>1,1029336933=>1,1029336973=>1,1029336985=>1,1029337001=>1,1029337000=>1,1029336876=>1,1029336871=>1,1029336796=>1,1029336779=>1,1029336843=>1,1029336846=>1,1029336868=>1,1029337698=>1,1029337707=>1,1029338826=>1,1029338821=>1,1029338847=>1,1029338868=>1,1029338874=>1,1029338872=>1,1029338820=>1,1029338815=>1,1029338708=>1,1029338690=>1,1029338733=>1,1029338746=>1,1029338802=>1,1029338751=>1,1029338890=>1,1029338899=>1,1029339038=>1,1029339027=>1,1029339055=>1,1029339129=>1,1029339179=>1,1029339138=>1,1029339023=>1,1029339001=>1,1029338965=>1,1029338946=>1,1029338987=>1,1029338991=>1,1029338999=>1,1029338686=>1,1029338669=>1,1029338022=>1,1029337932=>1,1029338039=>1,1029338043=>1,1029338096=>1,1029338075=>1,1029337880=>1,1029337800=>1,1029337726=>1,1029337723=>1,1029337727=>1,1029337785=>1,1029337798=>1,1029337790=>1,1029338130=>1,1029338141=>1,1029338316=>1,1029338310=>1,1029338629=>1,1029338630=>1,1029338664=>1,1029338640=>1,1029338277=>1,1029338273=>1,1029338172=>1,1029338153=>1,1029338201=>1,1029338220=>1,1029338225=>1,1038364379=>1,1038389318=>1,1053414243=>1,1053411842=>1,1053418116=>1,1053421289=>1,1053618578=>1,1053421309=>1,1053411822=>1,1053176113=>1,1052130713=>1,1052051576=>1,1052922892=>1,1052945575=>1,1052978817=>1,1052949583=>1,1053952927=>1,1053959184=>1,1053970988=>1,1053970878=>1,1053973515=>1,1053975662=>1,1053976879=>1,1053976219=>1,1053969097=>1,1053969006=>1,1053959506=>1,1053959214=>1,1053967650=>1,1053967852=>1,1053968493=>1,1053968295=>1,1051912420=>1,1051903383=>1,1050906773=>1,1050495549=>1,1051011754=>1,1051150368=>1,1051294919=>1,1051198420=>1,1050480500=>1,1050397544=>1,1049955641=>1,1049955481=>1,1049958671=>1,1050011113=>1,1050395289=>1,1050160075=>1,1051313091=>1,1051564697=>1,1051748346=>1,1051746957=>1,1051783141=>1,1051862567=>1,1051895884=>1,1051878883=>1,1051741442=>1,1051739137=>1,1051724503=>1,1051568630=>1,1051725078=>1,1051725390=>1,1051728864=>1,1053976948=>1,1053977430=>1,1054015108=>1,1054015077=>1,1054099699=>1,1054099853=>1,1054099865=>1,1054099864=>1,1054014764=>1,1054014144=>1,1054010913=>1,1054006950=>1,1054011508=>1,1054012296=>1,1054012337=>1,1054012327=>1,1054102757=>1,1054106137=>1,1054619419=>1,1054586410=>1,1054620521=>1,1054643287=>1,1029336349=>1,1054643297=>1,1054551685=>1,1054487829=>1,1054393297=>1,1054213693=>1,1054440701=>1,1054443883=>1,1054444012=>1,1054003543=>1,1054003335=>1,1053982082=>1,1053981820=>1,1053983222=>1,1053983800=>1,1053985283=>1,1053985254=>1,1053981464=>1,1053981363=>1,1053977775=>1,1053977623=>1,1053977904=>1,1053977949=>1,1053979866=>1,1053979539=>1,1053986343=>1,1053993615=>1,1054002741=>1,1054002713=>1,1054003067=>1,1054003068=>1,1054003161=>1,1054003142=>1,1054002237=>1,1054000792=>1,1053996788=>1,1053994058=>1,1053998201=>1,1053998370=>1,1054000748=>1,1049952956=>1,1049600249=>1,1045142981=>1,1045139740=>1,1045143467=>1,1045164359=>1,1045167909=>1,1045165359=>1,1044966064=>1,1044154467=>1,1043248413=>1,1043198963=>1,1043254794=>1,1043259508=>1,1043380894=>1,1043358129=>1,1045192435=>1,1045215806=>1,1046229917=>1,1046133948=>1,1046241621=>1,1046245165=>1,1046298674=>1,1046245368=>1,1046133947=>1,1046133824=>1,1045308172=>1,1045293523=>1,1045474283=>1,1045478189=>1,1045599879=>1,1045599789=>1,1043192261=>1,1043182733=>1,1038775890=>1,1038755190=>1,1038843162=>1,1039422349=>1,1039645322=>1,1039645321=>1,1038755189=>1,1038699475=>1,1038512112=>1,1038389405=>1,1038533107=>1,1038585366=>1,1038679591=>1,1038667490=>1,1039662812=>1,1039837122=>1,1042292653=>1,1042069126=>1,1043058423=>1,1043060705=>1,1043162364=>1,1043161970=>1,1041721869=>1,1041698652=>1,1040455020=>1,1040453460=>1,1040994993=>1,1041033405=>1,1041034021=>1,1046822076=>1,1046845310=>1,1047648433=>1,1047648429=>1,1047650202=>1,1047651196=>1,1048196769=>1,1047898820=>1,1047647119=>1,1047646221=>1,1047337714=>1,1047336990=>1,1047338162=>1,1047338698=>1,1047644897=>1,1047364738=>1,1048208474=>1,1048937065=>1,1049476025=>1,1049442165=>1,1049584189=>1,1049594553=>1,1049595468=>1,1049594844=>1,1049441721=>1,1049439544=>1,1049232056=>1,1049061745=>1,1049437397=>1,1049437582=>1,1049438923=>1,1047336207=>1,1047336199=>1,1046910139=>1,1046910135=>1,1046959528=>1,1047200579=>1,1047274674=>1,1047269601=>1,1046910133=>1,1046910129=>1,1046910121=>1,1046910019=>1,1046910123=>1,1046910124=>1,1046910127=>1,1046910125=>1,1047330994=>1,1047331013=>1,1047335809=>1,1047335117=>1,1047335861=>1,1047335871=>1,1047336187=>1,1047336186=>1,1047333535=>1,1047333122=>1,1047331808=>1,1047331168=>1,1047331955=>1,1047332224=>1,1047332279=>1,1054650456=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-13.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1558113632=>1558113655,1558113584=>1558113591,1558113560=>1558113575,1558113544=>1558113551,1542379008=>1542379519,1546550547=>1,1546026645=>1,1546573690=>1,1546763030=>1,1546026636=>1,1546549858=>1,1546330662=>1,1546122797=>1,1546065848=>1,1546029271=>1,1546320425=>1,1546320493=>1,1546033688=>1,1546803226=>1,1546917086=>1,1546884192=>1,1546920013=>1,1547449435=>1,1547624708=>1,1547493815=>1,1546883797=>1,1546880259=>1,1546026627=>1,1546801610=>1,1546819646=>1,1546826890=>1,1546879671=>1,1546866046=>1,1546788674=>1,1545218173=>1,1542655003=>1,1542581514=>1,1542693834=>1,1542702816=>1,1542715214=>1,1542714733=>1,1542545010=>1,1542544957=>1,1542472591=>1,1542472336=>1,1542477254=>1,1542477291=>1,1542514115=>1,1542908278=>1,1543131445=>1,1544948982=>1,1544947694=>1,1545121390=>1,1547653491=>1,1545275345=>1,1544947147=>1,1544291736=>1,1543131963=>1,1543131594=>1,1543140281=>1,1543172593=>1,1543907339=>1,1546024770=>1,1547655132=>1,1550090819=>1,1550039608=>1,1550415554=>1,1550597625=>1,1550724578=>1,1550654167=>1,1550030773=>1,1550028398=>1,1548677337=>1,1548663758=>1,1548677754=>1,1548679047=>1,1549331763=>1,1549217257=>1,1550748186=>1,1550779569=>1,1553158675=>1,1552486845=>1,1553201820=>1,1553528641=>1,1554606344=>1,1553776240=>1,1552326698=>1,1552294206=>1,1550818318=>1,1550801390=>1,1550905351=>1,1550998647=>1,1551667923=>1,1551082459=>1,1548661212=>1,1548647291=>1,1547658449=>1,1547658444=>1,1547660924=>1,1547676623=>1,1547676952=>1,1547676822=>1,1547658401=>1,1547658316=>1,1547655142=>1,1547655141=>1,1547655143=>1,1547655215=>1,1547658263=>1,1547658251=>1,1547677220=>1,1547677222=>1,1548485637=>1,1548450563=>1,1548504902=>1,1548505686=>1,1548632707=>1,1548534807=>1,1548450192=>1,1548390490=>1,1547691589=>1,1547677255=>1,1548256332=>1,1548366925=>1,1548373551=>1,1548367261=>1,1542472331=>1,1542471952=>1,1541086652=>1,1541086621=>1,1541086702=>1,1541086896=>1,1541139622=>1,1541139587=>1,1541086606=>1,1541086419=>1,1540958724=>1,1540958723=>1,1540999713=>1,1541071976=>1,1541086307=>1,1541086293=>1,1541139674=>1,1541139678=>1,1541227228=>1,1541225854=>1,1541227315=>1,1541238213=>1,1541269842=>1,1541238276=>1,1541200901=>1,1541140189=>1,1541139731=>1,1541139688=>1,1541139787=>1,1541139829=>1,1541139956=>1,1541139941=>1,1540958722=>1,1540810241=>1,1540585024=>1,1540511036=>1,1540585026=>1,1540585035=>1,1540585039=>1,1540585036=>1,1540499886=>1,1540495918=>1,1540205906=>1,1540195263=>1,1540216928=>1,1540263494=>1,1540357840=>1,1540268821=>1,1540585041=>1,1540687915=>1,1540785654=>1,1540784864=>1,1540794608=>1,1540797188=>1,1540803472=>1,1540798714=>1,1540688108=>1,1540688107=>1,1540687956=>1,1540687936=>1,1540687960=>1,1540687961=>1,1540687999=>1,1541444873=>1,1541444897=>1,1542119971=>1,1542099630=>1,1542150974=>1,1542254471=>1,1542254511=>1,1542254476=>1,1542070581=>1,1542026577=>1,1541986578=>1,1541979156=>1,1542023801=>1,1542023917=>1,1542026528=>1,1542026291=>1,1542257431=>1,1542257438=>1,1542449914=>1,1542392811=>1,1542471940=>1,1542471949=>1,1555718432=>1,1542471950=>1,1542331840=>1,1542324222=>1,1542281319=>1,1542272170=>1,1542297156=>1,1542321214=>1,1542321982=>1,1541887692=>1,1541887589=>1,1541592224=>1,1541561716=>1,1541623041=>1,1541634315=>1,1541681411=>1,1541642776=>1,1541560593=>1,1541498948=>1,1541444919=>1,1541444909=>1,1541445293=>1,1541453388=>1,1541492302=>1,1541462388=>1,1541682362=>1,1541682518=>1,1541739547=>1,1541719911=>1,1541754176=>1,1541795923=>1,1541852240=>1,1541796622=>1,1541719580=>1,1541719548=>1,1541708578=>1,1541707572=>1,1541708669=>1,1541714818=>1,1541719110=>1,1542472323=>1,1556283868=>1,1559121174=>1,1559066282=>1,1559292462=>1,1559334590=>1,1559437008=>1,1559429299=>1,1558597349=>1,1558595843=>1,1558471557=>1,1558454727=>1,1558480919=>1,1558481549=>1,1558554253=>1,1558484029=>1,1559446889=>1,1559485678=>1,1560039933=>1,1560037881=>1,1560051025=>1,1560052102=>1,1560155203=>1,1560111381=>1,1559880128=>1,1559859063=>1,1559610090=>1,1559502597=>1,1559704489=>1,1559723450=>1,1559802931=>1,1558431392=>1,1558420835=>1,1558113622=>1,1558113621=>1,1558113624=>1,1558113625=>1,1558113630=>1,1558113629=>1,1558113620=>1,1558113619=>1,1558113612=>1,1558113609=>1,1558113613=>1,1558113615=>1,1558113618=>1,1558113617=>1,1558113631=>1,1558113660=>1,1558372669=>1,1558349924=>1,1558374625=>1,1558395009=>1,1558396142=>1,1558395965=>1,1558310329=>1,1558271045=>1,1558161227=>1,1558113661=>1,1558161228=>1,1558183329=>1,1558251763=>1,1560164689=>1,1560260746=>1,1566565425=>1,1566565365=>1,1566565446=>1,1566565501=>1,1566823468=>1,1566822049=>1,1566546605=>1,1566532774=>1,1566327880=>1,1566286552=>1,1566361667=>1,1566363200=>1,1566478891=>1,1566387693=>1,1566844940=>1,1566850396=>1,1567140824=>1,1567128937=>1,1567141608=>1,1567141878=>1,1567150397=>1,1567143601=>1,1567099790=>1,1567099760=>1,1566866770=>1,1566852042=>1,1566877496=>1,1566881384=>1,1567089481=>1,1566257809=>1,1566248644=>1,1562364960=>1,1560382468=>1,1563605640=>1,1563607301=>1,1564085016=>1,1563686760=>1,1560279874=>1,1560276564=>1,1560267284=>1,1560263643=>1,1560268633=>1,1560271063=>1,1560274101=>1,1560271343=>1,1564308221=>1,1564445360=>1,1565653062=>1,1565635985=>1,1565654501=>1,1565682468=>1,1566084964=>1,1565695052=>1,1565604182=>1,1565584574=>1,1564528439=>1,1564446352=>1,1565025550=>1,1565026636=>1,1565445763=>1,1558113603=>1,1558113602=>1,1557027951=>1,1557010973=>1,1557060626=>1,1557198844=>1,1557247228=>1,1557240478=>1,1556753313=>1,1556752414=>1,1556329391=>1,1556318072=>1,1556333961=>1,1556338288=>1,1556704400=>1,1556338991=>1,1557268023=>1,1557295116=>1,1557729449=>1,1557727539=>1,1557731499=>1,1557732902=>1,1557734759=>1,1557734154=>1,1557579639=>1,1557571705=>1,1557341642=>1,1557340211=>1,1557370161=>1,1557384822=>1,1557485781=>1,1556314672=>1,1556314492=>1,1556291246=>1,1556290311=>1,1556298800=>1,1556298857=>1,1556300361=>1,1556299199=>1,1556290063=>1,1556287718=>1,1540131250=>1,1556256015=>1,1556284906=>1,1556285856=>1,1556287364=>1,1556287072=>1,1556301395=>1,1556302171=>1,1556306907=>1,1556306891=>1,1556309967=>1,1556310875=>1,1556312311=>1,1556312280=>1,1556306251=>1,1556305725=>1,1556303854=>1,1556303240=>1,1556303970=>1,1556304861=>1,1556305544=>1,1557750473=>1,1557934627=>1,1558113243=>1,1558112529=>1,1558113537=>1,1558113538=>1,1558113553=>1,1558113552=>1,1558106419=>1,1558105184=>1,1558104537=>1,1558104531=>1,1558104538=>1,1558104539=>1,1558105094=>1,1558104567=>1,1558113554=>1,1558113558=>1,1558113594=>1,1558113592=>1,1558113595=>1,1558113596=>1,1558113601=>1,1558113597=>1,1558113583=>1,1558113581=>1,1558113576=>1,1558113559=>1,1558113577=>1,1558113579=>1,1558113580=>1,1558104530=>1,1558104529=>1,1558058114=>1,1558055238=>1,1558058533=>1,1558058609=>1,1558059455=>1,1558058946=>1,1558055221=>1,1558054412=>1,1557981670=>1,1557940940=>1,1558003234=>1,1558004004=>1,1558053990=>1,1558010529=>1,1558059484=>1,1558059601=>1,1558085477=>1,1558079466=>1,1558092179=>1,1558094390=>1,1558099323=>1,1558099304=>1,1558079465=>1,1558076912=>1,1558060275=>1,1558060175=>1,1558060522=>1,1558062659=>1,1558063031=>1,1556241167=>1,1540124826=>1,1512994852=>1,1512930296=>1,1513599433=>1,1513763648=>1,1513811297=>1,1513763705=>1,1512670281=>1,1511887884=>1,1509993469=>1,1509970843=>1,1510029536=>1,1510933866=>1,1511430259=>1,1511399926=>1,1514019474=>1,1514094055=>1,1519659984=>1,1519626925=>1,1519670462=>1,1519720764=>1,1519815225=>1,1519738329=>1,1519581000=>1,1519552080=>1,1514115997=>1,1514113043=>1,1514856154=>1,1516803775=>1,1517867833=>1,1516990940=>1,1509958502=>1,1509687948=>1,1507680218=>1,1507530617=>1,1507770535=>1,1508065304=>1,1508461758=>1,1508265803=>1,1507514026=>1,1507513962=>1,1507360284=>1,1507292814=>1,1507422933=>1,1507463175=>1,1507469034=>1,1507469002=>1,1508463266=>1,1508548094=>1,1509455592=>1,1509199903=>1,1509541195=>1,1509543745=>1,1509632787=>1,1509629734=>1,1508891327=>1,1508814065=>1,1508617889=>1,1508617888=>1,1508789508=>1,1508803588=>1,1508813932=>1,1519856520=>1,1520074515=>1,1527246777=>1,1527228585=>1,1527249150=>1,1527642855=>1,1527661352=>1,1527643024=>1,1527138790=>1,1527082167=>1,1525063313=>1,1524943519=>1,1525124025=>1,1525127327=>1,1526863144=>1,1526863021=>1,1527667295=>1,1527913576=>1,1528873026=>1,1528199418=>1,1528887379=>1,1529271604=>1,1529277027=>1,1529272961=>1,1528187748=>1,1528125915=>1,1528062243=>1,1527913600=>1,1528069434=>1,1528120580=>1,1528121658=>1,1524842979=>1,1524806279=>1,1522065012=>1,1522044640=>1,1522065014=>1,1522109468=>1,1522331133=>1,1522273810=>1,1521937198=>1,1521909860=>1,1520147020=>1,1520113626=>1,1520238768=>1,1521522690=>1,1521872004=>1,1521605842=>1,1522367361=>1,1522822546=>1,1524152881=>1,1524151337=>1,1524646963=>1,1524711508=>1,1524717665=>1,1524715739=>1,1524121939=>1,1523649517=>1,1522902104=>1,1522870250=>1,1523405620=>1,1523405830=>1,1523411903=>1,1506788486=>1,1506755099=>1,1502377893=>1,1502377888=>1,1502377894=>1,1502377904=>1,1502377915=>1,1502377909=>1,1502377864=>1,1502377862=>1,1502377804=>1,1502377797=>1,1502377817=>1,1502377825=>1,1502377855=>1,1502377836=>1,1502377916=>1,1502574998=>1,1503888972=>1,1503888968=>1,1503890600=>1,1503890757=>1,1503891880=>1,1503890861=>1,1503888457=>1,1503888296=>1,1503370192=>1,1503125954=>1,1503448139=>1,1503552320=>1,1503729635=>1,1503675543=>1,1502377790=>1,1502377782=>1,1499981357=>1,1499846358=>1,1500193415=>1,1500209492=>1,1500272890=>1,1500241388=>1,1499742591=>1,1499700101=>1,1499586994=>1,1499509935=>1,1499601092=>1,1499601890=>1,1499699999=>1,1499653161=>1,1500319025=>1,1500393482=>1,1502050561=>1,1501919732=>1,1502056534=>1,1502377752=>1,1502377781=>1,1502377773=>1,1501846746=>1,1501838926=>1,1500451908=>1,1500421367=>1,1500525101=>1,1500688554=>1,1501244209=>1,1503893071=>1,1503904989=>1,1505464442=>1,1505464016=>1,1505483546=>1,1505521106=>1,1505579928=>1,1505576458=>1,1505183816=>1,1505169293=>1,1504742590=>1,1504648099=>1,1504802088=>1,1504911777=>1,1505141693=>1,1504933797=>1,1505580417=>1,1505592565=>1,1506344085=>1,1506316012=>1,1506622617=>1,1506720400=>1,1506733293=>1,1506733292=>1,1506087334=>1,1505745153=>1,1505594927=>1,1505593234=>1,1505602660=>1,1505723379=>1,1505740789=>1,1504559332=>1,1504254788=>1,1503912123=>1,1503911894=>1,1503912148=>1,1503912376=>1,1503914915=>1,1503912399=>1,1503910926=>1,1503910732=>1,1503908272=>1,1503907845=>1,1503908329=>1,1503909441=>1,1503910255=>1,1503910182=>1,1503917428=>1,1503917493=>1,1504004259=>1,1503956306=>1,1504063361=>1,1504102982=>1,1504242052=>1,1504196047=>1,1503948590=>1,1503924977=>1,1503917511=>1,1503917496=>1,1503917695=>1,1503917768=>1,1503917867=>1,1529339458=>1,1529565565=>1,1534839019=>1,1534747661=>1,1534893593=>1,1534963440=>1,1535460561=>1,1534964402=>1,1534713474=>1,1534706601=>1,1534703912=>1,1534703703=>1,1534705818=>1,1534706097=>1,1534706564=>1,1534706209=>1,1535681571=>1,1535771659=>1,1536114163=>1,1536073707=>1,1536119004=>1,1536121725=>1,1536142850=>1,1536121742=>1,1536071807=>1,1536071684=>1,1535788559=>1,1535772049=>1,1535790526=>1,1535815148=>1,1536054454=>1,1536039975=>1,1534703016=>1,1534702526=>1,1534677529=>1,1534676175=>1,1534678108=>1,1534678402=>1,1534685510=>1,1534680480=>1,1534676172=>1,1534676143=>1,1534662500=>1,1534662112=>1,1534668471=>1,1534670344=>1,1534673529=>1,1534673080=>1,1534686242=>1,1534687687=>1,1534697478=>1,1534697412=>1,1534697682=>1,1534698762=>1,1534701662=>1,1534699160=>1,1534697252=>1,1534696977=>1,1534691460=>1,1534690755=>1,1534693978=>1,1534694209=>1,1534696225=>1,1536149328=>1,1536186569=>1,1539584633=>1,1539546506=>1,1539630658=>1,1539726493=>1,1539818828=>1,1539806603=>1,1539538176=>1,1539463783=>1,1539208525=>1,1539158081=>1,1539303862=>1,1539309034=>1,1539354082=>1,1539333508=>1,1539881826=>1,1539894056=>1,1540031890=>1,1540009374=>1,1540031909=>1,1540084848=>1,1540084974=>1,1540084937=>1,1540009268=>1,1539991900=>1,1539972045=>1,1539970686=>1,1539975283=>1,1539976893=>1,1539983830=>1,1539079552=>1,1539077338=>1,1536897015=>1,1536780337=>1,1536933882=>1,1537133026=>1,1538330661=>1,1537197530=>1,1536536019=>1,1536535887=>1,1536207391=>1,1536197386=>1,1536209403=>1,1536231394=>1,1536326189=>1,1536325891=>1,1538465932=>1,1538576254=>1,1538927048=>1,1538926717=>1,1538998752=>1,1539005559=>1,1539011901=>1,1539010116=>1,1538914320=>1,1538867651=>1,1538752265=>1,1538751529=>1,1538835934=>1,1538840590=>1,1538841261=>1,1534660675=>1,1534656788=>1,1530581729=>1,1530581569=>1,1530582421=>1,1530582511=>1,1530583082=>1,1530582839=>1,1530581565=>1,1530581136=>1,1530579481=>1,1530578607=>1,1530579525=>1,1530579674=>1,1530580985=>1,1530579792=>1,1530583449=>1,1530583969=>1,1530961210=>1,1530935868=>1,1530978102=>1,1530985356=>1,1531006635=>1,1530992484=>1,1530934913=>1,1530926265=>1,1530584449=>1,1530584298=>1,1530610119=>1,1530615942=>1,1530926152=>1,1530741120=>1,1530577738=>1,1530577378=>1,1529728801=>1,1529725961=>1,1529823168=>1,1529823191=>1,1529893583=>1,1529859050=>1,1529725433=>1,1529666455=>1,1529664148=>1,1529628684=>1,1529665537=>1,1529665711=>1,1529666399=>1,1529666119=>1,1530022042=>1,1530091602=>1,1530216050=>1,1530140100=>1,1530283708=>1,1530315069=>1,1530393923=>1,1530315382=>1,1530139110=>1,1530134258=>1,1530126369=>1,1530100878=>1,1530126833=>1,1530127948=>1,1530128617=>1,1531021827=>1,1531063624=>1,1533614067=>1,1533306820=>1,1533679896=>1,1533689938=>1,1533695356=>1,1533693058=>1,1533224950=>1,1533216053=>1,1533187070=>1,1533185877=>1,1533187838=>1,1533188308=>1,1533200904=>1,1533195647=>1,1533695362=>1,1533714398=>1,1533932068=>1,1533922922=>1,1533933485=>1,1534257063=>1,1534547687=>1,1534423642=>1,1533907715=>1,1533877624=>1,1533838330=>1,1533837498=>1,1533839558=>1,1533874422=>1,1533874833=>1,1533183626=>1,1533183551=>1,1531815689=>1,1531690621=>1,1532161407=>1,1532220737=>1,1532783925=>1,1532624007=>1,1531663824=>1,1531566350=>1,1531117992=>1,1531085790=>1,1531122861=>1,1531135381=>1,1531500676=>1,1531167523=>1,1533029592=>1,1533096424=>1,1533158561=>1,1533158184=>1,1533163034=>1,1533174954=>1,1533182032=>1,1533179570=>1,1533157276=>1,1533152110=>1,1533106751=>1,1533105166=>1,1533131410=>1,1533131745=>1,1533144976=>1,1499326846=>1,);?>
1
+ <?php return array(1189672192=>1189672447,1158318848=>1158319103,1126931456=>1126931711,1125103360=>1125103487,1160724838=>1,1160196795=>1,1160726131=>1,1160729830=>1,1160731638=>1,1160197754=>1,1160717198=>1,1160709644=>1,1160706762=>1,1160711413=>1,1160733350=>1,1160714469=>1,1160650406=>1,1160744683=>1,1160770244=>1,1160768119=>1,1160770364=>1,1160772167=>1,1160947017=>1,1160921241=>1,1160754258=>1,1160749257=>1,1160745008=>1,1160196553=>1,1160747160=>1,1160747791=>1,1160748115=>1,1160747885=>1,1160738007=>1,1159657778=>1,1159230031=>1,1158736290=>1,1159312162=>1,1159411652=>1,1159412120=>1,1159411779=>1,1158715326=>1,1158606347=>1,1158596282=>1,1158592705=>1,1158597463=>1,1158605544=>1,1158606345=>1,1159413243=>1,1159453224=>1,1159648722=>1,1159645750=>1,1159649066=>1,1159649186=>1,1160951669=>1,1159655050=>1,1159645526=>1,1159531153=>1,1159483952=>1,1159453389=>1,1159486056=>1,1159486057=>1,1159486499=>1,1160004054=>1,1160964984=>1,1165082832=>1,1163755321=>1,1165146850=>1,1165165005=>1,1165365298=>1,1165262160=>1,1163748110=>1,1163696579=>1,1163560170=>1,1163559947=>1,1163560184=>1,1163565029=>1,1163696015=>1,1163681129=>1,1165394722=>1,1165404070=>1,1166152095=>1,1166121613=>1,1166178437=>1,1166290391=>1,1166322960=>1,1166292944=>1,1166079562=>1,1166074861=>1,1165505174=>1,1165404504=>1,1165972716=>1,1166032208=>1,1166074305=>1,1166045206=>1,1163559946=>1,1163525559=>1,1161834664=>1,1161831866=>1,1161837221=>1,1161843722=>1,1162027179=>1,1161899319=>1,1161785859=>1,1161732786=>1,1161194611=>1,1161192327=>1,1161512382=>1,1161578244=>1,1161578320=>1,1161578284=>1,1162225546=>1,1162241994=>1,1162901865=>1,1162485198=>1,1162936014=>1,1163150641=>1,1163486973=>1,1163222240=>1,1162458392=>1,1162456459=>1,1162322530=>1,1162297999=>1,1162322746=>1,1162421190=>1,1162456458=>1,1162456457=>1,1158580514=>1,1158576586=>1,1154052648=>1,1153980061=>1,1154157591=>1,1154219297=>1,1155591004=>1,1154315087=>1,1153930619=>1,1153883387=>1,1153125253=>1,1153034457=>1,1153345442=>1,1153446079=>1,1153653056=>1,1153447242=>1,1155592029=>1,1155650308=>1,1155912077=>1,1155900421=>1,1155957575=>1,1155994998=>1,1156205909=>1,1156045785=>1,1155882919=>1,1155865836=>1,1155737439=>1,1155732045=>1,1155802084=>1,1155802829=>1,1155861949=>1,1155855538=>1,1152677830=>1,1152677794=>1,1152663646=>1,1152661630=>1,1152665807=>1,1152665916=>1,1152666232=>1,1152666036=>1,1152659600=>1,1152659489=>1,1152655593=>1,1152655554=>1,1152655619=>1,1152655982=>1,1152658260=>1,1152657522=>1,1152666522=>1,1152673399=>1,1152677420=>1,1152677411=>1,1152677683=>1,1152677696=>1,1152677774=>1,1152677752=>1,1152676337=>1,1152676025=>1,1152673550=>1,1152673476=>1,1152674103=>1,1152674145=>1,1152675921=>1,1156223593=>1,1156230771=>1,1158308131=>1,1158270815=>1,1158309783=>1,1158310274=>1,1158311739=>1,1158310403=>1,1158270782=>1,1158269800=>1,1158268765=>1,1158268708=>1,1158268795=>1,1158269454=>1,1158269618=>1,1158269483=>1,1158313409=>1,1158313701=>1,1158553964=>1,1158549020=>1,1158554365=>1,1158562046=>1,1166523082=>1,1158566245=>1,1158547594=>1,1158471654=>1,1158314642=>1,1158314151=>1,1158314898=>1,1158410887=>1,1158432475=>1,1158268457=>1,1158268156=>1,1157982489=>1,1157922478=>1,1158005006=>1,1158005594=>1,1158109847=>1,1158013379=>1,1157705987=>1,1156486203=>1,1156236609=>1,1156236415=>1,1156236641=>1,1156237718=>1,1156241096=>1,1156240661=>1,1158115588=>1,1158115589=>1,1158268056=>1,1158268053=>1,1158268061=>1,1158268062=>1,1158268141=>1,1158268065=>1,1158268018=>1,1158267921=>1,1158266979=>1,1158220816=>1,1158267480=>1,1158267484=>1,1158267822=>1,1158577111=>1,1167009158=>1,1186464943=>1,1186447078=>1,1186699657=>1,1186704564=>1,1186829814=>1,1186819444=>1,1186381653=>1,1186265350=>1,1185979292=>1,1185954627=>1,1185988241=>1,1185999504=>1,1186246437=>1,1186062482=>1,1186858726=>1,1186883298=>1,1192156739=>1,1192156684=>1,1192166404=>1,1192221311=>1,1192465685=>1,1192299458=>1,1191958861=>1,1191917725=>1,1189376432=>1,1186886255=>1,1191109326=>1,1191527442=>1,1191830406=>1,1191708275=>1,1185950215=>1,1185944091=>1,1181860072=>1,1181751160=>1,1181920994=>1,1181981538=>1,1182889847=>1,1182172893=>1,1181621517=>1,1181402454=>1,1180481419=>1,1180450984=>1,1180525160=>1,1180712354=>1,1180865372=>1,1180733368=>1,1182889848=>1,1183533642=>1,1185366490=>1,1185354061=>1,1185486850=>1,1185489837=>1,1185841291=>1,1185744731=>1,1185307064=>1,1185218478=>1,1184914402=>1,1184309494=>1,1185078244=>1,1185171143=>1,1185218474=>1,1192466096=>1,1192467082=>1,1197161361=>1,1197118259=>1,1197231226=>1,1197232559=>1,1197296958=>1,1197249769=>1,1197101811=>1,1196923296=>1,1196623938=>1,1196507382=>1,1196675162=>1,1196769558=>1,1196777302=>1,1196777287=>1,1197313548=>1,1197421907=>1,1201838755=>1,1200040334=>1,1201875169=>1,1201897738=>1,1202601517=>1,1202034467=>1,1200039612=>1,1199300077=>1,1197523721=>1,1197429561=>1,1197690446=>1,1198569748=>1,1199208375=>1,1196477424=>1,1195858974=>1,1193863247=>1,1193856246=>1,1193876469=>1,1193876723=>1,1193969894=>1,1193896474=>1,1193856244=>1,1193846358=>1,1192467839=>1,1192467387=>1,1192467925=>1,1193196571=>1,1193844426=>1,1193283366=>1,1193999062=>1,1193999066=>1,1194940595=>1,1194935485=>1,1195106499=>1,1195200875=>1,1195352083=>1,1195253172=>1,1194821815=>1,1194280723=>1,1194031078=>1,1194009894=>1,1194058298=>1,1194262160=>1,1194277449=>1,1180364153=>1,1180333850=>1,1168549241=>1,1168549127=>1,1168549599=>1,1168550530=>1,1168550871=>1,1168550637=>1,1168548716=>1,1168548683=>1,1168432449=>1,1168431370=>1,1168432462=>1,1168432537=>1,1168548567=>1,1168548273=>1,1168550942=>1,1168551391=>1,1168867158=>1,1168863657=>1,1168938964=>1,1168952821=>1,1168958919=>1,1168954410=>1,1168668768=>1,1168668467=>1,1168586417=>1,1168552147=>1,1168587211=>1,1168667547=>1,1168668278=>1,1168431334=>1,1168431186=>1,1168273571=>1,1168273570=>1,1168273574=>1,1168280329=>1,1168319454=>1,1168319140=>1,1168272133=>1,1168092821=>1,1167023533=>1,1152655544=>1,1167028568=>1,1167104055=>1,1168082756=>1,1167124138=>1,1168334850=>1,1168334851=>1,1168429842=>1,1168429320=>1,1168429921=>1,1168430260=>1,1168430842=>1,1168430788=>1,1168428720=>1,1168428435=>1,1168425820=>1,1168335884=>1,1168426222=>1,1168426276=>1,1168426528=>1,1169118466=>1,1169321684=>1,1178529046=>1,1178486882=>1,1178561307=>1,1178577494=>1,1178710053=>1,1178665017=>1,1177917206=>1,1177413079=>1,1177378056=>1,1177377702=>1,1177383621=>1,1177384010=>1,1177412243=>1,1177390816=>1,1178828393=>1,1179174147=>1,1180190570=>1,1179983858=>1,1180227370=>1,1180266449=>1,1180307571=>1,1180276041=>1,1179845742=>1,1179780388=>1,1179574373=>1,1179209759=>1,1179638483=>1,1179643998=>1,1179736961=>1,1177373046=>1,1177368868=>1,1172377513=>1,1170839879=>1,1173600608=>1,1173857454=>1,1174239773=>1,1173975302=>1,1170798586=>1,1170515241=>1,1169354510=>1,1169342730=>1,1169357456=>1,1169525369=>1,1170448266=>1,1170290514=>1,1174263361=>1,1174380963=>1,1176913880=>1,1176903545=>1,1177325746=>1,1177347053=>1,1177361719=>1,1177355772=>1,1176778950=>1,1176678691=>1,1176246600=>1,1176032218=>1,1176256019=>1,1176395300=>1,1176470061=>1,1166818079=>1,1152655463=>1,1128222679=>1,1128101931=>1,1128225346=>1,1128552275=>1,1129237466=>1,1128735630=>1,1128054023=>1,1127946388=>1,1127696478=>1,1127653889=>1,1127707220=>1,1127707492=>1,1127904974=>1,1127732012=>1,1129263610=>1,1129300366=>1,1133849682=>1,1133849493=>1,1133852381=>1,1133855875=>1,1133864503=>1,1133856844=>1,1133849005=>1,1131335785=>1,1129485084=>1,1129449489=>1,1129491517=>1,1130147299=>1,1130147301=>1,1130147300=>1,1127593626=>1,1127513790=>1,1123909862=>1,1123593525=>1,1123911468=>1,1123911655=>1,1123934760=>1,1123932858=>1,1123437479=>1,1123275549=>1,1123135365=>1,1123133538=>1,1123137870=>1,1123138347=>1,1123139077=>1,1123138439=>1,1123940619=>1,1123940724=>1,1125046356=>1,1125040955=>1,1125619977=>1,1126209802=>1,1127498578=>1,1126712681=>1,1125040954=>1,1124761550=>1,1124071528=>1,1123940755=>1,1124204242=>1,1124392187=>1,1124451240=>1,1133868395=>1,1133868489=>1,1136448113=>1,1136404497=>1,1136488631=>1,1136498048=>1,1136988668=>1,1136742131=>1,1136162953=>1,1136141541=>1,1136019145=>1,1135729428=>1,1136048358=>1,1136069986=>1,1136135488=>1,1136111094=>1,1136990059=>1,1136991326=>1,1137004336=>1,1137002794=>1,1137004587=>1,1137005168=>1,1137006478=>1,1137005267=>1,1137001943=>1,1137000120=>1,1136991658=>1,1136991413=>1,1136997256=>1,1136997598=>1,1136997709=>1,1135618060=>1,1135564038=>1,1134486218=>1,1133900697=>1,1134494797=>1,1134562033=>1,1134720423=>1,1134597129=>1,1133899940=>1,1133898254=>1,1133874477=>1,1133871989=>1,1133886433=>1,1133891138=>1,1133898237=>1,1133896963=>1,1134736059=>1,1134830707=>1,1135272096=>1,1135215732=>1,1135340311=>1,1135350764=>1,1135554285=>1,1135504413=>1,1135104690=>1,1135103646=>1,1134833035=>1,1134830811=>1,1134844733=>1,1135037688=>1,1135093496=>1,1123132788=>1,1123131452=>1,1120923996=>1,1120923551=>1,1120924182=>1,1120924186=>1,1120924414=>1,1120924232=>1,1120923476=>1,1120923359=>1,1120922812=>1,1120922750=>1,1120922815=>1,1120923224=>1,1120923317=>1,1120923247=>1,1120925225=>1,1120926876=>1,1121422917=>1,1121378027=>1,1121591901=>1,1121641634=>1,1121642052=>1,1121641635=>1,1121374675=>1,1121324939=>1,1120956237=>1,1120927518=>1,1121005371=>1,1121129921=>1,1121243972=>1,1121182737=>1,1120922636=>1,1120922404=>1,1119787199=>1,1119720756=>1,1119793709=>1,1119808618=>1,1119975088=>1,1119855868=>1,1119720640=>1,1119683686=>1,1119546826=>1,1119545109=>1,1119550843=>1,1119551227=>1,1119627835=>1,1119561388=>1,1120070246=>1,1120077203=>1,1120921110=>1,1120886606=>1,1120921122=>1,1120921147=>1,1120921415=>1,1120921183=>1,1120884966=>1,1120817853=>1,1120670327=>1,1120479255=>1,1120761419=>1,1120768604=>1,1120784823=>1,1121642474=>1,1121642824=>1,1122136455=>1,1121953091=>1,1122139669=>1,1122157178=>1,1122248530=>1,1122210626=>1,1121952215=>1,1121952052=>1,1121761700=>1,1121761294=>1,1121762437=>1,1121762535=>1,1121867365=>1,1121763201=>1,1122248531=>1,1122248562=>1,1122840724=>1,1122840696=>1,1122912012=>1,1122974089=>1,1122975385=>1,1122974527=>1,1122728341=>1,1122681820=>1,1122299436=>1,1122249932=>1,1122562583=>1,1122562859=>1,1122564869=>1,1121759728=>1,1121736143=>1,1121735077=>1,1121735064=>1,1121735193=>1,1121735266=>1,1121735404=>1,1121735386=>1,1121711067=>1,1121705062=>1,1121651405=>1,1121642842=>1,1121697373=>1,1121699330=>1,1121699590=>1,1121699384=>1,1121735422=>1,1121735425=>1,1121735761=>1,1121735694=>1,1121735866=>1,1121735992=>1,1121736078=>1,1121736052=>1,1121735559=>1,1121735558=>1,1121735484=>1,1121735467=>1,1121735488=>1,1121735511=>1,1121735553=>1,1137006664=>1,1137007271=>1,1145497877=>1,1145497864=>1,1145497907=>1,1145497936=>1,1145498498=>1,1145498000=>1,1145497261=>1,1145496179=>1,1145414776=>1,1145304225=>1,1145461930=>1,1145462381=>1,1145496141=>1,1145483490=>1,1145498536=>1,1145498587=>1,1147225126=>1,1147189325=>1,1147256768=>1,1147309756=>1,1147644924=>1,1147572156=>1,1146571172=>1,1146571171=>1,1145547386=>1,1145515658=>1,1145548208=>1,1145548319=>1,1146412795=>1,1146249379=>1,1145265896=>1,1145265338=>1,1141902903=>1,1141858654=>1,1143137787=>1,1143319909=>1,1143363726=>1,1143362509=>1,1141819356=>1,1141772652=>1,1141465934=>1,1141341669=>1,1141531456=>1,1141666028=>1,1141745880=>1,1141716822=>1,1143429536=>1,1143503381=>1,1144598957=>1,1144547807=>1,1145215702=>1,1145263004=>1,1145265102=>1,1145263090=>1,1144524144=>1,1144456714=>1,1144018327=>1,1143995983=>1,1144058880=>1,1144332722=>1,1144427750=>1,1147664432=>1,1147880753=>1,1152647571=>1,1152647553=>1,1152647731=>1,1152647820=>1,1152650050=>1,1152647885=>1,1152647427=>1,1152628768=>1,1152548690=>1,1152308812=>1,1152615370=>1,1152615452=>1,1152625248=>1,1152624160=>1,1152650410=>1,1152650468=>1,1152655401=>1,1152653941=>1,1152655452=>1,1152655457=>1,1119534568=>1,1152655459=>1,1152653112=>1,1152651054=>1,1152650553=>1,1152650477=>1,1152650621=>1,1152650969=>1,1152650995=>1,1152226052=>1,1152074214=>1,1148291673=>1,1148240386=>1,1148424090=>1,1148482995=>1,1148630623=>1,1148532132=>1,1148238322=>1,1148230493=>1,1147922257=>1,1147881050=>1,1147999524=>1,1148038771=>1,1148051482=>1,1148040264=>1,1148714663=>1,1149700088=>1,1151991322=>1,1151987999=>1,1151991506=>1,1152002847=>1,1152023508=>1,1152009384=>1,1151937284=>1,1151936013=>1,1150756328=>1,1150594730=>1,1150773388=>1,1151888536=>1,1151909790=>1,1141320537=>1,1141288951=>1,1137045446=>1,1137045270=>1,1137045859=>1,1137047577=>1,1137065242=>1,1137047967=>1,1137045149=>1,1137045148=>1,1137033972=>1,1137033839=>1,1137035207=>1,1137035240=>1,1137044813=>1,1137042970=>1,1137070007=>1,1137089567=>1,1137766750=>1,1137766742=>1,1137790611=>1,1137850302=>1,1137906569=>1,1137852164=>1,1137559355=>1,1137523012=>1,1137149366=>1,1137149293=>1,1137162683=>1,1137254726=>1,1137479567=>1,1137033266=>1,1137032047=>1,1137015147=>1,1137015146=>1,1137015843=>1,1137016591=>1,1137019080=>1,1137016842=>1,1137015066=>1,1137013176=>1,1137007631=>1,1137007350=>1,1137008142=>1,1137008165=>1,1137012576=>1,1137008347=>1,1137019207=>1,1137019631=>1,1137030000=>1,1137029944=>1,1137030238=>1,1137031031=>1,1137031945=>1,1137031719=>1,1137029838=>1,1137029651=>1,1137022710=>1,1137019701=>1,1137022851=>1,1137029309=>1,1137029310=>1,1137937731=>1,1137938207=>1,1139229797=>1,1139040500=>1,1139262355=>1,1139272511=>1,1139734346=>1,1139662141=>1,1139035886=>1,1139035885=>1,1138634015=>1,1138611225=>1,1138856770=>1,1139001015=>1,1139035884=>1,1139011663=>1,1139847976=>1,1139934096=>1,1140864113=>1,1140792605=>1,1140937879=>1,1140945829=>1,1141082729=>1,1141032754=>1,1140448791=>1,1140427377=>1,1140078137=>1,1139969577=>1,1140087235=>1,1140101729=>1,1140300377=>1,1138606539=>1,1138602203=>1,1138484631=>1,1138469769=>1,1138499461=>1,1138506066=>1,1138594398=>1,1138594358=>1,1138262510=>1,1138262417=>1,1138140876=>1,1138088522=>1,1138175778=>1,1138196521=>1,1138229132=>1,1138218980=>1,1138594399=>1,1138594449=>1,1138596925=>1,1138594677=>1,1138597019=>1,1138597091=>1,1138597103=>1,1138597097=>1,1138594672=>1,1138594651=>1,1138594500=>1,1138594474=>1,1138594523=>1,1138594606=>1,1138594618=>1,1152655487=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-14.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1567838208=>1567842303,1567763544=>1567764479,1567763528=>1567763535,1567762824=>1567763519,1567762432=>1567762815,1599408354=>1,1599407043=>1,1599407039=>1,1599408711=>1,1599802059=>1,1599415663=>1,1599411273=>1,1599394174=>1,1599382084=>1,1599373423=>1,1599382562=>1,1599383788=>1,1599391284=>1,1599389080=>1,1599801594=>1,1599419746=>1,1599668243=>1,1599658927=>1,1599704048=>1,1599704425=>1,1599732883=>1,1599707874=>1,1599658767=>1,1599626646=>1,1599420527=>1,1599750667=>1,1599373399=>1,1599420906=>1,1599621153=>1,1599428392=>1,1599419554=>1,1599103529=>1,1598651894=>1,1598650723=>1,1598914249=>1,1598984089=>1,1599011617=>1,1599008105=>1,1598647998=>1,1598647676=>1,1598592096=>1,1598580189=>1,1598598767=>1,1598633532=>1,1598641605=>1,1598636714=>1,1599015555=>1,1599033492=>1,1599071640=>1,1599067419=>1,1599076014=>1,1599089994=>1,1599296609=>1,1599804420=>1,1599064553=>1,1599064162=>1,1599039146=>1,1599037447=>1,1599042496=>1,1599043315=>1,1599057776=>1,1599299252=>1,1599825574=>1,1602358171=>1,1602358163=>1,1602358177=>1,1602358178=>1,1602358319=>1,1602358309=>1,1602358058=>1,1602358031=>1,1602303917=>1,1602235300=>1,1602357580=>1,1602357689=>1,1602358021=>1,1602357976=>1,1602358363=>1,1602358391=>1,1602621318=>1,1602620134=>1,1602625801=>1,1602625930=>1,1602694979=>1,1602632773=>1,1602561425=>1,1602558764=>1,1602490618=>1,1602358685=>1,1602496157=>1,1602507325=>1,1602541338=>1,1601933335=>1,1601657636=>1,1600758941=>1,1600732859=>1,1600803037=>1,1600804678=>1,1600848666=>1,1600813061=>1,1600700873=>1,1600676631=>1,1598571005=>1,1599819737=>1,1599827293=>1,1599834346=>1,1600168750=>1,1600043066=>1,1600863557=>1,1601010320=>1,1601458586=>1,1601400782=>1,1601485827=>1,1601494088=>1,1601636146=>1,1601513747=>1,1601369903=>1,1601363816=>1,1601278074=>1,1601120357=>1,1601301366=>1,1601308576=>1,1601330791=>1,1599815411=>1,1598564673=>1,1593650248=>1,1593524696=>1,1593849744=>1,1593849746=>1,1593849748=>1,1593849747=>1,1593426117=>1,1593426010=>1,1593149483=>1,1593129519=>1,1593159821=>1,1593252258=>1,1593305336=>1,1593255334=>1,1593874885=>1,1593874886=>1,1594938584=>1,1594740788=>1,1595029923=>1,1595106631=>1,1595445453=>1,1595399878=>1,1594740483=>1,1594739044=>1,1594164565=>1,1593874887=>1,1594464981=>1,1594495599=>1,1594544577=>1,1593092628=>1,1593086116=>1,1592970787=>1,1592968946=>1,1592970935=>1,1592971764=>1,1592972216=>1,1592971794=>1,1592968122=>1,1592961261=>1,1592932866=>1,1592932772=>1,1592932915=>1,1592932986=>1,1592933307=>1,1592933302=>1,1592972229=>1,1592972284=>1,1592982569=>1,1592982133=>1,1592982876=>1,1593031171=>1,1593060919=>1,1593040204=>1,1592981016=>1,1592981015=>1,1592976491=>1,1592975063=>1,1592976492=>1,1592976558=>1,1592977250=>1,1595451018=>1,1595455416=>1,1598113163=>1,1598081806=>1,1598113874=>1,1598119741=>1,1598126217=>1,1598119835=>1,1597652922=>1,1597526892=>1,1597252809=>1,1597252146=>1,1597258289=>1,1597314693=>1,1597526881=>1,1597441436=>1,1598127409=>1,1598240818=>1,1598521062=>1,1598517899=>1,1598530976=>1,1598547187=>1,1598565585=>1,1602737772=>1,1598421529=>1,1598417363=>1,1598249770=>1,1598249588=>1,1598279585=>1,1598404813=>1,1598416920=>1,1597251889=>1,1597168212=>1,1595725905=>1,1595723094=>1,1595857956=>1,1595867762=>1,1595870374=>1,1595868913=>1,1595664775=>1,1595646892=>1,1595517445=>1,1595493798=>1,1595538554=>1,1595624512=>1,1595644965=>1,1595638766=>1,1595872609=>1,1595873426=>1,1596331422=>1,1596309700=>1,1596850229=>1,1596879406=>1,1597155186=>1,1596964365=>1,1596295095=>1,1596268407=>1,1595877073=>1,1595875411=>1,1595923986=>1,1596079098=>1,1596088445=>1,1598566057=>1,1603085137=>1,1610380740=>1,1610380693=>1,1610380761=>1,1610381255=>1,1610383059=>1,1610381857=>1,1610380641=>1,1610371385=>1,1609781604=>1,1609494522=>1,1610079832=>1,1610236798=>1,1610371040=>1,1610369346=>1,1610814654=>1,1610818339=>1,1611795903=>1,1611339514=>1,1611852565=>1,1611856131=>1,1612383621=>1,1612044894=>1,1611294314=>1,1611271686=>1,1610874023=>1,1610841560=>1,1610947607=>1,1611167279=>1,1611264560=>1,1611225645=>1,1609494323=>1,1609494304=>1,1607937659=>1,1607937608=>1,1607937685=>1,1607937780=>1,1607937942=>1,1607937899=>1,1607937582=>1,1607937572=>1,1607937408=>1,1607937348=>1,1607937418=>1,1607937422=>1,1607937468=>1,1607937467=>1,1607937979=>1,1607937998=>1,1609493849=>1,1608502515=>1,1609494109=>1,1609494111=>1,1609494291=>1,1609494279=>1,1608399206=>1,1608345728=>1,1607943982=>1,1607939222=>1,1608142086=>1,1608282577=>1,1608344753=>1,1612383850=>1,1612384306=>1,1623475255=>1,1623469864=>1,1623475297=>1,1623475459=>1,1623480182=>1,1623479850=>1,1623469613=>1,1619493114=>1,1618896520=>1,1618894857=>1,1618897371=>1,1618987682=>1,1619493078=>1,1619493052=>1,1623480197=>1,1623480863=>1,1627152813=>1,1625788092=>1,1627172737=>1,1627213419=>1,1627329961=>1,1627316754=>1,1625706211=>1,1625568383=>1,1624936495=>1,1623481145=>1,1624944658=>1,1624945038=>1,1625553132=>1,1616672306=>1,1616579409=>1,1613244717=>1,1613207072=>1,1613300062=>1,1613301459=>1,1613467164=>1,1613301827=>1,1613206844=>1,1613115859=>1,1612638089=>1,1612556828=>1,1612638534=>1,1612748435=>1,1612939907=>1,1612780234=>1,1613530194=>1,1613536716=>1,1613754265=>1,1613752278=>1,1613759584=>1,1613901156=>1,1616481565=>1,1614061809=>1,1613750804=>1,1613733025=>1,1613631740=>1,1613608822=>1,1613634427=>1,1613634772=>1,1613634805=>1,1607937341=>1,1607937256=>1,1604545316=>1,1604545296=>1,1604545330=>1,1604545341=>1,1604548995=>1,1604548969=>1,1604545295=>1,1604545294=>1,1604374628=>1,1604225840=>1,1604376960=>1,1604388621=>1,1604545289=>1,1604445370=>1,1604549004=>1,1604550649=>1,1604885891=>1,1604885557=>1,1604901144=>1,1604959335=>1,1605119326=>1,1605012997=>1,1604790803=>1,1604787058=>1,1604550651=>1,1604550650=>1,1604558849=>1,1604679951=>1,1604690626=>1,1604199615=>1,1604193652=>1,1603182911=>1,1603162188=>1,1603185938=>1,1603197276=>1,1603219532=>1,1603212726=>1,1603111093=>1,1603097490=>1,1603021495=>1,1602947740=>1,1592932646=>1,1603085318=>1,1603085590=>1,1603085434=>1,1603226857=>1,1603251340=>1,1603893766=>1,1603870472=>1,1603934281=>1,1603950844=>1,1604170787=>1,1604126780=>1,1603869847=>1,1603259868=>1,1603251388=>1,1603251347=>1,1603251412=>1,1603251414=>1,1603256721=>1,1605168191=>1,1605168246=>1,1607711951=>1,1607711775=>1,1607711969=>1,1607716247=>1,1607720972=>1,1607718921=>1,1607711768=>1,1607711749=>1,1607702855=>1,1607698995=>1,1607704418=>1,1607704724=>1,1607710964=>1,1607706915=>1,1607721383=>1,1607721714=>1,1607937146=>1,1607937135=>1,1607937169=>1,1607937210=>1,1607937218=>1,1607937213=>1,1607937134=>1,1607937129=>1,1607844446=>1,1607721715=>1,1607844619=>1,1607847037=>1,1607937126=>1,1607698957=>1,1607698951=>1,1605840908=>1,1605810581=>1,1605841376=>1,1605841643=>1,1605841967=>1,1605841931=>1,1605775295=>1,1605773607=>1,1605695644=>1,1605649350=>1,1605711982=>1,1605763040=>1,1605773512=>1,1605773411=>1,1605842223=>1,1605856502=>1,1607665566=>1,1607664937=>1,1607670404=>1,1607670660=>1,1607696672=>1,1607679775=>1,1607628626=>1,1607523936=>1,1606184971=>1,1606176233=>1,1606234803=>1,1606271863=>1,1606287084=>1,1602790371=>1,1592305763=>1,1574173798=>1,1574173760=>1,1574174213=>1,1574174466=>1,1574174480=>1,1574174477=>1,1574170582=>1,1574168956=>1,1573865307=>1,1573775346=>1,1573866947=>1,1573870464=>1,1574166866=>1,1574166841=>1,1574174488=>1,1574174499=>1,1574655938=>1,1574652534=>1,1574656390=>1,1574658359=>1,1574699586=>1,1574664138=>1,1574650844=>1,1574589659=>1,1574174524=>1,1574174509=>1,1574174571=>1,1574174623=>1,1574365053=>1,1574296118=>1,1573752649=>1,1573752637=>1,1572960319=>1,1572960188=>1,1572960823=>1,1572961676=>1,1572961771=>1,1572961730=>1,1572960019=>1,1572959408=>1,1572769139=>1,1572768725=>1,1572890515=>1,1572947459=>1,1572959015=>1,1572958684=>1,1572962084=>1,1572962181=>1,1573646445=>1,1573511187=>1,1573648373=>1,1573742779=>1,1573752616=>1,1573744147=>1,1573443889=>1,1573443638=>1,1572964600=>1,1572963435=>1,1573040091=>1,1573313723=>1,1573353579=>1,1574705683=>1,1574764363=>1,1578127861=>1,1578127392=>1,1578128699=>1,1578140878=>1,1578150505=>1,1578141959=>1,1578126260=>1,1577516882=>1,1575976169=>1,1575849626=>1,1575996422=>1,1575997650=>1,1577515412=>1,1577514579=>1,1578343033=>1,1578428914=>1,1578604223=>1,1578603881=>1,1578605111=>1,1578605825=>1,1578608374=>1,1578606129=>1,1578583774=>1,1578577414=>1,1578565906=>1,1578498434=>1,1578570409=>1,1578570780=>1,1578571203=>1,1575849284=>1,1575847966=>1,1574960207=>1,1574959873=>1,1575193676=>1,1575194308=>1,1575397357=>1,1575370271=>1,1574934850=>1,1574934474=>1,1574885699=>1,1574823293=>1,1574886799=>1,1574887067=>1,1574925930=>1,1574921664=>1,1575397586=>1,1575397736=>1,1575581877=>1,1575490750=>1,1575582338=>1,1575696923=>1,1575774589=>1,1575697515=>1,1575480604=>1,1575480225=>1,1575399543=>1,1575399279=>1,1575400879=>1,1575401129=>1,1575403172=>1,1572688545=>1,1572688321=>1,1568539379=>1,1568539358=>1,1568545282=>1,1568564703=>1,1568677400=>1,1568575046=>1,1568483343=>1,1568399767=>1,1567879618=>1,1567879426=>1,1567896029=>1,1568015153=>1,1568384160=>1,1568016620=>1,1568699535=>1,1568736544=>1,1568784565=>1,1568772295=>1,1568785060=>1,1568785906=>1,1568787829=>1,1568786175=>1,1568748965=>1,1568748710=>1,1568737882=>1,1568737286=>1,1568740167=>1,1568745891=>1,1568748686=>1,1567842802=>1,1567842264=>1,1567762823=>1,1567762822=>1,1567763444=>1,1567763520=>1,1567763523=>1,1567763521=>1,1567762820=>1,1567696114=>1,1567151357=>1,1567150910=>1,1567151425=>1,1567151740=>1,1567690177=>1,1567206258=>1,1567763540=>1,1567763541=>1,1567842250=>1,1567842249=>1,1567842252=>1,1567842253=>1,1567842255=>1,1567842254=>1,1567842086=>1,1567841090=>1,1567838774=>1,1567763542=>1,1567838992=>1,1567839375=>1,1567839434=>1,1568789106=>1,1568789601=>1,1572343980=>1,1572343248=>1,1572347014=>1,1572356835=>1,1572451402=>1,1572433343=>1,1572313895=>1,1572306795=>1,1572117086=>1,1571984166=>1,1572117588=>1,1572117914=>1,1572298471=>1,1572296144=>1,1572472899=>1,1572474438=>1,1572678220=>1,1572678187=>1,1572687873=>1,1572687892=>1,1572688305=>1,1572688002=>1,1572677797=>1,1572674070=>1,1572522052=>1,1572514311=>1,1572522197=>1,1572595270=>1,1572643719=>1,1571809393=>1,1571808616=>1,1570583318=>1,1570563032=>1,1570685259=>1,1570685271=>1,1570690990=>1,1570688447=>1,1570523911=>1,1570205872=>1,1568965559=>1,1568799391=>1,1568997765=>1,1569423650=>1,1570106045=>1,1569656191=>1,1570691214=>1,1571442094=>1,1571707422=>1,1571707274=>1,1571707558=>1,1571708293=>1,1571708712=>1,1571708314=>1,1571707273=>1,1571616385=>1,1571455254=>1,1571442103=>1,1571523268=>1,1571535282=>1,1571550737=>1,1578608593=>1,1578616881=>1,1590683362=>1,1590630909=>1,1590820892=>1,1590836245=>1,1590899573=>1,1590850780=>1,1590537093=>1,1590514091=>1,1590283772=>1,1590265595=>1,1590312369=>1,1590344472=>1,1590373089=>1,1590348749=>1,1590957304=>1,1590986870=>1,1591296010=>1,1591273238=>1,1591309168=>1,1591310613=>1,1591332450=>1,1591331493=>1,1591260317=>1,1591245822=>1,1591106015=>1,1591086074=>1,1591117952=>1,1591135299=>1,1591203634=>1,1591158990=>1,1590259654=>1,1590230255=>1,1589179657=>1,1589114703=>1,1589204330=>1,1589205590=>1,1589532654=>1,1589386376=>1,1589114576=>1,1589109841=>1,1588985202=>1,1588973611=>1,1589035240=>1,1589094108=>1,1589105848=>1,1589097770=>1,1589535508=>1,1589727557=>1,1590075454=>1,1590060050=>1,1590113125=>1,1590132587=>1,1590224770=>1,1590182606=>1,1590060049=>1,1590059591=>1,1589875400=>1,1589727772=>1,1590034693=>1,1590048090=>1,1590052012=>1,1591361295=>1,1591493633=>1,1592104746=>1,1592104530=>1,1592104989=>1,1592105011=>1,1592105369=>1,1592105223=>1,1592104384=>1,1592103889=>1,1592089395=>1,1592089394=>1,1592103106=>1,1592103127=>1,1592103861=>1,1592103712=>1,1592105679=>1,1592105779=>1,1592245890=>1,1592244214=>1,1592279400=>1,1567150494=>1,1592370252=>1,1592307087=>1,1592239999=>1,1592226950=>1,1592132122=>1,1592129337=>1,1592162499=>1,1592181817=>1,1592194017=>1,1592088919=>1,1592087863=>1,1591675849=>1,1591668953=>1,1591676816=>1,1591677831=>1,1591749794=>1,1591716032=>1,1591634900=>1,1591634624=>1,1591530846=>1,1591521024=>1,1591568384=>1,1591571159=>1,1591580640=>1,1591573623=>1,1591793268=>1,1591819711=>1,1592052989=>1,1592052221=>1,1592053530=>1,1592053662=>1,1592085157=>1,1592063237=>1,1592052009=>1,1592051282=>1,1591908224=>1,1591886454=>1,1592022539=>1,1592022572=>1,1592050178=>1,1588968981=>1,1588932077=>1,1581033643=>1,1580761210=>1,1581055786=>1,1581086128=>1,1581513576=>1,1581357072=>1,1580405167=>1,1580405094=>1,1580401638=>1,1580401096=>1,1580401875=>1,1580402384=>1,1580404190=>1,1580403779=>1,1581555496=>1,1581636839=>1,1582028417=>1,1581997346=>1,1582067235=>1,1582084865=>1,1582245082=>1,1582145968=>1,1581995386=>1,1581979146=>1,1581848153=>1,1581818997=>1,1581946386=>1,1581946387=>1,1581946923=>1,1580059102=>1,1580041918=>1,1578782020=>1,1578630175=>1,1578784019=>1,1578798230=>1,1578920950=>1,1578799783=>1,1578629278=>1,1578628950=>1,1578621888=>1,1578618031=>1,1578621925=>1,1578622386=>1,1578628906=>1,1578625715=>1,1578935957=>1,1578940901=>1,1579794540=>1,1579769832=>1,1579797403=>1,1579808611=>1,1580030711=>1,1579846666=>1,1579763148=>1,1579751888=>1,1579070898=>1,1578953987=>1,1579103691=>1,1579694753=>1,1579700774=>1,1582270902=>1,1582280162=>1,1586293306=>1,1586291730=>1,1586324499=>1,1586325139=>1,1586325203=>1,1586325195=>1,1586283772=>1,1586220217=>1,1586061706=>1,1586050132=>1,1586167984=>1,1586169040=>1,1586173646=>1,1586171493=>1,1586343059=>1,1586426250=>1,1588464247=>1,1587468879=>1,1588732135=>1,1588859926=>1,1588929088=>1,1588860516=>1,1587301824=>1,1587266539=>1,1586427342=>1,1586426452=>1,1587145470=>1,1587207775=>1,1587228975=>1,1586049650=>1,1586010362=>1,1583755695=>1,1583726580=>1,1583756329=>1,1583756721=>1,1583777968=>1,1583757071=>1,1583687441=>1,1583628034=>1,1583624450=>1,1583616674=>1,1583624758=>1,1583627010=>1,1583627778=>1,1583627522=>1,1583803251=>1,1583853397=>1,1585883851=>1,1585749460=>1,1585885050=>1,1585893055=>1,1585995670=>1,1585896728=>1,1585359525=>1,1585321902=>1,1584509093=>1,1583853398=>1,1584534404=>1,1584577608=>1,1585297569=>1,1592932610=>1,);?>
1
+ <?php return array(1249091584=>1249092607,1249050624=>1249052671,1288425744=>1,1290382056=>1,1290387671=>1,1292260329=>1,1292147568=>1,1287590998=>1,1287590837=>1,1287018343=>1,1286925642=>1,1286904594=>1,1287027125=>1,1287196587=>1,1287578916=>1,1287347361=>1,1292321310=>1,1292726946=>1,1293305292=>1,1293289589=>1,1293335205=>1,1293354411=>1,1293371927=>1,1293357375=>1,1293257504=>1,1293254474=>1,1292755031=>1,1286784672=>1,1293190147=>1,1293202996=>1,1293230868=>1,1292550611=>1,1286170110=>1,1282323269=>1,1281993686=>1,1282535231=>1,1282678222=>1,1282807662=>1,1282719225=>1,1281962307=>1,1281934440=>1,1281258249=>1,1281212973=>1,1281275913=>1,1281765547=>1,1281766745=>1,1282902326=>1,1282950741=>1,1283407363=>1,1283310586=>1,1285867437=>1,1286068195=>1,1293399579=>1,1286169815=>1,1283302138=>1,1283285784=>1,1282980750=>1,1282954581=>1,1283205385=>1,1283272497=>1,1283282242=>1,1286616489=>1,1294131843=>1,1295665557=>1,1295622221=>1,1295668864=>1,1295684701=>1,1296174265=>1,1295698865=>1,1295622219=>1,1295619322=>1,1295547532=>1,1295540417=>1,1295569011=>1,1295579300=>1,1295612392=>1,1295581122=>1,1296231493=>1,1296241097=>1,1296813154=>1,1296803371=>1,1296985941=>1,1297180796=>1,1297468363=>1,1297215529=>1,1296657684=>1,1296656734=>1,1296449500=>1,1296311389=>1,1296526025=>1,1296567824=>1,1296656446=>1,1296602774=>1,1295531868=>1,1295530740=>1,1294374617=>1,1294326417=>1,1294557062=>1,1294576214=>1,1294595125=>1,1294591153=>1,1294317694=>1,1294316282=>1,1294272059=>1,1294191797=>1,1294274100=>1,1294305445=>1,1294315616=>1,1294309554=>1,1294604221=>1,1294653461=>1,1295163436=>1,1295106415=>1,1295178844=>1,1295185279=>1,1295369306=>1,1295328648=>1,1295064771=>1,1295042591=>1,1294725948=>1,1294700319=>1,1294898481=>1,1294936511=>1,1295010237=>1,1281209866=>1,1280991938=>1,1275593779=>1,1275593506=>1,1275593801=>1,1275594443=>1,1275595036=>1,1275594783=>1,1275593300=>1,1275593211=>1,1269897214=>1,1269831389=>1,1270466600=>1,1270854067=>1,1275570821=>1,1275329010=>1,1275595229=>1,1275595384=>1,1275618106=>1,1275617848=>1,1275618374=>1,1275619210=>1,1275619639=>1,1275619608=>1,1275617392=>1,1275596329=>1,1275595620=>1,1275595385=>1,1275595831=>1,1275595990=>1,1275596095=>1,1275596024=>1,1269826787=>1,1269661470=>1,1267094723=>1,1267088509=>1,1267102053=>1,1267111711=>1,1267169904=>1,1267135604=>1,1267064317=>1,1267051803=>1,1266703615=>1,1266640289=>1,1266718504=>1,1266760292=>1,1267017175=>1,1267005070=>1,1267336974=>1,1267546441=>1,1268174482=>1,1268173645=>1,1268241749=>1,1268501924=>1,1269098019=>1,1268771015=>1,1268086902=>1,1268062584=>1,1267902529=>1,1267546475=>1,1267982210=>1,1267982211=>1,1268031109=>1,1275619838=>1,1275620384=>1,1276128639=>1,1276038063=>1,1276824563=>1,1276965230=>1,1277135652=>1,1276989651=>1,1276034858=>1,1276034376=>1,1276028516=>1,1276022560=>1,1276029824=>1,1276031292=>1,1276033944=>1,1276033062=>1,1277161875=>1,1279662524=>1,1280126507=>1,1279958290=>1,1280255906=>1,1280286686=>1,1280921998=>1,1280690200=>1,1279942945=>1,1279914564=>1,1279852254=>1,1279850150=>1,1279900204=>1,1279900307=>1,1279910427=>1,1276020444=>1,1276016946=>1,1275732891=>1,1275730588=>1,1275741508=>1,1275754692=>1,1275764026=>1,1275755206=>1,1275730401=>1,1275729216=>1,1275621565=>1,1275620468=>1,1275659602=>1,1275701826=>1,1275727291=>1,1275725930=>1,1275778075=>1,1275785596=>1,1275911016=>1,1275788085=>1,1275999754=>1,1276014020=>1,1276016182=>1,1276015699=>1,1275787609=>1,1275787424=>1,1275786616=>1,1275786409=>1,1275786861=>1,1275787267=>1,1275787366=>1,1297472769=>1,1297532230=>1,1311228683=>1,1311158041=>1,1311243389=>1,1311301655=>1,1311302706=>1,1311302193=>1,1311141238=>1,1311136746=>1,1310696489=>1,1310671224=>1,1310929490=>1,1310993462=>1,1311068680=>1,1311026148=>1,1311339409=>1,1311430748=>1,1311650184=>1,1311649295=>1,1311650684=>1,1311651083=>1,1311652894=>1,1311651811=>1,1311649266=>1,1311648733=>1,1311574164=>1,1311488110=>1,1311640443=>1,1311643159=>1,1311647002=>1,1311647001=>1,1310648847=>1,1310465555=>1,1310251170=>1,1310251163=>1,1310251241=>1,1310251439=>1,1310251837=>1,1310251465=>1,1310214965=>1,1310192785=>1,1308372588=>1,1308355059=>1,1309192446=>1,1309984183=>1,1310191784=>1,1310125790=>1,1310252306=>1,1310252409=>1,1310282538=>1,1310279958=>1,1310286522=>1,1310328919=>1,1310423622=>1,1310333194=>1,1310278114=>1,1310252932=>1,1310252500=>1,1310252411=>1,1310252501=>1,1310252541=>1,1310252546=>1,1311654133=>1,1311654243=>1,1311724642=>1,1311724324=>1,1311726860=>1,1311727024=>1,1311727393=>1,1311727048=>1,1311719515=>1,1311718878=>1,1311713212=>1,1311713084=>1,1311715161=>1,1311715286=>1,1311718750=>1,1311715932=>1,1311728328=>1,1311728802=>1,1311747739=>1,1311746116=>1,1311748170=>1,1311750935=>1,1311753836=>1,1311751050=>1,1311743610=>1,1311742891=>1,1311731443=>1,1311729053=>1,1311733910=>1,1311734874=>1,1311741102=>1,1311735317=>1,1311712686=>1,1311712035=>1,1311676171=>1,1311673702=>1,1311679027=>1,1311679617=>1,1311686040=>1,1311684988=>1,1311673270=>1,1311673241=>1,1311658619=>1,1311658285=>1,1311660567=>1,1311661844=>1,1311669862=>1,1311666395=>1,1311686987=>1,1311687979=>1,1311702982=>1,1311700772=>1,1311704070=>1,1311705447=>1,1311710198=>1,1311707758=>1,1311698871=>1,1311697366=>1,1311693264=>1,1311691120=>1,1311693323=>1,1311693954=>1,1311694128=>1,1308304395=>1,1308299098=>1,1302405789=>1,1301860502=>1,1302582723=>1,1303045795=>1,1303270291=>1,1303118114=>1,1299928582=>1,1299911224=>1,1299517936=>1,1299091366=>1,1299707412=>1,1299751550=>1,1299893016=>1,1299861374=>1,1303289224=>1,1303296148=>1,1303679863=>1,1303629699=>1,1303689157=>1,1303695527=>1,1304771155=>1,1303813815=>1,1303628015=>1,1303627608=>1,1303356863=>1,1303351867=>1,1303367652=>1,1303578173=>1,1303611497=>1,1303587992=>1,1299090303=>1,1299020393=>1,1297768848=>1,1297767434=>1,1297824806=>1,1297859672=>1,1297992482=>1,1297949140=>1,1297740442=>1,1297734666=>1,1297572529=>1,1297566735=>1,1297573752=>1,1297576305=>1,1297711243=>1,1297591816=>1,1297992483=>1,1297992604=>1,1298682567=>1,1298547334=>1,1298740191=>1,1298745174=>1,1298976553=>1,1298856901=>1,1298222259=>1,1298072364=>1,1298035090=>1,1297992619=>1,1298072019=>1,1298072352=>1,1298072357=>1,1305031733=>1,1305169155=>1,1307797521=>1,1307711230=>1,1307797983=>1,1307942023=>1,1308008013=>1,1307968441=>1,1307680792=>1,1307637127=>1,1307410953=>1,1307375150=>1,1307413043=>1,1307464551=>1,1307627029=>1,1307520922=>1,1308028002=>1,1308028723=>1,1308122268=>1,1308112077=>1,1308123012=>1,1308142725=>1,1308257269=>1,1308190550=>1,1308079526=>1,1308079525=>1,1308079264=>1,1308066827=>1,1308079522=>1,1308079523=>1,1308079524=>1,1307370462=>1,1307335242=>1,1307191962=>1,1307191960=>1,1307191989=>1,1307192458=>1,1307192469=>1,1307192459=>1,1307191959=>1,1307191686=>1,1305431474=>1,1305309927=>1,1306493350=>1,1307062882=>1,1307176578=>1,1307062883=>1,1307192489=>1,1307192492=>1,1307334079=>1,1307334046=>1,1307334317=>1,1307334464=>1,1307334557=>1,1307334531=>1,1307334012=>1,1307333674=>1,1307192502=>1,1307192500=>1,1307192504=>1,1307241263=>1,1307329434=>1,1266638949=>1,1266555572=>1,1226007124=>1,1225963072=>1,1226318906=>1,1226432585=>1,1226479653=>1,1226447865=>1,1225959609=>1,1225785073=>1,1225045776=>1,1225016445=>1,1225282188=>1,1225307877=>1,1225669664=>1,1225600157=>1,1226505099=>1,1226648057=>1,1227184894=>1,1227098158=>1,1227367594=>1,1227457470=>1,1227698684=>1,1227695435=>1,1227091964=>1,1227079590=>1,1226867664=>1,1226799507=>1,1226985856=>1,1226986268=>1,1227045670=>1,1227026938=>1,1225006659=>1,1224989170=>1,1222175938=>1,1222175746=>1,1222276458=>1,1222353147=>1,1222542346=>1,1222390410=>1,1222045356=>1,1221972834=>1,1221188521=>1,1221181327=>1,1221401584=>1,1221448299=>1,1221846546=>1,1221596183=>1,1222549969=>1,1222560968=>1,1224528838=>1,1224478371=>1,1224740297=>1,1224760123=>1,1224940422=>1,1224891133=>1,1224477531=>1,1224390582=>1,1222666310=>1,1222599134=>1,1223088292=>1,1223420596=>1,1223724237=>1,1227734734=>1,1227753739=>1,1235934648=>1,1235817750=>1,1236049354=>1,1236256500=>1,1236421643=>1,1236351283=>1,1235537415=>1,1235458786=>1,1235013053=>1,1234763328=>1,1235142751=>1,1235313763=>1,1235414461=>1,1235405776=>1,1236439023=>1,1236585904=>1,1237487482=>1,1237255898=>1,1237617978=>1,1237657043=>1,1237726031=>1,1237676085=>1,1237194186=>1,1237067892=>1,1236618895=>1,1236590408=>1,1236736585=>1,1236818868=>1,1237058715=>1,1234751501=>1,1234691551=>1,1229371677=>1,1229174340=>1,1229456076=>1,1229466506=>1,1229760127=>1,1229545074=>1,1229037297=>1,1228998447=>1,1228045607=>1,1227880216=>1,1228114080=>1,1228122998=>1,1228295957=>1,1228157131=>1,1230504168=>1,1230607537=>1,1233933986=>1,1233841490=>1,1233998288=>1,1234157384=>1,1234562005=>1,1234333397=>1,1233741755=>1,1233626631=>1,1233192844=>1,1231290653=>1,1233255280=>1,1233511725=>1,1233591134=>1,1221147255=>1,1220917779=>1,1208719080=>1,1208616366=>1,1208764530=>1,1208764601=>1,1208766054=>1,1208765824=>1,1208305889=>1,1208305689=>1,1207732726=>1,1207480986=>1,1207875251=>1,1208019002=>1,1208270113=>1,1208135296=>1,1208767266=>1,1208770229=>1,1209677474=>1,1209552047=>1,1209716883=>1,1209785800=>1,1209846912=>1,1209797277=>1,1209541391=>1,1209220423=>1,1208906378=>1,1208808820=>1,1208922532=>1,1208922890=>1,1208924221=>1,1208923918=>1,1207259926=>1,1207259198=>1,1203963717=>1,1203959498=>1,1204273610=>1,1204429924=>1,1204459232=>1,1204449144=>1,1203785187=>1,1203488018=>1,1202843069=>1,1202808043=>1,1203202582=>1,1203240360=>1,1203446432=>1,1203315515=>1,1204467941=>1,1204585149=>1,1206390387=>1,1206246087=>1,1206393048=>1,1206570103=>1,1207210078=>1,1206720915=>1,1205949263=>1,1205614854=>1,1204721543=>1,1204605944=>1,1204733584=>1,1204766341=>1,1205492848=>1,1209854765=>1,1210314547=>1,1219426554=>1,1219388046=>1,1219437668=>1,1219457978=>1,1219459833=>1,1219458338=>1,1219387950=>1,1219387894=>1,1219282802=>1,1218413593=>1,1219284786=>1,1219345433=>1,1219365274=>1,1219345754=>1,1219469934=>1,1219473815=>1,1220728172=>1,1220652781=>1,1220848464=>1,1220848544=>1,1220871790=>1,1220848648=>1,1220642231=>1,1220379195=>1,1219577161=>1,1219476026=>1,1219981450=>1,1220168064=>1,1220258324=>1,1217728133=>1,1217201431=>1,1211008887=>1,1210973284=>1,1211312227=>1,1211359547=>1,1211464259=>1,1211386651=>1,1210953286=>1,1210942594=>1,1210748040=>1,1210322378=>1,1210874130=>1,1210874269=>1,1210875585=>1,1210874777=>1,1211609900=>1,1211628055=>1,1213915434=>1,1213487938=>1,1214191688=>1,1216857259=>1,1217200353=>1,1217200331=>1,1212991151=>1,1212382159=>1,1212181954=>1,1211628236=>1,1212183162=>1,1212288062=>1,1212313506=>1,1238086387=>1,1238103022=>1,1255192950=>1,1255190031=>1,1255202014=>1,1255212230=>1,1255344040=>1,1255343976=>1,1255171399=>1,1255165570=>1,1255142759=>1,1255141895=>1,1255143534=>1,1255143849=>1,1255149131=>1,1255144794=>1,1255346874=>1,1255355645=>1,1255580266=>1,1255580233=>1,1255580717=>1,1255580922=>1,1255582009=>1,1255581792=>1,1255535312=>1,1255534778=>1,1255358825=>1,1255358581=>1,1255358871=>1,1255358962=>1,1255360923=>1,1255359167=>1,1255141402=>1,1255140652=>1,1250848858=>1,1250839196=>1,1250935122=>1,1250935123=>1,1253207831=>1,1253142458=>1,1250718079=>1,1250690047=>1,1250186758=>1,1249844248=>1,1250460455=>1,1250598344=>1,1250642082=>1,1250642050=>1,1254206675=>1,1254229290=>1,1254834898=>1,1254584728=>1,1255139258=>1,1255139650=>1,1255140549=>1,1255139699=>1,1254577304=>1,1254565925=>1,1254324637=>1,1254235906=>1,1254369837=>1,1254480956=>1,1254565754=>1,1255811942=>1,1255853415=>1,1264816706=>1,1264754669=>1,1265019320=>1,1265215120=>1,1265384879=>1,1265344062=>1,1264754248=>1,1264753609=>1,1264751275=>1,1264751269=>1,1264751544=>1,1264751787=>1,1264753277=>1,1264752019=>1,1265385703=>1,1265434496=>1,1266080265=>1,1266079398=>1,1266081535=>1,1266154254=>1,1202753439=>1,1266242630=>1,1266074926=>1,1266048369=>1,1265478702=>1,1265454975=>1,1265512631=>1,1265546062=>1,1265624848=>1,1264751209=>1,1264750845=>1,1263041368=>1,1262934764=>1,1263104017=>1,1263276570=>1,1263279558=>1,1263278504=>1,1262898678=>1,1262787075=>1,1256048792=>1,1255887642=>1,1256051340=>1,1261396867=>1,1262674836=>1,1261500544=>1,1263300383=>1,1263311971=>1,1264041798=>1,1264009469=>1,1264137085=>1,1264247507=>1,1264683498=>1,1264267339=>1,1263969122=>1,1263889362=>1,1263318146=>1,1263314552=>1,1263320027=>1,1263575276=>1,1263630222=>1,1249818618=>1,1249594065=>1,1244894925=>1,1244894832=>1,1244894938=>1,1244895866=>1,1244896053=>1,1244895917=>1,1244894597=>1,1244894523=>1,1244804676=>1,1243988734=>1,1244876300=>1,1244892781=>1,1244894452=>1,1244894070=>1,1244896243=>1,1244896701=>1,1244914454=>1,1244914306=>1,1244914622=>1,1244914650=>1,1245639254=>1,1245326152=>1,1244902595=>1,1244898494=>1,1244898089=>1,1244896981=>1,1244898148=>1,1244898240=>1,1244898245=>1,1242282429=>1,1241771547=>1,1239891779=>1,1239877634=>1,1239892849=>1,1239897497=>1,1240068890=>1,1239991288=>1,1239575023=>1,1239247484=>1,1238321107=>1,1238163996=>1,1238338090=>1,1238589397=>1,1239020480=>1,1238606793=>1,1240162175=>1,1240164843=>1,1240980397=>1,1240940315=>1,1241157101=>1,1241192410=>1,1241752871=>1,1241233588=>1,1240882150=>1,1240831331=>1,1240374046=>1,1240265778=>1,1240580501=>1,1240596895=>1,1240678654=>1,1245693210=>1,1245829072=>1,1247790009=>1,1247691716=>1,1247855398=>1,1247861955=>1,1248093623=>1,1248025583=>1,1247670108=>1,1247642197=>1,1247156243=>1,1247150475=>1,1247363993=>1,1247392340=>1,1247484374=>1,1247483915=>1,1248158906=>1,1248209493=>1,1249310707=>1,1249270376=>1,1249411784=>1,1249490638=>1,1249580840=>1,1249579070=>1,1249270093=>1,1249269819=>1,1248606485=>1,1248222695=>1,1248918819=>1,1249131426=>1,1249163896=>1,1246953150=>1,1246953037=>1,1246538325=>1,1246524591=>1,1246608251=>1,1246855786=>1,1246903090=>1,1246890464=>1,1246411686=>1,1246243436=>1,1245839818=>1,1245839286=>1,1245901498=>1,1246181601=>1,1246227025=>1,1246197201=>1,1246931097=>1,1246945562=>1,1246950674=>1,1246950555=>1,1246950851=>1,1246950876=>1,1246952560=>1,1246951956=>1,1246949131=>1,1246948695=>1,1246947223=>1,1246947091=>1,1246948247=>1,1246948400=>1,1246948516=>1,1266620923=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-15.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1753250448=>1753250455,1701738304=>1701738311,1743288709=>1,1743274181=>1,1743343075=>1,1743352946=>1,1743353313=>1,1743353281=>1,1743274180=>1,1743353837=>1,1743233282=>1,1743233125=>1,1743233305=>1,1743233545=>1,1743193475=>1,1743248238=>1,1743265837=>1,1743398032=>1,1743783938=>1,1743702082=>1,1743785997=>1,1743805191=>1,1743890866=>1,1743890693=>1,1743571310=>1,1743554490=>1,1743423988=>1,1743182530=>1,1743453742=>1,1743454094=>1,1743454138=>1,1743363586=>1,1743166638=>1,1732152838=>1,1732110075=>1,1732154393=>1,1732206594=>1,1740871257=>1,1732222038=>1,1732023932=>1,1732023929=>1,1731799705=>1,1731799701=>1,1731799709=>1,1731799721=>1,1732023911=>1,1731974350=>1,1740958098=>1,1742758954=>1,1743028655=>1,1742966036=>1,1743082483=>1,1743093565=>1,1743128270=>1,1743124347=>1,1742966034=>1,1742959913=>1,1742795568=>1,1742776074=>1,1742797154=>1,1742842950=>1,1742843625=>1,1743890868=>1,1743890880=>1,1744542023=>1,1744535591=>1,1744542084=>1,1744625125=>1,1744640351=>1,1744640306=>1,1744525948=>1,1744524094=>1,1744397330=>1,1744395217=>1,1744433372=>1,1744441300=>1,1744524081=>1,1744513845=>1,1744640454=>1,1744677121=>1,1744792382=>1,1744768792=>1,1744825956=>1,1744977762=>1,1746933041=>1,1745760769=>1,1744742183=>1,1744739045=>1,1744726037=>1,1744723587=>1,1744726642=>1,1744731986=>1,1744733006=>1,1744395201=>1,1744395009=>1,1744024410=>1,1744021557=>1,1744084982=>1,1744091742=>1,1744092026=>1,1744091974=>1,1743985472=>1,1743985453=>1,1743890900=>1,1743890897=>1,1743890911=>1,1743919589=>1,1743968340=>1,1743939870=>1,1744108211=>1,1744128145=>1,1744282330=>1,1744266598=>1,1744296017=>1,1744296388=>1,1744332568=>1,1744296802=>1,1744244676=>1,1744244440=>1,1744161922=>1,1744160078=>1,1744175461=>1,1744179693=>1,1744231710=>1,1731776340=>1,1731765649=>1,1730647731=>1,1730647727=>1,1730647733=>1,1730647737=>1,1730647742=>1,1730647741=>1,1730647725=>1,1730647722=>1,1730647708=>1,1730647707=>1,1730647711=>1,1730647715=>1,1730647718=>1,1730647716=>1,1730647939=>1,1730647940=>1,1730647959=>1,1730647958=>1,1730647962=>1,1730647964=>1,1730647967=>1,1730647965=>1,1730647956=>1,1730647955=>1,1730647942=>1,1730647941=>1,1730647948=>1,1730647949=>1,1730647954=>1,1730647953=>1,1730647706=>1,1730647697=>1,1730647454=>1,1730647453=>1,1730647455=>1,1730647457=>1,1730647460=>1,1730647459=>1,1730647451=>1,1730647450=>1,1730647441=>1,1730647437=>1,1730647442=>1,1730647443=>1,1730647447=>1,1730647444=>1,1730647461=>1,1730647465=>1,1730647483=>1,1730647482=>1,1730647684=>1,1730647686=>1,1730647693=>1,1730647688=>1,1730647481=>1,1730647477=>1,1730647468=>1,1730647466=>1,1730647472=>1,1730647473=>1,1730647474=>1,1730647969=>1,1730647974=>1,1731579289=>1,1731579221=>1,1731579317=>1,1731579388=>1,1731599105=>1,1731598339=>1,1731566860=>1,1731516867=>1,1731183286=>1,1731183236=>1,1731313606=>1,1731432798=>1,1731516829=>1,1731453986=>1,1731599935=>1,1731617793=>1,1731648666=>1,1731648068=>1,1731656354=>1,1731664860=>1,1731667196=>1,1731666966=>1,1731648058=>1,1731647533=>1,1731630082=>1,1731617809=>1,1731630337=>1,1731630401=>1,1731630849=>1,1731183125=>1,1731182950=>1,1730647996=>1,1730647994=>1,1730649241=>1,1730649249=>1,1730709998=>1,1730688550=>1,1730647993=>1,1730647992=>1,1730647976=>1,1730647975=>1,1730647979=>1,1730647983=>1,1730647987=>1,1730647986=>1,1730774295=>1,1730783493=>1,1730904818=>1,1730904674=>1,1730909702=>1,1730909714=>1,1730989066=>1,1730975021=>1,1730904204=>1,1730882800=>1,1730785598=>1,1730785585=>1,1730820181=>1,1730874614=>1,1730882573=>1,1747098760=>1,1747140345=>1,1753448695=>1,1753447986=>1,1753448734=>1,1753449538=>1,1753449716=>1,1753449588=>1,1753447184=>1,1753444936=>1,1753443335=>1,1753442151=>1,1753443531=>1,1753443557=>1,1753444415=>1,1753443580=>1,1753450031=>1,1753450734=>1,1753468352=>1,1753468051=>1,1753468439=>1,1753469165=>1,1753478455=>1,1753477263=>1,1753462190=>1,1753457948=>1,1753451535=>1,1753450911=>1,1753453654=>1,1753455205=>1,1753457692=>1,1753455970=>1,1753441787=>1,1753436329=>1,1753422902=>1,1753422619=>1,1753423730=>1,1753423791=>1,1753424998=>1,1753424590=>1,1753421366=>1,1753421262=>1,1753393529=>1,1753368283=>1,1753416941=>1,1753419353=>1,1753420998=>1,1753420663=>1,1753425428=>1,1753426581=>1,1753434225=>1,1753432770=>1,1753434445=>1,1753434454=>1,1753435249=>1,1753434831=>1,1753432617=>1,1753431622=>1,1753427302=>1,1753426673=>1,1753428653=>1,1753430143=>1,1753430594=>1,1753867516=>1,1753872715=>1,1755800204=>1,1755800159=>1,1755800431=>1,1755800511=>1,1755801192=>1,1755800671=>1,1755461782=>1,1755325681=>1,1755118780=>1,1755115681=>1,1755118790=>1,1755119133=>1,1755224899=>1,1755186062=>1,1755801228=>1,1755801332=>1,1755804617=>1,1755804600=>1,1755804777=>1,1755805037=>1,1755823590=>1,1755805199=>1,1755804235=>1,1755804042=>1,1755802078=>1,1755801466=>1,1755802377=>1,1755802510=>1,1755803801=>1,1755115487=>1,1755113096=>1,1754788413=>1,1754782144=>1,1754813242=>1,1754851909=>1,1754865205=>1,1754864880=>1,1754562804=>1,1754361998=>1,1754216090=>1,1754215056=>1,1754351860=>1,1754354792=>1,1754355583=>1,1754355325=>1,1754993227=>1,1755048682=>1,1755111507=>1,1755111452=>1,1755112089=>1,1755112136=>1,1755113023=>1,1755112942=>1,1755082728=>1,1755082550=>1,1755061855=>1,1755060431=>1,1755069603=>1,1755079402=>1,1755080392=>1,1753270979=>1,1753270868=>1,1753250181=>1,1753250178=>1,1753250182=>1,1753250190=>1,1753250193=>1,1753250191=>1,1753249982=>1,1753249981=>1,1753249967=>1,1753249966=>1,1753249969=>1,1753249973=>1,1753249979=>1,1753249976=>1,1753250195=>1,1753250199=>1,1753250227=>1,1753250224=>1,1753250229=>1,1753250231=>1,1753250237=>1,1753250236=>1,1753250222=>1,1753250219=>1,1753250206=>1,1753250204=>1,1753250208=>1,1753250214=>1,1753250217=>1,1753250216=>1,1753249963=>1,1753249960=>1,1747298587=>1,1747294772=>1,1747299079=>1,1747304235=>1,1747339521=>1,1747304604=>1,1747281538=>1,1747281201=>1,1747177753=>1,1730647436=>1,1747212195=>1,1747223487=>1,1747236135=>1,1747236114=>1,1747339742=>1,1747452303=>1,1753249933=>1,1753240244=>1,1753249937=>1,1753249955=>1,1753249959=>1,1753249956=>1,1747783706=>1,1747707216=>1,1747487398=>1,1747484719=>1,1747492670=>1,1747518091=>1,1747569844=>1,1753250434=>1,1753250435=>1,1753250722=>1,1753250719=>1,1753250723=>1,1753250725=>1,1753250730=>1,1753250727=>1,1753250715=>1,1753250714=>1,1753250705=>1,1753250703=>1,1753250706=>1,1753250707=>1,1753250713=>1,1753250710=>1,1753250731=>1,1753250732=>1,1753250747=>1,1753250746=>1,1753250750=>1,1753260825=>1,1753270858=>1,1753270688=>1,1753250745=>1,1753250743=>1,1753250734=>1,1753250733=>1,1753250737=>1,1753250738=>1,1753250740=>1,1753250702=>1,1753250700=>1,1753250464=>1,1753250462=>1,1753250465=>1,1753250467=>1,1753250470=>1,1753250469=>1,1753250461=>1,1753250460=>1,1753250437=>1,1753250436=>1,1753250438=>1,1753250440=>1,1753250442=>1,1753250441=>1,1753250472=>1,1753250473=>1,1753250490=>1,1753250489=>1,1753250492=>1,1753250493=>1,1753250699=>1,1753250691=>1,1753250488=>1,1753250486=>1,1753250477=>1,1753250475=>1,1753250478=>1,1753250484=>1,1753250485=>1,1747136587=>1,1730647431=>1,1660823987=>1,1660385539=>1,1660947946=>1,1661343166=>1,1665786372=>1,1664397474=>1,1660364299=>1,1660359142=>1,1659842809=>1,1659762206=>1,1659927451=>1,1660045957=>1,1660300512=>1,1660269265=>1,1666785673=>1,1667224946=>1,1678030546=>1,1677952948=>1,1678189299=>1,1678263137=>1,1678739024=>1,1678471378=>1,1677783070=>1,1676654671=>1,1673903147=>1,1668662921=>1,1673941010=>1,1675982541=>1,1676622969=>1,1676290976=>1,1659641903=>1,1659615655=>1,1657920999=>1,1657912774=>1,1657935817=>1,1657941683=>1,1658443417=>1,1657985263=>1,1657833798=>1,1657723089=>1,1657055741=>1,1657008829=>1,1657134659=>1,1657352674=>1,1657714338=>1,1657436794=>1,1658455272=>1,1658662924=>1,1659227807=>1,1659206743=>1,1659529800=>1,1659550155=>1,1659559361=>1,1659558679=>1,1659130222=>1,1659125618=>1,1658952375=>1,1658937307=>1,1658955362=>1,1659017823=>1,1659033859=>1,1679915536=>1,1680111050=>1,1699864884=>1,1699851058=>1,1700793146=>1,1700793147=>1,1700793154=>1,1700793152=>1,1699833410=>1,1699356630=>1,1698888982=>1,1698674987=>1,1698971731=>1,1699084943=>1,1699355839=>1,1699175095=>1,1700793155=>1,1700793158=>1,1701096161=>1,1701095688=>1,1701099784=>1,1701581810=>1,1701633068=>1,1701609820=>1,1701095401=>1,1701093909=>1,1700924306=>1,1700793159=>1,1700998154=>1,1701088350=>1,1701089454=>1,1698666330=>1,1697898146=>1,1694672222=>1,1680750915=>1,1694786890=>1,1694927908=>1,1695718186=>1,1695715418=>1,1680699244=>1,1680635460=>1,1680113332=>1,1680112437=>1,1680193657=>1,1680217740=>1,1680253898=>1,1680240594=>1,1695726247=>1,1696212642=>1,1697872887=>1,1697872835=>1,1697873947=>1,1697894745=>1,1697896945=>1,1697895188=>1,1697866836=>1,1697866665=>1,1696286540=>1,1696284899=>1,1696286658=>1,1697383218=>1,1697856877=>1,1656713757=>1,1656700658=>1,1634437996=>1,1634437916=>1,1634438077=>1,1634438890=>1,1635736761=>1,1635415157=>1,1634437700=>1,1634436735=>1,1633479069=>1,1633446378=>1,1633488234=>1,1634092661=>1,1634436120=>1,1634435279=>1,1645114618=>1,1645124588=>1,1646204390=>1,1646161835=>1,1646630369=>1,1647596989=>1,1647725851=>1,1647668825=>1,1646059650=>1,1646044696=>1,1645875785=>1,1645256495=>1,1645889617=>1,1645898379=>1,1645900014=>1,1645899569=>1,1633238846=>1,1633193264=>1,1632366703=>1,1632366630=>1,1632366718=>1,1632366760=>1,1632441917=>1,1632366799=>1,1632362583=>1,1632347242=>1,1631642478=>1,1631626187=>1,1631836477=>1,1631891482=>1,1632300484=>1,1631953655=>1,1632447398=>1,1632551178=>1,1632789595=>1,1632765033=>1,1633043170=>1,1633043181=>1,1633107557=>1,1633058092=>1,1632753768=>1,1632748613=>1,1632603331=>1,1632582511=>1,1632605962=>1,1632700751=>1,1632706700=>1,1647765300=>1,1647765672=>1,1654621669=>1,1654621643=>1,1654621914=>1,1654622183=>1,1654624009=>1,1654623474=>1,1654621616=>1,1654621586=>1,1654609656=>1,1654593920=>1,1654620455=>1,1654620824=>1,1654621534=>1,1654620864=>1,1654624174=>1,1654839410=>1,1655751109=>1,1655592872=>1,1655827773=>1,1655890808=>1,1656031942=>1,1656029334=>1,1655213960=>1,1655129885=>1,1654916319=>1,1654915612=>1,1654936056=>1,1654970415=>1,1654977016=>1,1654403820=>1,1653715881=>1,1650729062=>1,1648215556=>1,1650800818=>1,1650826646=>1,1651513926=>1,1650849814=>1,1648215246=>1,1648215232=>1,1648168382=>1,1647843398=>1,1648168643=>1,1648190767=>1,1648215102=>1,1648190989=>1,1651542167=>1,1651638849=>1,1653161533=>1,1652426583=>1,1653485366=>1,1653499285=>1,1653629408=>1,1653610539=>1,1652143492=>1,1652114239=>1,1651811860=>1,1651704870=>1,1651903091=>1,1651930746=>1,1652114068=>1,1701633356=>1,1701633445=>1,1729586311=>1,1729449252=>1,1729586942=>1,1729587078=>1,1729587081=>1,1729587079=>1,1729428253=>1,1729413644=>1,1729386913=>1,1729386769=>1,1729386929=>1,1729386945=>1,1729407002=>1,1729401967=>1,1729587082=>1,1729587083=>1,1729792138=>1,1729745214=>1,1729792141=>1,1729806499=>1,1729842760=>1,1729839874=>1,1729706530=>1,1729658822=>1,1729596138=>1,1729587084=>1,1729658450=>1,1729658452=>1,1729658738=>1,1729658454=>1,1729386753=>1,1729357246=>1,1729052229=>1,1729051669=>1,1729052405=>1,1729072195=>1,1729099014=>1,1729086214=>1,1729034940=>1,1728990367=>1,1728990301=>1,1728990300=>1,1728990311=>1,1728990312=>1,1728990352=>1,1728990330=>1,1729099734=>1,1729130497=>1,1729237186=>1,1729237162=>1,1729241130=>1,1729253377=>1,1729326522=>1,1729296142=>1,1729237154=>1,1729234140=>1,1729130709=>1,1729130633=>1,1729131282=>1,1729134836=>1,1729207938=>1,1729855198=>1,1729858868=>1,1730647200=>1,1730647193=>1,1730647201=>1,1730647203=>1,1730647210=>1,1730647208=>1,1730647187=>1,1730647183=>1,1730647175=>1,1730647171=>1,1730647176=>1,1730647178=>1,1730647181=>1,1730647179=>1,1730647213=>1,1730647214=>1,1730647230=>1,1730647229=>1,1730647426=>1,1730647428=>1,1627377593=>1,1730647429=>1,1730647228=>1,1730647227=>1,1730647221=>1,1730647215=>1,1730647222=>1,1730647225=>1,1730647226=>1,1730647170=>1,1730637245=>1,1729988265=>1,1729946270=>1,1729988288=>1,1730011133=>1,1730069201=>1,1730042314=>1,1729946199=>1,1729909765=>1,1729884126=>1,1729883377=>1,1729902734=>1,1729903146=>1,1729903148=>1,1729903147=>1,1730082529=>1,1730112822=>1,1730554679=>1,1730521273=>1,1730569418=>1,1730569558=>1,1730628675=>1,1730595179=>1,1730521187=>1,1730421610=>1,1730130530=>1,1730130177=>1,1730130546=>1,1730130554=>1,1730130657=>1,1728990260=>1,1728990256=>1,1709669846=>1,1709650586=>1,1709678521=>1,1710811457=>1,1710999362=>1,1710980901=>1,1709649442=>1,1709379232=>1,1707721792=>1,1707710786=>1,1707722015=>1,1707924342=>1,1709373933=>1,1709313247=>1,1711010934=>1,1711011222=>1,1711214994=>1,1711214993=>1,1711215089=>1,1711215090=>1,1711215093=>1,1711215092=>1,1711214990=>1,1711214989=>1,1711180971=>1,1711011234=>1,1711180972=>1,1711193286=>1,1711214985=>1,1711214882=>1,1707710063=>1,1707667771=>1,1702913032=>1,1702856088=>1,1702914845=>1,1705856551=>1,1707571429=>1,1706187753=>1,1701738315=>1,1701738314=>1,1701665002=>1,1701663325=>1,1701666310=>1,1701704741=>1,1701738299=>1,1701738298=>1,1707640140=>1,1707644341=>1,1707654250=>1,1707652637=>1,1707655235=>1,1707655871=>1,1707666034=>1,1707657896=>1,1707652388=>1,1707651878=>1,1707651041=>1,1707650571=>1,1707651630=>1,1707651642=>1,1707651773=>1,1711215094=>1,1711223597=>1,1728570869=>1,1728570866=>1,1728575670=>1,1728575828=>1,1728662815=>1,1728592390=>1,1728534461=>1,1728525437=>1,1728433138=>1,1728428834=>1,1728457635=>1,1728501040=>1,1728523215=>1,1728501190=>1,1728662816=>1,1728724943=>1,1728977542=>1,1728939466=>1,1728988782=>1,1728990227=>1,1728990247=>1,1728990241=>1,1728939462=>1,1728939449=>1,1728742933=>1,1728733742=>1,1728759090=>1,1728759652=>1,1728881448=>1,1728414977=>1,1728379412=>1,1711232826=>1,1711229346=>1,1711233722=>1,1728131148=>1,1728131162=>1,1728131149=>1,1711226570=>1,1711225978=>1,1711223634=>1,1711223599=>1,1711223666=>1,1711224307=>1,1711225042=>1,1711224993=>1,1728131930=>1,1728131931=>1,1728357778=>1,1728339032=>1,1728357779=>1,1728357780=>1,1728379410=>1,1728358374=>1,1728332610=>1,1728329289=>1,1728265481=>1,1728142642=>1,1728269836=>1,1728269838=>1,1728307571=>1,1730647433=>1,);?>
1
+ <?php return array(1358890752=>1358890879,1358842368=>1358842879,1360149713=>1,1360149682=>1,1360149714=>1,1360149601=>1,1360149719=>1,1360149717=>1,1360149631=>1,1360149627=>1,1360149617=>1,1360149612=>1,1360149619=>1,1360149620=>1,1360149723=>1,1360149607=>1,1360149727=>1,1360316751=>1,1360299166=>1,1360359988=>1,1360464033=>1,1360756330=>1,1360500339=>1,1360239802=>1,1360232827=>1,1360149754=>1,1360149592=>1,1360198409=>1,1360200403=>1,1360200519=>1,1360149724=>1,1360149587=>1,1359538539=>1,1359538526=>1,1359541784=>1,1359650578=>1,1359988052=>1,1359773427=>1,1359538495=>1,1359437640=>1,1359417526=>1,1359417521=>1,1359417662=>1,1359417668=>1,1359418222=>1,1359417771=>1,1359999269=>1,1360015688=>1,1360146813=>1,1360146742=>1,1360146823=>1,1360146888=>1,1360149585=>1,1360146904=>1,1360146736=>1,1360076336=>1,1360072747=>1,1360029987=>1,1360073090=>1,1360073091=>1,1360076332=>1,1360076328=>1,1360799061=>1,1360800434=>1,1364787403=>1,1364787402=>1,1364787404=>1,1364811864=>1,1364813109=>1,1364811865=>1,1364787401=>1,1364787400=>1,1364787395=>1,1364631067=>1,1364787396=>1,1364787397=>1,1364787399=>1,1364787398=>1,1365029252=>1,1365164669=>1,1368224509=>1,1368039237=>1,1368719878=>1,1369511015=>1,1369624864=>1,1369596009=>1,1367712336=>1,1366124982=>1,1365232770=>1,1365193796=>1,1365232788=>1,1365302404=>1,1365673374=>1,1365497996=>1,1364384678=>1,1363318350=>1,1360917833=>1,1360917076=>1,1360917835=>1,1360917836=>1,1360919315=>1,1360917837=>1,1360917075=>1,1360917070=>1,1360802306=>1,1360801538=>1,1360802563=>1,1360803586=>1,1360917009=>1,1360840062=>1,1360919473=>1,1360919474=>1,1360950375=>1,1360938917=>1,1360974706=>1,1361882648=>1,1362743431=>1,1362641621=>1,1360938243=>1,1360920010=>1,1360919476=>1,1360919475=>1,1360919477=>1,1360919478=>1,1360919918=>1,1359417483=>1,1359417375=>1,1358449014=>1,1358448903=>1,1358449085=>1,1358449126=>1,1358449231=>1,1358449171=>1,1358448891=>1,1358448851=>1,1358448489=>1,1358448431=>1,1358448514=>1,1358448545=>1,1358448838=>1,1358448689=>1,1358449243=>1,1358450225=>1,1358450436=>1,1358450377=>1,1358450463=>1,1358450619=>1,1358450633=>1,1358450623=>1,1358450375=>1,1358450345=>1,1358450237=>1,1358450227=>1,1358450302=>1,1358450308=>1,1358450331=>1,1358448373=>1,1358447634=>1,1357960371=>1,1357941615=>1,1357982506=>1,1357983086=>1,1357992458=>1,1357987023=>1,1357940470=>1,1357851701=>1,1357524049=>1,1357522270=>1,1357524730=>1,1357741006=>1,1357791465=>1,1357768582=>1,1358027997=>1,1358033132=>1,1358263682=>1,1358230430=>1,1358263683=>1,1358263687=>1,1358447411=>1,1358291756=>1,1358188991=>1,1358093106=>1,1358050761=>1,1358050745=>1,1358051158=>1,1358051172=>1,1358051175=>1,1358483587=>1,1358500890=>1,1359247796=>1,1359247664=>1,1359249068=>1,1359310894=>1,1359414263=>1,1359414157=>1,1359245307=>1,1359245163=>1,1359244591=>1,1359244487=>1,1359244669=>1,1359244752=>1,1359244949=>1,1359244767=>1,1359415159=>1,1359415825=>1,1359416660=>1,1359416317=>1,1359416824=>1,1359417059=>1,1369634592=>1,1359417203=>1,1359416218=>1,1359416134=>1,1359415876=>1,1359415837=>1,1359415901=>1,1359416059=>1,1359416086=>1,1359243748=>1,1359243712=>1,1358879536=>1,1358854592=>1,1358889850=>1,1358890507=>1,1358928381=>1,1358891981=>1,1358848656=>1,1358795970=>1,1358519343=>1,1358516954=>1,1358576778=>1,1358621181=>1,1358765230=>1,1358629162=>1,1359055234=>1,1359057605=>1,1359242589=>1,1359147582=>1,1359243178=>1,1359243222=>1,1359243280=>1,1359243248=>1,1359147376=>1,1359146458=>1,1359078306=>1,1359073532=>1,1359136033=>1,1359139082=>1,1359141071=>1,1359417403=>1,1369640665=>1,1384891915=>1,1384871463=>1,1384913617=>1,1384918537=>1,1384941089=>1,1384918554=>1,1384868385=>1,1384859240=>1,1384248108=>1,1384248106=>1,1384253711=>1,1384352326=>1,1384670211=>1,1384602010=>1,1384941117=>1,1384945485=>1,1385311748=>1,1385311738=>1,1385311752=>1,1385311755=>1,1385312017=>1,1385311756=>1,1385311737=>1,1385311721=>1,1384951149=>1,1384947977=>1,1384963723=>1,1385308932=>1,1385311714=>1,1385310994=>1,1384248105=>1,1384184313=>1,1382271651=>1,1382270209=>1,1382278387=>1,1382290545=>1,1382418589=>1,1382348814=>1,1382269269=>1,1382172752=>1,1381956579=>1,1381956556=>1,1381974731=>1,1381985075=>1,1382013694=>1,1382002836=>1,1382419352=>1,1382452946=>1,1383364611=>1,1383271697=>1,1383441226=>1,1383464146=>1,1383590180=>1,1383508347=>1,1383224997=>1,1383224833=>1,1382517847=>1,1382515991=>1,1383087673=>1,1383223866=>1,1383223868=>1,1385312054=>1,1385312059=>1,1386210430=>1,1386210426=>1,1386223506=>1,1386223664=>1,1386223832=>1,1386223824=>1,1386210411=>1,1386210410=>1,1386210381=>1,1386210378=>1,1386210383=>1,1386210384=>1,1386210398=>1,1386210391=>1,1386224151=>1,1386224251=>1,1386274516=>1,1386262279=>1,1386295838=>1,1386310983=>1,1386329620=>1,1386320870=>1,1386262101=>1,1386240805=>1,1386233916=>1,1386231190=>1,1386233958=>1,1386234001=>1,1386235172=>1,1386210374=>1,1386210373=>1,1385653274=>1,1385527194=>1,1385657762=>1,1385682279=>1,1386102620=>1,1385850219=>1,1385386724=>1,1385385228=>1,1385312063=>1,1385312062=>1,1385312098=>1,1385314263=>1,1385385217=>1,1385382426=>1,1386146598=>1,1386203168=>1,1386210355=>1,1386210337=>1,1386210361=>1,1386210362=>1,1386210371=>1,1386210365=>1,1386210336=>1,1386210333=>1,1386210325=>1,1386203173=>1,1386210328=>1,1386210331=>1,1386210332=>1,1381956555=>1,1381953814=>1,1372123410=>1,1372123218=>1,1372140278=>1,1372142829=>1,1372594182=>1,1372561363=>1,1372094499=>1,1372068569=>1,1370567086=>1,1370566833=>1,1370595571=>1,1370597064=>1,1371431031=>1,1370837274=>1,1372800190=>1,1372808366=>1,1373269443=>1,1373264794=>1,1373275334=>1,1373284483=>1,1373301666=>1,1373294767=>1,1373223686=>1,1373184556=>1,1372954934=>1,1372950684=>1,1372993472=>1,1373050303=>1,1373179284=>1,1373165730=>1,1370480079=>1,1370461279=>1,1370069092=>1,1370066398=>1,1370069565=>1,1370069748=>1,1370075044=>1,1370072650=>1,1370066268=>1,1370066104=>1,1369731017=>1,1369645921=>1,1370063545=>1,1370063574=>1,1370065459=>1,1370065102=>1,1370075156=>1,1370076511=>1,1370353745=>1,1370258037=>1,1370365755=>1,1370396203=>1,1370416914=>1,1370396631=>1,1370135363=>1,1370093661=>1,1370084071=>1,1370080311=>1,1370088506=>1,1370093092=>1,1370093516=>1,1373369074=>1,1373425250=>1,1380765668=>1,1380734768=>1,1380790942=>1,1380885370=>1,1380957248=>1,1380892575=>1,1380712199=>1,1380447823=>1,1380207500=>1,1380136736=>1,1380228732=>1,1380253406=>1,1380273187=>1,1380266546=>1,1380983139=>1,1380989197=>1,1381147933=>1,1381051611=>1,1381304419=>1,1381309141=>1,1381947287=>1,1381739124=>1,1381049768=>1,1381044787=>1,1380990814=>1,1380990658=>1,1381007368=>1,1381008605=>1,1381008773=>1,1380114242=>1,1380093059=>1,1374485531=>1,1373971659=>1,1374732966=>1,1374743292=>1,1375830086=>1,1374919794=>1,1373961897=>1,1373947723=>1,1373524738=>1,1373459545=>1,1373524742=>1,1373886540=>1,1373947114=>1,1373891019=>1,1375830422=>1,1376070249=>1,1377979595=>1,1377531236=>1,1378153643=>1,1378620209=>1,1378790847=>1,1378728299=>1,1377225329=>1,1377162013=>1,1376230901=>1,1376125961=>1,1376591234=>1,1376879825=>1,1377008905=>1,1357521762=>1,1357437055=>1,1332019757=>1,1332019729=>1,1332019760=>1,1332019761=>1,1332019877=>1,1332019850=>1,1332019511=>1,1332019509=>1,1331830570=>1,1330727526=>1,1331841321=>1,1331849490=>1,1331850297=>1,1331850074=>1,1332019903=>1,1332019966=>1,1332619173=>1,1332420727=>1,1332688422=>1,1332699443=>1,1332740792=>1,1332700733=>1,1332225774=>1,1332027406=>1,1332027397=>1,1332027395=>1,1332027398=>1,1332027399=>1,1332027405=>1,1332027402=>1,1329803146=>1,1329381805=>1,1323142258=>1,1322540304=>1,1323163450=>1,1323307712=>1,1323400118=>1,1323371645=>1,1322372801=>1,1322261746=>1,1321393206=>1,1321346333=>1,1321553569=>1,1321630827=>1,1321723990=>1,1321645261=>1,1323498104=>1,1323770556=>1,1327021716=>1,1326926108=>1,1327397748=>1,1327710381=>1,1329286378=>1,1328882134=>1,1326304533=>1,1326239254=>1,1324088157=>1,1323918743=>1,1324790944=>1,1324814206=>1,1325562664=>1,1332740840=>1,1332756449=>1,1334330973=>1,1334323938=>1,1334337903=>1,1334579781=>1,1334585717=>1,1334585613=>1,1334320427=>1,1334319278=>1,1334202467=>1,1334202023=>1,1334236045=>1,1334242039=>1,1334247368=>1,1334247203=>1,1334585718=>1,1334681864=>1,1336226318=>1,1335917912=>1,1336227879=>1,1336239695=>1,1336418937=>1,1336259827=>1,1335804609=>1,1335540185=>1,1334819962=>1,1334817787=>1,1334889648=>1,1334899481=>1,1335422542=>1,1334201898=>1,1334198549=>1,1333136982=>1,1333062910=>1,1333198573=>1,1333267047=>1,1333277540=>1,1333275027=>1,1333060815=>1,1333060381=>1,1332788243=>1,1332779487=>1,1332788361=>1,1332972227=>1,1332992018=>1,1332980529=>1,1333283038=>1,1333285303=>1,1334129249=>1,1333933640=>1,1334146144=>1,1334170123=>1,1334198313=>1,1334183876=>1,1333753188=>1,1333737217=>1,1333531949=>1,1333311754=>1,1333662794=>1,1333737025=>1,1333737214=>1,1321310807=>1,1321307140=>1,1315459242=>1,1315360046=>1,1315459267=>1,1315484504=>1,1315608449=>1,1315584966=>1,1314791342=>1,1314682369=>1,1314557400=>1,1314542769=>1,1314563603=>1,1314569917=>1,1314580185=>1,1314579428=>1,1315695888=>1,1315696597=>1,1316569581=>1,1316397950=>1,1317102866=>1,1317112092=>1,1317129318=>1,1317114377=>1,1315869669=>1,1315868234=>1,1315700345=>1,1315696693=>1,1315720534=>1,1315774048=>1,1315868233=>1,1315793586=>1,1314538418=>1,1314525157=>1,1312017750=>1,1311785569=>1,1312065484=>1,1312154797=>1,1312207928=>1,1312157471=>1,1311767010=>1,1311766051=>1,1311759038=>1,1311755154=>1,1311759687=>1,1311760603=>1,1311764304=>1,1311761771=>1,1312235994=>1,1312303126=>1,1313810656=>1,1313626222=>1,1314080398=>1,1314192644=>1,1314327902=>1,1314237335=>1,1313402292=>1,1313385550=>1,1313178595=>1,1312462231=>1,1313213158=>1,1313220822=>1,1313356702=>1,1317129319=>1,1317175402=>1,1319202507=>1,1319149804=>1,1319551113=>1,1320225327=>1,1320258036=>1,1320255992=>1,1319149779=>1,1319149736=>1,1319023758=>1,1319019122=>1,1319058627=>1,1319149573=>1,1319149733=>1,1319149649=>1,1320267318=>1,1320873569=>1,1321267531=>1,1321237652=>1,1321279715=>1,1321281741=>1,1321293315=>1,1321291640=>1,1321214535=>1,1321086806=>1,1320903166=>1,1320896978=>1,1320927684=>1,1320995680=>1,1321054944=>1,1318967190=>1,1318963313=>1,1317499468=>1,1317473579=>1,1317499469=>1,1317560947=>1,1317567948=>1,1317567907=>1,1317260587=>1,1317260318=>1,1317213131=>1,1317194949=>1,1317222534=>1,1317227026=>1,1317248500=>1,1317248488=>1,1317746841=>1,1317761576=>1,1317966221=>1,1317965558=>1,1317973830=>1,1318481813=>1,1318876916=>1,1318876652=>1,1317933883=>1,1317933881=>1,1317869106=>1,1317842967=>1,1317933675=>1,1317933835=>1,1317933857=>1,1336589012=>1,1336593082=>1,1348173080=>1,1348163620=>1,1348181372=>1,1348189884=>1,1348229564=>1,1348227614=>1,1348090027=>1,1348086749=>1,1347837312=>1,1347769566=>1,1347887494=>1,1347888726=>1,1348059294=>1,1348050802=>1,1348253746=>1,1348520821=>1,1348804498=>1,1348783766=>1,1349269770=>1,1349389081=>1,1349522319=>1,1349481978=>1,1348779267=>1,1348763651=>1,1348661959=>1,1348655202=>1,1348663361=>1,1348690192=>1,1348742397=>1,1348732825=>1,1347769416=>1,1347727573=>1,1347263886=>1,1347230998=>1,1347350982=>1,1347353582=>1,1347354043=>1,1347353988=>1,1347185482=>1,1347183699=>1,1346866185=>1,1346863929=>1,1346866271=>1,1346953651=>1,1347114282=>1,1347023502=>1,1347354085=>1,1347360519=>1,1347567755=>1,1347567649=>1,1347568361=>1,1347568968=>1,1347696587=>1,1347590865=>1,1347550692=>1,1347548139=>1,1347464187=>1,1347387278=>1,1347488797=>1,1347490079=>1,1347548130=>1,1349550145=>1,1349552729=>1,1354604730=>1,1354532621=>1,1354691307=>1,1355180472=>1,1356364796=>1,1355516183=>1,1354532620=>1,1354532619=>1,1353182797=>1,1352864486=>1,1353314636=>1,1353882920=>1,1354532618=>1,1354518410=>1,1356366039=>1,1356422822=>1,1356593308=>1,1356593041=>1,1356618408=>1,1356701531=>1,1357221103=>1,1357216417=>1,1356580662=>1,1356565545=>1,1356485121=>1,1356440454=>1,1356495376=>1,1356500715=>1,1356530244=>1,1352805342=>1,1352403058=>1,1350284618=>1,1350100658=>1,1350527898=>1,1350530653=>1,1350539172=>1,1350531089=>1,1349930086=>1,1349686795=>1,1349557092=>1,1349553983=>1,1349563245=>1,1349647106=>1,1349686765=>1,1349647108=>1,1350595051=>1,1350726647=>1,1351967618=>1,1351819677=>1,1351991373=>1,1352066699=>1,1352206084=>1,1352199959=>1,1351330784=>1,1351252755=>1,1351133293=>1,1350994671=>1,1351180839=>1,1351246102=>1,1351252198=>1,1346712386=>1,1346657529=>1,1339022988=>1,1339019649=>1,1339095313=>1,1339153081=>1,1339193178=>1,1339164322=>1,1338847509=>1,1338782744=>1,1338363867=>1,1338363698=>1,1338429096=>1,1338529747=>1,1338721435=>1,1338682093=>1,1339212204=>1,1339212790=>1,1339815316=>1,1339779938=>1,1339974284=>1,1339975755=>1,1340271290=>1,1340003185=>1,1339708134=>1,1339660582=>1,1339435283=>1,1339317031=>1,1339435562=>1,1339489244=>1,1339656537=>1,1339550565=>1,1338333570=>1,1338304084=>1,1336734392=>1,1336734388=>1,1336734408=>1,1336734420=>1,1336816161=>1,1336760123=>1,1336734367=>1,1336734350=>1,1336676882=>1,1336625615=>1,1336679629=>1,1336721696=>1,1336734337=>1,1336724516=>1,1336821271=>1,1336821496=>1,1337540148=>1,1337462403=>1,1337786931=>1,1338114037=>1,1338202573=>1,1338138292=>1,1337372244=>1,1337221625=>1,1336877350=>1,1336876134=>1,1336897281=>1,1336913574=>1,1337094102=>1,1340310335=>1,1340557895=>1,1343741946=>1,1343741826=>1,1344333884=>1,1345024298=>1,1345339973=>1,1345328522=>1,1343463410=>1,1343215356=>1,1343098017=>1,1343066228=>1,1343148418=>1,1343152752=>1,1343167423=>1,1343156168=>1,1345363378=>1,1345371720=>1,1346531948=>1,1346531942=>1,1346537339=>1,1346612243=>1,1346632004=>1,1346616776=>1,1346398467=>1,1346388249=>1,1346012399=>1,1345941007=>1,1346172394=>1,1346320530=>1,1346376249=>1,1343060259=>1,1343039375=>1,1341256830=>1,1341244380=>1,1341280869=>1,1341410004=>1,1341464748=>1,1341464699=>1,1341244309=>1,1341189917=>1,1340722228=>1,1340659862=>1,1341112480=>1,1341116057=>1,1341187258=>1,1341136186=>1,1341466804=>1,1341617565=>1,1341996707=>1,1341993074=>1,1342002632=>1,1342330689=>1,1342948942=>1,1342650043=>1,1341966820=>1,1341905673=>1,1341690530=>1,1341619749=>1,1341698355=>1,1341886811=>1,1341905609=>1,1311754677=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-16.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1815957824=>1815957887,1815951408=>1815951423,1815951248=>1815951263,1815950192=>1815950207,1815940112=>1815940127,1758098928=>1758098935,1815962517=>1,1815961639=>1,1815967563=>1,1815963566=>1,1815808993=>1,1815881796=>1,1815968344=>1,1815956014=>1,1815808665=>1,1815968586=>1,1815983064=>1,1815982446=>1,1815983302=>1,1815983416=>1,1815988157=>1,1815987919=>1,1815981954=>1,1815981144=>1,1815979264=>1,1815978743=>1,1815979433=>1,1815979478=>1,1815980185=>1,1815979698=>1,1815808653=>1,1815808650=>1,1814912324=>1,1814896806=>1,1814912338=>1,1815033520=>1,1815170531=>1,1815100264=>1,1814833082=>1,1814286583=>1,1813964680=>1,1813963006=>1,1813981189=>1,1813990448=>1,1814206544=>1,1814049044=>1,1815206742=>1,1815368769=>1,1815808208=>1,1815808068=>1,1815808210=>1,1815808218=>1,1815808647=>1,1815808641=>1,1815806672=>1,1815786262=>1,1815466141=>1,1815465948=>1,1815467824=>1,1815551247=>1,1815661498=>1,1815988170=>1,1815988174=>1,1824784991=>1,1824526635=>1,1825196899=>1,1826631940=>1,1827209323=>1,1826955571=>1,1824121406=>1,1824004604=>1,1823503770=>1,1823357376=>1,1823621949=>1,1823776764=>1,1823935243=>1,1823790283=>1,1827714700=>1,1827806637=>1,1830345735=>1,1829949561=>1,1830618322=>1,1830733278=>1,1832820750=>1,1831936541=>1,1829744954=>1,1829548467=>1,1828212827=>1,1827941180=>1,1828214770=>1,1828344313=>1,1829324677=>1,1828760109=>1,1823178931=>1,1823177540=>1,1815995795=>1,1815992900=>1,1816001229=>1,1816277799=>1,1816515478=>1,1816503396=>1,1815992716=>1,1815992639=>1,1815990443=>1,1815989795=>1,1815991156=>1,1815991398=>1,1815992296=>1,1815991953=>1,1816767697=>1,1817592439=>1,1822950204=>1,1822874643=>1,1822966054=>1,1822966067=>1,1823082667=>1,1822995149=>1,1822874642=>1,1822861470=>1,1822476995=>1,1818020508=>1,1822484103=>1,1822592626=>1,1822761223=>1,1813550808=>1,1813544036=>1,1806339957=>1,1806334731=>1,1806341639=>1,1806342480=>1,1806345118=>1,1806343892=>1,1806332620=>1,1806331102=>1,1806327021=>1,1806325782=>1,1806327053=>1,1806327072=>1,1806329127=>1,1806328043=>1,1806351515=>1,1806352477=>1,1806362699=>1,1806362537=>1,1806362809=>1,1806363358=>1,1806364736=>1,1806364095=>1,1806361705=>1,1806361473=>1,1806353806=>1,1806352654=>1,1806357488=>1,1806358473=>1,1806361259=>1,1806358932=>1,1806325435=>1,1806323242=>1,1805108771=>1,1805107466=>1,1805150251=>1,1805150254=>1,1805349615=>1,1805341124=>1,1805097178=>1,1805097170=>1,1805094522=>1,1805094518=>1,1805094523=>1,1805094524=>1,1805094526=>1,1805094525=>1,1805582101=>1,1805582102=>1,1806135129=>1,1806135109=>1,1806155098=>1,1806155856=>1,1806316084=>1,1806311495=>1,1806135076=>1,1805755141=>1,1805718129=>1,1805582150=>1,1805721521=>1,1805734083=>1,1805753640=>1,1806364943=>1,1806365862=>1,1807708012=>1,1807695864=>1,1807708397=>1,1807709867=>1,1807730236=>1,1807711928=>1,1807694428=>1,1807694058=>1,1807691607=>1,1807691468=>1,1807691781=>1,1807691818=>1,1807693949=>1,1807692281=>1,1807730435=>1,1807732649=>1,1813071504=>1,1813071410=>1,1813120561=>1,1813147132=>1,1813455445=>1,1813167633=>1,1813049472=>1,1813025784=>1,1808478795=>1,1808252601=>1,1808533235=>1,1809383817=>1,1812695346=>1,1807690332=>1,1807531065=>1,1807065513=>1,1807063570=>1,1807066635=>1,1807068693=>1,1807068756=>1,1807068694=>1,1807057056=>1,1807039497=>1,1806366331=>1,1806366242=>1,1806366497=>1,1806828357=>1,1807039496=>1,1807038871=>1,1807069900=>1,1807070099=>1,1807149319=>1,1807126298=>1,1807149399=>1,1807150131=>1,1807339090=>1,1807150878=>1,1807123336=>1,1807123317=>1,1807089172=>1,1807072199=>1,1807116551=>1,1807123309=>1,1807123316=>1,1832834838=>1,1832890242=>1,1841778727=>1,1841716685=>1,1841857086=>1,1841879044=>1,1841879055=>1,1841879052=>1,1841716286=>1,1841692397=>1,1841525706=>1,1841501711=>1,1841566262=>1,1841570355=>1,1841615470=>1,1841594147=>1,1841894338=>1,1841894339=>1,1841928419=>1,1841928418=>1,1841928420=>1,1841928421=>1,1841928436=>1,1841928433=>1,1841928208=>1,1841928197=>1,1841917227=>1,1841894345=>1,1841922827=>1,1841923428=>1,1841927176=>1,1841923470=>1,1841501646=>1,1841481225=>1,1840982627=>1,1840883314=>1,1841028980=>1,1841056216=>1,1841143517=>1,1841059917=>1,1840793191=>1,1840782866=>1,1840079077=>1,1840069521=>1,1840086890=>1,1840187072=>1,1840187449=>1,1840187445=>1,1841147167=>1,1841148943=>1,1841394161=>1,1841384855=>1,1841397572=>1,1841428476=>1,1841450592=>1,1841430001=>1,1841382861=>1,1841381129=>1,1841219681=>1,1841217916=>1,1841317732=>1,1841355106=>1,1841363496=>1,1841928845=>1,1841928847=>1,1843823118=>1,1843822771=>1,1843845578=>1,1843850329=>1,1843850917=>1,1843850335=>1,1843818498=>1,1843799005=>1,1842614328=>1,1842538852=>1,1843019523=>1,1843624132=>1,1843763393=>1,1843699278=>1,1843866755=>1,1843886705=>1,1844091445=>1,1844061900=>1,1844181112=>1,1844181418=>1,1844181891=>1,1844181890=>1,1844061816=>1,1844061781=>1,1844018980=>1,1843948174=>1,1844019177=>1,1844061372=>1,1844061413=>1,1842298296=>1,1842298281=>1,1841928905=>1,1841928895=>1,1841954983=>1,1841981016=>1,1841985145=>1,1841985025=>1,1841928890=>1,1841928883=>1,1841928860=>1,1841928857=>1,1841928862=>1,1841928864=>1,1841928875=>1,1841928867=>1,1842048067=>1,1842134735=>1,1842297617=>1,1842297425=>1,1842298227=>1,1842298242=>1,1842298258=>1,1842298249=>1,1842297346=>1,1842296641=>1,1842264742=>1,1842180618=>1,1842295081=>1,1842295230=>1,1842295765=>1,1840069286=>1,1840068798=>1,1834716657=>1,1834706939=>1,1834733314=>1,1834741282=>1,1834996345=>1,1834962104=>1,1834681120=>1,1834656445=>1,1834485305=>1,1834469113=>1,1834500082=>1,1834595551=>1,1834650797=>1,1834617645=>1,1835284030=>1,1835535452=>1,1835890804=>1,1835850472=>1,1835984661=>1,1836019052=>1,1836021305=>1,1836019065=>1,1835849825=>1,1835849617=>1,1835625890=>1,1835543982=>1,1835677222=>1,1835699004=>1,1835817236=>1,1835738010=>1,1834469047=>1,1834466578=>1,1833255697=>1,1833238866=>1,1833415666=>1,1833446211=>1,1833602002=>1,1833585637=>1,1833222020=>1,1833217596=>1,1832900325=>1,1805094517=>1,1832911781=>1,1832979259=>1,1833150137=>1,1833134318=>1,1833605013=>1,1833605060=>1,1834376463=>1,1834376408=>1,1834386749=>1,1834403367=>1,1834436336=>1,1834430565=>1,1833678925=>1,1833660197=>1,1833616318=>1,1833615943=>1,1833618551=>1,1833618965=>1,1833619177=>1,1836021421=>1,1836051286=>1,1839458818=>1,1839441915=>1,1839458820=>1,1839458821=>1,1839458824=>1,1839458823=>1,1839350426=>1,1839346170=>1,1838560901=>1,1838531760=>1,1838676474=>1,1839139028=>1,1839281153=>1,1839219765=>1,1839458825=>1,1839460657=>1,1839935459=>1,1839925981=>1,1839951374=>1,1839995662=>1,1840068678=>1,1840015875=>1,1839841842=>1,1839800739=>1,1839549025=>1,1839525095=>1,1839562302=>1,1839562555=>1,1839685976=>1,1838391551=>1,1837476165=>1,1836683935=>1,1836653303=>1,1836719628=>1,1836724520=>1,1836770345=>1,1836724863=>1,1836634640=>1,1836630769=>1,1836623266=>1,1836051290=>1,1836623882=>1,1836625200=>1,1836627377=>1,1836627189=>1,1836797528=>1,1836809124=>1,1837047299=>1,1836977518=>1,1837114342=>1,1837125672=>1,1837460453=>1,1837448762=>1,1836976612=>1,1836974134=>1,1836855632=>1,1836846750=>1,1836878237=>1,1836890915=>1,1836893635=>1,1832879442=>1,1805094515=>1,1758429448=>1,1758429289=>1,1758430317=>1,1758430484=>1,1758431244=>1,1758430725=>1,1758429226=>1,1758374025=>1,1758098926=>1,1758098923=>1,1758098937=>1,1758098938=>1,1758098942=>1,1758098939=>1,1758432424=>1,1758432773=>1,1758435178=>1,1758435123=>1,1758435509=>1,1758437000=>1,1758525222=>1,1758523893=>1,1758434611=>1,1758434151=>1,1758433080=>1,1758432839=>1,1758433265=>1,1758433733=>1,1758433901=>1,1758433869=>1,1758098921=>1,1758098920=>1,1758098872=>1,1758098871=>1,1758098874=>1,1758098878=>1,1758098883=>1,1758098879=>1,1758098870=>1,1758098869=>1,1758098854=>1,1758098852=>1,1758098856=>1,1758098858=>1,1758098864=>1,1758098859=>1,1758098886=>1,1758098887=>1,1758098910=>1,1758098909=>1,1758098913=>1,1758098914=>1,1758098919=>1,1758098918=>1,1758098908=>1,1758098906=>1,1758098894=>1,1758098893=>1,1758098900=>1,1758098901=>1,1758098903=>1,1758525227=>1,1758539000=>1,1759470860=>1,1759468703=>1,1759470958=>1,1759476293=>1,1759476459=>1,1759476339=>1,1759468699=>1,1759449239=>1,1759296057=>1,1759295660=>1,1759296588=>1,1759445304=>1,1759449095=>1,1759448297=>1,1759477136=>1,1759513109=>1,1760120082=>1,1760043058=>1,1760120677=>1,1760120847=>1,1760121806=>1,1760120873=>1,1760035617=>1,1759917364=>1,1759816124=>1,1759513198=>1,1759856004=>1,1759903842=>1,1759917138=>1,1759294944=>1,1759294437=>1,1759250415=>1,1759249816=>1,1759251942=>1,1759253283=>1,1759254074=>1,1759253481=>1,1759248996=>1,1759248713=>1,1759031110=>1,1758891378=>1,1759031274=>1,1759196473=>1,1759242838=>1,1759211634=>1,1759254090=>1,1759254895=>1,1759261053=>1,1759259880=>1,1759261134=>1,1759282657=>1,1759293075=>1,1759292802=>1,1759258923=>1,1759258251=>1,1759255207=>1,1759254965=>1,1759257210=>1,1759257397=>1,1759257774=>1,1758098851=>1,1758098850=>1,1757942926=>1,1757942516=>1,1757943873=>1,1757945560=>1,1758098691=>1,1758098690=>1,1757941987=>1,1757766682=>1,1757437819=>1,1757413394=>1,1757459158=>1,1757685286=>1,1757762086=>1,1757691317=>1,1758098692=>1,1758098693=>1,1758098707=>1,1758098706=>1,1758098708=>1,1758098711=>1,1758098713=>1,1758098712=>1,1758098705=>1,1758098703=>1,1758098696=>1,1758098694=>1,1758098697=>1,1758098699=>1,1758098702=>1,1758098700=>1,1757324460=>1,1757243377=>1,1755880441=>1,1755880216=>1,1755880646=>1,1755882056=>1,1755882228=>1,1755882190=>1,1755880020=>1,1755880006=>1,1755856593=>1,1755856591=>1,1755862951=>1,1755879516=>1,1755879942=>1,1755879673=>1,1755882737=>1,1755883918=>1,1756356125=>1,1756326679=>1,1756452651=>1,1756465283=>1,1756468802=>1,1756468801=>1,1756227010=>1,1756188204=>1,1755884594=>1,1755884243=>1,1756066934=>1,1756153250=>1,1756157454=>1,1758098719=>1,1758098720=>1,1758098799=>1,1758098798=>1,1758098800=>1,1758098801=>1,1758098806=>1,1758098802=>1,1758098794=>1,1758098792=>1,1758098780=>1,1758098779=>1,1758098781=>1,1758098782=>1,1758098790=>1,1758098786=>1,1758098809=>1,1758098810=>1,1758098827=>1,1758098826=>1,1758098836=>1,1758098839=>1,1758098849=>1,1758098845=>1,1758098824=>1,1758098818=>1,1758098812=>1,1758098811=>1,1758098814=>1,1758098815=>1,1758098816=>1,1758098773=>1,1758098772=>1,1758098733=>1,1758098732=>1,1758098734=>1,1758098737=>1,1758098740=>1,1758098739=>1,1758098731=>1,1758098730=>1,1758098723=>1,1758098721=>1,1758098724=>1,1758098725=>1,1758098728=>1,1758098726=>1,1758098741=>1,1758098742=>1,1758098766=>1,1758098765=>1,1758098767=>1,1758098768=>1,1758098771=>1,1758098769=>1,1758098761=>1,1758098757=>1,1758098747=>1,1758098746=>1,1758098752=>1,1758098753=>1,1758098754=>1,1760122149=>1,1760122409=>1,1782325719=>1,1782112712=>1,1782340446=>1,1782913441=>1,1783351125=>1,1783350030=>1,1780953634=>1,1780944052=>1,1778545186=>1,1778545126=>1,1778545588=>1,1780530671=>1,1780856139=>1,1780855291=>1,1783704679=>1,1783726157=>1,1785217453=>1,1785211829=>1,1785221652=>1,1786258343=>1,1786265145=>1,1786258793=>1,1785211795=>1,1785211732=>1,1785209660=>1,1785204589=>1,1785210070=>1,1785210327=>1,1785211570=>1,1785211447=>1,1778541611=>1,1776619609=>1,1768263846=>1,1768262377=>1,1768265793=>1,1768266168=>1,1768271399=>1,1768269817=>1,1768259940=>1,1768256800=>1,1768240615=>1,1768236348=>1,1768245226=>1,1768245739=>1,1768253751=>1,1768251780=>1,1768272092=>1,1768276639=>1,1775500816=>1,1774642363=>1,1776354507=>1,1776385373=>1,1776456621=>1,1776418169=>1,1774641837=>1,1773679333=>1,1768279170=>1,1768277946=>1,1768282556=>1,1768284185=>1,1768948142=>1,1790445222=>1,1790445291=>1,1796212177=>1,1796019057=>1,1796268759=>1,1796302078=>1,1796523607=>1,1796392459=>1,1795881669=>1,1795836568=>1,1795348000=>1,1795294820=>1,1795432303=>1,1795487066=>1,1795635546=>1,1795556497=>1,1803808203=>1,1804408901=>1,1805017843=>1,1805017781=>1,1805018139=>1,1805036470=>1,1755856558=>1,1805094514=>1,1804998781=>1,1804998665=>1,1804601142=>1,1804446290=>1,1804629646=>1,1804855719=>1,1804993604=>1,1795196637=>1,1794748629=>1,1790579240=>1,1790578842=>1,1790580289=>1,1790580860=>1,1790581713=>1,1790580882=>1,1790522828=>1,1790521737=>1,1790516249=>1,1790515288=>1,1790516394=>1,1790518659=>1,1790521567=>1,1790520104=>1,1790581771=>1,1790581793=>1,1790663929=>1,1790654447=>1,1790664786=>1,1790665620=>1,1794177642=>1,1790665773=>1,1790653867=>1,1790652177=>1,1790603817=>1,1790603514=>1,1790605697=>1,1790649701=>1,1790651246=>1,1768229995=>1,1768229858=>1,1760322924=>1,1760321702=>1,1760328187=>1,1760330030=>1,1760330511=>1,1760330171=>1,1760321689=>1,1760320428=>1,1760318000=>1,1760316604=>1,1760318291=>1,1760319017=>1,1760320189=>1,1760319322=>1,1760331192=>1,1760331439=>1,1760336987=>1,1760336951=>1,1760337058=>1,1760338256=>1,1760342830=>1,1760341963=>1,1760336693=>1,1760336161=>1,1760333278=>1,1760333239=>1,1760333405=>1,1760334195=>1,1760335828=>1,1760335776=>1,1760313687=>1,1760311745=>1,1760129616=>1,1760128086=>1,1760129621=>1,1760130330=>1,1760131061=>1,1760130878=>1,1760126852=>1,1760124597=>1,1760123212=>1,1760122843=>1,1760123660=>1,1760123977=>1,1760124322=>1,1760124251=>1,1760132042=>1,1760132340=>1,1760309658=>1,1760309426=>1,1760310288=>1,1760310624=>1,1760310980=>1,1760310939=>1,1760309065=>1,1760306919=>1,1760299355=>1,1760132592=>1,1760300694=>1,1760300971=>1,1760301463=>1,1760343757=>1,1760345615=>1,1760476258=>1,1760475473=>1,1760477338=>1,1760484639=>1,1760765290=>1,1760484803=>1,1760474440=>1,1760474411=>1,1760470868=>1,1760470516=>1,1760470895=>1,1760473194=>1,1760474063=>1,1760473222=>1,1760840047=>1,1760841103=>1,1761253691=>1,1760965486=>1,1761344292=>1,1761504161=>1,1768228804=>1,1768228577=>1,1760946560=>1,1760946049=>1,1760848819=>1,1760841671=>1,1760870714=>1,1760878540=>1,1760899651=>1,1760468927=>1,1760466476=>1,1760355208=>1,1760353983=>1,1760355739=>1,1760357813=>1,1760360410=>1,1760358444=>1,1760353384=>1,1760353350=>1,1760349495=>1,1760348154=>1,1760349496=>1,1760351311=>1,1760353225=>1,1760351377=>1,1760361641=>1,1760397595=>1,1760461698=>1,1760454623=>1,1760462520=>1,1760463284=>1,1760465626=>1,1760465263=>1,1760449308=>1,1760447567=>1,1760402646=>1,1760401603=>1,1760421506=>1,1760447088=>1,1760447565=>1,1805094516=>1,);?>
1
+ <?php return array(1441652224=>1441652479,1441645824=>1441646079,1388811776=>1388812031,1388806400=>1388806655,1431745581=>1,1431799336=>1,1431832627=>1,1432018359=>1,1431833587=>1,1431625907=>1,1430920711=>1,1430481155=>1,1429796513=>1,1430623108=>1,1430901735=>1,1432162351=>1,1428142845=>1,1428933054=>1,1432264733=>1,1432267343=>1,1432267261=>1,1432268295=>1,1432270622=>1,1432270770=>1,1432270672=>1,1432267158=>1,1432267039=>1,1428142756=>1,1432214220=>1,1432264752=>1,1432264819=>1,1432266401=>1,1432213780=>1,1428044081=>1,1427727527=>1,1427713258=>1,1427728140=>1,1427728247=>1,1427735194=>1,1427731928=>1,1427713165=>1,1427691381=>1,1427672589=>1,1427633043=>1,1427673401=>1,1427677809=>1,1427684417=>1,1427682504=>1,1427736824=>1,1427737866=>1,1427905735=>1,1427767180=>1,1427922897=>1,1427931241=>1,1432272509=>1,1428004022=>1,1427755745=>1,1427754848=>1,1427751253=>1,1427740065=>1,1427751885=>1,1427752351=>1,1427753246=>1,1428078329=>1,1432469590=>1,1436381229=>1,1436083708=>1,1436457082=>1,1436537242=>1,1436544466=>1,1436537655=>1,1435542116=>1,1435511863=>1,1434839277=>1,1434832673=>1,1435253171=>1,1435411201=>1,1435477092=>1,1435441222=>1,1436990842=>1,1437040553=>1,1437642319=>1,1437575958=>1,1437688764=>1,1437754427=>1,1437799524=>1,1437799493=>1,1437527146=>1,1437443473=>1,1437138890=>1,1437138761=>1,1437150115=>1,1437167577=>1,1437360236=>1,1437357657=>1,1434823546=>1,1434731402=>1,1433481501=>1,1433480618=>1,1433481677=>1,1433506130=>1,1433548369=>1,1433534067=>1,1432990139=>1,1432945239=>1,1432497125=>1,1427602977=>1,1432497228=>1,1432655244=>1,1432721872=>1,1432708748=>1,1433548375=>1,1433559358=>1,1434193726=>1,1433883582=>1,1434392389=>1,1434407222=>1,1434723363=>1,1434692629=>1,1433883533=>1,1433883287=>1,1433567970=>1,1433562033=>1,1433568608=>1,1433569044=>1,1433570715=>1,1432276301=>1,1427241395=>1,1424178179=>1,1424100635=>1,1424445152=>1,1424498835=>1,1424537307=>1,1424522943=>1,1423700645=>1,1423691988=>1,1423448481=>1,1423422546=>1,1423462935=>1,1423494381=>1,1423682876=>1,1423506142=>1,1424897039=>1,1424900471=>1,1425096980=>1,1425086524=>1,1425113210=>1,1425163757=>1,1425284916=>1,1425196045=>1,1425081981=>1,1425081461=>1,1424908361=>1,1424901531=>1,1425030378=>1,1425081011=>1,1425081206=>1,1425081191=>1,1423415070=>1,1423410013=>1,1422431688=>1,1422424680=>1,1422522138=>1,1422533128=>1,1422554276=>1,1422533233=>1,1422414499=>1,1422413299=>1,1422395567=>1,1422395425=>1,1422395599=>1,1422397134=>1,1422404847=>1,1422399179=>1,1422563216=>1,1422564900=>1,1423155222=>1,1423132234=>1,1423248436=>1,1423297257=>1,1423390111=>1,1423383047=>1,1423074440=>1,1422965496=>1,1422676050=>1,1422565429=>1,1422676914=>1,1422931869=>1,1422961405=>1,1425350851=>1,1425489423=>1,1427042336=>1,1426947975=>1,1427042337=>1,1427042338=>1,1427057220=>1,1427042339=>1,1426918910=>1,1426918756=>1,1426772789=>1,1426772679=>1,1426774951=>1,1426780410=>1,1426831454=>1,1426797842=>1,1427091679=>1,1427181324=>1,1427227316=>1,1427222857=>1,1427232433=>1,1427234694=>1,1437891538=>1,1427241386=>1,1427221579=>1,1427219628=>1,1427206307=>1,1427206176=>1,1427209068=>1,1427215590=>1,1427219621=>1,1426770759=>1,1426770519=>1,1425759141=>1,1425734255=>1,1425959938=>1,1425959939=>1,1425977656=>1,1425959940=>1,1425693994=>1,1425674841=>1,1425622038=>1,1425573261=>1,1425622132=>1,1425627821=>1,1425657874=>1,1425655782=>1,1425979575=>1,1425981925=>1,1426768905=>1,1426732378=>1,1426768908=>1,1426769644=>1,1426770223=>1,1426770214=>1,1426724273=>1,1426674398=>1,1426059139=>1,1426036957=>1,1426169906=>1,1426420146=>1,1426516206=>1,1427455806=>1,1437994615=>1,1449647369=>1,1449639533=>1,1449660175=>1,1449735621=>1,1449736077=>1,1449735954=>1,1449552534=>1,1449424428=>1,1448521022=>1,1448209166=>1,1448616135=>1,1448964786=>1,1449408620=>1,1449055817=>1,1449736150=>1,1449742731=>1,1450099533=>1,1450009680=>1,1450152130=>1,1450725209=>1,1450915004=>1,1450867403=>1,1449998874=>1,1449881249=>1,1449792358=>1,1449776166=>1,1449799774=>1,1449822470=>1,1449881170=>1,1449881139=>1,1447661461=>1,1446933931=>1,1444349152=>1,1444279170=>1,1444445347=>1,1444504605=>1,1444794483=>1,1444672151=>1,1443821882=>1,1443332023=>1,1442468689=>1,1442374564=>1,1442536271=>1,1443015362=>1,1443157858=>1,1443049359=>1,1445070799=>1,1445107250=>1,1446737747=>1,1446712827=>1,1446737752=>1,1446824528=>1,1446929923=>1,1446922025=>1,1446712739=>1,1446712614=>1,1446513372=>1,1446513366=>1,1446527245=>1,1446621451=>1,1446634318=>1,1450936612=>1,1451251836=>1,1464395857=>1,1464358361=>1,1464397755=>1,1464423501=>1,1464606023=>1,1464601774=>1,1464355303=>1,1464073795=>1,1460130788=>1,1460065478=>1,1460284149=>1,1460978061=>1,1463993428=>1,1462774471=>1,1464751569=>1,1464754840=>1,1465694869=>1,1465676484=>1,1466073272=>1,1466074760=>1,1466076985=>1,1466075203=>1,1465671412=>1,1465651484=>1,1464785744=>1,1464772569=>1,1464815454=>1,1464819607=>1,1464974176=>1,1459907592=>1,1459889692=>1,1453289540=>1,1453139054=>1,1453546244=>1,1453742398=>1,1454556612=>1,1454428423=>1,1453126903=>1,1453059778=>1,1451792672=>1,1451736112=>1,1451799422=>1,1452143175=>1,1452624258=>1,1452379240=>1,1454560887=>1,1454652188=>1,1458906054=>1,1458280120=>1,1458925548=>1,1458933486=>1,1459439045=>1,1459006514=>1,1458272998=>1,1458134806=>1,1455222572=>1,1455212820=>1,1455301926=>1,1455815267=>1,1457249487=>1,1442374563=>1,1442247429=>1,1440094140=>1,1439982198=>1,1440099500=>1,1440100065=>1,1440102142=>1,1440100377=>1,1439971947=>1,1439969181=>1,1439634888=>1,1439593116=>1,1439959323=>1,1439959357=>1,1439964840=>1,1439960996=>1,1440103984=>1,1440105577=>1,1440117718=>1,1440114988=>1,1440119976=>1,1440120688=>1,1440122223=>1,1440121668=>1,1440114756=>1,1440114153=>1,1440106172=>1,1440105803=>1,1440106796=>1,1440107606=>1,1440108793=>1,1439494528=>1,1439491375=>1,1438250103=>1,1438250100=>1,1438250109=>1,1438348211=>1,1438679760=>1,1438667333=>1,1438250097=>1,1438250085=>1,1422219073=>1,1437964978=>1,1438063116=>1,1438079876=>1,1438248662=>1,1438199250=>1,1438692330=>1,1438796562=>1,1439111370=>1,1439070326=>1,1439386440=>1,1439386843=>1,1439481967=>1,1439466640=>1,1439065891=>1,1438988771=>1,1438817635=>1,1438807838=>1,1438903188=>1,1438904946=>1,1438905194=>1,1440125661=>1,1440126792=>1,1441134612=>1,1441133845=>1,1441135890=>1,1441182891=>1,1441343368=>1,1441317242=>1,1441124895=>1,1441123198=>1,1441078549=>1,1441071592=>1,1441095534=>1,1441108939=>1,1441118325=>1,1441111616=>1,1441363283=>1,1441407947=>1,1441922143=>1,1441759203=>1,1441971155=>1,1441988628=>1,1442162170=>1,1442083522=>1,1441609973=>1,1441607309=>1,1441528408=>1,1441525269=>1,1441532923=>1,1441536274=>1,1441574387=>1,1441054983=>1,1441040364=>1,1440385087=>1,1440229886=>1,1440460956=>1,1440560644=>1,1440757330=>1,1440612581=>1,1440149727=>1,1440148687=>1,1440139332=>1,1440128028=>1,1440139836=>1,1440141019=>1,1440144994=>1,1440142220=>1,1440833604=>1,1440836920=>1,1440922761=>1,1440916755=>1,1440988990=>1,1441001441=>1,1441033204=>1,1441029964=>1,1440904510=>1,1440902287=>1,1440842293=>1,1440839047=>1,1440844247=>1,1440878300=>1,1440880260=>1,1437891579=>1,1422092414=>1,1400947097=>1,1400946420=>1,1400956980=>1,1401293505=>1,1401470245=>1,1401345095=>1,1400926366=>1,1400908080=>1,1399235806=>1,1399052193=>1,1399299157=>1,1399914257=>1,1400733508=>1,1400201394=>1,1401470369=>1,1401799636=>1,1401887925=>1,1401887534=>1,1401887948=>1,1401888067=>1,1401888111=>1,1401888110=>1,1401887532=>1,1401887531=>1,1401873506=>1,1401856006=>1,1401887093=>1,1401887097=>1,1401887530=>1,1401887334=>1,1399021563=>1,1399021433=>1,1397033540=>1,1397033180=>1,1397034033=>1,1397058113=>1,1397092949=>1,1397084284=>1,1397031480=>1,1396525137=>1,1394958289=>1,1394884744=>1,1395335591=>1,1395564279=>1,1396238551=>1,1396018533=>1,1397201690=>1,1397870618=>1,1398177352=>1,1398144055=>1,1398191315=>1,1398349817=>1,1398562419=>1,1398494746=>1,1398108206=>1,1398069533=>1,1397942833=>1,1397882592=>1,1397988971=>1,1398012745=>1,1398032667=>1,1401888125=>1,1401888231=>1,1403515021=>1,1403500900=>1,1403515057=>1,1403515058=>1,1403515073=>1,1403515059=>1,1403500835=>1,1403472098=>1,1403211203=>1,1403178308=>1,1403242920=>1,1403250783=>1,1403447900=>1,1403386441=>1,1403515108=>1,1403515117=>1,1403800490=>1,1403759902=>1,1403818003=>1,1403971538=>1,1404003458=>1,1403973802=>1,1403742309=>1,1403677029=>1,1403636226=>1,1403570380=>1,1403637847=>1,1403637978=>1,1403638578=>1,1403177872=>1,1403177654=>1,1402095329=>1,1402073575=>1,1402105059=>1,1402134922=>1,1402306444=>1,1402175274=>1,1401973050=>1,1401902053=>1,1401888403=>1,1401888367=>1,1401888436=>1,1401888515=>1,1401888760=>1,1401888518=>1,1402342347=>1,1402343985=>1,1403126383=>1,1403116258=>1,1403171395=>1,1403173988=>1,1403176764=>1,1403175008=>1,1403019107=>1,1402698134=>1,1402360442=>1,1402350373=>1,1402405476=>1,1402573185=>1,1402635051=>1,1394592762=>1,1394443996=>1,1388439908=>1,1388418482=>1,1388489246=>1,1388550852=>1,1388578667=>1,1388551184=>1,1388416122=>1,1388412525=>1,1388375619=>1,1388322557=>1,1388377281=>1,1388387423=>1,1388406318=>1,1388387504=>1,1388580031=>1,1388580494=>1,1388966889=>1,1388966104=>1,1388967123=>1,1389128156=>1,1389147180=>1,1389147179=>1,1388901739=>1,1388859881=>1,1388736546=>1,1388696817=>1,1388758334=>1,1388802306=>1,1388813145=>1,1388813141=>1,1388322554=>1,1388322549=>1,1386536437=>1,1386526651=>1,1386540669=>1,1386581583=>1,1386584038=>1,1386583203=>1,1386491679=>1,1386482200=>1,1386344369=>1,1386337489=>1,1386360935=>1,1386380212=>1,1386480125=>1,1386403426=>1,1386584724=>1,1386840025=>1,1387656536=>1,1387626896=>1,1387731517=>1,1387731989=>1,1388322542=>1,1387980818=>1,1387613446=>1,1387609684=>1,1387355826=>1,1386847048=>1,1387392752=>1,1387600984=>1,1387607308=>1,1389211658=>1,1389231270=>1,1390928500=>1,1390840468=>1,1390929338=>1,1390948923=>1,1391031703=>1,1390961066=>1,1390774815=>1,1390738452=>1,1390250777=>1,1390248288=>1,1390351690=>1,1390446161=>1,1390640629=>1,1390582507=>1,1391437438=>1,1391508823=>1,1393269794=>1,1392654147=>1,1393367278=>1,1393391426=>1,1394390054=>1,1393840660=>1,1391945589=>1,1391767847=>1,1391662028=>1,1391630547=>1,1391677193=>1,1391691188=>1,1391752842=>1,1390241130=>1,1390241091=>1,1389463055=>1,1389445919=>1,1389465928=>1,1389467612=>1,1389476862=>1,1389473700=>1,1389441480=>1,1389441476=>1,1389357505=>1,1389321932=>1,1389387584=>1,1389408909=>1,1389441474=>1,1389409620=>1,1389492302=>1,1389493156=>1,1390015751=>1,1389806845=>1,1390086489=>1,1390172469=>1,1390241050=>1,1390241024=>1,1389792486=>1,1389767665=>1,1389560009=>1,1389559988=>1,1389564801=>1,1389564815=>1,1389567991=>1,1406166326=>1,1406208799=>1,1412656727=>1,1412649687=>1,1412714074=>1,1412721384=>1,1412808894=>1,1412724660=>1,1412649433=>1,1412482894=>1,1412344161=>1,1412339901=>1,1412352377=>1,1412360361=>1,1412409646=>1,1412360505=>1,1412819098=>1,1412822953=>1,1414074204=>1,1414016527=>1,1414082946=>1,1414167367=>1,1414207946=>1,1414187625=>1,1414010493=>1,1414007953=>1,1412860158=>1,1412858877=>1,1412997141=>1,1413052972=>1,1413293086=>1,1413221627=>1,1412339029=>1,1412336737=>1,1411295142=>1,1411249452=>1,1411334266=>1,1411359498=>1,1411777076=>1,1411405780=>1,1411171397=>1,1410930695=>1,1410736933=>1,1410736930=>1,1410739737=>1,1410739801=>1,1410821059=>1,1410742718=>1,1411846376=>1,1411932859=>1,1412254733=>1,1412254732=>1,1412298278=>1,1412302931=>1,1412312851=>1,1412303794=>1,1412254731=>1,1412254730=>1,1412002978=>1,1411936326=>1,1412006646=>1,1412039427=>1,1412216558=>1,1414244545=>1,1414255207=>1,1418744689=>1,1418740157=>1,1419235522=>1,1419365876=>1,1419520477=>1,1419380570=>1,1418566749=>1,1418549183=>1,1418157020=>1,1418088100=>1,1418462893=>1,1418465182=>1,1418469351=>1,1418467173=>1,1419723617=>1,1419800801=>1,1421341176=>1,1421111234=>1,1421623540=>1,1422020069=>1,1386336855=>1,1422091935=>1,1421070764=>1,1420980449=>1,1420075790=>1,1419811759=>1,1420449139=>1,1420766295=>1,1420848118=>1,1418049670=>1,1417998207=>1,1416356681=>1,1416307495=>1,1416653856=>1,1416755064=>1,1416786444=>1,1416758070=>1,1416229139=>1,1416179247=>1,1414549573=>1,1414260259=>1,1414844463=>1,1415066868=>1,1415323468=>1,1415277810=>1,1416786788=>1,1416831992=>1,1417733255=>1,1417732589=>1,1417840681=>1,1417862539=>1,1417996078=>1,1417984542=>1,1417507499=>1,1417427786=>1,1417066196=>1,1416876362=>1,1417074934=>1,1417093755=>1,1417106049=>1,1410714498=>1,1410580125=>1,1407481499=>1,1407475020=>1,1407652389=>1,1407656580=>1,1407656641=>1,1407656581=>1,1407335092=>1,1407142869=>1,1407044617=>1,1406971087=>1,1407045849=>1,1407081725=>1,1407124371=>1,1407090355=>1,1407778847=>1,1407778915=>1,1407792469=>1,1407792443=>1,1407797033=>1,1407798179=>1,1407805389=>1,1407804124=>1,1407782857=>1,1407780921=>1,1407779062=>1,1407778937=>1,1407779244=>1,1407780159=>1,1407780533=>1,1406971086=>1,1406971085=>1,1406428690=>1,1406427972=>1,1406429308=>1,1406429329=>1,1406431621=>1,1406429584=>1,1406427342=>1,1406427319=>1,1406218866=>1,1406214628=>1,1406238111=>1,1406251185=>1,1406377817=>1,1406271118=>1,1406432865=>1,1406445754=>1,1406732733=>1,1406732697=>1,1406732749=>1,1406737025=>1,1406970098=>1,1406837278=>1,1406732675=>1,1406732674=>1,1406664495=>1,1406663190=>1,1406664502=>1,1406732594=>1,1406732614=>1,1407805862=>1,1407809418=>1,1408802967=>1,1408790214=>1,1408807638=>1,1408981261=>1,1408994425=>1,1408982689=>1,1408763911=>1,1408716378=>1,1408252506=>1,1408179690=>1,1408259013=>1,1408263633=>1,1408688745=>1,1408315055=>1,1409009081=>1,1409015385=>1,1410407413=>1,1410400273=>1,1410576975=>1,1410577001=>1,1410577477=>1,1410577381=>1,1409943554=>1,1409482805=>1,1409204351=>1,1409069703=>1,1409233406=>1,1409246836=>1,1409363244=>1,1408155709=>1,1408155700=>1,1407834389=>1,1407833416=>1,1407834711=>1,1407835023=>1,1407840168=>1,1407839819=>1,1407832618=>1,1407824452=>1,1407814431=>1,1407809927=>1,1407815486=>1,1407816700=>1,1407820188=>1,1407816761=>1,1407842649=>1,1407848121=>1,1408122653=>1,1408113583=>1,1408130307=>1,1408131692=>1,1408155679=>1,1408148438=>1,1408051683=>1,1408050716=>1,1407879475=>1,1407862044=>1,1407889436=>1,1408028750=>1,1408042767=>1,1422176135=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-17.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1915286257=>1,1915285734=>1,1915287083=>1,1915288397=>1,1915326801=>1,1915325846=>1,1915283933=>1,1915283841=>1,1915276125=>1,1915276026=>1,1915276257=>1,1915276517=>1,1915283695=>1,1915283485=>1,1915348248=>1,1915403492=>1,1915735770=>1,1915734449=>1,1915735883=>1,1915740331=>1,1916929932=>1,1916346322=>1,1915732355=>1,1915618853=>1,1915415268=>1,1915405507=>1,1915520549=>1,1915534651=>1,1915617579=>1,1915550562=>1,1915275936=>1,1915274377=>1,1914589527=>1,1914436086=>1,1914717957=>1,1914728970=>1,1914843412=>1,1914765395=>1,1914436027=>1,1914435109=>1,1914432518=>1,1914432464=>1,1914432711=>1,1914432963=>1,1914433683=>1,1914433597=>1,1914846066=>1,1914868940=>1,1915242058=>1,1915223124=>1,1915251582=>1,1915273258=>1,1915274371=>1,1915273890=>1,1915127140=>1,1915127126=>1,1915117905=>1,1915010266=>1,1915118030=>1,1915126881=>1,1915126952=>1,1916929939=>1,1917820858=>1,1926737087=>1,1926732927=>1,1926740871=>1,1926745238=>1,1926832657=>1,1926763555=>1,1926731277=>1,1926719663=>1,1922977771=>1,1922970997=>1,1924817989=>1,1925670394=>1,1926715755=>1,1925935204=>1,1926932185=>1,1926990438=>1,1928862014=>1,1928487378=>1,1929115490=>1,1929134239=>1,1929135191=>1,1929134479=>1,1928406027=>1,1928311547=>1,1927365906=>1,1927138053=>1,1927370606=>1,1927655981=>1,1928311322=>1,1927660466=>1,1921978352=>1,1921856516=>1,1918876592=>1,1918851220=>1,1919032163=>1,1919352354=>1,1919606859=>1,1919470350=>1,1918170579=>1,1917908638=>1,1917821697=>1,1917820958=>1,1917821841=>1,1917868981=>1,1917903431=>1,1917880432=>1,1919607478=>1,1919609742=>1,1920411150=>1,1920066759=>1,1921060990=>1,1921061011=>1,1921160970=>1,1921125689=>1,1920040489=>1,1920040482=>1,1919756614=>1,1919609954=>1,1919766905=>1,1919767870=>1,1920040474=>1,1914432418=>1,1914432404=>1,1902727229=>1,1902707805=>1,1902751368=>1,1902767446=>1,1902795463=>1,1902773493=>1,1902575281=>1,1902574675=>1,1901884223=>1,1901661521=>1,1902256260=>1,1902256285=>1,1902361849=>1,1902361746=>1,1902829442=>1,1902852428=>1,1904377173=>1,1904377147=>1,1904377174=>1,1905011507=>1,1906339030=>1,1906316838=>1,1903828730=>1,1903428795=>1,1902889497=>1,1902877938=>1,1902939490=>1,1902950650=>1,1903138057=>1,1902968259=>1,1901497986=>1,1901325378=>1,1900112265=>1,1899322286=>1,1900166710=>1,1900166726=>1,1900169635=>1,1900166776=>1,1898326445=>1,1897869007=>1,1897369352=>1,1897260350=>1,1897381610=>1,1897675945=>1,1897869002=>1,1897869001=>1,1900188460=>1,1900188494=>1,1901010042=>1,1901009205=>1,1901010748=>1,1901012723=>1,1901085627=>1,1901077837=>1,1901008901=>1,1900977877=>1,1900307606=>1,1900307528=>1,1900307769=>1,1900476168=>1,1900685428=>1,1906409613=>1,1908338376=>1,1913007466=>1,1913004738=>1,1913771055=>1,1914189275=>1,1914291987=>1,1914286082=>1,1913004453=>1,1913004451=>1,1912570154=>1,1912560991=>1,1912571583=>1,1912882330=>1,1912933554=>1,1912933486=>1,1914297415=>1,1914307823=>1,1914417069=>1,1914377063=>1,1914429501=>1,1914431663=>1,1914432241=>1,1914431875=>1,1914376919=>1,1914375830=>1,1914307891=>1,1914307850=>1,1914309370=>1,1914320229=>1,1914370806=>1,1912552761=>1,1912549681=>1,1909189538=>1,1908996631=>1,1909212454=>1,1909249074=>1,1910156335=>1,1909270712=>1,1908988142=>1,1908987554=>1,1908658169=>1,1908639323=>1,1908939603=>1,1908940042=>1,1908973467=>1,1908952595=>1,1910802525=>1,1911036768=>1,1912373679=>1,1912366089=>1,1912387058=>1,1912462546=>1,1912533233=>1,1912463130=>1,1912077330=>1,1912072515=>1,1911204941=>1,1911133871=>1,1911577588=>1,1911614982=>1,1911833066=>1,1929135359=>1,1929135749=>1,1935146680=>1,1935146597=>1,1935146706=>1,1935146735=>1,1935146744=>1,1935146743=>1,1935146524=>1,1935146490=>1,1935146406=>1,1935146391=>1,1935146433=>1,1935146436=>1,1935146466=>1,1935146457=>1,1935146772=>1,1935146854=>1,1936796631=>1,1936694596=>1,1936847301=>1,1936974733=>1,1937059080=>1,1937059076=>1,1936670214=>1,1935198515=>1,1935146939=>1,1935146868=>1,1935146945=>1,1935146948=>1,1935146991=>1,1935146987=>1,1935146296=>1,1935144290=>1,1935137201=>1,1935137193=>1,1935137204=>1,1935137218=>1,1935137543=>1,1935137470=>1,1935137160=>1,1935137157=>1,1935137019=>1,1935136958=>1,1935137046=>1,1935137061=>1,1935137128=>1,1935137071=>1,1935137576=>1,1935137623=>1,1935142098=>1,1935140968=>1,1935142178=>1,1935142887=>1,1935143039=>1,1935143001=>1,1935138017=>1,1935138009=>1,1935137674=>1,1935137665=>1,1935137798=>1,1935137954=>1,1935137964=>1,1937210362=>1,1937522978=>1,1939900811=>1,1939850206=>1,1939900812=>1,1939900820=>1,1940775164=>1,1939900850=>1,1939849630=>1,1939848653=>1,1939832640=>1,1939832096=>1,1939839637=>1,1939846697=>1,1939848361=>1,1939846937=>1,1941015127=>1,1941307776=>1,1944348990=>1,1943895696=>1,1944349914=>1,1944350022=>1,1944350573=>1,1944350049=>1,1942070437=>1,1941698232=>1,1941379590=>1,1941358684=>1,1941380102=>1,1941578605=>1,1941697321=>1,1939823589=>1,1939813688=>1,1937708452=>1,1937704997=>1,1937710546=>1,1937711274=>1,1937720578=>1,1937720388=>1,1937704180=>1,1937641559=>1,1937524894=>1,1937524814=>1,1937525025=>1,1937525114=>1,1937533081=>1,1937526153=>1,1937720587=>1,1937721450=>1,1939807107=>1,1939801591=>1,1939809490=>1,1939811176=>1,1939812574=>1,1939811252=>1,1939801463=>1,1939645699=>1,1938188909=>1,1938156915=>1,1938215207=>1,1938242575=>1,1939506739=>1,1935136925=>1,1935136898=>1,1931333854=>1,1931332699=>1,1931454514=>1,1931458398=>1,1932414994=>1,1932412882=>1,1931332244=>1,1931331100=>1,1931321767=>1,1931321427=>1,1931328219=>1,1931329579=>1,1931329911=>1,1931329730=>1,1932417085=>1,1932461192=>1,1933986671=>1,1933957386=>1,1934015082=>1,1934020625=>1,1934490792=>1,1934020762=>1,1933836316=>1,1933631758=>1,1932470107=>1,1932466014=>1,1932472563=>1,1932474674=>1,1933386431=>1,1932598896=>1,1931317101=>1,1931316208=>1,1931216320=>1,1931053813=>1,1931216660=>1,1931217338=>1,1931224353=>1,1931221996=>1,1929363952=>1,1929286587=>1,1929138376=>1,1929135758=>1,1929138681=>1,1929138763=>1,1929140844=>1,1929140425=>1,1931224849=>1,1931227065=>1,1931291452=>1,1931288951=>1,1931291539=>1,1931299952=>1,1931306520=>1,1931306195=>1,1931258412=>1,1931257330=>1,1931229517=>1,1931227533=>1,1931238063=>1,1931250164=>1,1931250812=>1,1934911934=>1,1934945849=>1,1935135496=>1,1935135384=>1,1935135547=>1,1935135572=>1,1935135647=>1,1935135596=>1,1935135382=>1,1935135314=>1,1935134362=>1,1935134326=>1,1935134376=>1,1935135264=>1,1935135311=>1,1935135285=>1,1935135661=>1,1935135709=>1,1935135950=>1,1935135873=>1,1935135961=>1,1935135979=>1,1935136853=>1,1935136793=>1,1935135824=>1,1935135812=>1,1935135723=>1,1935135720=>1,1935135747=>1,1935135782=>1,1935135792=>1,1935134323=>1,1935134317=>1,1935095584=>1,1935095371=>1,1935095605=>1,1935095620=>1,1935095990=>1,1935095763=>1,1935094617=>1,1935094612=>1,1934968229=>1,1934968226=>1,1934970098=>1,1935091376=>1,1935094569=>1,1935094186=>1,1935096169=>1,1935096198=>1,1935134262=>1,1935134217=>1,1935134268=>1,1935134286=>1,1935134302=>1,1935134287=>1,1935126627=>1,1935097852=>1,1935096288=>1,1935096208=>1,1935096510=>1,1935097457=>1,1935097651=>1,1897260342=>1,1897218726=>1,1856562468=>1,1856562433=>1,1856562586=>1,1856562592=>1,1856562839=>1,1856562763=>1,1856296258=>1,1856295867=>1,1855523322=>1,1854919513=>1,1856245689=>1,1856292220=>1,1856293445=>1,1856292626=>1,1856639046=>1,1856645456=>1,1856871692=>1,1856813937=>1,1856908168=>1,1857026506=>1,1859132070=>1,1857923243=>1,1856813889=>1,1856809571=>1,1856682036=>1,1856677691=>1,1856707093=>1,1856803332=>1,1856809333=>1,1856803393=>1,1854645781=>1,1854623520=>1,1850644968=>1,1850644922=>1,1850646890=>1,1850647939=>1,1850649447=>1,1850648864=>1,1850642965=>1,1850642896=>1,1850597908=>1,1850597726=>1,1850598678=>1,1850600086=>1,1850603534=>1,1850600541=>1,1850808362=>1,1851013011=>1,1854468513=>1,1854466190=>1,1854544572=>1,1854544702=>1,1854563337=>1,1854546574=>1,1854465626=>1,1854464902=>1,1852180712=>1,1851594666=>1,1853211546=>1,1853212878=>1,1854320867=>1,1860540926=>1,1860715186=>1,1863198875=>1,1863198874=>1,1863438018=>1,1863627730=>1,1864942858=>1,1864805987=>1,1863198869=>1,1863198868=>1,1863126413=>1,1863126232=>1,1863150902=>1,1863151206=>1,1863198867=>1,1863198866=>1,1865354498=>1,1865354499=>1,1866754130=>1,1866752829=>1,1866756346=>1,1866759091=>1,1866833981=>1,1866828874=>1,1866685979=>1,1866409508=>1,1865394985=>1,1865354500=>1,1865944470=>1,1865944471=>1,1865944472=>1,1863086882=>1,1863086881=>1,1862344828=>1,1862344755=>1,1862345755=>1,1862350611=>1,1862352165=>1,1862352151=>1,1861868106=>1,1861389467=>1,1860717718=>1,1860716676=>1,1860717778=>1,1860719398=>1,1861386272=>1,1860722478=>1,1862359550=>1,1862452354=>1,1862998978=>1,1862973358=>1,1862998980=>1,1863050317=>1,1863078810=>1,1863078806=>1,1862941065=>1,1862894289=>1,1862618847=>1,1862493781=>1,1862841278=>1,1862879589=>1,1862890187=>1,1850597723=>1,1850596655=>1,1845033585=>1,1845029981=>1,1845201434=>1,1845207559=>1,1845399303=>1,1845364265=>1,1845029980=>1,1845029979=>1,1844978178=>1,1844975182=>1,1844980219=>1,1844980322=>1,1845029947=>1,1845023401=>1,1845482553=>1,1845484068=>1,1847899256=>1,1847897099=>1,1847974974=>1,1848407682=>1,1848792120=>1,1848477669=>1,1847766206=>1,1847732194=>1,1845848298=>1,1845768075=>1,1846112404=>1,1846652054=>1,1846967107=>1,1846735113=>1,1844939033=>1,1844566239=>1,1844214273=>1,1844213142=>1,1844214274=>1,1844214275=>1,1844214520=>1,1844214515=>1,1844211998=>1,1844211971=>1,1844204244=>1,1844181893=>1,1844204739=>1,1844205577=>1,1844211970=>1,1844211969=>1,1844214524=>1,1844214800=>1,1844361004=>1,1844337748=>1,1844382730=>1,1844391962=>1,1844392088=>1,1844392083=>1,1844276945=>1,1844276352=>1,1844251221=>1,1844215426=>1,1844251490=>1,1844251637=>1,1844252093=>1,1848792152=>1,1848934370=>1,1850324492=>1,1850287079=>1,1850393385=>1,1850393427=>1,1850574448=>1,1850457416=>1,1850285703=>1,1850285077=>1,1850279547=>1,1850279270=>1,1850279844=>1,1850280841=>1,1850281950=>1,1850280956=>1,1850574896=>1,1850575352=>1,1850594989=>1,1850594834=>1,1850596211=>1,1850596236=>1,1850596628=>1,1850596287=>1,1850591177=>1,1850590390=>1,1850578264=>1,1850578009=>1,1850580267=>1,1850580956=>1,1850586776=>1,1850278974=>1,1850278904=>1,1850212517=>1,1849878261=>1,1850212711=>1,1850212886=>1,1850220003=>1,1850216799=>1,1848980081=>1,1848979777=>1,1848961084=>1,1848961080=>1,1848961090=>1,1848961099=>1,1848968698=>1,1848961100=>1,1850220352=>1,1850220393=>1,1850278544=>1,1850278540=>1,1850278590=>1,1850278612=>1,1850278841=>1,1850278688=>1,1850278242=>1,1850278091=>1,1850277954=>1,1850228610=>1,1850277964=>1,1850278002=>1,1850278078=>1,1867043391=>1,1867135220=>1,1884196180=>1,1884195765=>1,1884197156=>1,1884197644=>1,1884198322=>1,1884197645=>1,1884195763=>1,1884195114=>1,1883925710=>1,1883922600=>1,1883951044=>1,1884161764=>1,1884172162=>1,1884170180=>1,1884198378=>1,1884205576=>1,1885114384=>1,1885111574=>1,1885114692=>1,1885114760=>1,1885139235=>1,1885118750=>1,1885016291=>1,1884992409=>1,1884453526=>1,1884208370=>1,1884512325=>1,1884512432=>1,1884992235=>1,1884964947=>1,1883919233=>1,1883832354=>1,1880805124=>1,1880805123=>1,1880805139=>1,1880805145=>1,1880805161=>1,1880805151=>1,1880805122=>1,1880804674=>1,1880804428=>1,1880804426=>1,1880804429=>1,1880804433=>1,1880804650=>1,1880804440=>1,1880805165=>1,1880805190=>1,1882542523=>1,1882542522=>1,1883289929=>1,1883330712=>1,1883366377=>1,1883330778=>1,1882308788=>1,1880992451=>1,1880805213=>1,1880805209=>1,1880805214=>1,1880805215=>1,1880805216=>1,1885139543=>1,1885140230=>1,1894172074=>1,1893032261=>1,1894278009=>1,1894597701=>1,1895438245=>1,1894598165=>1,1892608366=>1,1892108923=>1,1889981179=>1,1889919469=>1,1891181983=>1,1891349055=>1,1892106686=>1,1891367087=>1,1895928344=>1,1896026463=>1,1896580556=>1,1896580555=>1,1896600931=>1,1896632995=>1,1897165094=>1,1896672253=>1,1896580554=>1,1896542914=>1,1896521152=>1,1896337994=>1,1896521403=>1,1896529168=>1,1896533425=>1,1889720486=>1,1889238314=>1,1885327323=>1,1885326968=>1,1885335415=>1,1885687979=>1,1885892287=>1,1885892261=>1,1885319377=>1,1885301871=>1,1885283866=>1,1885206576=>1,1885288866=>1,1885289693=>1,1885301710=>1,1885289838=>1,1885993710=>1,1886907303=>1,1887191449=>1,1887189471=>1,1887324261=>1,1887816284=>1,1888270712=>1,1887816942=>1,1887187541=>1,1887184611=>1,1887180319=>1,1886960924=>1,1887182036=>1,1887183781=>1,1887184151=>1,1880804425=>1,1880803802=>1,1875652090=>1,1875640449=>1,1875792376=>1,1875792389=>1,1876781399=>1,1875855597=>1,1875551081=>1,1875548760=>1,1875437290=>1,1875437289=>1,1875437291=>1,1875453154=>1,1875527484=>1,1875510436=>1,1876782488=>1,1877007649=>1,1878235790=>1,1878235105=>1,1878235867=>1,1878399006=>1,1878524016=>1,1878399514=>1,1878233669=>1,1878233613=>1,1877278255=>1,1877278249=>1,1878069008=>1,1878069124=>1,1878153948=>1,1878069136=>1,1875357033=>1,1875352722=>1,1870084113=>1,1870049637=>1,1870339150=>1,1870341818=>1,1872838992=>1,1870343321=>1,1868842456=>1,1868302954=>1,1867231683=>1,1867135224=>1,1867897850=>1,1868146761=>1,1868217734=>1,1868217718=>1,1872882435=>1,1873034088=>1,1875037858=>1,1874894339=>1,1875132468=>1,1875247706=>1,1875327874=>1,1875282130=>1,1874892195=>1,1874889535=>1,1873270152=>1,1873100559=>1,1873750656=>1,1874077455=>1,1874316917=>1,1878527180=>1,1878550836=>1,1880119200=>1,1880119197=>1,1880119427=>1,1880119670=>1,1880119900=>1,1880119735=>1,1880119117=>1,1880119064=>1,1879224930=>1,1879084523=>1,1879314840=>1,1879440722=>1,1880116412=>1,1879705086=>1,1880141780=>1,1880268606=>1,1880786007=>1,1880746684=>1,1880795170=>1,1880795182=>1,1880802507=>1,1880795554=>1,1880730493=>1,1880697224=>1,1880560728=>1,1880550198=>1,1880693172=>1,1880693173=>1,1880697199=>1,1879083696=>1,1878991779=>1,1878729628=>1,1878729447=>1,1878729649=>1,1878729819=>1,1878730173=>1,1878729926=>1,1878729274=>1,1878729237=>1,1878551141=>1,1878550926=>1,1878551156=>1,1878651457=>1,1878729003=>1,1878651571=>1,1878730274=>1,1878730286=>1,1878888076=>1,1878885097=>1,1878888082=>1,1878888139=>1,1878953476=>1,1878888182=>1,1878881740=>1,1878881117=>1,1878822191=>1,1878730353=>1,1878849601=>1,1878878912=>1,1878880788=>1,1844181892=>1,);?>
1
+ <?php return array(1467468544=>1467468799,1467346496=>1467346559,1519572879=>1,1520238768=>1,1520293734=>1,1520430421=>1,1521605842=>1,1521187292=>1,1520209873=>1,1520113626=>1,1519738329=>1,1519720764=>1,1520074515=>1,1520103724=>1,1521872004=>1,1519671865=>1,1521915946=>1,1523362119=>1,1522367361=>1,1524257389=>1,1524646963=>1,1524715739=>1,1524711508=>1,1522331133=>1,1522281186=>1,1521937198=>1,1519553145=>1,1522044640=>1,1522065012=>1,1522109470=>1,1522065014=>1,1521909860=>1,1519526558=>1,1511181789=>1,1511055406=>1,1512823974=>1,1512844650=>1,1513827729=>1,1513827615=>1,1510991711=>1,1509632787=>1,1509497415=>1,1509468288=>1,1509524901=>1,1509541195=>1,1509629012=>1,1509543745=>1,1514115997=>1,1514216283=>1,1517029313=>1,1516962160=>1,1517326247=>1,1517330489=>1,1517867833=>1,1517571718=>1,1516803775=>1,1515520883=>1,1514248397=>1,1514235510=>1,1515067682=>1,1515068117=>1,1515164951=>1,1515079283=>1,1524806279=>1,1525063313=>1,1531031789=>1,1531021827=>1,1531063624=>1,1531085280=>1,1531167523=>1,1531134903=>1,1531020458=>1,1531006635=>1,1530969882=>1,1530969277=>1,1530973610=>1,1530985356=>1,1530994276=>1,1530992484=>1,1531290648=>1,1531500676=>1,1532666995=>1,1532624007=>1,1532783882=>1,1532783885=>1,1532783925=>1,1532783886=>1,1532623474=>1,1532591164=>1,1532112712=>1,1531566350=>1,1532161407=>1,1532220737=>1,1532579965=>1,1530955847=>1,1530944008=>1,1528064573=>1,1527908357=>1,1528066804=>1,1528123890=>1,1529017097=>1,1528886345=>1,1527713207=>1,1527713044=>1,1525127327=>1,1509467805=>1,1526863959=>1,1527054055=>1,1527142558=>1,1527082167=>1,1529017219=>1,1529339891=>1,1530327928=>1,1530321793=>1,1530745154=>1,1530933282=>1,1530943348=>1,1530934913=>1,1530286964=>1,1530129068=>1,1529823135=>1,1529729708=>1,1529889903=>1,1529903651=>1,1530086668=>1,1524943519=>1,1508891327=>1,1503912148=>1,1503912123=>1,1503912376=>1,1503912399=>1,1503916294=>1,1503914915=>1,1503911030=>1,1503910926=>1,1503908329=>1,1503908272=>1,1503909441=>1,1503910182=>1,1503910732=>1,1503910214=>1,1503917428=>1,1503917493=>1,1504014953=>1,1504009763=>1,1504063361=>1,1504196047=>1,1504559332=>1,1504254788=>1,1504004259=>1,1504000435=>1,1503917511=>1,1503917496=>1,1503917695=>1,1503917867=>1,1503967042=>1,1503948216=>1,1503907845=>1,1503904989=>1,1502056534=>1,1502050561=>1,1502351938=>1,1502374194=>1,1502377853=>1,1502374225=>1,1501965953=>1,1501950558=>1,1501588057=>1,1501320313=>1,1501824044=>1,1501838926=>1,1501848252=>1,1501846746=>1,1502379281=>1,1502574502=>1,1503888028=>1,1503588085=>1,1503888296=>1,1503888968=>1,1503890600=>1,1503888972=>1,1503552320=>1,1503519038=>1,1503103178=>1,1502776455=>1,1503125954=>1,1503370192=>1,1503514679=>1,1504648099=>1,1504674451=>1,1507680218=>1,1507537703=>1,1507776555=>1,1508153313=>1,1508265803=>1,1508164612=>1,1507530641=>1,1507530617=>1,1507360284=>1,1507332753=>1,1507469002=>1,1507469034=>1,1507513962=>1,1507479702=>1,1508495640=>1,1508498459=>1,1508812423=>1,1508803588=>1,1508813932=>1,1508833414=>1,1533032343=>1,1508877461=>1,1508792773=>1,1508789508=>1,1508554298=>1,1508548094=>1,1508617888=>1,1508617889=>1,1508786486=>1,1507292814=>1,1507292329=>1,1505362251=>1,1505298428=>1,1505365081=>1,1505464016=>1,1505521106=>1,1505464442=>1,1505182825=>1,1504933797=>1,1504698854=>1,1504694998=>1,1504705966=>1,1504742590=>1,1504911777=>1,1504802088=>1,1505574071=>1,1505592565=>1,1506755099=>1,1506733293=>1,1506771350=>1,1506806438=>1,1507100967=>1,1506847602=>1,1506733292=>1,1506720400=>1,1505745153=>1,1505740789=>1,1506316012=>1,1506344085=>1,1506622617=>1,1509455592=>1,1533157276=>1,1539463783=>1,1539354082=>1,1539501915=>1,1539521541=>1,1539546506=>1,1539529412=>1,1539354038=>1,1539309034=>1,1539079552=>1,1539077338=>1,1539158081=>1,1539208525=>1,1539303862=>1,1539223903=>1,1539562565=>1,1539630658=>1,1539975283=>1,1539972045=>1,1539983830=>1,1539991900=>1,1540031890=>1,1540009268=>1,1539970686=>1,1539913253=>1,1539726493=>1,1539693918=>1,1539743624=>1,1539806603=>1,1539912985=>1,1539894056=>1,1539012005=>1,1539011901=>1,1538751529=>1,1538692833=>1,1538851238=>1,1538862181=>1,1538998281=>1,1538910178=>1,1538526009=>1,1538468204=>1,1536451981=>1,1536326189=>1,1536536019=>1,1536780337=>1,1538323017=>1,1537133026=>1,1538998461=>1,1538999043=>1,1539003945=>1,1539003611=>1,1539004721=>1,1539004856=>1,1539010116=>1,1539005265=>1,1539003456=>1,1539003453=>1,1539000839=>1,1538999856=>1,1539001528=>1,1539002248=>1,1539002446=>1,1540031909=>1,1540062261=>1,1540866630=>1,1540856750=>1,1540876548=>1,1540880378=>1,1540958723=>1,1540958722=>1,1540856379=>1,1540856377=>1,1540831378=>1,1540803472=>1,1540831562=>1,1540831607=>1,1540852271=>1,1540831657=>1,1540958724=>1,1540999713=>1,1541086652=>1,1541086621=>1,1541086702=>1,1541090062=>1,1541139587=>1,1541095722=>1,1541086606=>1,1541086553=>1,1541066908=>1,1541021201=>1,1541086293=>1,1541086307=>1,1541086419=>1,1540798714=>1,1540797188=>1,1540566346=>1,1540535869=>1,1540566347=>1,1540566348=>1,1540585036=>1,1540582150=>1,1540499886=>1,1540367273=>1,1540084848=>1,1540084150=>1,1540124911=>1,1540125106=>1,1540205906=>1,1540195263=>1,1540588847=>1,1540676041=>1,1540745610=>1,1540745532=>1,1540756300=>1,1540784302=>1,1540793342=>1,1540785654=>1,1540688108=>1,1540688107=>1,1540687936=>1,1540676058=>1,1540687956=>1,1540687961=>1,1540687999=>1,1536325891=>1,1536241233=>1,1533838971=>1,1533838900=>1,1533859693=>1,1533876167=>1,1534379888=>1,1533877624=>1,1533838886=>1,1533838330=>1,1533720263=>1,1533716736=>1,1533720390=>1,1533722190=>1,1533743654=>1,1533722257=>1,1534423642=>1,1534558773=>1,1534676172=>1,1534676143=>1,1534676175=>1,1534677529=>1,1534678153=>1,1534678108=>1,1534673080=>1,1534670344=>1,1534657156=>1,1534656788=>1,1534660675=>1,1534662500=>1,1534668471=>1,1534664153=>1,1533711574=>1,1533710863=>1,1533185877=>1,1533183626=>1,1533187016=>1,1533187070=>1,1533189205=>1,1533188308=>1,1533183551=>1,1533179570=>1,1533158123=>1,1501206388=>1,1533160356=>1,1533174954=>1,1533177611=>1,1533177112=>1,1533212885=>1,1533216976=>1,1533695726=>1,1533693058=>1,1533697472=>1,1533707474=>1,1533710599=>1,1533708977=>1,1533614067=>1,1533527678=>1,1533224950=>1,1533218211=>1,1533230841=>1,1533306820=>1,1533485049=>1,1534678402=>1,1534680480=>1,1535788559=>1,1535775785=>1,1535790526=>1,1535815148=>1,1536054454=>1,1535878002=>1,1535775772=>1,1535681666=>1,1534714713=>1,1534713474=>1,1534730159=>1,1534747661=>1,1535017285=>1,1534839019=>1,1536070150=>1,1536072144=>1,1536149328=>1,1536143063=>1,1536186569=>1,1536200090=>1,1536231394=>1,1536207391=>1,1536121742=>1,1536119004=>1,1536104226=>1,1536089634=>1,1536104228=>1,1536104229=>1,1536107050=>1,1534710215=>1,1534708824=>1,1534696225=>1,1534694209=>1,1534696977=>1,1534697252=>1,1534697682=>1,1534697478=>1,1534691460=>1,1534687687=>1,1534680691=>1,1534680615=>1,1534683440=>1,1534684750=>1,1534686242=>1,1534685510=>1,1534698762=>1,1534699160=>1,1534706209=>1,1534705818=>1,1534706564=>1,1534706601=>1,1534707592=>1,1534707101=>1,1534703912=>1,1534703703=>1,1534701497=>1,1534699540=>1,1534701657=>1,1534702093=>1,1534702171=>1,1533093080=>1,1501204632=>1,1481692861=>1,1481548652=>1,1481812124=>1,1481813229=>1,1481894304=>1,1481838316=>1,1481525819=>1,1481511312=>1,1481162380=>1,1480955021=>1,1481362317=>1,1481416745=>1,1481485440=>1,1481480360=>1,1481956866=>1,1482115144=>1,1483990412=>1,1483938828=>1,1484096290=>1,1484229102=>1,1484897127=>1,1484246062=>1,1483898909=>1,1483839449=>1,1482219535=>1,1482118351=>1,1482265807=>1,1482771967=>1,1483690708=>1,1483102181=>1,1480829974=>1,1480800891=>1,1475589572=>1,1475403752=>1,1475655097=>1,1475694784=>1,1475906872=>1,1475719666=>1,1475139569=>1,1475139411=>1,1475091355=>1,1474765197=>1,1475133999=>1,1475134263=>1,1475138475=>1,1475134393=>1,1476099915=>1,1476103261=>1,1478523989=>1,1477688860=>1,1478835028=>1,1480612761=>1,1480741848=>1,1480683522=>1,1477609315=>1,1477447028=>1,1476237503=>1,1476134307=>1,1476347620=>1,1476391403=>1,1477311881=>1,1485152948=>1,1485153071=>1,1487271081=>1,1487209806=>1,1487351004=>1,1487381390=>1,1487467095=>1,1487425932=>1,1487178952=>1,1486878064=>1,1486853734=>1,1486851311=>1,1486854242=>1,1486863726=>1,1486869375=>1,1486869141=>1,1487576078=>1,1487698061=>1,1488709915=>1,1488698072=>1,1488834101=>1,1488877151=>1,1488966689=>1,1488900100=>1,1488589324=>1,1488354461=>1,1487871928=>1,1487756509=>1,1487975431=>1,1488082634=>1,1488235839=>1,1486846994=>1,1486846151=>1,1486056627=>1,1486017098=>1,1486059807=>1,1486203567=>1,1486221603=>1,1486216483=>1,1485278325=>1,1485253075=>1,1485160737=>1,1485157868=>1,1485161340=>1,1485252881=>1,1485253031=>1,1485252996=>1,1486266755=>1,1486297578=>1,1486834771=>1,1486832809=>1,1486834969=>1,1486836724=>1,1486840524=>1,1486840249=>1,1486824901=>1,1486458312=>1,1486334062=>1,1486327774=>1,1486334192=>1,1486387392=>1,1486441874=>1,1474704223=>1,1474697621=>1,1467372725=>1,1467372589=>1,1467372790=>1,1467374635=>1,1467376315=>1,1467375331=>1,1467349075=>1,1467262684=>1,1466628470=>1,1466618092=>1,1466829445=>1,1466908679=>1,1467140089=>1,1467080320=>1,1467376694=>1,1467379358=>1,1467589504=>1,1467561193=>1,1467741822=>1,1467911823=>1,1468033010=>1,1468009337=>1,1467559589=>1,1467523607=>1,1467380963=>1,1467380358=>1,1467424912=>1,1467446060=>1,1467495155=>1,1467491598=>1,1466613599=>1,1466613230=>1,1466284427=>1,1466217413=>1,1466411873=>1,1466460816=>1,1466481499=>1,1466477708=>1,1466105172=>1,1466104564=>1,1466085949=>1,1466082114=>1,1466087685=>1,1466096020=>1,1466104542=>1,1466100089=>1,1466565476=>1,1466565822=>1,1466577301=>1,1466576527=>1,1466578822=>1,1466580140=>1,1466602767=>1,1466600472=>1,1466575640=>1,1466572986=>1,1466568911=>1,1466566275=>1,1466568968=>1,1466569229=>1,1466570061=>1,1468035006=>1,1468279872=>1,1472516229=>1,1472319502=>1,1472557478=>1,1472573948=>1,1472857949=>1,1472799515=>1,1472312302=>1,1472028984=>1,1471567229=>1,1471505316=>1,1471595306=>1,1471695507=>1,1471965560=>1,1471749407=>1,1472950506=>1,1472950508=>1,1474637147=>1,1474351859=>1,1474637148=>1,1474642277=>1,1474685898=>1,1474684610=>1,1474177518=>1,1474160751=>1,1472951115=>1,1472951034=>1,1473158363=>1,1473158596=>1,1473817523=>1,1471436443=>1,1471330431=>1,1469578853=>1,1469489446=>1,1469710394=>1,1469772901=>1,1469874346=>1,1469779418=>1,1469384336=>1,1469107596=>1,1468492309=>1,1468298283=>1,1468735961=>1,1468934528=>1,1469100965=>1,1468949033=>1,1469908566=>1,1469975782=>1,1471012097=>1,1470897873=>1,1471052374=>1,1471070928=>1,1471325625=>1,1471076848=>1,1470797742=>1,1470796778=>1,1470093752=>1,1470081602=>1,1470124332=>1,1470342245=>1,1470766732=>1,1489021582=>1,1489040714=>1,1495758900=>1,1495758899=>1,1495758901=>1,1495758904=>1,1495758922=>1,1495758920=>1,1495758897=>1,1495758896=>1,1495588239=>1,1495588220=>1,1495588271=>1,1495611421=>1,1495700341=>1,1495629831=>1,1495758973=>1,1495758977=>1,1495759306=>1,1495759218=>1,1495759307=>1,1495759312=>1,1495759314=>1,1495759313=>1,1495759133=>1,1495759098=>1,1495758984=>1,1495758983=>1,1495758986=>1,1495758995=>1,1495759000=>1,1495758998=>1,1495588126=>1,1495588050=>1,1495218437=>1,1495079501=>1,1495225186=>1,1495228584=>1,1495328294=>1,1495302063=>1,1495038388=>1,1495038387=>1,1494877501=>1,1494866378=>1,1494894470=>1,1494940989=>1,1494974032=>1,1494955036=>1,1495330678=>1,1495356202=>1,1495511656=>1,1495476075=>1,1495538240=>1,1495587660=>1,1495588034=>1,1495587873=>1,1495461156=>1,1495461141=>1,1495407178=>1,1495398002=>1,1495407299=>1,1495461131=>1,1495461132=>1,1495759317=>1,1495759355=>1,1499799100=>1,1499742591=>1,1499846358=>1,1499981393=>1,1500271403=>1,1499988917=>1,1499734397=>1,1499700101=>1,1499601890=>1,1499601092=>1,1499623652=>1,1499651148=>1,1499699999=>1,1499653161=>1,1500272702=>1,1500272889=>1,1500875229=>1,1500870625=>1,1500886201=>1,1500894689=>1,1466082043=>1,1500900121=>1,1500867565=>1,1500867489=>1,1500451908=>1,1500393482=>1,1500794109=>1,1500853205=>1,1500862177=>1,1499586994=>1,1499326846=>1,1496212642=>1,1496212616=>1,1496212917=>1,1496212918=>1,1496282338=>1,1496262550=>1,1496212551=>1,1496212493=>1,1495886435=>1,1495811989=>1,1495971235=>1,1496124149=>1,1496204898=>1,1496130452=>1,1497483590=>1,1497599244=>1,1498531574=>1,1498253486=>1,1498697390=>1,1499075925=>1,1499320219=>1,1499264499=>1,1498211557=>1,1498191317=>1,1497781322=>1,1497676739=>1,1497866526=>1,1497902285=>1,1497968238=>1,1494857654=>1,1494722455=>1,1489452410=>1,1489452408=>1,1489463369=>1,1489465302=>1,1489478789=>1,1489473708=>1,1489451158=>1,1489446397=>1,1489425411=>1,1489420889=>1,1489434643=>1,1489435917=>1,1489443784=>1,1489435931=>1,1489478796=>1,1489478798=>1,1490014757=>1,1489996266=>1,1490170023=>1,1490198165=>1,1490297485=>1,1490198205=>1,1489819258=>1,1489800922=>1,1489520996=>1,1489478801=>1,1489533269=>1,1489547123=>1,1489623517=>1,1489420881=>1,1489420679=>1,1489376004=>1,1489374938=>1,1489380388=>1,1489381090=>1,1489384339=>1,1489382545=>1,1489374891=>1,1489374123=>1,1489106736=>1,1489064292=>1,1489231580=>1,1489239670=>1,1489373456=>1,1489300525=>1,1489384502=>1,1489388905=>1,1489407310=>1,1489403233=>1,1489408507=>1,1489412922=>1,1489420444=>1,1489413339=>1,1489402488=>1,1489402011=>1,1489399269=>1,1489399189=>1,1489399448=>1,1489399490=>1,1489399671=>1,1490302517=>1,1490472793=>1,1494616202=>1,1494616190=>1,1494616243=>1,1494616247=>1,1494621559=>1,1494616255=>1,1494616182=>1,1494588782=>1,1494396016=>1,1494396004=>1,1494396201=>1,1494396435=>1,1494549640=>1,1494396502=>1,1494638906=>1,1494647398=>1,1494680925=>1,1494666271=>1,1494712578=>1,1494714578=>1,1494717204=>1,1494716192=>1,1494665913=>1,1494652785=>1,1494647840=>1,1494647400=>1,1494652162=>1,1494652245=>1,1494652373=>1,1494266014=>1,1494265316=>1,1491769253=>1,1491200158=>1,1492270945=>1,1492282903=>1,1492783426=>1,1492619930=>1,1491199559=>1,1490844358=>1,1490504602=>1,1490481704=>1,1490620947=>1,1490652981=>1,1490830014=>1,1490660321=>1,1492784191=>1,1492972633=>1,1494107354=>1,1494049374=>1,1494170861=>1,1494176473=>1,1494243896=>1,1494212145=>1,1494026164=>1,1493394563=>1,1493079285=>1,1493075841=>1,1493144600=>1,1493162966=>1,1493251861=>1,1501205857=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-18.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2026095040=>2026095111,2026094976=>2026095031,2026094936=>2026094967,2026094656=>2026094927,2016692296=>2016692303,2016692280=>2016692287,2016692248=>2016692271,1995766178=>1,1995765499=>1,1996394915=>1,1996593142=>1,1996578850=>1,1995766179=>1,1995420813=>1,1993479225=>1,1993595469=>1,1994780423=>1,1994943779=>1,1996614214=>1,1995025466=>1,1995025496=>1,1997098674=>1,1997706931=>1,1997658120=>1,1997707316=>1,1998325324=>1,1998327799=>1,1998326597=>1,1997495874=>1,1997495538=>1,1996944067=>1,1996896190=>1,1993457267=>1,1997144725=>1,1997456504=>1,1996631254=>1,1992424186=>1,1992372327=>1,1992372324=>1,1992372341=>1,1992373314=>1,1992393912=>1,1992380750=>1,1992363376=>1,1992362637=>1,1992332163=>1,1992331619=>1,1992332258=>1,1992332335=>1,1992334225=>1,1992399853=>1,1992403495=>1,1992423802=>1,1992423339=>1,1998328086=>1,1992475498=>1,1993408221=>1,1992476090=>1,1992423325=>1,1992419981=>1,1992407379=>1,1992405151=>1,1992409661=>1,1992416213=>1,1992418565=>1,1993446115=>1,1998405731=>1,2001839748=>1,2001831698=>1,2001855162=>1,2001856818=>1,2001861267=>1,2001860668=>1,2001830402=>1,2001807323=>1,2001503922=>1,2001503775=>1,2001504212=>1,2001745996=>1,2001807322=>1,2001805062=>1,2001862130=>1,2001862300=>1,2003415401=>1,2002887728=>1,2003715354=>1,2003716122=>1,2004380532=>1,2004060310=>1,2002880912=>1,2002653560=>1,2002422560=>1,2001927621=>1,2002533494=>1,2002604692=>1,2002652681=>1,2001469608=>1,2000653980=>1,1998430415=>1,1998427033=>1,1998789934=>1,1998883459=>1,1999510674=>1,1999093556=>1,1998425615=>1,1998419292=>1,1992137993=>1,1998404403=>1,1998407949=>1,1998414249=>1,1998418289=>1,1998418009=>1,1999550502=>1,1999592305=>1,2000115990=>1,2000001635=>1,2000250906=>1,2000266334=>1,2000628333=>1,2000487938=>1,1999975290=>1,1999937538=>1,1999592307=>1,1999592306=>1,1999870483=>1,1999899534=>1,1999912874=>1,1998336484=>1,1991905627=>1,1987207189=>1,1987202351=>1,1987389415=>1,1987774620=>1,1988005585=>1,1987801348=>1,1986735526=>1,1986735063=>1,1986315557=>1,1986244763=>1,1986364514=>1,1986432235=>1,1986734923=>1,1986455194=>1,1988379064=>1,1988414218=>1,1989176048=>1,1989175550=>1,1989185529=>1,1989187016=>1,1989187473=>1,1989187326=>1,1989159032=>1,1989150709=>1,1988486469=>1,1988461611=>1,1988495708=>1,1988922902=>1,1989149403=>1,1988962644=>1,1986228879=>1,1986226524=>1,1986120028=>1,1986117582=>1,1986121301=>1,1986122625=>1,1986122795=>1,1986122626=>1,1986117581=>1,1986116898=>1,1986106316=>1,1986103702=>1,1986106317=>1,1986106318=>1,1986112078=>1,1986112076=>1,1986125228=>1,1986129810=>1,1986183691=>1,1986176654=>1,1986183694=>1,1986189398=>1,1986226523=>1,1986226522=>1,1986143130=>1,1986133866=>1,1986132266=>1,1986130218=>1,1986132267=>1,1986132268=>1,1986132269=>1,1989187833=>1,1989189441=>1,1990995437=>1,1990995304=>1,1991000019=>1,1991026300=>1,1991030624=>1,1991029358=>1,1990988718=>1,1990988467=>1,1990864010=>1,1990863904=>1,1990888802=>1,1990907750=>1,1990988020=>1,1990951653=>1,1991066637=>1,1991168671=>1,1991498938=>1,1991243720=>1,1991654910=>1,1991817353=>1,1992100618=>1,2004503170=>1,1991243475=>1,1991243460=>1,1991185570=>1,1991180986=>1,1991204131=>1,1991223261=>1,1991241560=>1,1990863134=>1,1990861868=>1,1989660948=>1,1989203289=>1,1990279238=>1,1990280269=>1,1990282973=>1,1990280728=>1,1989203285=>1,1989198031=>1,1989193734=>1,1989192701=>1,1989194238=>1,1989196797=>1,1989197795=>1,1989196798=>1,1990282998=>1,1990312373=>1,1990752595=>1,1990711455=>1,1990860152=>1,1990861114=>1,1990861219=>1,1990861137=>1,1990580542=>1,1990449320=>1,1990313269=>1,1990312681=>1,1990410555=>1,1990412363=>1,1990421608=>1,1992115490=>1,2005410450=>1,2017032567=>1,2017032512=>1,2017032601=>1,2017032692=>1,2017032875=>1,2017032858=>1,2017032500=>1,2017032432=>1,2017032038=>1,2017032033=>1,2017032091=>1,2017032153=>1,2017032309=>1,2017032166=>1,2017033002=>1,2017033059=>1,2017034227=>1,2017034085=>1,2017042616=>1,2017042679=>1,2017045602=>1,2017044962=>1,2017033888=>1,2017033794=>1,2017033338=>1,2017033306=>1,2017033490=>1,2017033574=>1,2017033675=>1,2017032019=>1,2017031888=>1,2016979107=>1,2016978903=>1,2016979414=>1,2016979425=>1,2016979738=>1,2016979471=>1,2016978868=>1,2016978680=>1,2016933167=>1,2016889046=>1,2016977168=>1,2016977244=>1,2016978388=>1,2016978311=>1,2016979750=>1,2016979828=>1,2017031397=>1,2017031289=>1,2017031456=>1,2017031505=>1,2017031844=>1,2017031529=>1,2016980778=>1,2016980764=>1,2016980018=>1,2016979929=>1,2016980225=>1,2016980292=>1,2016980461=>1,2017046169=>1,2017046276=>1,2023227825=>1,2023168016=>1,2023562417=>1,2023579708=>1,2025984602=>1,2025872572=>1,2023166447=>1,2023051970=>1,2018870506=>1,2018832299=>1,2018933126=>1,2021868402=>1,2022329139=>1,2021884115=>1,2026001713=>1,2026015368=>1,2026094934=>1,2026094933=>1,2026094935=>1,2026094972=>1,2026094975=>1,2026094974=>1,2026072305=>1,2026072284=>1,2026036944=>1,2026036474=>1,2026036948=>1,2026036950=>1,2026043888=>1,2018831996=>1,2018831199=>1,2017142594=>1,2017142565=>1,2017142878=>1,2017142942=>1,2017143453=>1,2017143122=>1,2017142199=>1,2017142072=>1,2017141077=>1,2017140791=>1,2017141458=>1,2017141560=>1,2017142044=>1,2017141785=>1,2017143795=>1,2017173518=>1,2018755461=>1,2018721802=>1,2018760691=>1,2018830459=>1,2018830708=>1,2018830508=>1,2018006302=>1,2017177391=>1,2017174036=>1,2017173570=>1,2017176117=>1,2017176310=>1,2017176426=>1,2016692629=>1,2016692404=>1,2011904284=>1,2011902810=>1,2011904286=>1,2011954405=>1,2012063008=>1,2012015631=>1,2011902626=>1,2011823896=>1,2009202898=>1,2009202883=>1,2009878065=>1,2009878222=>1,2011318195=>1,2009878230=>1,2012074970=>1,2012240505=>1,2013077509=>1,2013048532=>1,2013156442=>1,2013157429=>1,2013202779=>1,2013202778=>1,2013047941=>1,2013044770=>1,2012672583=>1,2012618233=>1,2012716925=>1,2012717651=>1,2012739929=>1,2009202846=>1,2009202845=>1,2006151942=>1,2006144724=>1,2006151966=>1,2006163767=>1,2007020129=>1,2007007875=>1,2005989261=>1,2005722536=>1,2005383522=>1,2005140587=>1,2005410440=>1,1986101284=>1,2005722288=>1,2005410487=>1,2007020427=>1,2007020510=>1,2008838935=>1,2008833681=>1,2008838940=>1,2009202827=>1,2009202842=>1,2009202835=>1,2008784198=>1,2008655760=>1,2007077026=>1,2007021387=>1,2007081404=>1,2007423390=>1,2008242696=>1,2013202780=>1,2013202781=>1,2015715004=>1,2015222062=>1,2016545682=>1,2016556867=>1,2016692244=>1,2016692243=>1,2015206686=>1,2015206570=>1,2015063128=>1,2015062699=>1,2015064248=>1,2015065741=>1,2015205726=>1,2015112650=>1,2016692245=>1,2016692272=>1,2016692292=>1,2016692291=>1,2016692294=>1,2016692295=>1,2016692307=>1,2016692304=>1,2016692290=>1,2016692289=>1,2016692275=>1,2016692273=>1,2016692277=>1,2016692278=>1,2016692279=>1,2015046612=>1,2015046390=>1,2014883609=>1,2014882850=>1,2014884436=>1,2014894762=>1,2014902497=>1,2014895601=>1,2014881972=>1,2014881228=>1,2013618971=>1,2013202782=>1,2014853186=>1,2014855697=>1,2014878777=>1,2014919662=>1,2014920072=>1,2015000945=>1,2014998075=>1,2015005046=>1,2015021763=>1,2015046028=>1,2015022740=>1,2014995772=>1,2014989579=>1,2014962252=>1,2014960003=>1,2014963169=>1,2014979813=>1,2014986367=>1,2004918420=>1,1986101283=>1,1971845962=>1,1971845770=>1,1971907076=>1,1971907078=>1,1972707179=>1,1971907084=>1,1971845766=>1,1971845765=>1,1970871923=>1,1970639108=>1,1970923494=>1,1970923505=>1,1971557166=>1,1970978906=>1,1973163401=>1,1973163402=>1,1973338665=>1,1973327138=>1,1973553397=>1,1973560497=>1,1973575964=>1,1973575723=>1,1973326646=>1,1973326263=>1,1973163407=>1,1973163404=>1,1973163409=>1,1973163410=>1,1973289426=>1,1973163411=>1,1969702321=>1,1969650394=>1,1968054391=>1,1967591941=>1,1968054554=>1,1968054782=>1,1968134053=>1,1968054816=>1,1967500451=>1,1966858298=>1,1966619410=>1,1965344311=>1,1966712857=>1,1966810996=>1,1966856675=>1,1966856664=>1,1968205742=>1,1968304004=>1,1969640708=>1,1969638690=>1,1969641827=>1,1969642805=>1,1969649810=>1,1969646276=>1,1969621130=>1,1969512114=>1,1968402055=>1,1968374603=>1,1968414740=>1,1969156879=>1,1969496215=>1,1973581236=>1,1973581674=>1,1973741707=>1,1973741683=>1,1973742577=>1,1973743918=>1,1973744497=>1,1973744273=>1,1973721881=>1,1973678760=>1,1973677128=>1,1973674915=>1,1973677202=>1,1973677539=>1,1973678050=>1,1973678043=>1,1973745087=>1,1973745344=>1,1973787531=>1,1973786147=>1,1973788512=>1,1973789813=>1,1973789991=>1,1973789865=>1,1973785410=>1,1973773753=>1,1973760476=>1,1973760015=>1,1973760994=>1,1973772489=>1,1973772932=>1,1973663732=>1,1973662944=>1,1973606889=>1,1973605750=>1,1973606957=>1,1973610172=>1,1973617383=>1,1973615231=>1,1973600621=>1,1973599455=>1,1973582625=>1,1973581746=>1,1973583167=>1,1973584294=>1,1973599433=>1,1973584779=>1,1973619739=>1,1973620610=>1,1973658913=>1,1973658863=>1,1973659211=>1,1973659510=>1,1973662097=>1,1973659518=>1,1973647165=>1,1973646071=>1,1973630029=>1,1973620647=>1,1973630295=>1,1973642305=>1,1973645577=>1,1965344152=>1,1965068668=>1,1950920944=>1,1950844163=>1,1950941098=>1,1951035970=>1,1951206489=>1,1951141367=>1,1950677485=>1,1950533109=>1,1949440437=>1,1948208324=>1,1949441174=>1,1949805152=>1,1950023426=>1,1950023220=>1,1951221420=>1,1951606510=>1,1953906878=>1,1953906642=>1,1953907042=>1,1953907998=>1,1958861052=>1,1958763222=>1,1953786981=>1,1953616626=>1,1952108675=>1,1951874912=>1,1952109452=>1,1952266753=>1,1953522730=>1,1953246217=>1,1948208291=>1,1948183770=>1,1945198450=>1,1945198401=>1,1945276439=>1,1945297430=>1,1945665706=>1,1945661658=>1,1945190002=>1,1945096983=>1,1944559155=>1,1944485764=>1,1944848619=>1,1944888957=>1,1945035785=>1,1945035034=>1,1945681127=>1,1945689659=>1,1946824195=>1,1946639904=>1,1947753573=>1,1947851435=>1,1948040261=>1,1948008953=>1,1946569210=>1,1946567519=>1,1945716738=>1,1945690437=>1,1945920757=>1,1945935293=>1,1946297957=>1,1958861914=>1,1958862066=>1,1962075081=>1,1961673864=>1,1962281091=>1,1962281092=>1,1962281094=>1,1962281093=>1,1961366044=>1,1961350869=>1,1961035215=>1,1960998422=>1,1961136072=>1,1961152586=>1,1961345886=>1,1961302057=>1,1962372723=>1,1962510166=>1,1964258193=>1,1964139513=>1,1964259458=>1,1964323608=>1,1964605934=>1,1964323612=>1,1964133355=>1,1963989032=>1,1962918105=>1,1962719498=>1,1963295311=>1,1963765184=>1,1963858777=>1,1960995214=>1,1960994857=>1,1959485965=>1,1959241868=>1,1959486760=>1,1959490841=>1,1959529597=>1,1959498292=>1,1959102444=>1,1959102442=>1,1959102019=>1,1959101270=>1,1959102290=>1,1959102291=>1,1959102314=>1,1959102292=>1,1959547383=>1,1959549831=>1,1960095922=>1,1960091432=>1,1960129370=>1,1960132266=>1,1960985606=>1,1960969323=>1,1960090991=>1,1960089705=>1,1959600772=>1,1959593219=>1,1959807382=>1,1959808355=>1,1959990217=>1,1973790615=>1,1973790715=>1,1976783453=>1,1976783447=>1,1976783463=>1,1976790566=>1,1976790644=>1,1976790622=>1,1976783436=>1,1976783434=>1,1976783391=>1,1976783384=>1,1976783400=>1,1976783404=>1,1976783425=>1,1976783405=>1,1976790672=>1,1976790673=>1,1977492869=>1,1977492204=>1,1978601586=>1,1978602054=>1,1978610024=>1,1978604161=>1,1977436584=>1,1977234054=>1,1976790730=>1,1976790699=>1,1976790781=>1,1976804012=>1,1977224514=>1,1977167916=>1,1976781367=>1,1976778073=>1,1976266866=>1,1976137753=>1,1976407368=>1,1976412657=>1,1976609515=>1,1976475916=>1,1976135125=>1,1976134860=>1,1975740104=>1,1975721981=>1,1975948254=>1,1975950882=>1,1976132930=>1,1976131760=>1,1976609627=>1,1976769286=>1,1976769384=>1,1976769379=>1,1976769428=>1,1976769439=>1,1976778034=>1,1976773556=>1,1976769375=>1,1976769358=>1,1976769311=>1,1976769307=>1,1976769313=>1,1976769318=>1,1976769346=>1,1978647581=>1,1978648507=>1,1986074875=>1,1986074874=>1,1986075042=>1,1986076274=>1,1986076898=>1,1986076338=>1,1986074802=>1,1986074697=>1,1986072059=>1,1986072058=>1,1986072060=>1,1986072538=>1,1986074485=>1,1986074482=>1,1986078083=>1,1986079038=>1,1986092740=>1,1986092739=>1,1986093674=>1,1986097578=>1,1986101282=>1,1986101050=>1,1986089676=>1,1986088311=>1,1986081700=>1,1986079387=>1,1986084626=>1,1986085378=>1,1986087252=>1,1986041206=>1,1986038279=>1,1981445647=>1,1981445313=>1,1981452234=>1,1981473437=>1,1982055747=>1,1981988984=>1,1981431530=>1,1979624309=>1,1978710832=>1,1978710819=>1,1978716455=>1,1978777949=>1,1979169498=>1,1978929139=>1,1984280468=>1,1984319613=>1,1985865079=>1,1985788277=>1,1986013846=>1,1986031068=>1,1986036867=>1,1986033882=>1,1985787953=>1,1985786229=>1,1984319624=>1,1984319619=>1,1984331783=>1,1984958162=>1,1984985325=>1,1975709678=>1,1975690489=>1,1973977724=>1,1973977683=>1,1973977885=>1,1973985720=>1,1973991444=>1,1973986882=>1,1973975979=>1,1973975611=>1,1973955381=>1,1973940007=>1,1973958731=>1,1973959108=>1,1973973784=>1,1973970097=>1,1973994233=>1,1973997398=>1,1974075793=>1,1974075606=>1,1974076143=>1,1974077549=>1,1974079213=>1,1974077827=>1,1974072891=>1,1974057727=>1,1973998802=>1,1973998746=>1,1974003197=>1,1974004005=>1,1974027722=>1,1974026982=>1,1973937930=>1,1973937742=>1,1973802071=>1,1973801764=>1,1973825607=>1,1973830902=>1,1973834535=>1,1973833635=>1,1973799475=>1,1973793372=>1,1973791847=>1,1973791046=>1,1973792743=>1,1973792839=>1,1973793260=>1,1973792991=>1,1973835620=>1,1973840077=>1,1973932821=>1,1973907417=>1,1973934381=>1,1973934541=>1,1973937162=>1,1973936953=>1,1973898656=>1,1973897567=>1,1973841356=>1,1973840306=>1,1973844541=>1,1973893343=>1,1973896638=>1,1974079321=>1,1974080304=>1,1974179942=>1,1974176958=>1,1974181417=>1,1974398261=>1,1974598290=>1,1974458070=>1,1974176688=>1,1974173420=>1,1974165898=>1,1974164572=>1,1974168153=>1,1974170041=>1,1974171082=>1,1974170898=>1,1974598291=>1,1974598292=>1,1974650295=>1,1974634543=>1,1975651478=>1,1975652916=>1,1975673700=>1,1975653356=>1,1974627808=>1,1974612930=>1,1974598295=>1,1974598293=>1,1974598297=>1,1974598299=>1,1974609231=>1,1974156949=>1,1974152045=>1,1974105924=>1,1974087620=>1,1974109073=>1,1974110470=>1,1974111491=>1,1974111171=>1,1974085572=>1,1974085301=>1,1974084260=>1,1974081295=>1,1974084780=>1,1974084908=>1,1974085244=>1,1974084975=>1,1974113614=>1,1974117894=>1,1974147745=>1,1974147510=>1,1974149070=>1,1974150366=>1,1974151715=>1,1974151639=>1,1974147378=>1,1974146735=>1,1974129068=>1,1974127151=>1,1974131029=>1,1974146407=>1,1974146440=>1,1944350674=>1,);?>
1
+ <?php return array(1567838208=>1567842303,1567763544=>1567764479,1567763528=>1567763535,1567762824=>1567763519,1567762432=>1567762815,1558113648=>1558113655,1558113632=>1558113639,1558113608=>1558113623,1558113584=>1558113591,1558113568=>1558113575,1558113544=>1558113551,1542379008=>1542379519,1581956216=>1,1582245082=>1,1581956211=>1,1582194902=>1,1582145968=>1,1582270902=>1,1582028204=>1,1582067235=>1,1581997346=>1,1583616674=>1,1583634292=>1,1583628034=>1,1583687441=>1,1583726424=>1,1583726429=>1,1583726427=>1,1583627522=>1,1583627010=>1,1581956199=>1,1583307166=>1,1583624450=>1,1583624758=>1,1583625218=>1,1582280162=>1,1581954401=>1,1579846666=>1,1579754797=>1,1579751544=>1,1580041918=>1,1580042771=>1,1580371516=>1,1580059102=>1,1579700980=>1,1579103691=>1,1578798230=>1,1578782020=>1,1578920658=>1,1578920950=>1,1579070898=>1,1578953029=>1,1580398919=>1,1580428577=>1,1581952657=>1,1581941910=>1,1581941902=>1,1581952696=>1,1581953185=>1,1583726434=>1,1581954315=>1,1581903364=>1,1581902345=>1,1581464270=>1,1581055786=>1,1581586672=>1,1581732740=>1,1581818997=>1,1581732879=>1,1581955279=>1,1583757071=>1,1587130338=>1,1586427342=>1,1587158912=>1,1587207775=>1,1587228975=>1,1587208297=>1,1586426452=>1,1586426250=>1,1586325195=>1,1586324923=>1,1586325203=>1,1586341899=>1,1586424089=>1,1587301801=>1,1587301824=>1,1588929088=>1,1588929085=>1,1588968981=>1,1589061916=>1,1589103691=>1,1589096277=>1,1588922449=>1,1588920952=>1,1587321750=>1,1587314698=>1,1587468879=>1,1588464247=>1,1588884246=>1,1586324595=>1,1586324499=>1,1583853398=>1,1583853397=>1,1584497461=>1,1584509093=>1,1584551213=>1,1584534404=>1,1583800963=>1,1583800960=>1,1583755818=>1,1583726580=>1,1583756721=>1,1578700734=>1,1583757690=>1,1584577608=>1,1585297569=>1,1586220217=>1,1586220136=>1,1586221538=>1,1586264173=>1,1586293306=>1,1586220082=>1,1586170130=>1,1585359525=>1,1585321902=>1,1585896124=>1,1585995670=>1,1586091186=>1,1583726436=>1,1578625715=>1,1572643441=>1,1572522197=>1,1572674070=>1,1572678220=>1,1572687873=>1,1572678409=>1,1572522052=>1,1572511803=>1,1572435490=>1,1572433343=>1,1572436390=>1,1572451402=>1,1572495839=>1,1572488718=>1,1572688002=>1,1572688305=>1,1572972737=>1,1572968602=>1,1573215406=>1,1573279076=>1,1573313723=>1,1573279721=>1,1572959134=>1,1572895930=>1,1572688433=>1,1572688321=>1,1572769139=>1,1572831484=>1,1572895623=>1,1572356835=>1,1572347014=>1,1571528452=>1,1571465558=>1,1571540258=>1,1571550737=>1,1571707273=>1,1571698514=>1,1571460577=>1,1571453912=>1,1570691214=>1,1570690990=>1,1570696138=>1,1571442094=>1,1571453765=>1,1571451714=>1,1571707422=>1,1571708293=>1,1572182685=>1,1572117914=>1,1572253081=>1,1572296144=>1,1572313936=>1,1572313895=>1,1572117588=>1,1572117086=>1,1571782058=>1,1571708712=>1,1571808616=>1,1571963457=>1,1572079606=>1,1573353998=>1,1573444068=>1,1578572926=>1,1578571203=>1,1578577414=>1,1578578873=>1,1578586438=>1,1578583774=>1,1578570780=>1,1578570409=>1,1578127392=>1,1578125482=>1,1578140878=>1,1578141959=>1,1578471585=>1,1578428914=>1,1578587459=>1,1578604223=>1,1578621888=>1,1578618445=>1,1578622386=>1,1589105848=>1,1578629278=>1,1578628906=>1,1578618031=>1,1578615956=>1,1578605825=>1,1578605111=>1,1578606129=>1,1578608593=>1,1578615720=>1,1577441109=>1,1575999097=>1,1574692774=>1,1574665413=>1,1574716603=>1,1574722056=>1,1574885805=>1,1574814612=>1,1574657188=>1,1574616632=>1,1573870755=>1,1573834864=>1,1574174467=>1,1574584411=>1,1574592946=>1,1574592598=>1,1574888588=>1,1574927589=>1,1575774675=>1,1575696309=>1,1575847758=>1,1575849510=>1,1575976367=>1,1575857528=>1,1575696152=>1,1575543620=>1,1574958490=>1,1574943728=>1,1575194533=>1,1575370457=>1,1575480360=>1,1578630175=>1,1589114703=>1,1595877073=>1,1595875411=>1,1595884783=>1,1595923986=>1,1596079098=>1,1595929095=>1,1595873426=>1,1595872609=>1,1595725905=>1,1595671848=>1,1595812538=>1,1595833686=>1,1595870374=>1,1595867762=>1,1596088445=>1,1596127183=>1,1597168212=>1,1597155186=>1,1597438161=>1,1597439631=>1,1597526823=>1,1597526786=>1,1596964365=>1,1596955897=>1,1596331422=>1,1596278525=>1,1596604905=>1,1596616147=>1,1596955701=>1,1596945518=>1,1595646892=>1,1595622249=>1,1593309555=>1,1593309474=>1,1593309583=>1,1593309648=>1,1593352089=>1,1593309822=>1,1593305336=>1,1593255334=>1,1593129519=>1,1593129453=>1,1593151202=>1,1593152278=>1,1593158705=>1,1593155873=>1,1593510154=>1,1593659241=>1,1595400097=>1,1595055602=>1,1595441927=>1,1595451018=>1,1595531652=>1,1595510052=>1,1594839047=>1,1594742633=>1,1594454074=>1,1593829656=>1,1594456974=>1,1594464981=>1,1594742029=>1,1594525410=>1,1597601909=>1,1597652922=>1,1599404735=>1,1599394174=>1,1599407916=>1,1599408354=>1,1599410990=>1,1599408711=>1,1599391284=>1,1599389080=>1,1599200248=>1,1599195197=>1,1599296609=>1,1599299252=>1,1599383788=>1,1599382562=>1,1599411176=>1,1599411273=>1,1599706308=>1,1599704048=>1,1599706689=>1,1599799977=>1,1599802059=>1,1599801594=>1,1599668243=>1,1599658767=>1,1599415663=>1,1599411379=>1,1599419554=>1,1599428392=>1,1599626646=>1,1599621996=>1,1599103529=>1,1599089994=>1,1598249770=>1,1598249588=>1,1598257841=>1,1598282097=>1,1598404813=>1,1598313852=>1,1598240818=>1,1598232942=>1,1598101881=>1,1598073824=>1,1598113163=>1,1598113874=>1,1598127409=>1,1598119835=>1,1598416920=>1,1598417363=>1,1599011617=>1,1598991544=>1,1599034011=>1,1599037447=>1,1599074981=>1,1599062615=>1,1598979902=>1,1598914249=>1,1598521062=>1,1598421529=>1,1598550286=>1,1598570815=>1,1598663238=>1,1593116888=>1,1593115389=>1,1591135299=>1,1591084128=>1,1591271840=>1,1591278737=>1,1591356823=>1,1591330289=>1,1590957304=>1,1590836245=>1,1590630909=>1,1590537093=>1,1590683362=>1,1590805401=>1,1590834538=>1,1590820892=>1,1591360744=>1,1591493597=>1,1592085157=>1,1592052989=>1,1592089394=>1,1592089395=>1,1592129337=>1,1592123870=>1,1592051282=>1,1592022539=>1,1591648217=>1,1591645944=>1,1591677410=>1,1591749794=>1,1592007976=>1,1591953828=>1,1590514091=>1,1590480501=>1,1590060049=>1,1590059591=>1,1590060050=>1,1590087707=>1,1590087723=>1,1590087712=>1,1590052012=>1,1590034693=>1,1589204330=>1,1570688447=>1,1589205590=>1,1589386376=>1,1589768158=>1,1589535508=>1,1590087733=>1,1590087738=>1,1590283772=>1,1590265595=>1,1590312369=>1,1590344600=>1,1590373089=>1,1590348749=>1,1590259654=>1,1590230255=>1,1590127682=>1,1590113125=>1,1590182606=>1,1590224770=>1,1590224773=>1,1592159643=>1,1592162499=>1,1592971794=>1,1592971764=>1,1592972206=>1,1592972239=>1,1592974871=>1,1592972286=>1,1592971640=>1,1592969028=>1,1592932915=>1,1592932866=>1,1592933307=>1,1592968122=>1,1592968946=>1,1592968886=>1,1592975063=>1,1592976491=>1,1592997287=>1,1592996562=>1,1593020186=>1,1593026490=>1,1593092628=>1,1593060919=>1,1592982876=>1,1592982569=>1,1592976558=>1,1592976492=>1,1592977250=>1,1592978337=>1,1592981016=>1,1592981015=>1,1592932820=>1,1592932646=>1,1592305763=>1,1592279400=>1,1592370252=>1,1592850206=>1,1592894236=>1,1592894016=>1,1592245830=>1,1592241368=>1,1592195098=>1,1592167187=>1,1592226950=>1,1592228168=>1,1592235199=>1,1592230536=>1,1592894456=>1,1592894599=>1,1592898031=>1,1592897990=>1,1592898067=>1,1592898103=>1,1592898248=>1,1592898106=>1,1592897793=>1,1592894906=>1,1592894699=>1,1592894666=>1,1592894706=>1,1592894709=>1,1592894863=>1,1589109841=>1,1570613439=>1,1546801610=>1,1546794306=>1,1546803226=>1,1546819646=>1,1546826890=>1,1546822134=>1,1546788674=>1,1546573690=>1,1546358230=>1,1546331642=>1,1546549858=>1,1546550547=>1,1546565203=>1,1546550705=>1,1546849388=>1,1546865142=>1,1547449435=>1,1546944918=>1,1547600686=>1,1547613091=>1,1547627779=>1,1547624708=>1,1546929715=>1,1546920013=>1,1546869980=>1,1546866046=>1,1546880259=>1,1546883797=>1,1546884192=>1,1546330662=>1,1546328081=>1,1542733575=>1,1542695891=>1,1542791625=>1,1542804770=>1,1543114208=>1,1542908278=>1,1542695890=>1,1542693834=>1,1542594314=>1,1542591645=>1,1542597717=>1,1542597883=>1,1542655003=>1,1542627829=>1,1543131445=>1,1543131594=>1,1546026636=>1,1546026627=>1,1546026645=>1,1546029707=>1,1546328070=>1,1546122797=>1,1546023824=>1,1545275345=>1,1543172593=>1,1543140281=>1,1543736986=>1,1544377947=>1,1544876798=>1,1547653491=>1,1547655132=>1,1553212654=>1,1552891523=>1,1553248429=>1,1554217303=>1,1555718432=>1,1554606344=>1,1551082459=>1,1550779569=>1,1550319790=>1,1550039608=>1,1550415554=>1,1550597625=>1,1550748186=>1,1550671153=>1,1556285669=>1,1556753321=>1,1557595111=>1,1557579639=>1,1557727238=>1,1557936047=>1,1558010529=>1,1557940940=>1,1557383112=>1,1557353304=>1,1557027951=>1,1557010973=>1,1557060626=>1,1557178192=>1,1557340211=>1,1550030773=>1,1549410488=>1,1548092785=>1,1547677255=>1,1548105254=>1,1548381475=>1,1548396454=>1,1548382406=>1,1547677220=>1,1547676952=>1,1547659354=>1,1547655215=>1,1547659622=>1,1547660894=>1,1547676623=>1,1547660924=>1,1548432659=>1,1548531615=>1,1549212877=>1,1549212850=>1,1549218101=>1,1549218102=>1,1549331763=>1,1549223439=>1,1549212849=>1,1549212826=>1,1548576408=>1,1548535565=>1,1548628277=>1,1548921346=>1,1549211597=>1,1542590461=>1,1542526290=>1,1541560593=>1,1541555258=>1,1541563939=>1,1541566529=>1,1541566531=>1,1541566530=>1,1541473543=>1,1541462388=>1,1541444873=>1,1541339784=>1,1541444897=>1,1541444919=>1,1541460154=>1,1541453388=>1,1541566532=>1,1541566550=>1,1541623041=>1,1541610601=>1,1541681411=>1,1541682362=>1,1541707572=>1,1541682518=>1,1541595397=>1,1541592224=>1,1541566571=>1,1541566555=>1,1541566882=>1,1541586952=>1,1541586967=>1,1541307800=>1,1541307717=>1,1541140189=>1,1541139956=>1,1541162342=>1,1541200901=>1,1541220947=>1,1541217698=>1,1541139941=>1,1541139829=>1,1541139674=>1,1541139622=>1,1541139678=>1,1541139688=>1,1541139787=>1,1541139731=>1,1541227228=>1,1541230262=>1,1541255616=>1,1541244576=>1,1541262497=>1,1541269842=>1,1541303569=>1,1541291594=>1,1541244555=>1,1541244550=>1,1541238276=>1,1541238213=>1,1541244504=>1,1541244536=>1,1541244549=>1,1541714818=>1,1541719580=>1,1542254476=>1,1542254471=>1,1542257432=>1,1542257438=>1,1542272614=>1,1542272170=>1,1542222935=>1,1542190942=>1,1542097388=>1,1542097381=>1,1542110931=>1,1542111044=>1,1542150974=>1,1542119971=>1,1542281319=>1,1542297156=>1,1542470842=>1,1542418565=>1,1542471144=>1,1542472343=>1,1542514115=>1,1542472456=>1,1542392811=>1,1542354886=>1,1542321214=>1,1542301842=>1,1542321982=>1,1542324222=>1,1542331840=>1,1542097350=>1,1542097128=>1,1541979156=>1,1541979147=>1,1541986578=>1,1542008930=>1,1542013722=>1,1542013702=>1,1541925319=>1,1541887692=>1,1541754176=>1,1541739547=>1,1541852240=>1,1541865157=>1,1541887589=>1,1542013787=>1,1542013793=>1,1542096073=>1,1542095888=>1,1542096752=>1,1542096755=>1,1542097014=>1,1542096890=>1,1542032204=>1,1542026577=>1,1542023801=>1,1542013912=>1,1542023917=>1,1542026291=>1,1542026359=>1,1558038922=>1,1558053990=>1,1567151740=>1,1567151425=>1,1567206258=>1,1567548217=>1,1567690004=>1,1567689994=>1,1567151357=>1,1567150910=>1,1567089481=>1,1567076168=>1,1567140824=>1,1567150186=>1,1567150494=>1,1567150397=>1,1567690016=>1,1567690022=>1,1567690180=>1,1567690177=>1,1567690221=>1,1567690238=>1,1567690389=>1,1567690378=>1,1567690166=>1,1567690154=>1,1567690068=>1,1567690042=>1,1567690075=>1,1567690096=>1,1567690132=>1,1566866770=>1,1566827672=>1,1566233841=>1,1566233823=>1,1566234436=>1,1566235011=>1,1566236252=>1,1566235074=>1,1566233794=>1,1566233678=>1,1566232821=>1,1566232819=>1,1566232822=>1,1566233611=>1,1566233677=>1,1566233613=>1,1566248644=>1,1566257809=>1,1566565446=>1,1566565425=>1,1566565471=>1,1566565501=>1,1566823468=>1,1566565571=>1,1566565365=>1,1566546605=>1,1566361667=>1,1566286552=>1,1566464785=>1,1566478891=>1,1566532774=>1,1567690391=>1,1567690394=>1,1568545282=>1,1568544334=>1,1568546148=>1,1568553549=>1,1568674603=>1,1568634054=>1,1568483343=>1,1568399767=>1,1568176262=>1,1568016484=>1,1568176398=>1,1568365069=>1,1568389754=>1,1568384141=>1,1568785344=>1,1569002118=>1,1570631655=>1,1541139591=>1,1570631658=>1,1570631673=>1,1570685271=>1,1570685259=>1,1570583318=>1,1570523911=>1,1569634382=>1,1569426439=>1,1570211863=>1,1570283487=>1,1570482188=>1,1567896029=>1,1567879618=>1,1567762820=>1,1567696114=>1,1567762822=>1,1567762823=>1,1567763521=>1,1567763520=>1,1567690490=>1,1567690481=>1,1567690414=>1,1567690413=>1,1567690416=>1,1567690421=>1,1567690440=>1,1567690427=>1,1567763523=>1,1567763540=>1,1567842255=>1,1567842254=>1,1567842264=>1,1567842548=>1,1567879426=>1,1567842802=>1,1567842253=>1,1567842252=>1,1567763542=>1,1567763541=>1,1567772420=>1,1567842249=>1,1567842250=>1,1566232818=>1,1566232801=>1,1558113565=>1,1558113563=>1,1558113580=>1,1558113581=>1,1558113592=>1,1558113583=>1,1558113562=>1,1558113561=>1,1558113543=>1,1558113539=>1,1558113552=>1,1558113553=>1,1558113557=>1,1558113555=>1,1558113596=>1,1558113597=>1,1558113626=>1,1558113625=>1,1558113628=>1,1558113629=>1,1558113640=>1,1558113631=>1,1558113624=>1,1558113606=>1,1558113602=>1,1558113601=>1,1558113603=>1,1558113604=>1,1558113605=>1,1558113538=>1,1558113537=>1,1558060175=>1,1558059455=>1,1558061403=>1,1558062659=>1,1558079465=>1,1558063031=>1,1558058967=>1,1558058946=>1,1558055221=>1,1558054412=>1,1558055238=>1,1558058114=>1,1558058609=>1,1558058533=>1,1558079466=>1,1558080471=>1,1558099323=>1,1558099304=>1,1558105184=>1,1558106419=>1,1558109662=>1,1558106799=>1,1558096246=>1,1558094390=>1,1558080830=>1,1558080811=>1,1558085477=>1,1558092179=>1,1558092351=>1,1558113641=>1,1558113642=>1,1561701214=>1,1561615427=>1,1562364960=>1,1563337484=>1,1563607301=>1,1563605640=>1,1560279874=>1,1560276564=>1,1560259798=>1,1560195275=>1,1560260746=>1,1560263643=>1,1560268633=>1,1560267284=>1,1563663981=>1,1563675709=>1,1565206889=>1,1565026748=>1,1565445763=>1,1565547380=>1,1566232794=>1,1566232773=>1,1565025550=>1,1565010950=>1,1563686760=>1,1563675738=>1,1564085016=>1,1564446352=>1,1564528439=>1,1560164689=>1,1560155203=>1,1558640051=>1,1558310557=>1,1558674770=>1,1558823468=>1,1559292462=>1,1558979105=>1,1558272910=>1,1558202220=>1,1558113646=>1,1558113644=>1,1558113660=>1,1558113661=>1,1558183329=>1,1559373966=>1,1559379249=>1,1559723510=>1,1559723450=>1,1559723830=>1,1559723833=>1,1560036326=>1,1559859063=>1,1559704489=>1,1559675571=>1,1559429299=>1,1559419406=>1,1559437008=>1,1559446889=>1,1559502597=>1,1570687878=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-19.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2026098344=>2026098687,2026098328=>2026098335,2026098312=>2026098319,2026098080=>2026098303,2026098008=>2026098071,2026097904=>2026097999,2026097856=>2026097895,2026097608=>2026097663,2026097496=>2026097599,2026097288=>2026097487,2026097224=>2026097279,2026097160=>2026097215,2026097120=>2026097151,2026097104=>2026097111,2026097000=>2026097095,2026096984=>2026096991,2026096960=>2026096975,2026096784=>2026096951,2026096760=>2026096775,2026096728=>2026096751,2026096632=>2026096719,2026096568=>2026096623,2026096488=>2026096559,2026096432=>2026096479,2026095928=>2026096423,2026095704=>2026095919,2026095360=>2026095695,2026095240=>2026095351,2026095224=>2026095231,2026095120=>2026095215,2079532809=>1,2079259560=>1,2086585630=>1,2079212314=>1,2086526559=>1,2086216045=>1,2086159137=>1,2086215996=>1,2080270390=>1,2079925004=>1,2086216654=>1,2085812474=>1,2079096207=>1,2087965470=>1,2079001835=>1,2087968652=>1,2088039143=>1,2087983798=>1,2087803935=>1,2087803934=>1,2079156456=>1,2087533891=>1,2079155589=>1,2087545563=>1,2087803930=>1,2087342376=>1,2085700465=>1,2083060098=>1,2081272262=>1,2083129191=>1,2083456806=>1,2083456813=>1,2081146060=>1,2082363370=>1,2082363369=>1,2081296412=>1,2081296411=>1,2081462310=>1,2082035097=>1,2082179852=>1,2083463467=>1,2083504732=>1,2081130247=>1,2085140403=>1,2081291144=>1,2085700578=>1,2085714178=>1,2081142836=>1,2084820740=>1,2081145778=>1,2084588048=>1,2084611288=>1,2081145752=>1,2084783002=>1,2081014111=>1,2088239391=>1,2088240229=>1,2088240219=>1,2088240201=>1,2088240234=>1,2088240241=>1,2088240290=>1,2088240289=>1,2088240199=>1,2088240179=>1,2088240026=>1,2088240003=>1,2088240049=>1,2088240071=>1,2088240122=>1,2088240080=>1,2088240292=>1,2088240331=>1,2088240608=>1,2088240562=>1,2088240626=>1,2088240649=>1,2088240689=>1,2088240656=>1,2088240549=>1,2088240530=>1,2088240436=>1,2088240427=>1,2088240452=>1,2088240469=>1,2088240483=>1,2088240477=>1,2088240002=>1,2088239996=>1,2088239535=>1,2088239502=>1,2088239484=>1,2088239547=>1,2088239552=>1,2088239628=>1,2088239611=>1,2088239450=>1,2078989186=>1,2088239297=>1,2088239194=>1,2088239334=>1,2088239370=>1,2088239381=>1,2088239372=>1,2088239629=>1,2088239650=>1,2088239938=>1,2088239896=>1,2088239941=>1,2088239943=>1,2088239967=>1,2088239961=>1,2088239888=>1,2088239846=>1,2088239672=>1,2088239661=>1,2088239684=>1,2088239774=>1,2088239821=>1,2088239786=>1,2088239173=>1,2076710130=>1,2067367280=>1,2067348269=>1,2067368980=>1,2067393033=>1,2067472890=>1,2067433762=>1,2067343868=>1,2067342467=>1,2067325566=>1,2067313140=>1,2067326176=>1,2067333380=>1,2067341885=>1,2067339122=>1,2067481695=>1,2067483142=>1,2070842497=>1,2070350119=>1,2070962928=>1,2070963514=>1,2071370124=>1,2071302155=>1,2068645734=>1,2068342830=>1,2067486615=>1,2067485318=>1,2067506822=>1,2067913080=>1,2067913111=>1,2067309495=>1,2067298620=>1,2066898132=>1,2066824438=>1,2066983480=>1,2066983481=>1,2067038723=>1,2066983482=>1,2066821746=>1,2066817539=>1,2065617759=>1,2065612685=>1,2065618000=>1,2065634808=>1,2066817532=>1,2067064990=>1,2067091320=>1,2067238802=>1,2067138087=>1,2067274948=>1,2067278414=>1,2067291716=>1,2067289772=>1,2067138085=>1,2067137862=>1,2067136809=>1,2067136530=>1,2067137298=>1,2067137301=>1,2067137861=>1,2071370258=>1,2071385769=>1,2076394624=>1,2076260178=>1,2076415175=>1,2076473462=>1,2076710074=>1,2076708830=>1,2075847225=>1,2075459704=>1,2074293272=>1,2074261065=>1,2075142341=>1,2075142343=>1,2075158093=>1,2088240693=>1,2076771419=>1,2077739733=>1,2077010746=>1,2077739749=>1,2077877191=>1,2078799346=>1,2078795190=>1,2076999696=>1,2076998534=>1,2076792466=>1,2076774781=>1,2076815718=>1,2076819017=>1,2076846506=>1,2074261064=>1,2074261063=>1,2072117710=>1,2072113326=>1,2072118559=>1,2072383383=>1,2072696923=>1,2072517034=>1,2072113325=>1,2071882942=>1,2071508598=>1,2071385959=>1,2071545270=>1,2071767189=>1,2071847556=>1,2072696924=>1,2072721642=>1,2073926458=>1,2073912204=>1,2073927314=>1,2073940286=>1,2074261062=>1,2073946506=>1,2073912203=>1,2073198607=>1,2072722418=>1,2072722164=>1,2072729682=>1,2072729686=>1,2072952782=>1,2078811502=>1,2088241231=>1,2088255331=>1,2088255213=>1,2088255443=>1,2088255459=>1,2088255496=>1,2088255463=>1,2088255201=>1,2088254954=>1,2088254519=>1,2088254363=>1,2088254702=>1,2088254820=>1,2088254907=>1,2088254860=>1,2088255583=>1,2088255649=>1,2088256323=>1,2088256252=>1,2088256327=>1,2088256402=>1,2088256571=>1,2088256489=>1,2088256162=>1,2088256042=>1,2088255808=>1,2088255757=>1,2088255863=>1,2088255878=>1,2088255912=>1,2088254323=>1,2088254161=>1,2088253193=>1,2088253045=>1,2088253255=>1,2088253270=>1,2088253291=>1,2088253288=>1,2088253032=>1,2088253030=>1,2088252740=>1,2088252734=>1,2088252743=>1,2088252752=>1,2088252820=>1,2088253301=>1,2088253317=>1,2088253745=>1,2088253680=>1,2088253891=>1,2088253895=>1,2088254058=>1,2088253934=>1,2088253624=>1,2088253588=>1,2088253465=>1,2088253342=>1,2088253474=>1,2088253516=>1,2088253540=>1,2088256882=>1,2088256925=>1,2088257952=>1,2088257948=>1,2088257966=>1,2088257970=>1,2088258022=>1,2088257993=>1,2088257943=>1,2088257915=>1,2088257851=>1,2088257845=>1,2088257862=>1,2088257863=>1,2088257908=>1,2088257900=>1,2088258045=>1,2088258072=>1,2088258278=>1,2088258241=>1,2088258284=>1,2088258316=>1,2088258334=>1,2088258331=>1,2088258206=>1,2088258138=>1,2088258098=>1,2088258096=>1,2088258106=>1,2088258109=>1,2088258114=>1,2088257769=>1,2088257761=>1,2088257127=>1,2088257111=>1,2088257191=>1,2088257195=>1,2088257335=>1,2088257215=>1,2088257109=>1,2088257088=>1,2088257047=>1,2088257000=>1,2088257055=>1,2088257059=>1,2088257072=>1,2088257340=>1,2088257448=>1,2088257686=>1,2088257649=>1,2088257714=>1,2088257724=>1,2088257752=>1,2088257725=>1,2088257634=>1,2088257578=>1,2088257497=>1,2088257494=>1,2088257499=>1,2088257514=>1,2088257531=>1,2088252694=>1,2088252659=>1,2088247302=>1,2088242890=>1,2088247345=>1,2088247359=>1,2088247427=>1,2088247416=>1,2088242833=>1,2088242827=>1,2088242103=>1,2088242088=>1,2088242256=>1,2088242257=>1,2088242602=>1,2088242467=>1,2088247438=>1,2088247454=>1,2088248029=>1,2088247776=>1,2088248123=>1,2088248152=>1,2088248211=>1,2088248209=>1,2088247721=>1,2088247720=>1,2088247530=>1,2088247480=>1,2088247604=>1,2088247643=>1,2088247658=>1,2088242071=>1,2088242014=>1,2088241160=>1,2088241083=>1,2088241167=>1,2088241193=>1,2088241201=>1,2088241198=>1,2088241018=>1,2088240874=>1,2088240833=>1,2088240784=>1,2088240835=>1,2088240837=>1,2088240858=>1,2088241207=>1,2065612195=>1,2088241751=>1,2088241749=>1,2088241843=>1,2088241883=>1,2088241952=>1,2088241918=>1,2088241692=>1,2088241658=>1,2088241438=>1,2088241315=>1,2088241548=>1,2088241584=>1,2088241634=>1,2088248289=>1,2088248307=>1,2088251571=>1,2088251513=>1,2088251585=>1,2088251591=>1,2088251976=>1,2088251747=>1,2088251502=>1,2088251434=>1,2088250994=>1,2088250935=>1,2088250995=>1,2088251103=>1,2088251356=>1,2088252047=>1,2088252143=>1,2088252480=>1,2088252352=>1,2088252498=>1,2088252530=>1,2088252625=>1,2088252550=>1,2088252341=>1,2088252334=>1,2088252229=>1,2088252147=>1,2088252258=>1,2088252262=>1,2088252300=>1,2088250873=>1,2088250763=>1,2088249063=>1,2088249052=>1,2088249140=>1,2088249219=>1,2088250384=>1,2088249293=>1,2088248992=>1,2088248960=>1,2088248466=>1,2088248465=>1,2088248514=>1,2088248544=>1,2088248787=>1,2088250386=>1,2088250443=>1,2088250661=>1,2088250634=>1,2088250676=>1,2088250681=>1,2088250736=>1,2088250718=>1,2088250602=>1,2088250514=>1,2088250450=>1,2088250445=>1,2088250481=>1,2088250487=>1,2088250509=>1,2088240723=>1,2064077331=>1,2032061578=>1,2031932083=>1,2032080266=>1,2032080466=>1,2032103490=>1,2032097508=>1,2031932080=>1,2031932073=>1,2031251884=>1,2031189572=>1,2031286062=>1,2031490250=>1,2031932072=>1,2031548429=>1,2032103491=>1,2032103497=>1,2032110374=>1,2032109816=>1,2032112093=>1,2032112446=>1,2032113996=>1,2032113428=>1,2032103509=>1,2032103507=>1,2032103500=>1,2032103498=>1,2032103501=>1,2032103502=>1,2032103506=>1,2031157574=>1,2031157553=>1,2026826845=>1,2026824578=>1,2027340907=>1,2028602930=>1,2028768742=>1,2028605314=>1,2026823303=>1,2026822896=>1,2026657053=>1,2026634454=>1,2026794773=>1,2026801629=>1,2026817541=>1,2028812627=>1,2028838448=>1,2030963020=>1,2030872517=>1,2030996024=>1,2031004391=>1,2031085182=>1,2031070022=>1,2030793834=>1,2030610997=>1,2030218228=>1,2030203838=>1,2030244161=>1,2030599210=>1,2030605138=>1,2032114455=>1,2032114635=>1,2032972445=>1,2032967324=>1,2032982558=>1,2032990440=>1,2033488501=>1,2033466742=>1,2032907030=>1,2032898756=>1,2032835624=>1,2032834579=>1,2032848295=>1,2032852047=>1,2032898691=>1,2032898461=>1,2033509683=>1,2033512461=>1,2033896555=>1,2033896554=>1,2033896556=>1,2033896557=>1,2033909301=>1,2033896558=>1,2033896552=>1,2033896551=>1,2033794346=>1,2033626930=>1,2033895299=>1,2033896549=>1,2033896550=>1,2032832700=>1,2032832104=>1,2032673643=>1,2032673419=>1,2032687023=>1,2032688200=>1,2032689228=>1,2032689169=>1,2032330415=>1,2032315940=>1,2032124020=>1,2032114735=>1,2032124910=>1,2032263847=>1,2032315500=>1,2032690887=>1,2032691069=>1,2032741804=>1,2032741803=>1,2032758345=>1,2032798044=>1,2032830724=>1,2032811547=>1,2032738288=>1,2032738144=>1,2032700370=>1,2032692300=>1,2032714870=>1,2032718476=>1,2032726369=>1,2026633609=>1,2026624696=>1,2026096777=>1,2026096759=>1,2026096778=>1,2026096779=>1,2026096953=>1,2026096781=>1,2026096755=>1,2026096754=>1,2026096626=>1,2026096625=>1,2026096720=>1,2026096722=>1,2026096753=>1,2026096723=>1,2026096954=>1,2026096955=>1,2026097101=>1,2026097100=>1,2026097103=>1,2026097112=>1,2026097116=>1,2026097114=>1,2026097098=>1,2026096995=>1,2026096982=>1,2026096981=>1,2026096983=>1,2026096992=>1,2026096994=>1,2026096624=>1,2026096566=>1,2026095238=>1,2026095237=>1,2026095239=>1,2026095352=>1,2026095354=>1,2026095353=>1,2026095223=>1,2026095221=>1,2026095114=>1,2026095113=>1,2026095217=>1,2026095218=>1,2026095220=>1,2026095359=>1,2026095700=>1,2026096480=>1,2026096430=>1,2026096481=>1,2026096482=>1,2026096565=>1,2026096564=>1,2026096429=>1,2026096428=>1,2026095702=>1,2026095701=>1,2026095920=>1,2026095921=>1,2026095922=>1,2026097117=>1,2026097119=>1,2026236580=>1,2026191348=>1,2026280450=>1,2026301205=>1,2026301207=>1,2026301206=>1,2026190098=>1,2026181576=>1,2026098325=>1,2026098322=>1,2026098341=>1,2026098342=>1,2026098343=>1,2026301208=>1,2026301269=>1,2026614217=>1,2026612417=>1,2026614480=>1,2026616223=>1,2026624668=>1,2026622621=>1,2026611976=>1,2026574373=>1,2026301271=>1,2026301270=>1,2026301272=>1,2026304541=>1,2026571766=>1,2026098321=>1,2026098320=>1,2026097490=>1,2026097488=>1,2026097491=>1,2026097493=>1,2026097601=>1,2026097495=>1,2026097287=>1,2026097286=>1,2026097217=>1,2026097153=>1,2026097218=>1,2026097219=>1,2026097284=>1,2026097602=>1,2026097603=>1,2026098077=>1,2026098076=>1,2026098079=>1,2026098304=>1,2026098306=>1,2026098305=>1,2026098073=>1,2026098002=>1,2026097897=>1,2026097896=>1,2026097899=>1,2026098000=>1,2026098001=>1,2034566798=>1,2034567498=>1,2056258870=>1,2056087959=>1,2056261035=>1,2056291183=>1,2056691233=>1,2056433705=>1,2055977416=>1,2055456136=>1,2055294809=>1,2055293474=>1,2055294838=>1,2055295489=>1,2055455361=>1,2055303209=>1,2056795574=>1,2056921545=>1,2057754982=>1,2057660980=>1,2059411533=>1,2059445854=>1,2059472486=>1,2059472469=>1,2057428397=>1,2057103038=>1,2056951682=>1,2056931121=>1,2056955650=>1,2057035362=>1,2057103026=>1,2054806970=>1,2054806943=>1,2053024258=>1,2053022702=>1,2053028664=>1,2053028883=>1,2053127016=>1,2053127012=>1,2052988537=>1,2052988139=>1,2052983895=>1,2052983645=>1,2052984493=>1,2052986659=>1,2052987959=>1,2053127019=>1,2053130549=>1,2054504489=>1,2054428904=>1,2054522116=>1,2054546338=>1,2054806806=>1,2054581509=>1,2054303878=>1,2053834739=>1,2053514225=>1,2053513342=>1,2053516046=>1,2053516274=>1,2053516650=>1,2059472487=>1,2059472488=>1,2063709279=>1,2063563002=>1,2063712143=>1,2063731624=>1,2064070335=>1,2063886944=>1,2063104440=>1,2062261123=>1,2061740006=>1,2061739023=>1,2061740822=>1,2062083227=>1,2062170700=>1,2026095112=>1,2064079019=>1,2064502331=>1,2064501911=>1,2064589766=>1,2064591912=>1,2065598535=>1,2065582963=>1,2064501869=>1,2064328527=>1,2064085901=>1,2064079045=>1,2064091548=>1,2064167232=>1,2064327923=>1,2061690090=>1,2061683526=>1,2059499237=>1,2059499228=>1,2059515961=>1,2059516833=>1,2061536626=>1,2059518259=>1,2059479015=>1,2059472498=>1,2059472490=>1,2059472489=>1,2059472492=>1,2059472493=>1,2059472494=>1,2061554018=>1,2061593123=>1,2061668781=>1,2061667892=>1,2061671644=>1,2061675274=>1,2061678313=>1,2061677948=>1,2061667651=>1,2061665419=>1,2061637060=>1,2061593124=>1,2061647450=>1,2061662212=>1,2061664507=>1,2052983341=>1,2052982413=>1,2037928151=>1,2037889325=>1,2038004030=>1,2038004160=>1,2038082826=>1,2038079756=>1,2037613106=>1,2036709770=>1,2036404258=>1,2036379860=>1,2036589582=>1,2036601434=>1,2036686503=>1,2036602174=>1,2038423852=>1,2038430194=>1,2040544311=>1,2040278664=>1,2041010066=>1,2041010072=>1,2041010156=>1,2041010094=>1,2040156933=>1,2040039132=>1,2039205217=>1,2038430364=>1,2039576741=>1,2039853250=>1,2039867502=>1,2036351993=>1,2035874079=>1,2034571522=>1,2034571286=>1,2034571558=>1,2034571578=>1,2034572666=>1,2034572550=>1,2034571182=>1,2034571142=>1,2034569018=>1,2034568250=>1,2034569046=>1,2034570758=>1,2034571002=>1,2034572678=>1,2034572706=>1,2035113954=>1,2034848704=>1,2035457014=>1,2035874074=>1,2035874076=>1,2035874075=>1,2034576806=>1,2034576802=>1,2034573202=>1,2034573146=>1,2034573726=>1,2034574458=>1,2034575962=>1,2042634461=>1,2042728441=>1,2051827328=>1,2051827215=>1,2052600498=>1,2052600628=>1,2052655044=>1,2052643494=>1,2051827206=>1,2051826426=>1,2050449491=>1,2050430033=>1,2050610005=>1,2051453682=>1,2051454858=>1,2052655048=>1,2052658231=>1,2052687812=>1,2052687758=>1,2052688067=>1,2052688090=>1,2052982355=>1,2052688285=>1,2052687705=>1,2052687336=>1,2052686162=>1,2052660934=>1,2052686186=>1,2052686594=>1,2052686659=>1,2050339428=>1,2050326085=>1,2043220868=>1,2043220554=>1,2043224948=>1,2043224997=>1,2043610750=>1,2043447238=>1,2043166211=>1,2043100512=>1,2043091264=>1,2042947873=>1,2043093141=>1,2043100208=>1,2043100303=>1,2043692433=>1,2043892357=>1,2047506374=>1,2047504903=>1,2047780450=>1,2047845252=>1,2049580225=>1,2048042438=>1,2046969544=>1,2046138682=>1,2044939322=>1,2043934228=>1,2045164242=>1,2045310274=>1,2045844514=>1,2065611822=>1,);?>
1
+ <?php return array(1708212232=>1708212239,1700793096=>1700793103,1700792840=>1700792847,1710999362=>1,1710980901=>1,1711193286=>1,1711214985=>1,1711214882=>1,1711011222=>1,1709649482=>1,1709313247=>1,1708212230=>1,1709373933=>1,1709379232=>1,1709649442=>1,1709650586=>1,1711214989=>1,1711223597=>1,1711215094=>1,1711223666=>1,1711226570=>1,1711232826=>1,1711229346=>1,1711215093=>1,1711215092=>1,1711214993=>1,1711214990=>1,1711214994=>1,1711215089=>1,1711215090=>1,1708212229=>1,1708212228=>1,1707648349=>1,1707648142=>1,1707650571=>1,1707651041=>1,1707651642=>1,1707651630=>1,1707647621=>1,1707641591=>1,1706855212=>1,1706073804=>1,1707571429=>1,1707627005=>1,1707641429=>1,1707640140=>1,1707651878=>1,1707652388=>1,1707667771=>1,1707667387=>1,1707721792=>1,1707722206=>1,1708212227=>1,1707914445=>1,1707666034=>1,1707662180=>1,1707653719=>1,1707652637=>1,1707654250=>1,1707655235=>1,1707657896=>1,1707656326=>1,1711233722=>1,1728131148=>1,1728480569=>1,1728480564=>1,1728480583=>1,1728480585=>1,1728480588=>1,1728480586=>1,1728480543=>1,1728457635=>1,1728358374=>1,1728353106=>1,1728379410=>1,1728379412=>1,1728433138=>1,1728428834=>1,1728480589=>1,1728480593=>1,1728480836=>1,1728480825=>1,1728480839=>1,1728480854=>1,1728480893=>1,1728480871=>1,1728480798=>1,1728480786=>1,1728480631=>1,1728480595=>1,1728480637=>1,1728480645=>1,1728480773=>1,1728480653=>1,1728339032=>1,1728332610=>1,1728131930=>1,1728131851=>1,1728131931=>1,1728142989=>1,1728205092=>1,1728205083=>1,1728131850=>1,1728131709=>1,1728131650=>1,1728131149=>1,1728131651=>1,1728131652=>1,1728131708=>1,1728131707=>1,1728205124=>1,1728205127=>1,1728269838=>1,1728269836=>1,1728307571=>1,1728312540=>1,1728332333=>1,1728329289=>1,1728265586=>1,1728261828=>1,1728205153=>1,1728205143=>1,1728205185=>1,1728205275=>1,1728205572=>1,1702915061=>1,1702913222=>1,1697870330=>1,1697870131=>1,1697870809=>1,1697871830=>1,1697872264=>1,1697871846=>1,1697856964=>1,1697856949=>1,1697856659=>1,1697856636=>1,1697856706=>1,1697856760=>1,1697856847=>1,1697856767=>1,1697894603=>1,1697896677=>1,1698971731=>1,1698888982=>1,1698974438=>1,1699062594=>1,1699084943=>1,1699064412=>1,1698888664=>1,1698885820=>1,1698661504=>1,1697897232=>1,1698663825=>1,1698675562=>1,1698752740=>1,1697383218=>1,1696286600=>1,1680087759=>1,1679915536=>1,1680111050=>1,1680125038=>1,1680240594=>1,1680217740=>1,1679900784=>1,1679895118=>1,1678263137=>1,1678199423=>1,1678470499=>1,1678656155=>1,1679835930=>1,1678733829=>1,1680253898=>1,1680479005=>1,1694672222=>1,1694512699=>1,1694905667=>1,1695719826=>1,1696212642=>1,1695725593=>1,1694510324=>1,1694510309=>1,1680635460=>1,1680482629=>1,1680699244=>1,1694510301=>1,1694510305=>1,1699242029=>1,1699667622=>1,1701597973=>1,1701597414=>1,1701598887=>1,1701598896=>1,1701610179=>1,1701609489=>1,1701597387=>1,1701593031=>1,1701590034=>1,1701590026=>1,1701590104=>1,1701590918=>1,1701591976=>1,1701591932=>1,1701610262=>1,1701630065=>1,1701698565=>1,1701697019=>1,1702913123=>1,1702913157=>1,1728480899=>1,1702913191=>1,1701686603=>1,1701683903=>1,1701633956=>1,1701633444=>1,1701636674=>1,1701679420=>1,1701683218=>1,1701589908=>1,1701589128=>1,1700792848=>1,1700792838=>1,1700792849=>1,1700792850=>1,1700793091=>1,1700793090=>1,1700792836=>1,1700792835=>1,1699851058=>1,1699833990=>1,1699864884=>1,1700083876=>1,1700792834=>1,1700692779=>1,1700793093=>1,1700793104=>1,1701093909=>1,1701089454=>1,1701577005=>1,1701580666=>1,1701585240=>1,1701584589=>1,1701088567=>1,1701088350=>1,1700793106=>1,1700793105=>1,1700924306=>1,1700949179=>1,1700998154=>1,1702913304=>1,1728480901=>1,1730647207=>1,1730647205=>1,1730647210=>1,1730647213=>1,1730647222=>1,1730647214=>1,1730647204=>1,1730647201=>1,1730647171=>1,1730647170=>1,1730647178=>1,1730647179=>1,1730647200=>1,1730647183=>1,1730647225=>1,1730647226=>1,1730647450=>1,1730647447=>1,1730647451=>1,1730647454=>1,1730647457=>1,1730647455=>1,1730647442=>1,1730647441=>1,1730647229=>1,1730647227=>1,1730647426=>1,1730647429=>1,1730647437=>1,1730647436=>1,1730628912=>1,1730595211=>1,1730042314=>1,1730041336=>1,1730042598=>1,1730069201=>1,1730130177=>1,1730107510=>1,1729950156=>1,1729949807=>1,1729909765=>1,1729898337=>1,1729926518=>1,1729946025=>1,1729946036=>1,1729946029=>1,1730130530=>1,1730130546=>1,1730569418=>1,1730554500=>1,1730569558=>1,1730595127=>1,1730595178=>1,1730595130=>1,1730521273=>1,1730515815=>1,1730421610=>1,1730142052=>1,1730432441=>1,1730432779=>1,1730445228=>1,1730647460=>1,1730647465=>1,1730671488=>1,1730671357=>1,1730671490=>1,1730671504=>1,1730709998=>1,1730671510=>1,1730671319=>1,1730671294=>1,1730671140=>1,1730649241=>1,1730671156=>1,1730671171=>1,1730671227=>1,1730671207=>1,1730710008=>1,1730751687=>1,1730790677=>1,1730790626=>1,1730790727=>1,1730790738=>1,1730790792=>1,1730790786=>1,1730785600=>1,1730785598=>1,1730752129=>1,1730752058=>1,1730774295=>1,1730783493=>1,1730785585=>1,1730647996=>1,1730647994=>1,1730647722=>1,1730647718=>1,1730647727=>1,1730647731=>1,1730647741=>1,1730647733=>1,1730647708=>1,1730647706=>1,1730647477=>1,1730647472=>1,1730647481=>1,1730647483=>1,1730647697=>1,1730647684=>1,1730647742=>1,1730647939=>1,1730647967=>1,1730647964=>1,1730647972=>1,1730647976=>1,1730647993=>1,1730647992=>1,1730647958=>1,1730647956=>1,1730647948=>1,1730647942=>1,1730647953=>1,1730647954=>1,1730647955=>1,1729897906=>1,1729858576=>1,1728990350=>1,1728990292=>1,1728990390=>1,1728990440=>1,1729034940=>1,1729034891=>1,1728990251=>1,1728988782=>1,1728881545=>1,1728881448=>1,1728939449=>1,1728939454=>1,1728939466=>1,1728939462=>1,1729035005=>1,1729051669=>1,1729134836=>1,1729131282=>1,1729138980=>1,1729148008=>1,1729179876=>1,1729155221=>1,1729130709=>1,1729130633=>1,1729052405=>1,1729052229=>1,1729067738=>1,1729099698=>1,1729130497=>1,1729099734=>1,1728842235=>1,1728842233=>1,1728480990=>1,1728480983=>1,1728480994=>1,1728501190=>1,1728662815=>1,1728534461=>1,1728480976=>1,1728480947=>1,1728480912=>1,1728480903=>1,1728480928=>1,1728480931=>1,1728480946=>1,1728480941=>1,1728662816=>1,1728666004=>1,1728759652=>1,1728759090=>1,1728767224=>1,1728815108=>1,1728842169=>1,1728815597=>1,1728742933=>1,1728742515=>1,1728714986=>1,1728675026=>1,1728723467=>1,1728724586=>1,1728742427=>1,1729180473=>1,1729180494=>1,1729643360=>1,1729596138=>1,1729649884=>1,1729658454=>1,1729658822=>1,1729658738=>1,1729587078=>1,1729586942=>1,1729453554=>1,1729449291=>1,1729539650=>1,1729539651=>1,1729586311=>1,1729539652=>1,1729672275=>1,1729703261=>1,1729737484=>1,1729731554=>1,1729743654=>1,1729806499=>1,1729842953=>1,1729839874=>1,1729726170=>1,1729725853=>1,1729724500=>1,1729706530=>1,1729725842=>1,1729725848=>1,1729725850=>1,1729413644=>1,1729413538=>1,1729250408=>1,1729234150=>1,1729252127=>1,1729253377=>1,1729276693=>1,1729275672=>1,1729234003=>1,1729233933=>1,1729180505=>1,1729180501=>1,1729180506=>1,1729180560=>1,1729208107=>1,1729207938=>1,1729296056=>1,1729296142=>1,1729386769=>1,1729386753=>1,1729386809=>1,1729386929=>1,1729406997=>1,1729401967=>1,1729357489=>1,1729357330=>1,1729313178=>1,1729296344=>1,1729313196=>1,1729326522=>1,1729357246=>1,1678189299=>1,1678181316=>1,1607844446=>1,1607839610=>1,1607937126=>1,1607937129=>1,1607937135=>1,1607937134=>1,1607721715=>1,1607721714=>1,1607716247=>1,1607711030=>1,1607717448=>1,1607718921=>1,1607721383=>1,1607720972=>1,1607937146=>1,1607937169=>1,1607937467=>1,1607937422=>1,1607937468=>1,1607937515=>1,1607937608=>1,1607937582=>1,1607937418=>1,1607937408=>1,1607937212=>1,1607937210=>1,1607937213=>1,1607937256=>1,1607937348=>1,1607937341=>1,1607711017=>1,1607707943=>1,1606180370=>1,1606176233=>1,1606184971=>1,1606195605=>1,1606214262=>1,1606195816=>1,1605853222=>1,1605841643=>1,1605711982=>1,1605649350=>1,1605774603=>1,1605810581=>1,1605841458=>1,1605840908=>1,1606214781=>1,1606215248=>1,1607698951=>1,1607696672=>1,1607698957=>1,1607698995=>1,1607706915=>1,1607704724=>1,1607670660=>1,1607670404=>1,1606217419=>1,1606215479=>1,1606221145=>1,1607659464=>1,1607665566=>1,1607937659=>1,1607937685=>1,1612405632=>1,1612402040=>1,1612407618=>1,1612408992=>1,1612413464=>1,1612412737=>1,1612401964=>1,1612401669=>1,1611852565=>1,1611377451=>1,1611954946=>1,1612383621=>1,1612400756=>1,1612383850=>1,1612435453=>1,1612439091=>1,1612658309=>1,1612658305=>1,1612660431=>1,1612660513=>1,1612727254=>1,1612715097=>1,1612657630=>1,1612657285=>1,1612523837=>1,1612446545=>1,1612529223=>1,1612638089=>1,1612639430=>1,1611302230=>1,1611294314=>1,1607967324=>1,1607967287=>1,1607967411=>1,1608343727=>1,1608380572=>1,1608343800=>1,1607941380=>1,1607939790=>1,1607937780=>1,1607937759=>1,1607937863=>1,1607937942=>1,1607939222=>1,1607937998=>1,1608399206=>1,1608500264=>1,1610921013=>1,1610874023=>1,1611225614=>1,1611225654=>1,1611271686=>1,1611264560=>1,1610371037=>1,1609781604=>1,1608502515=>1,1608500574=>1,1608893081=>1,1609084340=>1,1609162777=>1,1605306002=>1,1605219526=>1,1602358148=>1,1602358058=>1,1602358163=>1,1602358177=>1,1602358319=>1,1602358309=>1,1602358031=>1,1602358021=>1,1602319030=>1,1602303917=>1,1602353265=>1,1602354674=>1,1602357689=>1,1602357580=>1,1602358363=>1,1602358391=>1,1602987184=>1,1602965444=>1,1602987992=>1,1603009522=>1,1603041065=>1,1603021495=>1,1602963720=>1,1602790381=>1,1602449750=>1,1602358685=>1,1602467674=>1,1602488508=>1,1602631010=>1,1602500085=>1,1602300081=>1,1602235300=>1,1600738216=>1,1600724438=>1,1600758941=>1,1600782667=>1,1600848666=>1,1600802375=>1,1600718595=>1,1600718448=>1,1599825574=>1,1599818651=>1,1600043066=>1,1600242645=>1,1600700873=>1,1600676631=>1,1600863557=>1,1600985633=>1,1601323198=>1,1601313126=>1,1601336779=>1,1601472259=>1,1601603358=>1,1601503115=>1,1601299573=>1,1601290067=>1,1600993149=>1,1600989464=>1,1601010320=>1,1601057916=>1,1601120357=>1,1603085137=>1,1603085434=>1,1604445370=>1,1604425486=>1,1604545289=>1,1604545294=>1,1604545296=>1,1604545295=>1,1604388621=>1,1604227441=>1,1603979174=>1,1603950844=>1,1604127123=>1,1604170787=>1,1604225840=>1,1604193652=>1,1604545316=>1,1604545341=>1,1604959335=>1,1604901144=>1,1605110458=>1,1605118522=>1,1605215877=>1,1605168246=>1,1604790803=>1,1604709166=>1,1604549004=>1,1604548995=>1,1604597522=>1,1604690626=>1,1604706114=>1,1603949883=>1,1603934281=>1,1603182911=>1,1603178449=>1,1603185938=>1,1603197164=>1,1603197274=>1,1603197272=>1,1603178399=>1,1603178352=>1,1603088360=>1,1603085590=>1,1603097490=>1,1603162188=>1,1603176120=>1,1603175984=>1,1603219532=>1,1603241015=>1,1603259868=>1,1603256721=>1,1603265391=>1,1603267207=>1,1603870472=>1,1603268550=>1,1603251445=>1,1603251414=>1,1603251347=>1,1603251340=>1,1603251388=>1,1603251391=>1,1603251412=>1,1612748435=>1,1612758328=>1,1654935571=>1,1654917382=>1,1654977016=>1,1655013981=>1,1655298173=>1,1655133422=>1,1654916319=>1,1654915612=>1,1654621653=>1,1654621570=>1,1654621978=>1,1654622173=>1,1654624111=>1,1654623384=>1,1655580824=>1,1655592872=>1,1657436794=>1,1657352674=>1,1657912774=>1,1657935817=>1,1658257552=>1,1657987926=>1,1657148098=>1,1656761193=>1,1655876463=>1,1655751109=>1,1656018904=>1,1656033001=>1,1656713757=>1,1656700658=>1,1654621511=>1,1654568987=>1,1651638849=>1,1650908180=>1,1651745056=>1,1651903091=>1,1652114068=>1,1651930746=>1,1650849814=>1,1650826646=>1,1645875785=>1,1635730610=>1,1645880993=>1,1645900014=>1,1646161835=>1,1645907981=>1,1652114239=>1,1652205615=>1,1653629408=>1,1653540898=>1,1653650324=>1,1653704951=>1,1654015051=>1,1653715881=>1,1653499285=>1,1653485366=>1,1652426583=>1,1652311792=>1,1653161533=>1,1653334437=>1,1653485021=>1,1658357399=>1,1658443417=>1,1663124589=>1,1661343166=>1,1663705464=>1,1664068993=>1,1664706081=>1,1664397474=>1,1660947946=>1,1660947826=>1,1660467245=>1,1660445334=>1,1660484248=>1,1660484271=>1,1660823987=>1,1660533486=>1,1664809046=>1,1664812470=>1,1677242816=>1,1677211564=>1,1677273862=>1,1677747815=>1,1677895342=>1,1677783070=>1,1676654671=>1,1676632677=>1,1673688926=>1,1667224946=>1,1673924674=>1,1675982541=>1,1676141022=>1,1660385539=>1,1660373499=>1,1659017823=>1,1658955362=>1,1659033859=>1,1659125618=>1,1659145514=>1,1659130222=>1,1658952375=>1,1658937307=>1,1658625357=>1,1658455272=>1,1658655764=>1,1658723250=>1,1658854568=>1,1658799305=>1,1659216084=>1,1659227807=>1,1659948151=>1,1659927451=>1,1660071644=>1,1660159961=>1,1660352781=>1,1660269265=>1,1659760697=>1,1659687735=>1,1659550155=>1,1659540621=>1,1659559361=>1,1659615655=>1,1659682807=>1,1635415157=>1,1634438890=>1,1613859943=>1,1613754282=>1,1613901156=>1,1614062349=>1,1614140357=>1,1614109290=>1,1613754265=>1,1613752278=>1,1613631740=>1,1613629253=>1,1613634435=>1,1613634772=>1,1613750804=>1,1613733025=>1,1614170442=>1,1614201090=>1,1618894938=>1,1618894857=>1,1618896520=>1,1618897371=>1,1625568383=>1,1625362963=>1,1616678605=>1,1616672306=>1,1614777526=>1,1614518514=>1,1614777646=>1,1616481565=>1,1616624121=>1,1616579409=>1,1613607558=>1,1613590698=>1,1613207072=>1,1613118404=>1,1613228863=>1,1613244717=>1,1613275315=>1,1613261581=>1,1613118403=>1,1613118402=>1,1612919542=>1,1612780234=>1,1612939907=>1,1612976962=>1,1613115859=>1,1612978911=>1,1613295903=>1,1613348971=>1,1613562827=>1,1613562607=>1,1613564117=>1,1613564121=>1,1613565137=>1,1613564129=>1,1613562595=>1,1613562229=>1,1613450866=>1,1613381278=>1,1613467163=>1,1613467164=>1,1613536716=>1,1625759417=>1,1625911165=>1,1633278358=>1,1633238846=>1,1633297042=>1,1633389317=>1,1633444314=>1,1633437221=>1,1633219538=>1,1633149094=>1,1633032831=>1,1632952351=>1,1633043170=>1,1633091843=>1,1633107399=>1,1633103355=>1,1633446378=>1,1633479069=>1,1634436735=>1,1634436120=>1,1634437700=>1,1634437916=>1,1634438077=>1,1634437996=>1,1634435279=>1,1634092661=>1,1633554220=>1,1633488234=>1,1633557344=>1,1633568080=>1,1633790779=>1,1632930097=>1,1632840683=>1,1631853108=>1,1631843622=>1,1631953655=>1,1632059536=>1,1632347242=>1,1632300484=>1,1631843559=>1,1631626187=>1,1626581605=>1,1626047228=>1,1626680073=>1,1627304825=>1,1627349396=>1,1627316754=>1,1632366760=>1,1632368397=>1,1632753768=>1,1632748613=>1,1632765033=>1,1632789595=>1,1632840132=>1,1632811517=>1,1632694336=>1,1632603331=>1,1632441917=>1,1632414498=>1,1632447398=>1,1632462870=>1,1632565530=>1,1599815246=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-2.php CHANGED
@@ -1 +1 @@
1
- <?php return array(635284480=>635284991,690656207=>1,690656060=>1,690656234=>1,690657565=>1,690656376=>1,690655620=>1,690655598=>1,690636635=>1,690404763=>1,690636759=>1,690644024=>1,690655364=>1,690644203=>1,690657967=>1,690658584=>1,690662352=>1,690662308=>1,690663720=>1,690664579=>1,690665547=>1,690665416=>1,690661614=>1,690661588=>1,690659200=>1,690658666=>1,690659889=>1,690660122=>1,690661555=>1,690660582=>1,690374778=>1,690367442=>1,690077556=>1,690072974=>1,690083114=>1,690088459=>1,690089642=>1,690088462=>1,690072971=>1,690035081=>1,687918370=>1,687912443=>1,687918371=>1,687918372=>1,690012059=>1,690012026=>1,690121344=>1,690126965=>1,690303544=>1,690286021=>1,690309592=>1,690312114=>1,690327696=>1,690322793=>1,690285741=>1,690285536=>1,690195812=>1,690153515=>1,690227163=>1,690280768=>1,690285168=>1,690665548=>1,690665811=>1,690930705=>1,690930182=>1,690931193=>1,690931283=>1,690932589=>1,690931542=>1,690930181=>1,690930029=>1,690812932=>1,690772263=>1,690850365=>1,690900604=>1,690929879=>1,690929784=>1,690932875=>1,690932978=>1,690935945=>1,690935860=>1,690936231=>1,690936233=>1,690936761=>1,690936686=>1,690934592=>1,690934379=>1,690933734=>1,690933011=>1,690933838=>1,690933854=>1,690934361=>1,690933917=>1,690768129=>1,690767425=>1,690672520=>1,690672202=>1,690673231=>1,690673441=>1,690676361=>1,690673644=>1,690671465=>1,690671143=>1,690667126=>1,690666940=>1,690668860=>1,690668929=>1,690670996=>1,690670615=>1,690677473=>1,690679405=>1,690683422=>1,690682850=>1,690688318=>1,690688354=>1,690746920=>1,690725630=>1,690682822=>1,690682300=>1,690681075=>1,690680018=>1,690681298=>1,690681666=>1,690682050=>1,679459702=>1,678886824=>1,665320199=>1,665292662=>1,665320254=>1,665341578=>1,665397865=>1,665395404=>1,665291292=>1,665281011=>1,665257501=>1,665209346=>1,665262248=>1,665276435=>1,665277749=>1,665277671=>1,665397868=>1,665417830=>1,665909852=>1,665909316=>1,665927773=>1,665928046=>1,665977236=>1,665931272=>1,665909256=>1,665883590=>1,665421176=>1,665417864=>1,665513062=>1,665879935=>1,665881367=>1,665880447=>1,664867527=>1,664820618=>1,652559925=>1,652559924=>1,652559926=>1,652559933=>1,657126361=>1,652562178=>1,652559923=>1,652559914=>1,646212228=>1,646212227=>1,652541980=>1,652541981=>1,652559906=>1,652559905=>1,657793987=>1,657917181=>1,661745329=>1,661662489=>1,662080711=>1,662152275=>1,662152458=>1,662152451=>1,661459231=>1,660253198=>1,658050944=>1,657952902=>1,658901942=>1,659393330=>1,659731792=>1,665978085=>1,665978331=>1,666388699=>1,666373192=>1,666714252=>1,666715357=>1,666871815=>1,666796191=>1,666370579=>1,666303517=>1,666089809=>1,666089709=>1,666095524=>1,666184175=>1,666277883=>1,666241610=>1,675973717=>1,676072812=>1,678673544=>1,678635463=>1,678794886=>1,678824978=>1,690936775=>1,678866501=>1,678630425=>1,678626863=>1,676642984=>1,676086108=>1,676828102=>1,678493718=>1,678524590=>1,666088048=>1,666087761=>1,666020114=>1,666019852=>1,666021930=>1,666022662=>1,666047326=>1,666027597=>1,666019588=>1,666019061=>1,665984133=>1,665978444=>1,665984223=>1,665990474=>1,666018715=>1,666005126=>1,666047879=>1,666049677=>1,666080551=>1,666075907=>1,666080912=>1,666082672=>1,666084228=>1,666083507=>1,666075589=>1,666075081=>1,666068810=>1,666051397=>1,666069759=>1,666070746=>1,666070904=>1,679446782=>1,690936952=>1,701304769=>1,701304756=>1,701304842=>1,701305086=>1,701305310=>1,701305137=>1,701304752=>1,701304711=>1,701303626=>1,701303349=>1,701303658=>1,701304582=>1,701304675=>1,701304592=>1,701306182=>1,701306911=>1,701671230=>1,701583448=>1,701769083=>1,701863781=>1,701872390=>1,701866812=>1,701461721=>1,701444488=>1,701317501=>1,701314218=>1,701320506=>1,701320684=>1,701360074=>1,701328126=>1,701303323=>1,701303306=>1,700771677=>1,700729654=>1,700775347=>1,700776347=>1,701191037=>1,700846412=>1,700443478=>1,700396590=>1,700125126=>1,700061765=>1,700199294=>1,700199327=>1,700201065=>1,700199378=>1,701224526=>1,701224576=>1,701301350=>1,701295966=>1,701303143=>1,701303236=>1,701303285=>1,701303274=>1,701259202=>1,701259062=>1,701224694=>1,701224665=>1,701257482=>1,701257497=>1,701257501=>1,701877440=>1,701878301=>1,703393489=>1,703393423=>1,703457072=>1,703528783=>1,703749372=>1,703742238=>1,703384490=>1,703325797=>1,703086056=>1,702781971=>1,703095507=>1,703179247=>1,703217082=>1,703200100=>1,703751938=>1,703793282=>1,704232131=>1,704232014=>1,704232169=>1,704232669=>1,704278725=>1,704232982=>1,704231576=>1,704231491=>1,704230457=>1,704229851=>1,704230458=>1,704230911=>1,704231300=>1,702778692=>1,702777460=>1,702134410=>1,702075761=>1,702134432=>1,702134435=>1,702176307=>1,702176007=>1,702021426=>1,702017703=>1,701884705=>1,701879302=>1,701895795=>1,701895796=>1,701978084=>1,701957982=>1,702176366=>1,702179963=>1,702494093=>1,702488072=>1,702497785=>1,702497787=>1,702775622=>1,702773074=>1,702474810=>1,702414901=>1,702311360=>1,702291082=>1,702312425=>1,702314604=>1,702343255=>1,699997102=>1,699933285=>1,692959268=>1,692950802=>1,692961459=>1,692961480=>1,693001165=>1,693000373=>1,692949581=>1,692949429=>1,692809227=>1,692735690=>1,692857932=>1,692867478=>1,692949326=>1,692905411=>1,693001166=>1,693010566=>1,693100717=>1,693086753=>1,693101266=>1,693453943=>1,693490224=>1,693454010=>1,693078451=>1,693078399=>1,693040136=>1,693022500=>1,693040140=>1,693044324=>1,693058762=>1,693052746=>1,692735368=>1,692733826=>1,690937645=>1,690937608=>1,690937726=>1,690937828=>1,691702252=>1,690959561=>1,690937581=>1,690937552=>1,690937208=>1,690936991=>1,690937395=>1,690937471=>1,690937516=>1,690937497=>1,691740780=>1,691831332=>1,692635982=>1,692618670=>1,692638547=>1,692653606=>1,692712284=>1,692655178=>1,692611366=>1,692272906=>1,692135649=>1,692036614=>1,692226471=>1,692254490=>1,692256442=>1,693512052=>1,693584082=>1,698494990=>1,698494989=>1,698621779=>1,698621780=>1,698946804=>1,698943490=>1,698494988=>1,698491931=>1,698383914=>1,698235927=>1,698400411=>1,698408956=>1,698439211=>1,698437285=>1,698946807=>1,698946808=>1,699779767=>1,699779760=>1,699779789=>1,699779826=>1,699933282=>1,699779833=>1,699779759=>1,699779735=>1,698946810=>1,698946809=>1,698949363=>1,699007474=>1,699011400=>1,697982094=>1,697464655=>1,693723309=>1,693723308=>1,693723321=>1,693723340=>1,693755185=>1,693755146=>1,693723303=>1,693723301=>1,693588362=>1,693585594=>1,693588418=>1,693610226=>1,693723219=>1,693723167=>1,693998098=>1,694028294=>1,696450891=>1,696322897=>1,696671812=>1,696671821=>1,697204430=>1,697019206=>1,696291044=>1,696290977=>1,696290952=>1,696290951=>1,696290956=>1,696290959=>1,696290975=>1,645710204=>1,645705046=>1,624653923=>1,624652295=>1,624654070=>1,624654198=>1,624676407=>1,624655246=>1,624652224=>1,624651611=>1,624648383=>1,624639934=>1,624648582=>1,624649571=>1,624651193=>1,624650030=>1,624686022=>1,624742542=>1,627152136=>1,627150063=>1,627237017=>1,627238281=>1,627980223=>1,627238842=>1,627149684=>1,626083111=>1,624819130=>1,624818957=>1,625771888=>1,625836194=>1,625893521=>1,625885728=>1,624639424=>1,624636727=>1,623934580=>1,623933636=>1,623934581=>1,624026348=>1,624252156=>1,624211232=>1,623933585=>1,623932384=>1,623924483=>1,623924482=>1,623928769=>1,623930647=>1,623931500=>1,623931495=>1,624254754=>1,624496809=>1,624634049=>1,624633411=>1,624634182=>1,624634483=>1,624635675=>1,624635551=>1,624633147=>1,624627401=>1,624573272=>1,624571422=>1,624624167=>1,624624316=>1,624626206=>1,628112825=>1,628145066=>1,629805013=>1,629667881=>1,629866564=>1,629867226=>1,629869902=>1,629869619=>1,629667853=>1,629623970=>1,629499469=>1,629401258=>1,629549335=>1,629579155=>1,629623947=>1,629623821=>1,629872238=>1,629959061=>1,630212103=>1,630150190=>1,630214027=>1,630216458=>1,630298575=>1,630250899=>1,630130747=>1,629981404=>1,629981237=>1,629981196=>1,629981322=>1,629981371=>1,629981375=>1,629336591=>1,629334918=>1,628641826=>1,628635653=>1,628644060=>1,628648141=>1,628652246=>1,628651307=>1,628635526=>1,628629001=>1,628198986=>1,628154766=>1,628624310=>1,628624609=>1,628628722=>1,628627753=>1,628662284=>1,628662980=>1,628852090=>1,628851952=>1,628855372=>1,628864525=>1,629334917=>1,629175330=>1,628851845=>1,628851470=>1,628665288=>1,628663640=>1,628665586=>1,628805852=>1,628846877=>1,623924417=>1,623923483=>1,619610808=>1,619610749=>1,619610952=>1,619611017=>1,619634783=>1,619634306=>1,619610206=>1,619508105=>1,619405912=>1,619392444=>1,619406059=>1,619406113=>1,619422618=>1,619406308=>1,619635731=>1,619635803=>1,621178744=>1,621082699=>1,621179744=>1,621180317=>1,621406075=>1,621389885=>1,621033164=>1,620877772=>1,619636405=>1,619635815=>1,620381444=>1,620492983=>1,620877236=>1,620789548=>1,619392171=>1,619380908=>1,619128544=>1,619128185=>1,619129546=>1,619129712=>1,619132948=>1,619131960=>1,619127408=>1,619125375=>1,618899282=>1,618899064=>1,619104278=>1,619105360=>1,619125337=>1,619106243=>1,619136803=>1,619138051=>1,619347225=>1,619326885=>1,619348195=>1,619348293=>1,619356381=>1,619348472=>1,619291987=>1,619284749=>1,619183303=>1,619143251=>1,619184244=>1,619186769=>1,619242975=>1,621682165=>1,621720637=>1,623805535=>1,623805313=>1,623805536=>1,623805612=>1,623805831=>1,623805683=>1,623805205=>1,623805138=>1,623804640=>1,623804611=>1,623804694=>1,623804910=>1,623805105=>1,623804968=>1,623806088=>1,623806113=>1,623919124=>1,623806358=>1,623919883=>1,623923273=>1,623923380=>1,623923301=>1,623806313=>1,623806264=>1,623806241=>1,623806240=>1,623806242=>1,623806244=>1,623806245=>1,623804499=>1,623651851=>1,622639121=>1,622481974=>1,622676930=>1,622676965=>1,622863409=>1,622676978=>1,622390408=>1,622372682=>1,621936366=>1,621725228=>1,622150059=>1,622157640=>1,622352534=>1,622179633=>1,622863686=>1,622865409=>1,622999981=>1,622998646=>1,623005790=>1,623005916=>1,623107770=>1,623078382=>1,622927938=>1,622866430=>1,622865417=>1,622865413=>1,622865424=>1,622865817=>1,622865865=>1,630317170=>1,630319096=>1,635284460=>1,635284458=>1,635291063=>1,635722194=>1,635782314=>1,635733607=>1,635282146=>1,635208253=>1,635184074=>1,635179561=>1,635184368=>1,635208249=>1,635208252=>1,635208251=>1,635815000=>1,635818524=>1,635821542=>1,635821318=>1,635860125=>1,635860773=>1,636041990=>1,636041722=>1,635821314=>1,635821300=>1,635818880=>1,635818774=>1,635819656=>1,635820355=>1,635821167=>1,635820769=>1,635105381=>1,634976630=>1,633404020=>1,633377711=>1,633455643=>1,633477949=>1,633486127=>1,633484555=>1,633369623=>1,633325485=>1,633311009=>1,633150513=>1,633312813=>1,633313443=>1,633319359=>1,633315991=>1,633865288=>1,633889285=>1,634206422=>1,634194837=>1,634290917=>1,634462862=>1,634475972=>1,634462987=>1,634194572=>1,634194307=>1,633954922=>1,633889787=>1,633970010=>1,634159951=>1,634191533=>1,636052000=>1,636052381=>1,643788027=>1,643788025=>1,643788069=>1,643788070=>1,643788101=>1,643788100=>1,643408017=>1,643000900=>1,642113656=>1,642069166=>1,642585381=>1,643000770=>1,643000772=>1,643000771=>1,643788102=>1,644136137=>1,645704748=>1,645704595=>1,645704759=>1,645704957=>1,618800069=>1,645704995=>1,645704102=>1,645704076=>1,645676393=>1,645221810=>1,645679270=>1,645679418=>1,645679421=>1,642066543=>1,641994376=>1,636172084=>1,636171331=>1,636172115=>1,636172468=>1,636173831=>1,636173389=>1,636170634=>1,636170620=>1,636163335=>1,636053260=>1,636163520=>1,636164143=>1,636170530=>1,636170487=>1,636174668=>1,636175186=>1,636957836=>1,636955257=>1,636958094=>1,636958555=>1,637320880=>1,636958676=>1,636515514=>1,636470220=>1,636291304=>1,636261619=>1,636316051=>1,636371941=>1,636429114=>1,633109688=>1,633096314=>1,633016495=>1,633014591=>1,633016643=>1,633016671=>1,633016875=>1,633016734=>1,633014229=>1,633014147=>1,633013098=>1,633012995=>1,633013254=>1,633013256=>1,633014090=>1,633013835=>1,633016941=>1,633016980=>1,633017943=>1,633017780=>1,633017987=>1,633018281=>1,633019982=>1,633018344=>1,633017757=>1,633017628=>1,633017216=>1,633017012=>1,633017228=>1,633017403=>1,633017611=>1,633017423=>1,633012966=>1,633012909=>1,630496577=>1,630496548=>1,630496606=>1,630496695=>1,630760227=>1,630497203=>1,630496041=>1,630495923=>1,630442688=>1,630440925=>1,630447383=>1,630495239=>1,630495654=>1,630495519=>1,630784266=>1,630797701=>1,632998295=>1,631226530=>1,633001511=>1,633012332=>1,633012629=>1,633012509=>1,631096151=>1,631096147=>1,631082503=>1,630833330=>1,631094330=>1,631095659=>1,631095988=>1,633020199=>1,633022099=>1,633042488=>1,633041828=>1,633042747=>1,633043092=>1,633043987=>1,633043833=>1,633041821=>1,633041776=>1,633040600=>1,633040420=>1,633041444=>1,633041564=>1,633041771=>1,633041711=>1,633044263=>1,633044839=>1,633058416=>1,633058322=>1,633072972=>1,633073416=>1,633077031=>1,633076253=>1,633058308=>1,633057344=>1,633045730=>1,633045414=>1,633047521=>1,633049219=>1,633049984=>1,633040396=>1,633040188=>1,633037138=>1,633037087=>1,633037151=>1,633037497=>1,633038223=>1,633037761=>1,633036884=>1,633031624=>1,633023346=>1,633023259=>1,633027293=>1,633027322=>1,633030147=>1,633027645=>1,633038259=>1,633038260=>1,633039172=>1,633039169=>1,633039693=>1,633039707=>1,633039952=>1,633039853=>1,633039147=>1,633038959=>1,633038522=>1,633038444=>1,633038538=>1,633038748=>1,633038896=>1,645705181=>1,);?>
1
+ <?php return array(635284480=>635284991,636288862=>1,636288722=>1,636289027=>1,636289168=>1,636292163=>1,636290841=>1,636288647=>1,636287903=>1,636287300=>1,636287254=>1,636287420=>1,636287688=>1,636287737=>1,636287718=>1,636292537=>1,636292644=>1,636295437=>1,636295416=>1,636295897=>1,636297230=>1,636297715=>1,636297347=>1,636295343=>1,636295281=>1,636292879=>1,636286928=>1,636292899=>1,636292959=>1,636294167=>1,636293080=>1,636297966=>1,636286813=>1,636273909=>1,636273794=>1,636278787=>1,636278796=>1,636278826=>1,636278814=>1,636273724=>1,636273435=>1,636264436=>1,636264350=>1,636268743=>1,636269012=>1,636270468=>1,636269372=>1,636278832=>1,636278833=>1,636285412=>1,636283071=>1,636285493=>1,636286320=>1,636286416=>1,636286373=>1,636283040=>1,636279881=>1,636278855=>1,636278842=>1,636278867=>1,636278869=>1,636279842=>1,636298869=>1,636299844=>1,636314605=>1,636314529=>1,636314961=>1,636315693=>1,636316616=>1,636316549=>1,636314164=>1,636314042=>1,636311765=>1,636311642=>1,636312280=>1,636313117=>1,636313970=>1,636313957=>1,636316621=>1,636316633=>1,636335141=>1,636333251=>1,636335390=>1,636335393=>1,636336114=>1,636336055=>1,636333064=>1,636319826=>1,636319753=>1,636316636=>1,636319769=>1,636319793=>1,636319815=>1,636311606=>1,636311594=>1,636303718=>1,636303620=>1,636304508=>1,636304910=>1,636305307=>1,636304950=>1,636302901=>1,636302788=>1,636301136=>1,636300441=>1,636301734=>1,636301962=>1,636302348=>1,636302208=>1,636306463=>1,636307239=>1,636309012=>1,636308711=>1,636309831=>1,636310974=>1,636311349=>1,636310996=>1,636308618=>1,636308556=>1,636307785=>1,636307721=>1,636307927=>1,636308262=>1,636308387=>1,636264258=>1,636263587=>1,636235637=>1,636235619=>1,636235644=>1,636235646=>1,636236597=>1,636236481=>1,636235500=>1,636235430=>1,636233208=>1,636232888=>1,636233359=>1,636233899=>1,636235043=>1,636235025=>1,636236602=>1,636236957=>1,636239083=>1,636238897=>1,636239098=>1,636239283=>1,636239570=>1,636239352=>1,636238827=>1,636238428=>1,636237456=>1,636237049=>1,636237682=>1,636238074=>1,636238410=>1,636238402=>1,636232845=>1,636232813=>1,636173831=>1,636173389=>1,636174668=>1,636175186=>1,636223834=>1,636223541=>1,636172468=>1,636172115=>1,636170487=>1,636164580=>1,636170620=>1,636170634=>1,636172084=>1,636171331=>1,636223964=>1,636224220=>1,636231938=>1,636228884=>1,636232013=>1,636232454=>1,636232711=>1,636232507=>1,636228303=>1,636227947=>1,636224509=>1,636224401=>1,636225091=>1,636225248=>1,636225481=>1,636240291=>1,636240711=>1,636248944=>1,636248725=>1,636249488=>1,636249707=>1,636249814=>1,636249811=>1,636248468=>1,636248336=>1,636247286=>1,636247214=>1,636247495=>1,636248143=>1,636248158=>1,636248146=>1,636249829=>1,636254243=>1,636262858=>1,636261619=>1,636263243=>1,636263475=>1,636345884=>1,636263533=>1,636255817=>1,636255754=>1,636254437=>1,636254429=>1,636254629=>1,636254640=>1,636255689=>1,636246232=>1,636246173=>1,636243611=>1,636243496=>1,636244041=>1,636244192=>1,636244766=>1,636244391=>1,636243416=>1,636243387=>1,636242044=>1,636241446=>1,636242117=>1,636242141=>1,636243198=>1,636242777=>1,636244814=>1,636244821=>1,636245336=>1,636245270=>1,636245353=>1,636245705=>1,636246082=>1,636246038=>1,636245136=>1,636245108=>1,636244876=>1,636244861=>1,636244905=>1,636244989=>1,636245106=>1,636263682=>1,636346709=>1,636382948=>1,636382914=>1,636382962=>1,636402860=>1,636406816=>1,636406804=>1,636382803=>1,636382802=>1,636382196=>1,636382114=>1,636382314=>1,636382354=>1,636382477=>1,636382453=>1,636406848=>1,636408287=>1,636413865=>1,636413404=>1,636413879=>1,636413888=>1,636424196=>1,636413892=>1,636413050=>1,636412509=>1,636409531=>1,636408748=>1,636409734=>1,636410780=>1,636412469=>1,636411509=>1,636382054=>1,636381485=>1,636378573=>1,636378126=>1,636379053=>1,636379075=>1,636379355=>1,636379147=>1,636377823=>1,636377757=>1,636376387=>1,636375658=>1,636376519=>1,636377184=>1,636377625=>1,636377503=>1,636379720=>1,636379793=>1,636380513=>1,636380421=>1,636380638=>1,636380780=>1,636381479=>1,636380824=>1,636380311=>1,636380158=>1,636379880=>1,636379807=>1,636380044=>1,636380075=>1,636380138=>1,636425183=>1,636425270=>1,636438719=>1,636438689=>1,636438869=>1,636439974=>1,636440505=>1,636440211=>1,636436130=>1,636435757=>1,636434465=>1,636434443=>1,636434474=>1,636434483=>1,636435056=>1,636434571=>1,636440585=>1,636440880=>1,636443940=>1,636443379=>1,636444018=>1,636444050=>1,636444741=>1,636444486=>1,636442462=>1,636442288=>1,636441193=>1,636441108=>1,636441241=>1,636441256=>1,636441817=>1,636434378=>1,636434361=>1,636427076=>1,636426754=>1,636427312=>1,636427600=>1,636427904=>1,636427883=>1,636426570=>1,636426546=>1,636425790=>1,636425789=>1,636425792=>1,636426347=>1,636426491=>1,636426448=>1,636428045=>1,636428057=>1,636433816=>1,636433371=>1,636434108=>1,636434152=>1,636434263=>1,636434184=>1,636432935=>1,636430173=>1,636429436=>1,636428667=>1,636429438=>1,636429605=>1,636429883=>1,636375544=>1,636375464=>1,636359919=>1,636359820=>1,636360587=>1,636362772=>1,636362808=>1,636362774=>1,636359785=>1,636359725=>1,636359063=>1,636358948=>1,636359130=>1,636359194=>1,636359611=>1,636359585=>1,636363393=>1,636363781=>1,636365483=>1,636365372=>1,636365569=>1,636365693=>1,636365865=>1,636365837=>1,636365321=>1,636365319=>1,636363884=>1,636363785=>1,636364701=>1,636365134=>1,636365175=>1,636365151=>1,636358933=>1,636358923=>1,636354702=>1,636354310=>1,636355066=>1,636355091=>1,636355733=>1,636355226=>1,636354164=>1,636353885=>1,636347900=>1,636346926=>1,636348420=>1,636348491=>1,636353680=>1,636348557=>1,636355895=>1,636356049=>1,636357731=>1,636357606=>1,636357822=>1,636358053=>1,636358379=>1,636358076=>1,636357513=>1,636357478=>1,636356196=>1,636356172=>1,636356261=>1,636356329=>1,636356853=>1,636365876=>1,636365974=>1,636372252=>1,636372217=>1,636372514=>1,636372663=>1,636372716=>1,636372696=>1,636372184=>1,636372067=>1,636370831=>1,636370332=>1,636370968=>1,636371079=>1,636371869=>1,636371553=>1,636373045=>1,636373177=>1,636374783=>1,636374749=>1,636375002=>1,636375080=>1,636375454=>1,636375388=>1,636374405=>1,636374403=>1,636373694=>1,636373325=>1,636373708=>1,636373754=>1,636374094=>1,636369870=>1,636369769=>1,636367245=>1,636367130=>1,636367254=>1,636367287=>1,636367398=>1,636367354=>1,636366785=>1,636366738=>1,636366203=>1,636366136=>1,636366281=>1,636366400=>1,636366640=>1,636366598=>1,636367739=>1,636367806=>1,636368618=>1,636368497=>1,636368634=>1,636368661=>1,636369079=>1,636368767=>1,636368468=>1,636368257=>1,636367950=>1,636367912=>1,636368001=>1,636368087=>1,636368092=>1,636164143=>1,636052862=>1,624633411=>1,624633147=>1,624634049=>1,624634182=>1,624634764=>1,624634483=>1,624627401=>1,624626997=>1,624573256=>1,624555675=>1,624573272=>1,624624167=>1,624626206=>1,624624316=>1,624635551=>1,624635675=>1,624651193=>1,624650030=>1,624651611=>1,624652224=>1,624654070=>1,624652295=>1,624648582=>1,624648383=>1,624638062=>1,624636727=>1,624638501=>1,624639424=>1,624646576=>1,624639934=>1,624538370=>1,624529337=>1,623932384=>1,623931500=>1,623933487=>1,623933585=>1,623934580=>1,623933636=>1,623931496=>1,623931495=>1,623924417=>1,623924272=>1,623924422=>1,623928769=>1,623930731=>1,623930647=>1,623934581=>1,623972171=>1,624495839=>1,624388649=>1,624496234=>1,624512249=>1,624513966=>1,624512827=>1,624253360=>1,624252156=>1,623995117=>1,623976085=>1,624002818=>1,624026348=>1,624187639=>1,624654198=>1,624655246=>1,625999556=>1,625890632=>1,626028463=>1,626043269=>1,626166401=>1,626159953=>1,625836194=>1,625830394=>1,625830353=>1,625830337=>1,625830357=>1,625830364=>1,625830391=>1,625830379=>1,626320522=>1,627150063=>1,628662284=>1,628288993=>1,628662980=>1,628666299=>1,628667076=>1,628667071=>1,628112825=>1,627980223=>1,627238281=>1,627154804=>1,627238842=>1,627298640=>1,627301573=>1,625830336=>1,625830335=>1,625830217=>1,625830215=>1,625830219=>1,625830244=>1,625830247=>1,625830245=>1,625830148=>1,625830086=>1,624686022=>1,624666352=>1,624695826=>1,624699174=>1,624818966=>1,624818938=>1,625830250=>1,625830262=>1,625830305=>1,625830303=>1,625830306=>1,625830308=>1,625830332=>1,625830314=>1,625830279=>1,625830278=>1,625830271=>1,625830269=>1,625830272=>1,625830275=>1,625830277=>1,623923438=>1,623923380=>1,619121450=>1,619105360=>1,619125394=>1,619125856=>1,619131208=>1,619128185=>1,619059193=>1,619059003=>1,618799979=>1,618775647=>1,618800744=>1,618981509=>1,619055387=>1,619020148=>1,619132032=>1,619132077=>1,619270173=>1,619262456=>1,619270538=>1,619278908=>1,619323658=>1,619284971=>1,619232582=>1,619219439=>1,619184246=>1,619136988=>1,619185901=>1,619186121=>1,619195576=>1,619195272=>1,618775646=>1,611244887=>1,609353545=>1,609352922=>1,609419458=>1,609432510=>1,609444442=>1,609444246=>1,609340388=>1,609339834=>1,609325797=>1,609325377=>1,609332542=>1,609335333=>1,609335558=>1,609335453=>1,609444972=>1,609445983=>1,609573727=>1,609553178=>1,609598266=>1,609600781=>1,611211874=>1,609611195=>1,609550347=>1,609517735=>1,609478504=>1,609477600=>1,609478795=>1,609480419=>1,609507856=>1,619325451=>1,619325563=>1,622863409=>1,622639121=>1,622865409=>1,622865413=>1,622865424=>1,622865417=>1,622547836=>1,622477391=>1,622026701=>1,622021326=>1,622197586=>1,622352534=>1,622390408=>1,622372682=>1,622865817=>1,622865865=>1,623804473=>1,623804470=>1,623804910=>1,623919124=>1,623923301=>1,623919883=>1,623804469=>1,623107770=>1,622885160=>1,622866430=>1,622998646=>1,622999981=>1,623078382=>1,621936366=>1,621726834=>1,619404922=>1,619392130=>1,619565430=>1,619685372=>1,620753223=>1,620381444=>1,619360436=>1,619360415=>1,619330537=>1,619329573=>1,619335822=>1,619337240=>1,619360321=>1,619348661=>1,620789548=>1,620828396=>1,621120164=>1,621098861=>1,621128401=>1,621389885=>1,621725228=>1,621720637=>1,620877236=>1,620872359=>1,620830974=>1,620828532=>1,620836316=>1,620838200=>1,620839300=>1,628670038=>1,628805852=>1,633317736=>1,633317702=>1,633317871=>1,633317941=>1,633319190=>1,633318467=>1,633316855=>1,633315991=>1,633311410=>1,633311307=>1,633312394=>1,633312813=>1,633315812=>1,633313443=>1,633323545=>1,633323560=>1,633326727=>1,633325485=>1,633326728=>1,633326729=>1,633327093=>1,633327080=>1,633324856=>1,633324643=>1,633323888=>1,633323740=>1,633323948=>1,633324017=>1,633324546=>1,633324144=>1,633311009=>1,633310900=>1,633057344=>1,633056037=>1,633058308=>1,633058322=>1,633062249=>1,633058416=>1,633055557=>1,633051964=>1,633045730=>1,633045414=>1,633047521=>1,633047742=>1,633051703=>1,633049984=>1,633073416=>1,633074186=>1,633309293=>1,633308444=>1,633310096=>1,633310163=>1,633310632=>1,633310330=>1,633308376=>1,633308128=>1,633096314=>1,633077031=>1,633231208=>1,633306126=>1,633307186=>1,633327161=>1,633327244=>1,635179561=>1,635177965=>1,635184074=>1,635184368=>1,635284458=>1,635282146=>1,635177954=>1,635105381=>1,634469382=>1,634462987=>1,634470006=>1,634475972=>1,635105330=>1,634976630=>1,635284460=>1,635291063=>1,635999337=>1,635860773=>1,636041722=>1,636041990=>1,609323667=>1,636052381=>1,635859757=>1,635859016=>1,635782314=>1,635733607=>1,635802248=>1,635818880=>1,635849287=>1,634462862=>1,634316738=>1,633331155=>1,633331129=>1,633331164=>1,633331374=>1,633484555=>1,633369623=>1,633330729=>1,633330074=>1,633328329=>1,633328296=>1,633328770=>1,633328914=>1,633330017=>1,633329379=>1,633486127=>1,633865288=>1,634194572=>1,634194307=>1,634194837=>1,634206422=>1,634242283=>1,634208019=>1,634191533=>1,634167698=>1,633889787=>1,633889285=>1,633947731=>1,633975332=>1,634159951=>1,633043987=>1,633043833=>1,631094330=>1,631082503=>1,631095417=>1,631095659=>1,631096147=>1,631095988=>1,630833330=>1,630797701=>1,630763557=>1,630619382=>1,630764307=>1,630766097=>1,630784266=>1,630766153=>1,631096151=>1,631104299=>1,633012966=>1,633012909=>1,633013098=>1,633013254=>1,633013835=>1,633013256=>1,633012769=>1,633012758=>1,632998295=>1,631226530=>1,633001511=>1,633012332=>1,633012629=>1,633012509=>1,630298575=>1,630243186=>1,629401258=>1,629336591=>1,629549335=>1,629846265=>1,629867684=>1,629866231=>1,629334918=>1,629334917=>1,628851376=>1,628846877=>1,628851715=>1,628864525=>1,629196447=>1,629175330=>1,629869619=>1,629869902=>1,629982967=>1,629982074=>1,630130747=>1,630160263=>1,630212607=>1,630160594=>1,629982017=>1,629960280=>1,629872238=>1,629871512=>1,629872508=>1,629873484=>1,629948679=>1,633014090=>1,633014147=>1,633038522=>1,633038444=>1,633038538=>1,633038748=>1,633039021=>1,633038959=>1,633038259=>1,633038223=>1,633037151=>1,633037138=>1,633037492=>1,633037497=>1,633038097=>1,633037761=>1,633039147=>1,633039169=>1,633041776=>1,633041711=>1,633041821=>1,633041828=>1,633043092=>1,633042488=>1,633040600=>1,633040188=>1,633039693=>1,633039172=>1,633039853=>1,633039952=>1,633040133=>1,633037087=>1,633036884=>1,633017228=>1,633017216=>1,633017403=>1,633017423=>1,633017628=>1,633017611=>1,633017012=>1,633016980=>1,633016495=>1,633014229=>1,633016643=>1,633016671=>1,633016941=>1,633016875=>1,633017757=>1,633017780=>1,633027293=>1,633023346=>1,633027322=>1,633027645=>1,633036877=>1,633035844=>1,633022099=>1,633020199=>1,633017987=>1,633017943=>1,633018028=>1,633018344=>1,633019982=>1,636163335=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-20.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2088382441=>1,2088381866=>1,2088382710=>1,2088382775=>1,2088382872=>1,2088382831=>1,2088381731=>1,2088381662=>1,2088380362=>1,2088380327=>1,2088380376=>1,2088380508=>1,2088381231=>1,2088381227=>1,2088382875=>1,2088382933=>1,2088383700=>1,2088383675=>1,2088383896=>1,2088383946=>1,2088384136=>1,2088384108=>1,2088383523=>1,2088383514=>1,2088383085=>1,2088383025=>1,2088383176=>1,2088383288=>1,2088383371=>1,2088383354=>1,2088380146=>1,2088380144=>1,2088379511=>1,2088379466=>1,2088379550=>1,2088379556=>1,2088379568=>1,2088379559=>1,2088379382=>1,2088379340=>1,2088379012=>1,2088378995=>1,2088379061=>1,2088379101=>1,2088379313=>1,2088379246=>1,2088379641=>1,2088379654=>1,2088380053=>1,2088379994=>1,2088380071=>1,2088380085=>1,2088380133=>1,2088380102=>1,2088379950=>1,2088379940=>1,2088379710=>1,2088379659=>1,2088379778=>1,2088379843=>1,2088379854=>1,2088384146=>1,2088384169=>1,2088386652=>1,2088386503=>1,2088386673=>1,2088386729=>1,2088387123=>1,2088386906=>1,2088385978=>1,2088385924=>1,2088385363=>1,2088385338=>1,2088385382=>1,2088385404=>1,2088385531=>1,2088385483=>1,2088387190=>1,2088387215=>1,2088387873=>1,2088387807=>1,2088387882=>1,2088387898=>1,2088387964=>1,2088387925=>1,2088387796=>1,2088387775=>1,2088387465=>1,2088387370=>1,2088387491=>1,2088387564=>1,2088387710=>1,2088387577=>1,2088385336=>1,2088385313=>1,2088384392=>1,2088384382=>1,2088384414=>1,2088384439=>1,2088384483=>1,2088384463=>1,2088384351=>1,2088384347=>1,2088384193=>1,2088384186=>1,2088384235=>1,2088384250=>1,2088384343=>1,2088384266=>1,2088384507=>1,2088384516=>1,2088384729=>1,2088384695=>1,2088384766=>1,2088384792=>1,2088385277=>1,2088384921=>1,2088384672=>1,2088384668=>1,2088384538=>1,2088384527=>1,2088384571=>1,2088384610=>1,2088384650=>1,2088378956=>1,2088378953=>1,2088303302=>1,2088303300=>1,2088303334=>1,2088303723=>1,2088303973=>1,2088303876=>1,2088303229=>1,2088303132=>1,2088302715=>1,2088302362=>1,2088302813=>1,2088302885=>1,2088303125=>1,2088303060=>1,2088304044=>1,2088304119=>1,2088370986=>1,2088370977=>1,2088370989=>1,2088371016=>1,2088371026=>1,2088371022=>1,2088370874=>1,2088370506=>1,2088304302=>1,2088304161=>1,2088320681=>1,2088370386=>1,2088370503=>1,2088370489=>1,2088302230=>1,2088302095=>1,2088299315=>1,2088299129=>1,2088299985=>1,2088300005=>1,2088300056=>1,2088300045=>1,2088298940=>1,2088298801=>1,2088298217=>1,2088298056=>1,2088298318=>1,2088298478=>1,2088298746=>1,2088298655=>1,2088300212=>1,2088300566=>1,2088301686=>1,2088301617=>1,2088301868=>1,2088301945=>1,2088302013=>1,2088301946=>1,2088301616=>1,2088301554=>1,2088300748=>1,2088300595=>1,2088300754=>1,2088300798=>1,2088301480=>1,2088371032=>1,2088371047=>1,2088376363=>1,2088376231=>1,2088376409=>1,2088376585=>1,2088376663=>1,2088376617=>1,2088376204=>1,2088376101=>1,2088375953=>1,2088375877=>1,2088375957=>1,2088376029=>1,2088376098=>1,2088376053=>1,2088376685=>1,2088376690=>1,2088378497=>1,2088378425=>1,2088378531=>1,2088378539=>1,2088378559=>1,2088378540=>1,2088378413=>1,2088378331=>1,2088376699=>1,2088376697=>1,2088376764=>1,2088376774=>1,2088376824=>1,2088375813=>1,2088375521=>1,2088371287=>1,2088371277=>1,2088371313=>1,2088371373=>1,2088371401=>1,2088371400=>1,2088371210=>1,2088371181=>1,2088371076=>1,2088371050=>1,2088371100=>1,2088371136=>1,2088371170=>1,2088371148=>1,2088371412=>1,2088371418=>1,2088372198=>1,2088371979=>1,2088374244=>1,2088374486=>1,2088375478=>1,2088375030=>1,2088371845=>1,2088371582=>1,2088371453=>1,2088371420=>1,2088371454=>1,2088371481=>1,2088371518=>1,2088387991=>1,2088388058=>1,2088403415=>1,2088403279=>1,2088403438=>1,2088403471=>1,2088403645=>1,2088403571=>1,2088403258=>1,2088403028=>1,2088402829=>1,2088402820=>1,2088402834=>1,2088402865=>1,2088402942=>1,2088402904=>1,2088403677=>1,2088403722=>1,2088406285=>1,2088404151=>1,2088406347=>1,2088406473=>1,2088407240=>1,2088406923=>1,2088404127=>1,2088404052=>1,2088403980=>1,2088403977=>1,2088404017=>1,2088404027=>1,2088404051=>1,2088404047=>1,2088402817=>1,2088402704=>1,2088401044=>1,2088400834=>1,2088401105=>1,2088401216=>1,2088401336=>1,2088401245=>1,2088400623=>1,2088400607=>1,2088400410=>1,2088400408=>1,2088400460=>1,2088400502=>1,2088400579=>1,2088400537=>1,2088401342=>1,2088401354=>1,2088402011=>1,2088401905=>1,2088402529=>1,2088402602=>1,2088402666=>1,2088402637=>1,2088401589=>1,2088401547=>1,2088401368=>1,2088401357=>1,2088401446=>1,2088401471=>1,2088401504=>1,2088407241=>1,2088407341=>1,2088411899=>1,2088411812=>1,2088412001=>1,2088412176=>1,2088412305=>1,2088412206=>1,2088411678=>1,2088411579=>1,2088411327=>1,2088411245=>1,2088411363=>1,2088411377=>1,2088411508=>1,2088411399=>1,2088412421=>1,2088412562=>1,2088414058=>1,2088414027=>1,2088414357=>1,2088414426=>1,2088414717=>1,2088414705=>1,2088414019=>1,2088413971=>1,2088412606=>1,2088412568=>1,2088412609=>1,2088412844=>1,2088413954=>1,2088411225=>1,2088411187=>1,2088409394=>1,2088409337=>1,2088409409=>1,2088409513=>1,2088410430=>1,2088410396=>1,2088409276=>1,2088409262=>1,2088407409=>1,2088407393=>1,2088407528=>1,2088408183=>1,2088408269=>1,2088408214=>1,2088410439=>1,2088410518=>1,2088411039=>1,2088411031=>1,2088411133=>1,2088411134=>1,2088411184=>1,2088411138=>1,2088411030=>1,2088410994=>1,2088410586=>1,2088410544=>1,2088410607=>1,2088410726=>1,2088410830=>1,2088400386=>1,2088400303=>1,2088393596=>1,2088393580=>1,2088393601=>1,2088393611=>1,2088393672=>1,2088393628=>1,2088393562=>1,2088393346=>1,2088391340=>1,2088391327=>1,2088391381=>1,2088391397=>1,2088393177=>1,2088391409=>1,2088393782=>1,2088393932=>1,2088395994=>1,2088395974=>1,2088396108=>1,2088396209=>1,2088396325=>1,2088396261=>1,2088395965=>1,2088395827=>1,2088395571=>1,2088393935=>1,2088395596=>1,2088395603=>1,2088395717=>1,2088395702=>1,2088391315=>1,2088391261=>1,2088388692=>1,2088388614=>1,2088388724=>1,2088388784=>1,2088389238=>1,2088388814=>1,2088388612=>1,2088388492=>1,2088388122=>1,2088388110=>1,2088388142=>1,2088388154=>1,2088388206=>1,2088388161=>1,2088389345=>1,2088389372=>1,2088390877=>1,2088390719=>1,2088390891=>1,2088390994=>1,2088391225=>1,2088391198=>1,2088390553=>1,2088390541=>1,2088389426=>1,2088389419=>1,2088389589=>1,2088389623=>1,2088390449=>1,2088396472=>1,2088396486=>1,2088399487=>1,2088399441=>1,2088399520=>1,2088399561=>1,2088399707=>1,2088399682=>1,2088399437=>1,2088399344=>1,2088399071=>1,2088399038=>1,2088399131=>1,2088399178=>1,2088399263=>1,2088399259=>1,2088399715=>1,2088399737=>1,2088400147=>1,2088400143=>1,2088400172=>1,2088400193=>1,2088400299=>1,2088400256=>1,2088400101=>1,2088400081=>1,2088399817=>1,2088399803=>1,2088399906=>1,2088399925=>1,2088400027=>1,2088399015=>1,2088398971=>1,2088397143=>1,2088397094=>1,2088397198=>1,2088397273=>1,2088397451=>1,2088397330=>1,2088396876=>1,2088396814=>1,2088396556=>1,2088396523=>1,2088396592=>1,2088396692=>1,2088396785=>1,2088396783=>1,2088397464=>1,2088397484=>1,2088398303=>1,2088398290=>1,2088398314=>1,2088398856=>1,2088398867=>1,2088398858=>1,2088398227=>1,2088398112=>1,2088397726=>1,2088397600=>1,2088397811=>1,2088397974=>1,2088398089=>1,2088297956=>1,2088297909=>1,2088268728=>1,2088268651=>1,2088268889=>1,2088268935=>1,2088268971=>1,2088268957=>1,2088268567=>1,2088268491=>1,2088268224=>1,2088268223=>1,2088268242=>1,2088268276=>1,2088268394=>1,2088268324=>1,2088269040=>1,2088269112=>1,2088269932=>1,2088269930=>1,2088269993=>1,2088270055=>1,2088270217=>1,2088270151=>1,2088269764=>1,2088269705=>1,2088269164=>1,2088269152=>1,2088269270=>1,2088269375=>1,2088269681=>1,2088269669=>1,2088268183=>1,2088268178=>1,2088267565=>1,2088267561=>1,2088267572=>1,2088267642=>1,2088267716=>1,2088267651=>1,2088267537=>1,2088267528=>1,2088266878=>1,2088266743=>1,2088266885=>1,2088266906=>1,2088267128=>1,2088267092=>1,2088267737=>1,2088267778=>1,2088268010=>1,2088267913=>1,2088268033=>1,2088268034=>1,2088268155=>1,2088268048=>1,2088267910=>1,2088267878=>1,2088267809=>1,2088267805=>1,2088267813=>1,2088267816=>1,2088267823=>1,2088270307=>1,2088270721=>1,2088274309=>1,2088274278=>1,2088274370=>1,2088274552=>1,2088274702=>1,2088274671=>1,2088274122=>1,2088274106=>1,2088273696=>1,2088273582=>1,2088273735=>1,2088273897=>1,2088274061=>1,2088273929=>1,2088274726=>1,2088274754=>1,2088276206=>1,2088276164=>1,2088276209=>1,2088276293=>1,2088276458=>1,2088276337=>1,2088276162=>1,2088275737=>1,2088274781=>1,2088274764=>1,2088274815=>1,2088274883=>1,2088275731=>1,2088273544=>1,2088273500=>1,2088271631=>1,2088271586=>1,2088271719=>1,2088271793=>1,2088271949=>1,2088271862=>1,2088271448=>1,2088271394=>1,2088270963=>1,2088270846=>1,2088271136=>1,2088271164=>1,2088271284=>1,2088271273=>1,2088271968=>1,2088272071=>1,2088272849=>1,2088272747=>1,2088272857=>1,2088272997=>1,2088273394=>1,2088273167=>1,2088272711=>1,2088272685=>1,2088272323=>1,2088272191=>1,2088272362=>1,2088272397=>1,2088272465=>1,2088266663=>1,2088266658=>1,2088259490=>1,2088259487=>1,2088259499=>1,2088259551=>1,2088259579=>1,2088259559=>1,2088259486=>1,2088259470=>1,2088259308=>1,2088259245=>1,2088259319=>1,2088259339=>1,2088259422=>1,2088259353=>1,2088259617=>1,2088259662=>1,2088260887=>1,2088260684=>1,2088260904=>1,2088261061=>1,2088261186=>1,2088261185=>1,2088260676=>1,2088260578=>1,2088259805=>1,2088259700=>1,2088260199=>1,2088260375=>1,2088260461=>1,2088260448=>1,2088259167=>1,2088259150=>1,2088258690=>1,2088258632=>1,2088258709=>1,2088258751=>1,2088258804=>1,2088258786=>1,2088258579=>1,2088258465=>1,2088258394=>1,2088258389=>1,2088258416=>1,2088258419=>1,2088258448=>1,2088258445=>1,2088258854=>1,2088258856=>1,2088259019=>1,2088259002=>1,2088259034=>1,2088259057=>1,2088259095=>1,2088259060=>1,2088258997=>1,2088258977=>1,2088258910=>1,2088258907=>1,2088258921=>1,2088258938=>1,2088258969=>1,2088261357=>1,2088261363=>1,2088265047=>1,2088265021=>1,2088265048=>1,2088265292=>1,2088265380=>1,2088265367=>1,2088265006=>1,2088264962=>1,2088264649=>1,2088264617=>1,2088264689=>1,2088264694=>1,2088264909=>1,2088264838=>1,2088265474=>1,2088265511=>1,2088266139=>1,2088266067=>1,2088266217=>1,2088266236=>1,2088266336=>1,2088266269=>1,2088265963=>1,2088265918=>1,2088265597=>1,2088265540=>1,2088265849=>1,2088265867=>1,2088265888=>1,2088264607=>1,2088264590=>1,2088262159=>1,2088262158=>1,2088262285=>1,2088262315=>1,2088262495=>1,2088262433=>1,2088262138=>1,2088261916=>1,2088261496=>1,2088261435=>1,2088261563=>1,2088261677=>1,2088261903=>1,2088261841=>1,2088262862=>1,2088263753=>1,2088264380=>1,2088264266=>1,2088264381=>1,2088264412=>1,2088264521=>1,2088264443=>1,2088264253=>1,2088264199=>1,2088263940=>1,2088263800=>1,2088264062=>1,2088264086=>1,2088264111=>1,2088276488=>1,2088276489=>1,2088289543=>1,2088289514=>1,2088289562=>1,2088289628=>1,2088289683=>1,2088289658=>1,2088289509=>1,2088289466=>1,2088289329=>1,2088289311=>1,2088289343=>1,2088289386=>1,2088289455=>1,2088289397=>1,2088289684=>1,2088289700=>1,2088289849=>1,2088289821=>1,2088289868=>1,2088289875=>1,2088289880=>1,2088289876=>1,2088289788=>1,2088289763=>1,2088289725=>1,2088289709=>1,2088289728=>1,2088289748=>1,2088289753=>1,2088289751=>1,2088289289=>1,2088288233=>1,2088286982=>1,2088286967=>1,2088287032=>1,2088287039=>1,2088287115=>1,2088287077=>1,2088286895=>1,2088286868=>1,2088286593=>1,2088286486=>1,2088286661=>1,2088286686=>1,2088286864=>1,2088286800=>1,2088287321=>1,2088287323=>1,2088288052=>1,2088287899=>1,2088288059=>1,2088288111=>1,2088288188=>1,2088288169=>1,2088287877=>1,2088287836=>1,2088287541=>1,2088287393=>1,2088287560=>1,2088287594=>1,2088287604=>1,2088289908=>1,2088289912=>1,2088295064=>1,2088295012=>1,2088295184=>1,2088295234=>1,2088295336=>1,2088295322=>1,2088294802=>1,2088294768=>1,2088294502=>1,2088294488=>1,2088294586=>1,2088294592=>1,2088294664=>1,2088294610=>1,2088295385=>1,2088295419=>1,2088297309=>1,2088297264=>1,2088297516=>1,2088297543=>1,2088297691=>1,2088297548=>1,2088297233=>1,2088297208=>1,2088296522=>1,2088296513=>1,2088296534=>1,2088296731=>1,2088296841=>1,2088294486=>1,2088294422=>1,2088290170=>1,2088290153=>1,2088290264=>1,2088290277=>1,2088292592=>1,2088292472=>1,2088290146=>1,2088290138=>1,2088290020=>1,2088289995=>1,2088290029=>1,2088290041=>1,2088290124=>1,2088290110=>1,2088292597=>1,2088292635=>1,2088293323=>1,2088293212=>1,2088293489=>1,2088293601=>1,2088294395=>1,2088294153=>1,2088293194=>1,2088293133=>1,2088292884=>1,2088292714=>1,2088292925=>1,2088293018=>1,2088293036=>1,2088286413=>1,2088286388=>1,2088278809=>1,2088278790=>1,2088278856=>1,2088279027=>1,2088279149=>1,2088279084=>1,2088278703=>1,2088278688=>1,2088278260=>1,2088278231=>1,2088278356=>1,2088278469=>1,2088278558=>1,2088278535=>1,2088279185=>1,2088279483=>1,2088280381=>1,2088280374=>1,2088280496=>1,2088280537=>1,2088280671=>1,2088280581=>1,2088280300=>1,2088280170=>1,2088279586=>1,2088279532=>1,2088279624=>1,2088279658=>1,2088279756=>1,2088279689=>1,2088278162=>1,2088278141=>1,2088277076=>1,2088276946=>1,2088277125=>1,2088277126=>1,2088277165=>1,2088277128=>1,2088276914=>1,2088276892=>1,2088276580=>1,2088276514=>1,2088276628=>1,2088276776=>1,2088276885=>1,2088276813=>1,2088277204=>1,2088277295=>1,2088277744=>1,2088277624=>1,2088277956=>1,2088278047=>1,2088278139=>1,2088278085=>1,2088277600=>1,2088277526=>1,2088277323=>1,2088277301=>1,2088277342=>1,2088277415=>1,2088277510=>1,2088280751=>1,2088280773=>1,2088284239=>1,2088284192=>1,2088284255=>1,2088284516=>1,2088284663=>1,2088284544=>1,2088284165=>1,2088284087=>1,2088283827=>1,2088283822=>1,2088283955=>1,2088284009=>1,2088284021=>1,2088284013=>1,2088284664=>1,2088284825=>1,2088285905=>1,2088285488=>1,2088286286=>1,2088286324=>1,2088286379=>1,2088286376=>1,2088285475=>1,2088285442=>1,2088285088=>1,2088284844=>1,2088285096=>1,2088285415=>1,2088285427=>1,2088283644=>1,2088283579=>1,2088282185=>1,2088282137=>1,2088282194=>1,2088282240=>1,2088282294=>1,2088282286=>1,2088282128=>1,2088282123=>1,2088280943=>1,2088280795=>1,2088280945=>1,2088281152=>1,2088281396=>1,2088281195=>1,2088282483=>1,2088282491=>1,2088283211=>1,2088283051=>1,2088283290=>1,2088283404=>1,2088283503=>1,2088283429=>1,2088282928=>1,2088282922=>1,2088282590=>1,2088282496=>1,2088282639=>1,2088282754=>1,2088282782=>1,2088258362=>1,);?>
1
+ <?php return array(1753249979=>1,1753249976=>1,1753249980=>1,1753249981=>1,1753250178=>1,1753249982=>1,1753249973=>1,1753249969=>1,1753249959=>1,1753249956=>1,1753249960=>1,1753249963=>1,1753249967=>1,1753249966=>1,1753250181=>1,1753250182=>1,1753250216=>1,1753250214=>1,1753250217=>1,1753250219=>1,1753250224=>1,1753250222=>1,1753250208=>1,1753250206=>1,1753250191=>1,1753250190=>1,1753250193=>1,1753250195=>1,1753250204=>1,1753250199=>1,1753249955=>1,1753249937=>1,1744825270=>1,1744825269=>1,1746933041=>1,1747140345=>1,1747236354=>1,1747212196=>1,1744825266=>1,1744825252=>1,1744825220=>1,1744825219=>1,1744825230=>1,1744825231=>1,1744825245=>1,1744825241=>1,1747281761=>1,1747294772=>1,1747707216=>1,1747570233=>1,1747818549=>1,1747947168=>1,1753249933=>1,1753228082=>1,1747566179=>1,1747518091=>1,1747304604=>1,1747298587=>1,1747475474=>1,1747487398=>1,1747492670=>1,1753250227=>1,1753250229=>1,1753250713=>1,1753250710=>1,1753250714=>1,1753250715=>1,1753250722=>1,1753250719=>1,1753250706=>1,1753250705=>1,1753250492=>1,1753250490=>1,1753250691=>1,1753250699=>1,1753250703=>1,1753250700=>1,1753250723=>1,1753250725=>1,1753250745=>1,1753250743=>1,1753250746=>1,1753250747=>1,1753260490=>1,1753250750=>1,1753250740=>1,1753250738=>1,1753250730=>1,1753250727=>1,1753250731=>1,1753250732=>1,1753250737=>1,1753250733=>1,1753250489=>1,1753250488=>1,1753250441=>1,1753250440=>1,1753250442=>1,1753250452=>1,1753250455=>1,1753250453=>1,1753250438=>1,1753250437=>1,1753250236=>1,1753250231=>1,1753250237=>1,1753250434=>1,1753250436=>1,1753250435=>1,1753250456=>1,1753250458=>1,1753250475=>1,1753250472=>1,1753250477=>1,1753250478=>1,1753250485=>1,1753250484=>1,1753250470=>1,1753250469=>1,1753250460=>1,1753250459=>1,1753250461=>1,1753250465=>1,1753250467=>1,1744825043=>1,1744825037=>1,1744366467=>1,1744366347=>1,1744391358=>1,1744395009=>1,1744395217=>1,1744395201=>1,1744366341=>1,1744366340=>1,1744337492=>1,1744336933=>1,1744365658=>1,1744365727=>1,1744365800=>1,1744365735=>1,1744397330=>1,1744397466=>1,1744432714=>1,1744432704=>1,1744432733=>1,1744432745=>1,1744432774=>1,1744432746=>1,1744432681=>1,1744432679=>1,1744432250=>1,1744404652=>1,1744432642=>1,1744432652=>1,1744432667=>1,1744432656=>1,1744336913=>1,1744315242=>1,1744092027=>1,1744091970=>1,1744128145=>1,1744137804=>1,1744175461=>1,1744175413=>1,1744091742=>1,1744084982=>1,1744074845=>1,1744074840=>1,1744074875=>1,1744074986=>1,1744075179=>1,1744075066=>1,1744175738=>1,1744179693=>1,1744282330=>1,1744279677=>1,1744296196=>1,1744296865=>1,1744315241=>1,1744314949=>1,1744266598=>1,1744261670=>1,1744197523=>1,1744197522=>1,1744197540=>1,1744231710=>1,1744244440=>1,1744432780=>1,1744432838=>1,1744752348=>1,1744744019=>1,1744752570=>1,1744752615=>1,1744784231=>1,1744768792=>1,1744744018=>1,1744742183=>1,1744712710=>1,1744688099=>1,1744712712=>1,1744712713=>1,1744726642=>1,1744717491=>1,1744784233=>1,1744784234=>1,1744824875=>1,1744824658=>1,1744825002=>1,1744825003=>1,1744825019=>1,1744825018=>1,1744824653=>1,1744823183=>1,1744784252=>1,1744784251=>1,1744789083=>1,1744791899=>1,1744791908=>1,1744688077=>1,1744687947=>1,1744484539=>1,1744455246=>1,1744506370=>1,1744513845=>1,1744524094=>1,1744524081=>1,1744452148=>1,1744447556=>1,1744432863=>1,1744432845=>1,1744432878=>1,1744432995=>1,1744441300=>1,1744433372=>1,1744525948=>1,1744548866=>1,1744687159=>1,1744687157=>1,1744687160=>1,1744687164=>1,1744687409=>1,1744687170=>1,1744687155=>1,1744676865=>1,1744565522=>1,1744558716=>1,1744595988=>1,1744625125=>1,1744640291=>1,1753265296=>1,1753270566=>1,1755856593=>1,1755856591=>1,1755862951=>1,1755879516=>1,1755879942=>1,1755879673=>1,1755856558=>1,1755823518=>1,1755804617=>1,1755804600=>1,1755804777=>1,1755805003=>1,1755822184=>1,1755805037=>1,1755880006=>1,1755880646=>1,1755885421=>1,1755884594=>1,1756153250=>1,1756154883=>1,1756327456=>1,1756188204=>1,1755884243=>1,1755884061=>1,1755882228=>1,1755882190=>1,1755882464=>1,1755882737=>1,1755883918=>1,1755883298=>1,1755804235=>1,1755804042=>1,1755111507=>1,1755080392=>1,1755112942=>1,1755113096=>1,1755243278=>1,1755119133=>1,1755079402=>1,1755069603=>1,1755060730=>1,1755060561=>1,1755060976=>1,1755061003=>1,1755061355=>1,1755061061=>1,1755325681=>1,1755461782=>1,1755801332=>1,1755801228=>1,1755801466=>1,1755802078=>1,1755802957=>1,1755802377=>1,1755801192=>1,1755801055=>1,1755800204=>1,1755800159=>1,1755800431=>1,1755800511=>1,1755800671=>1,1756356125=>1,1756452651=>1,1759248713=>1,1759211634=>1,1759248739=>1,1759248869=>1,1759252070=>1,1759251942=>1,1759149732=>1,1759148241=>1,1758865110=>1,1758574331=>1,1758891378=>1,1758944724=>1,1759148240=>1,1758986144=>1,1759253283=>1,1759253481=>1,1759258412=>1,1759258251=>1,1759282657=>1,1759293381=>1,1759294943=>1,1759294320=>1,1759257397=>1,1759257106=>1,1759254965=>1,1759254090=>1,1759255009=>1,1759255207=>1,1759256265=>1,1758539000=>1,1758523893=>1,1757437819=>1,1757437759=>1,1757691203=>1,1757706112=>1,1757757278=>1,1757756220=>1,1757437149=>1,1757431275=>1,1756873836=>1,1756565836=>1,1757082345=>1,1757324460=>1,1757420119=>1,1757413394=>1,1757757981=>1,1757768863=>1,1758430317=>1,1758429289=>1,1758430484=>1,1758432434=>1,1758433922=>1,1758433265=>1,1758429226=>1,1758381918=>1,1757942516=>1,1757941987=>1,1757942926=>1,1757943873=>1,1757944983=>1,1755060517=>1,1755060431=>1,1753453654=>1,1753451964=>1,1753453908=>1,1753455205=>1,1753457948=>1,1753457300=>1,1753450911=>1,1753450194=>1,1753447986=>1,1753447398=>1,1753448734=>1,1753449538=>1,1753450031=>1,1753449716=>1,1753462190=>1,1753462600=>1,1754350738=>1,1754216090=>1,1754351309=>1,1754351500=>1,1754351791=>1,1754351706=>1,1753962579=>1,1753872715=>1,1753464844=>1,1753464560=>1,1753468051=>1,1753468352=>1,1753478455=>1,1753468439=>1,1753447184=>1,1753444936=>1,1753422777=>1,1753422619=>1,1753422876=>1,1753422902=>1,1753425428=>1,1753423791=>1,1753421695=>1,1753420663=>1,1753300104=>1,1753270688=>1,1753300515=>1,1753393529=>1,1753419325=>1,1753416941=>1,1753426581=>1,1753427302=>1,1753440902=>1,1753440797=>1,1753441787=>1,1753442151=>1,1753444415=>1,1753443335=>1,1753437560=>1,1753436090=>1,1753430143=>1,1753428220=>1,1753432595=>1,1753432770=>1,1753434454=>1,1754351860=>1,1754351987=>1,1754533145=>1,1754533143=>1,1754945802=>1,1754993823=>1,1755006242=>1,1754997470=>1,1754533141=>1,1754363570=>1,1754361339=>1,1754357926=>1,1754361920=>1,1754361948=>1,1754362736=>1,1754361998=>1,1755046253=>1,1755059268=>1,1755060030=>1,1755059910=>1,1755060042=>1,1755060209=>1,1755060393=>1,1755060375=>1,1755059746=>1,1755059728=>1,1755059365=>1,1755059327=>1,1755059392=>1,1755059477=>1,1755059530=>1,1754356279=>1,1754355683=>1,1754353960=>1,1754353954=>1,1754353961=>1,1754353968=>1,1754354048=>1,1754353986=>1,1754353950=>1,1754353930=>1,1754352629=>1,1754352059=>1,1754352792=>1,1754353578=>1,1754353924=>1,1754353692=>1,1754354281=>1,1754354542=>1,1754355329=>1,1754355100=>1,1754355362=>1,1754355487=>1,1754355682=>1,1754355578=>1,1754354914=>1,1754354866=>1,1754354578=>1,1754354567=>1,1754354636=>1,1754354781=>1,1754354792=>1,1744024410=>1,1743993909=>1,1731579887=>1,1731579885=>1,1731579888=>1,1731579890=>1,1731579895=>1,1731579894=>1,1731579884=>1,1731579883=>1,1731579871=>1,1731579870=>1,1731579873=>1,1731579875=>1,1731579881=>1,1731579880=>1,1731579896=>1,1731579898=>1,1731599935=>1,1731599344=>1,1731617793=>1,1731618060=>1,1731618215=>1,1731618099=>1,1731599329=>1,1731599325=>1,1731579900=>1,1731579899=>1,1731579901=>1,1731598339=>1,1731599280=>1,1731599105=>1,1731579862=>1,1731579858=>1,1731579779=>1,1731579771=>1,1731579790=>1,1731579796=>1,1731579800=>1,1731579797=>1,1731579767=>1,1731579766=>1,1731579744=>1,1731579733=>1,1731579746=>1,1731579753=>1,1731579761=>1,1731579758=>1,1731579808=>1,1731579811=>1,1731579848=>1,1731579844=>1,1731579849=>1,1731579851=>1,1731579853=>1,1731579852=>1,1731579841=>1,1731579838=>1,1731579820=>1,1731579814=>1,1731579821=>1,1731579833=>1,1731579837=>1,1731618261=>1,1731618284=>1,1731643947=>1,1731643946=>1,1731643953=>1,1731643955=>1,1731643964=>1,1731643958=>1,1731643923=>1,1731643917=>1,1731643632=>1,1731643616=>1,1731643644=>1,1731643646=>1,1731643916=>1,1731643909=>1,1731643983=>1,1731643996=>1,1731644096=>1,1731644081=>1,1731644104=>1,1731644116=>1,1731644120=>1,1731644118=>1,1731644078=>1,1731644076=>1,1731644026=>1,1731644008=>1,1731644034=>1,1731644047=>1,1731644075=>1,1731643597=>1,1731643577=>1,1731643417=>1,1731643409=>1,1731643420=>1,1731643429=>1,1731643440=>1,1731643439=>1,1731643407=>1,1731643399=>1,1731618540=>1,1731618472=>1,1731630082=>1,1731630337=>1,1731630849=>1,1731630401=>1,1731643486=>1,1731643489=>1,1731643551=>1,1731643549=>1,1731643552=>1,1731643568=>1,1731643575=>1,1731643569=>1,1731643541=>1,1731643537=>1,1731643510=>1,1731643496=>1,1731643515=>1,1731643528=>1,1731643530=>1,1731579732=>1,1731579719=>1,1731215927=>1,1731215890=>1,1731215989=>1,1731216032=>1,1731216057=>1,1731216043=>1,1731215593=>1,1731205406=>1,1731189323=>1,1731183286=>1,1731189346=>1,1731189391=>1,1731194333=>1,1731190072=>1,1731216061=>1,1731216063=>1,1731303944=>1,1731276854=>1,1731303947=>1,1731304003=>1,1731326230=>1,1731323386=>1,1731276832=>1,1731245622=>1,1731216092=>1,1731216075=>1,1731216097=>1,1731216144=>1,1731245618=>1,1731245617=>1,1731183236=>1,1731183214=>1,1730882573=>1,1730820181=>1,1730882621=>1,1730882800=>1,1730904334=>1,1730904204=>1,1730809990=>1,1730809969=>1,1730791293=>1,1730791262=>1,1730791328=>1,1730791338=>1,1730809944=>1,1730791403=>1,1730904674=>1,1730910014=>1,1731157382=>1,1731148772=>1,1731157916=>1,1731165374=>1,1731182950=>1,1731177129=>1,1731148771=>1,1731137374=>1,1730979008=>1,1730975021=>1,1731137059=>1,1731137084=>1,1731137325=>1,1731331634=>1,1731402811=>1,1731579651=>1,1731567029=>1,1731579652=>1,1731579658=>1,1731579660=>1,1731579659=>1,1731566860=>1,1731555147=>1,1731540209=>1,1731540173=>1,1731540218=>1,1731540466=>1,1731554894=>1,1731554597=>1,1731579669=>1,1731579670=>1,1731579702=>1,1731579701=>1,1731579706=>1,1731579708=>1,1731579716=>1,1731579713=>1,1731579691=>1,1731579687=>1,1731579675=>1,1731579671=>1,1731579676=>1,1731579680=>1,1731579681=>1,1731540166=>1,1731540157=>1,1731432789=>1,1731404146=>1,1731432798=>1,1731452517=>1,1731452619=>1,1731452566=>1,1731404095=>1,1731404084=>1,1731402856=>1,1731402840=>1,1731402868=>1,1731402870=>1,1731402886=>1,1731402871=>1,1731452621=>1,1731452808=>1,1731496434=>1,1731496431=>1,1731496727=>1,1731516749=>1,1731540088=>1,1731540074=>1,1731479233=>1,1731479171=>1,1731471112=>1,1731453986=>1,1731471147=>1,1731471179=>1,1731471198=>1,1731644121=>1,1731644122=>1,1741468170=>1,1741411084=>1,1741468177=>1,1741468181=>1,1741468195=>1,1741468191=>1,1741411082=>1,1741410703=>1,1741410663=>1,1741410657=>1,1741410684=>1,1741410687=>1,1741410700=>1,1741410691=>1,1741468219=>1,1741468239=>1,1741468354=>1,1741468353=>1,1741468373=>1,1742745610=>1,1742797488=>1,1742776074=>1,1741468340=>1,1741468337=>1,1741468256=>1,1741468250=>1,1741468261=>1,1741468297=>1,1741468334=>1,1741468333=>1,1741410644=>1,1741410627=>1,1740816899=>1,1740816892=>1,1740817082=>1,1740817124=>1,1740833658=>1,1740817133=>1,1740816886=>1,1740816883=>1,1740816869=>1,1740816866=>1,1740816870=>1,1740816872=>1,1740816875=>1,1740816873=>1,1740833662=>1,1740869208=>1,1741410593=>1,1741410584=>1,1741410606=>1,1741410613=>1,1741410625=>1,1741410615=>1,1741189490=>1,1741028512=>1,1740900948=>1,1740900943=>1,1740900984=>1,1740909446=>1,1740958098=>1,1742843625=>1,1742877704=>1,1743423988=>1,1743398032=>1,1743571310=>1,1743752408=>1,1743785997=>1,1743783938=>1,1743366898=>1,1743366715=>1,1743353482=>1,1743353313=>1,1743353483=>1,1743353490=>1,1743363586=>1,1743353837=>1,1743805191=>1,1743860494=>1,1743939870=>1,1743933433=>1,1743985472=>1,1743992362=>1,1743993859=>1,1743992701=>1,1743890911=>1,1743890900=>1,1743890866=>1,1743890693=>1,1743890868=>1,1743890880=>1,1743890897=>1,1743353281=>1,1743353062=>1,1743124347=>1,1743093604=>1,1743128277=>1,1743136661=>1,1743166638=>1,1743142482=>1,1743082907=>1,1743082483=>1,1742962931=>1,1742922525=>1,1742966035=>1,1743015619=>1,1743058854=>1,1743031371=>1,1743193475=>1,1743248238=>1,1743320714=>1,1743320713=>1,1743352842=>1,1743352946=>1,1743352994=>1,1743352989=>1,1743298403=>1,1743296162=>1,1743274180=>1,1743274179=>1,1743288498=>1,1743295613=>1,1743295669=>1,1740816864=>1,1740816855=>1,1731741022=>1,1731741019=>1,1731741023=>1,1731741024=>1,1731741027=>1,1731741025=>1,1731741018=>1,1731741015=>1,1731739641=>1,1731739640=>1,1731740686=>1,1731740979=>1,1731740995=>1,1731740994=>1,1731741147=>1,1731741150=>1,1731893109=>1,1731799713=>1,1732076843=>1,1732222014=>1,1740681600=>1,1732222518=>1,1731799709=>1,1731799701=>1,1731741176=>1,1731741158=>1,1731763393=>1,1731776340=>1,1731799697=>1,1731776373=>1,1731712741=>1,1731712735=>1,1731684432=>1,1731667196=>1,1731684502=>1,1731684556=>1,1731684703=>1,1731684688=>1,1731666966=>1,1731648666=>1,1731644152=>1,1731644137=>1,1731644155=>1,1731648058=>1,1731648274=>1,1731648068=>1,1731684728=>1,1731684851=>1,1731712722=>1,1731712718=>1,1731712726=>1,1731712727=>1,1731712734=>1,1731712731=>1,1731712716=>1,1731712713=>1,1731712612=>1,1731700202=>1,1731712616=>1,1731712697=>1,1731712711=>1,1740681682=>1,1740681737=>1,1740816784=>1,1740816783=>1,1740816791=>1,1740816793=>1,1740816796=>1,1740816795=>1,1740816781=>1,1740816766=>1,1740816737=>1,1740816734=>1,1740816745=>1,1740816746=>1,1740816765=>1,1740816764=>1,1740816797=>1,1740816800=>1,1740816836=>1,1740816835=>1,1740816837=>1,1740816844=>1,1740816847=>1,1740816846=>1,1740816822=>1,1740816819=>1,1740816814=>1,1740816801=>1,1740816815=>1,1740816816=>1,1740816818=>1,1740816729=>1,1740816728=>1,1740785415=>1,1740785405=>1,1740790443=>1,1740816593=>1,1740816623=>1,1740816607=>1,1740785284=>1,1740753867=>1,1740752981=>1,1740681978=>1,1740753109=>1,1740753730=>1,1740753786=>1,1740753763=>1,1740816677=>1,1740816679=>1,1740816710=>1,1740816704=>1,1740816713=>1,1740816721=>1,1740816724=>1,1740816722=>1,1740816701=>1,1740816696=>1,1740816690=>1,1740816689=>1,1740816692=>1,1740816694=>1,1740816695=>1,1730790848=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-21.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2193189248=>2193189375,2160868293=>1,2160865574=>1,2160905349=>1,2161115881=>1,2161247201=>1,2160863082=>1,2162121811=>1,2160590021=>1,2160588685=>1,2160587982=>1,2160589066=>1,2160589427=>1,2160589650=>1,2163055986=>1,2164945880=>1,2168457428=>1,2168325235=>1,2168974594=>1,2170823274=>1,2172192813=>1,2171282308=>1,2165741215=>1,2165673082=>1,2164945882=>1,2164945881=>1,2164945883=>1,2164945884=>1,2165663413=>1,2165662884=>1,2160587339=>1,2160586945=>1,2160571236=>1,2160571055=>1,2160571781=>1,2160572472=>1,2160573016=>1,2160572575=>1,2160570894=>1,2160570783=>1,2160566055=>1,2160565143=>1,2160566121=>1,2160567394=>1,2160570103=>1,2160568927=>1,2160574200=>1,2160574226=>1,2160583478=>1,2160583216=>1,2160583741=>1,2160584914=>1,2160586821=>1,2160585468=>1,2160582744=>1,2160579075=>1,2160575101=>1,2160575088=>1,2160575760=>1,2160575840=>1,2160578452=>1,2160576198=>1,2172649173=>1,2172650833=>1,2197830722=>1,2197768356=>1,2197831171=>1,2197858388=>1,2202543378=>1,2197878566=>1,2197752511=>1,2196147642=>1,2193703323=>1,2193690554=>1,2193717556=>1,2194905250=>1,2195826769=>1,2194929907=>1,2202554881=>1,2202568805=>1,2208372492=>1,2207991154=>1,2208372504=>1,2208398355=>1,2210146492=>1,2208431882=>1,2206856968=>1,2206371426=>1,2204658256=>1,2202597658=>1,2204925154=>1,2204935292=>1,2205306308=>1,2193226316=>1,2193226308=>1,2187236451=>1,2186631244=>1,2188750750=>1,2189734270=>1,2190855019=>1,2190806559=>1,2185998886=>1,2185211262=>1,2175864886=>1,2172785196=>1,2181059123=>1,2182072947=>1,2185197043=>1,2183901073=>1,2190859389=>1,2191927041=>1,2193116022=>1,2193103125=>1,2193188914=>1,2193196298=>1,2193214015=>1,2193196299=>1,2192865917=>1,2192857058=>1,2192844950=>1,2192840678=>1,2192850838=>1,2192852462=>1,2192855290=>1,2160564958=>1,2160564781=>1,2160533563=>1,2158835648=>1,2160533885=>1,2160534277=>1,2160534933=>1,2160534618=>1,2158835534=>1,2158705961=>1,2156385419=>1,2156055643=>1,2156701474=>1,2156872481=>1,2158202389=>1,2157547901=>1,2160535009=>1,2160535051=>1,2160536844=>1,2160536416=>1,2160536969=>1,2160537015=>1,2160538631=>1,2160537177=>1,2160536406=>1,2160536166=>1,2160535440=>1,2160535152=>1,2160535711=>1,2160535769=>1,2160536046=>1,2160535929=>1,2155817004=>1,2154979610=>1,2152129459=>1,2152077428=>1,2152145410=>1,2152164592=>1,2152164792=>1,2152164740=>1,2152056031=>1,2152016461=>1,2150932500=>1,2150924393=>1,2151355001=>1,2151975758=>1,2151991295=>1,2151991156=>1,2152194306=>1,2152207747=>1,2152405001=>1,2152377587=>1,2152414074=>1,2152456230=>1,2154881151=>1,2152611650=>1,2152291591=>1,2152274354=>1,2152241462=>1,2152219310=>1,2152250828=>1,2152259059=>1,2152274350=>1,2160539417=>1,2160539429=>1,2160556648=>1,2160556575=>1,2160556887=>1,2160558182=>1,2160558596=>1,2160558515=>1,2160556551=>1,2160555771=>1,2160554070=>1,2160553969=>1,2160554783=>1,2160555143=>1,2160555557=>1,2160555473=>1,2160558719=>1,2160558783=>1,2160562967=>1,2160561707=>1,2160563224=>1,2160563754=>1,2160564547=>1,2160564162=>1,2160561453=>1,2160561422=>1,2160559111=>1,2160559016=>1,2160559514=>1,2160560846=>1,2160561120=>1,2160553869=>1,2160552869=>1,2160545258=>1,2160544747=>1,2160545289=>1,2160546096=>1,2160546386=>1,2160546314=>1,2160543743=>1,2160543605=>1,2160539599=>1,2160539468=>1,2160541061=>1,2160541872=>1,2160543562=>1,2160543210=>1,2160546757=>1,2160546925=>1,2160549758=>1,2160549380=>1,2160550932=>1,2160552028=>1,2160552396=>1,2160552053=>1,2160549377=>1,2160549033=>1,2160547708=>1,2160546985=>1,2160547739=>1,2160548240=>1,2160548391=>1,2210146493=>1,2210361355=>1,2331973075=>1,2331973024=>1,2331973097=>1,2331989002=>1,2332039026=>1,2331989761=>1,2331973022=>1,2331973019=>1,2327490306=>1,2327487520=>1,2328433320=>1,2328435202=>1,2329653744=>1,2328661557=>1,2332040178=>1,2332040210=>1,2340611144=>1,2340564001=>1,2342650477=>1,2342651688=>1,2342652488=>1,2342652293=>1,2340517803=>1,2340517427=>1,2333219107=>1,2332954027=>1,2340489323=>1,2340494176=>1,2340495052=>1,2340495023=>1,2327459974=>1,2327418358=>1,2315278613=>1,2315278607=>1,2315278623=>1,2315278637=>1,2315314226=>1,2315278694=>1,2315262194=>1,2313522115=>1,2307368673=>1,2307339496=>1,2309277822=>1,2309292399=>1,2311945251=>1,2310890192=>1,2319166466=>1,2319166467=>1,2321760517=>1,2321676006=>1,2321801162=>1,2321812177=>1,2322994619=>1,2322945090=>1,2321673233=>1,2321673230=>1,2321634529=>1,2321456073=>1,2321650108=>1,2321673218=>1,2321673229=>1,2342652688=>1,2342652911=>1,2348744810=>1,2346992538=>1,2348753866=>1,2348754018=>1,2348755074=>1,2348754835=>1,2346287203=>1,2345804986=>1,2344891797=>1,2344891368=>1,2344920219=>1,2344921725=>1,2344928330=>1,2344925393=>1,2348755146=>1,2348755330=>1,2348761110=>1,2348760666=>1,2356213541=>1,2356262089=>1,2356360700=>1,2356301799=>1,2348760580=>1,2348760579=>1,2348758270=>1,2348758269=>1,2348758362=>1,2348759980=>1,2348760578=>1,2344885219=>1,2344879115=>1,2342683326=>1,2342665516=>1,2342683385=>1,2342686750=>1,2342687244=>1,2342686875=>1,2342665486=>1,2342664588=>1,2342654735=>1,2342653550=>1,2342655217=>1,2342657053=>1,2342663728=>1,2342661248=>1,2342687780=>1,2342688017=>1,2342706349=>1,2342705627=>1,2343094315=>1,2344712510=>1,2344716019=>1,2344715792=>1,2342705518=>1,2342699341=>1,2342688598=>1,2342688272=>1,2342689828=>1,2342689838=>1,2342690368=>1,2307328233=>1,2306329531=>1,2239921597=>1,2239921411=>1,2239939027=>1,2246603241=>1,2247278496=>1,2247264368=>1,2239921307=>1,2239912940=>1,2231324829=>1,2231324726=>1,2231341067=>1,2232553795=>1,2239909204=>1,2233912042=>1,2248153634=>1,2248351507=>1,2254276785=>1,2254130831=>1,2254455057=>1,2254663848=>1,2254882917=>1,2254837370=>1,2252131740=>1,2251417983=>1,2248361946=>1,2248357572=>1,2248382868=>1,2249437549=>1,2250412928=>1,2250407205=>1,2231312250=>1,2230908894=>1,2212346862=>1,2212346858=>1,2212346874=>1,2212357970=>1,2212358062=>1,2212357985=>1,2212346854=>1,2212346850=>1,2212239154=>1,2211949782=>1,2212269440=>1,2212327800=>1,2212331650=>1,2212328282=>1,2213996273=>1,2214003447=>1,2228468710=>1,2228468532=>1,2228762114=>1,2229694988=>1,2230853132=>1,2229704273=>1,2228467354=>1,2224488706=>1,2214566877=>1,2214566530=>1,2214571790=>1,2224242727=>1,2224248073=>1,2255946498=>1,2255946660=>1,2292763033=>1,2292163896=>1,2292829873=>1,2292831428=>1,2297643105=>1,2292836889=>1,2281705689=>1,2281702131=>1,2281702018=>1,2266465785=>1,2281702022=>1,2281702043=>1,2281702118=>1,2281702046=>1,2297644743=>1,2297651724=>1,2306204637=>1,2297681545=>1,2306238957=>1,2306247986=>1,2306304095=>1,2306268934=>1,2297676178=>1,2297676151=>1,2297652870=>1,2297651766=>1,2297654020=>1,2297655870=>1,2297671828=>1,2266465372=>1,2266464514=>1,2258821401=>1,2256713172=>1,2259246298=>1,2259246299=>1,2259502936=>1,2259246302=>1,2256713003=>1,2256093188=>1,2255951075=>1,2255948067=>1,2255952577=>1,2255954128=>1,2255955079=>1,2255954167=>1,2261033042=>1,2262116817=>1,2264913543=>1,2264913536=>1,2264913545=>1,2264923743=>1,2266462680=>1,2266198822=>1,2264519615=>1,2264519543=>1,2262975517=>1,2262143460=>1,2264501231=>1,2264508432=>1,2264519498=>1,2150516494=>1,2150272557=>1,2088431313=>1,2088431284=>1,2088431340=>1,2088431620=>1,2088431721=>1,2088431690=>1,2088431261=>1,2088431214=>1,2088430815=>1,2088430760=>1,2088430876=>1,2088430933=>1,2088431173=>1,2088431114=>1,2088431797=>1,2088431914=>1,2088433070=>1,2088432929=>1,2088433207=>1,2088433377=>1,2088433607=>1,2088433464=>1,2088432858=>1,2088432765=>1,2088432029=>1,2088432009=>1,2088432393=>1,2088432396=>1,2088432625=>1,2088432479=>1,2088430665=>1,2088430658=>1,2088428997=>1,2088428995=>1,2088429013=>1,2088429037=>1,2088429635=>1,2088429044=>1,2088428985=>1,2088428948=>1,2088428636=>1,2088428506=>1,2088428832=>1,2088428901=>1,2088428947=>1,2088428908=>1,2088429645=>1,2088429688=>1,2088430273=>1,2088430230=>1,2088430284=>1,2088430464=>1,2088430651=>1,2088430607=>1,2088430225=>1,2088430174=>1,2088429929=>1,2088429841=>1,2088430101=>1,2088430117=>1,2088430141=>1,2088433927=>1,2088433974=>1,2091396099=>1,2091317775=>1,2091519496=>1,2091519574=>1,2091521347=>1,2091521176=>1,2091182945=>1,2091096436=>1,2090946250=>1,2090910280=>1,2090974513=>1,2090975641=>1,2091034808=>1,2090975684=>1,2091526312=>1,2091528204=>1,2092962171=>1,2092959945=>1,2092964854=>1,2092966136=>1,2092969969=>1,2092967928=>1,2092959716=>1,2092959714=>1,2092803252=>1,2091530202=>1,2092957939=>1,2092957944=>1,2092958971=>1,2090910279=>1,2090869506=>1,2088435177=>1,2088435167=>1,2088435590=>1,2088435642=>1,2088559666=>1,2088435646=>1,2088434735=>1,2088434599=>1,2088434369=>1,2088434331=>1,2088434378=>1,2088434386=>1,2088434524=>1,2088434510=>1,2088607561=>1,2088607616=>1,2090115854=>1,2089981802=>1,2090144286=>1,2090213908=>1,2090731958=>1,2090561621=>1,2089016718=>1,2088976375=>1,2088730121=>1,2088664675=>1,2088819995=>1,2088823170=>1,2088974730=>1,2088428488=>1,2088428272=>1,2088421771=>1,2088421765=>1,2088421793=>1,2088421859=>1,2088421918=>1,2088421895=>1,2088421736=>1,2088421711=>1,2088421653=>1,2088421636=>1,2088421668=>1,2088421682=>1,2088421710=>1,2088421705=>1,2088421935=>1,2088421943=>1,2088422194=>1,2088422193=>1,2088422210=>1,2088422290=>1,2088422300=>1,2088422296=>1,2088422130=>1,2088422127=>1,2088422061=>1,2088421991=>1,2088422065=>1,2088422068=>1,2088422104=>1,2088422095=>1,2088421625=>1,2088421586=>1,2088419188=>1,2088418280=>1,2088419262=>1,2088419263=>1,2088419511=>1,2088419302=>1,2088418263=>1,2088418152=>1,2088416685=>1,2088415043=>1,2088416855=>1,2088417136=>1,2088418114=>1,2088417168=>1,2088419837=>1,2088419908=>1,2088421475=>1,2088421204=>1,2088421494=>1,2088421510=>1,2088421551=>1,2088421525=>1,2088421044=>1,2088420991=>1,2088420008=>1,2088419941=>1,2088420369=>1,2088420502=>1,2088420603=>1,2088422348=>1,2088422371=>1,2088426003=>1,2088425360=>1,2088426039=>1,2088426337=>1,2088426378=>1,2088426360=>1,2088425280=>1,2088425186=>1,2088424578=>1,2088424450=>1,2088424877=>1,2088424951=>1,2088425153=>1,2088425018=>1,2088426564=>1,2088426863=>1,2088428164=>1,2088428087=>1,2088428172=>1,2088428216=>1,2088428233=>1,2088428226=>1,2088427912=>1,2088427815=>1,2088427492=>1,2088427081=>1,2088427581=>1,2088427668=>1,2088427784=>1,2088424426=>1,2088424425=>1,2088422986=>1,2088422881=>1,2088423027=>1,2088423039=>1,2088423172=>1,2088423079=>1,2088422858=>1,2088422818=>1,2088422503=>1,2088422476=>1,2088422515=>1,2088422588=>1,2088422760=>1,2088422648=>1,2088423192=>1,2088423199=>1,2088424058=>1,2088423636=>1,2088424067=>1,2088424199=>1,2088424300=>1,2088424290=>1,2088423631=>1,2088423601=>1,2088423227=>1,2088423223=>1,2088423269=>1,2088423392=>1,2088423427=>1,2092973176=>1,2092973999=>1,2105817146=>1,2105235425=>1,2107668661=>1,2107702656=>1,2107724348=>1,2107710483=>1,2105234494=>1,2104346605=>1,2103665737=>1,2103665681=>1,2103670970=>1,2103965850=>1,2104323336=>1,2104314430=>1,2107769622=>1,2107772566=>1,2107922919=>1,2107916478=>1,2107925727=>1,2107926200=>1,2107926750=>1,2107926324=>1,2107914522=>1,2107907020=>1,2107808988=>1,2107774971=>1,2107864024=>1,2107878894=>1,2107894656=>1,2107879130=>1,2103665677=>1,2103665674=>1,2099751588=>1,2099738275=>1,2100123404=>1,2100992153=>1,2101347586=>1,2101218978=>1,2099738274=>1,2099725250=>1,2099288572=>1,2098854566=>1,2099400602=>1,2099415670=>1,2099638467=>1,2099636478=>1,2101347587=>1,2101402311=>1,2102792855=>1,2102790214=>1,2102792863=>1,2103074756=>1,2103665670=>1,2103390823=>1,2102782585=>1,2102560979=>1,2101440713=>1,2101440688=>1,2101857090=>1,2101880590=>1,2101902606=>1,2107926932=>1,2107979858=>1,2113762241=>1,2113762233=>1,2113762250=>1,2113762261=>1,2113762287=>1,2113762279=>1,2113762201=>1,2113762195=>1,2113762059=>1,2113762054=>1,2113762060=>1,2113762061=>1,2113762139=>1,2113762063=>1,2113762293=>1,2113762298=>1,2148040303=>1,2147753932=>1,2148143924=>1,2149470154=>1,2150041668=>1,2149515298=>1,2147528125=>1,2128122799=>1,2118518674=>1,2113763950=>1,2118696168=>1,2119473798=>1,2121727305=>1,2113748052=>1,2113747972=>1,2110872510=>1,2110867769=>1,2110874046=>1,2110876755=>1,2111098291=>1,2110878749=>1,2110867406=>1,2110865922=>1,2108089338=>1,2108089064=>1,2108091653=>1,2108146002=>1,2110787011=>1,2108862027=>1,2111101917=>1,2111109893=>1,2111845245=>1,2111845178=>1,2111845335=>1,2111845343=>1,2113740958=>1,2111845360=>1,2111845145=>1,2111845140=>1,2111306305=>1,2111109950=>1,2111424404=>1,2111845122=>1,2111845130=>1,2098840383=>1,2098830298=>1,2093528370=>1,2093507634=>1,2093529294=>1,2093655718=>1,2093658086=>1,2093657926=>1,2093507226=>1,2093506786=>1,2093045254=>1,2093039029=>1,2093058597=>1,2093078697=>1,2093490578=>1,2093366310=>1,2093659122=>1,2093659142=>1,2093889275=>1,2093880952=>1,2093893104=>1,2093902717=>1,2093909475=>1,2093903774=>1,2093876544=>1,2093862834=>1,2093664354=>1,2093659578=>1,2093664460=>1,2093670346=>1,2093819710=>1,2093813652=>1,2093038090=>1,2093036918=>1,2092989116=>1,2092987373=>1,2092989430=>1,2093009807=>1,2093012860=>1,2093012661=>1,2092985079=>1,2092984816=>1,2092980248=>1,2092979984=>1,2092980406=>1,2092980854=>1,2092982984=>1,2092981755=>1,2093014512=>1,2093016750=>1,2093031913=>1,2093030397=>1,2093032445=>1,2093033979=>1,2093035768=>1,2093035273=>1,2093029278=>1,2093028601=>1,2093022373=>1,2093021886=>1,2093024245=>1,2093024253=>1,2093025271=>1,2093918202=>1,2093922473=>1,2098738257=>1,2098204651=>1,2098738277=>1,2098745093=>1,2098749854=>1,2098745179=>1,2098196692=>1,2097318477=>1,2096834124=>1,2096834123=>1,2096834125=>1,2096840438=>1,2097092349=>1,2097092202=>1,2098750035=>1,2098751384=>1,2098781113=>1,2098764294=>1,2098793712=>1,2098794453=>1,2098829905=>1,2098800359=>1,2098761191=>1,2098761078=>1,2098752244=>1,2098751909=>1,2098753622=>1,2098756026=>1,2098756185=>1,2096688634=>1,2096676430=>1,2093944475=>1,2093940440=>1,2093961894=>1,2093965653=>1,2093985627=>1,2093974770=>1,2093940094=>1,2093939207=>1,2093927615=>1,2093922977=>1,2093934702=>1,2093935787=>1,2093939205=>1,2093937117=>1,2095115669=>1,2095300651=>1,2096151384=>1,2096151383=>1,2096385199=>1,2096385409=>1,2096672488=>1,2096672471=>1,2096151373=>1,2096150569=>1,2095616871=>1,2095616790=>1,2095924044=>1,2095938480=>1,2096021114=>1,2088414821=>1,);?>
1
+ <?php return array(1815957824=>1815957887,1815951408=>1815951423,1815951248=>1815951263,1815950192=>1815950207,1815940112=>1815940127,1822592626=>1,1822525397=>1,1822761223=>1,1822861470=>1,1822950204=>1,1822874642=>1,1822525382=>1,1822525093=>1,1817289254=>1,1816889723=>1,1817592439=>1,1822471819=>1,1822524861=>1,1822484103=>1,1822954023=>1,1822966067=>1,1823323498=>1,1823110882=>1,1823356542=>1,1823357376=>1,1823390613=>1,1823390552=>1,1823083800=>1,1823083799=>1,1822995149=>1,1822970449=>1,1823082666=>1,1823083797=>1,1823083798=>1,1816758546=>1,1816545396=>1,1815979264=>1,1815977654=>1,1815979433=>1,1815980185=>1,1815981954=>1,1815981144=>1,1815977341=>1,1815967563=>1,1815961639=>1,1815958722=>1,1815962517=>1,1815963524=>1,1815967176=>1,1815963566=>1,1815982444=>1,1815982446=>1,1815991156=>1,1815990704=>1,1815991398=>1,1816001229=>1,1816277186=>1,1816235182=>1,1815988174=>1,1815988170=>1,1815983264=>1,1815983064=>1,1815983302=>1,1815983892=>1,1815987919=>1,1823457602=>1,1823503770=>1,1833238650=>1,1833222020=>1,1833239165=>1,1833255697=>1,1833292587=>1,1833292551=>1,1833217596=>1,1832882027=>1,1830733278=>1,1830618322=>1,1831936541=>1,1831942065=>1,1832880339=>1,1832812926=>1,1833292790=>1,1833355872=>1,1833450468=>1,1833450452=>1,1833450530=>1,1833484402=>1,1833495134=>1,1833493658=>1,1833450412=>1,1833450144=>1,1833356518=>1,1833356500=>1,1833356605=>1,1833415666=>1,1833446211=>1,1830466745=>1,1829744954=>1,1824321519=>1,1824147629=>1,1824526635=>1,1825263952=>1,1826665305=>1,1825825768=>1,1824121406=>1,1824111680=>1,1823626291=>1,1823621949=>1,1823643678=>1,1823704261=>1,1823790283=>1,1827078807=>1,1827240983=>1,1828437049=>1,1828344313=>1,1828760109=>1,1829296394=>1,1829579929=>1,1829324677=>1,1828214770=>1,1828081011=>1,1827554617=>1,1827405517=>1,1827714700=>1,1827806633=>1,1827941180=>1,1806351515=>1,1806352654=>1,1807068756=>1,1807068694=>1,1807068899=>1,1807072099=>1,1807116551=>1,1807072199=>1,1807066635=>1,1807065513=>1,1806919418=>1,1806919416=>1,1806919420=>1,1807038871=>1,1807063431=>1,1807039496=>1,1807118133=>1,1807123309=>1,1807693949=>1,1807692854=>1,1807694058=>1,1807695708=>1,1807705753=>1,1807695864=>1,1807691607=>1,1807691468=>1,1807123336=>1,1807123316=>1,1807149402=>1,1807531065=>1,1807558688=>1,1806919414=>1,1806919412=>1,1806366497=>1,1806366331=>1,1806440224=>1,1806828314=>1,1806901396=>1,1806901394=>1,1806366242=>1,1806365862=>1,1806361259=>1,1806359788=>1,1806362537=>1,1806362699=>1,1806364943=>1,1806364095=>1,1806901398=>1,1806901400=>1,1806910340=>1,1806910338=>1,1806918808=>1,1806918810=>1,1806918814=>1,1806918812=>1,1806903738=>1,1806903737=>1,1806901404=>1,1806901402=>1,1806901406=>1,1806903721=>1,1806903723=>1,1807705898=>1,1807707328=>1,1815206742=>1,1815170531=>1,1815368769=>1,1815466141=>1,1815661498=>1,1815551247=>1,1815160815=>1,1815007412=>1,1814896806=>1,1814293566=>1,1814912332=>1,1814912338=>1,1814912346=>1,1814912341=>1,1815777514=>1,1815786262=>1,1815882729=>1,1815881796=>1,1815927080=>1,1833495410=>1,1806357921=>1,1806358905=>1,1815809605=>1,1815808993=>1,1815808641=>1,1815808210=>1,1815808647=>1,1815808650=>1,1815808653=>1,1814128443=>1,1814049044=>1,1808258561=>1,1808012334=>1,1808315482=>1,1808459982=>1,1808645726=>1,1808478795=>1,1807732649=>1,1807732498=>1,1807711928=>1,1807709867=>1,1807731303=>1,1807731719=>1,1807732198=>1,1809305858=>1,1809383817=>1,1813771831=>1,1813342471=>1,1813864247=>1,1813963006=>1,1814025623=>1,1813981189=>1,1813299513=>1,1813147132=>1,1812777941=>1,1812563523=>1,1813071410=>1,1813120561=>1,1813144835=>1,1806359115=>1,1833495511=>1,1841692397=>1,1841634016=>1,1841778727=>1,1841857086=>1,1841879055=>1,1841879044=>1,1841634000=>1,1841624214=>1,1841525706=>1,1841501711=>1,1841570355=>1,1841594147=>1,1841623586=>1,1841615470=>1,1841891106=>1,1841893210=>1,1841931592=>1,1841927176=>1,1841931695=>1,1841935967=>1,1842048067=>1,1841954983=>1,1841923428=>1,1841922827=>1,1841894338=>1,1841893255=>1,1841894339=>1,1841894345=>1,1841917227=>1,1841896306=>1,1841450592=>1,1841435317=>1,1840187445=>1,1840187072=>1,1840187449=>1,1840685946=>1,1840793768=>1,1840788039=>1,1840079077=>1,1840015875=>1,1839717525=>1,1839698197=>1,1839800739=>1,1839858183=>1,1839995662=>1,1839935459=>1,1840883314=>1,1840886871=>1,1841355106=>1,1841219681=>1,1841377588=>1,1841384855=>1,1841429893=>1,1841428476=>1,1841186645=>1,1841178940=>1,1841029001=>1,1840973518=>1,1841056216=>1,1841143517=>1,1841147167=>1,1842066047=>1,1842066204=>1,1844061816=>1,1844061781=>1,1844061900=>1,1844091445=>1,1844181890=>1,1844134212=>1,1844061380=>1,1844061372=>1,1843948174=>1,1843927995=>1,1844018980=>1,1844018983=>1,1844019177=>1,1844019009=>1,1844181891=>1,1844181892=>1,1844211971=>1,1844211970=>1,1844211998=>1,1844214800=>1,1844251481=>1,1844236824=>1,1844211969=>1,1844205577=>1,1844192613=>1,1844181893=>1,1844194991=>1,1844203877=>1,1844204244=>1,1843886705=>1,1843857272=>1,1842290996=>1,1842249447=>1,1842291068=>1,1842298256=>1,1842298279=>1,1842298259=>1,1842249402=>1,1842249374=>1,1842134735=>1,1842066346=>1,1842180618=>1,1842241939=>1,1842249351=>1,1842242003=>1,1842298281=>1,1842298302=>1,1843822771=>1,1843818498=>1,1843823118=>1,1843845578=>1,1843850917=>1,1843847221=>1,1843807400=>1,1843797313=>1,1842386715=>1,1842334590=>1,1843038871=>1,1843403044=>1,1843699278=>1,1839694512=>1,1839685974=>1,1834463222=>1,1834455801=>1,1834468653=>1,1834477080=>1,1834487149=>1,1834481930=>1,1834455730=>1,1834450499=>1,1834429045=>1,1834427090=>1,1834429293=>1,1834430565=>1,1834436254=>1,1834432386=>1,1834576063=>1,1834613790=>1,1834903335=>1,1834903230=>1,1834908767=>1,1834962104=>1,1835540539=>1,1835535452=>1,1834903205=>1,1834901513=>1,1834656445=>1,1834648664=>1,1834681120=>1,1834709021=>1,1834882263=>1,1834741282=>1,1834423757=>1,1834403367=>1,1833619177=>1,1833618965=>1,1833619557=>1,1833624474=>1,1833625229=>1,1833625128=>1,1833618551=>1,1833616741=>1,1833580057=>1,1833517786=>1,1833585637=>1,1833605013=>1,1833616318=>1,1833615943=>1,1833625334=>1,1833626247=>1,1834376408=>1,1834369656=>1,1834376463=>1,1834377678=>1,1834400977=>1,1834386749=>1,1834160714=>1,1833678925=>1,1833626788=>1,1833626264=>1,1833626793=>1,1833626842=>1,1833660197=>1,1835625890=>1,1835676276=>1,1837049940=>1,1837044522=>1,1837101493=>1,1837310189=>1,1838334420=>1,1837383180=>1,1837023804=>1,1836977518=>1,1836801917=>1,1836770345=>1,1836855632=>1,1836867405=>1,1836890915=>1,1836881156=>1,1838531760=>1,1838603947=>1,1839458825=>1,1839458824=>1,1839460657=>1,1839525095=>1,1839547314=>1,1839541954=>1,1839458823=>1,1839458821=>1,1838934542=>1,1838914269=>1,1839219765=>1,1839458818=>1,1839458820=>1,1836770271=>1,1836770152=>1,1835869242=>1,1835817236=>1,1836016132=>1,1836016844=>1,1836018252=>1,1836017216=>1,1835817233=>1,1835757483=>1,1835713426=>1,1835699004=>1,1835738010=>1,1835756666=>1,1835757328=>1,1835756830=>1,1836018413=>1,1836018429=>1,1836627189=>1,1836625200=>1,1836627377=>1,1836630769=>1,1836683935=>1,1836634640=>1,1836623882=>1,1836050382=>1,1836021305=>1,1836020030=>1,1836021414=>1,1836022766=>1,1836049133=>1,1806345118=>1,1806343892=>1,1760841103=>1,1760840047=>1,1760848651=>1,1760849253=>1,1760878540=>1,1760861461=>1,1760685466=>1,1760684776=>1,1760683555=>1,1760683195=>1,1760683728=>1,1760684254=>1,1760684579=>1,1760684547=>1,1760883145=>1,1760888975=>1,1761251315=>1,1761239708=>1,1761251338=>1,1761251877=>1,1761252052=>1,1761252037=>1,1761239706=>1,1761239702=>1,1760905457=>1,1760895377=>1,1760946049=>1,1760946560=>1,1761239701=>1,1761239614=>1,1760683026=>1,1760633247=>1,1760465263=>1,1760462875=>1,1760466645=>1,1760466849=>1,1760470109=>1,1760468927=>1,1760449308=>1,1760447088=>1,1760360920=>1,1760360410=>1,1760361641=>1,1760401603=>1,1760420262=>1,1760402646=>1,1760470842=>1,1760470868=>1,1760476258=>1,1760475971=>1,1760477338=>1,1760484639=>1,1760488481=>1,1760484803=>1,1760475206=>1,1760474989=>1,1760471918=>1,1760470895=>1,1760473222=>1,1760474179=>1,1760474252=>1,1761252118=>1,1761253691=>1,1782328463=>1,1782322795=>1,1782336040=>1,1782913441=>1,1783015939=>1,1782931913=>1,1782112712=>1,1780856139=>1,1778546966=>1,1778546683=>1,1778547133=>1,1778573086=>1,1780855291=>1,1780836048=>1,1783335160=>1,1783350662=>1,1788730603=>1,1785287218=>1,1790443800=>1,1790444689=>1,1790445222=>1,1790445120=>1,1785211344=>1,1785211139=>1,1783351125=>1,1783350769=>1,1783351187=>1,1784091747=>1,1784356024=>1,1778546597=>1,1778546316=>1,1761579751=>1,1761570494=>1,1761598792=>1,1761601302=>1,1768948142=>1,1761601474=>1,1761503188=>1,1761503165=>1,1761344292=>1,1761337848=>1,1761502588=>1,1761503006=>1,1761503134=>1,1761503064=>1,1774641837=>1,1774642363=>1,1778437654=>1,1778437364=>1,1778541731=>1,1778544206=>1,1778546294=>1,1778545674=>1,1778436687=>1,1778435068=>1,1776358543=>1,1775500816=>1,1776499623=>1,1776644381=>1,1778386123=>1,1760358588=>1,1760357026=>1,1760120251=>1,1760044456=>1,1760120677=>1,1760120847=>1,1760121806=>1,1760120856=>1,1760035617=>1,1760001075=>1,1759554861=>1,1759523413=>1,1759816124=>1,1759903842=>1,1759917364=>1,1759917138=>1,1760122409=>1,1760122843=>1,1760126623=>1,1760125043=>1,1760126852=>1,1760128805=>1,1760130009=>1,1760129853=>1,1760124721=>1,1760124597=>1,1760123660=>1,1760123212=>1,1760123977=>1,1760124223=>1,1760124322=>1,1760124251=>1,1759523371=>1,1759482640=>1,1759470958=>1,1759470860=>1,1759474194=>1,1759476293=>1,1759476459=>1,1759476339=>1,1759468699=>1,1759457199=>1,1759435137=>1,1759295699=>1,1759445304=>1,1759448297=>1,1759449239=>1,1759449095=>1,1759477136=>1,1759480083=>1,1759482393=>1,1759481885=>1,1759482396=>1,1759482628=>1,1759482636=>1,1759482635=>1,1759481879=>1,1759481874=>1,1759481859=>1,1759480090=>1,1759481862=>1,1759481869=>1,1759481871=>1,1760130330=>1,1760130370=>1,1760334195=>1,1760334047=>1,1760335776=>1,1760335828=>1,1760336987=>1,1760336161=>1,1760334013=>1,1760333405=>1,1760323634=>1,1760323495=>1,1760326033=>1,1760330030=>1,1760330511=>1,1760330161=>1,1760337058=>1,1760337065=>1,1760356192=>1,1760353915=>1,1760356293=>1,1760356996=>1,1760357020=>1,1760357000=>1,1760353384=>1,1760353350=>1,1760342830=>1,1760341963=>1,1760343757=>1,1760348121=>1,1760351311=>1,1760322924=>1,1760321702=>1,1760303211=>1,1760301515=>1,1760304889=>1,1760306943=>1,1760309065=>1,1760307365=>1,1760301463=>1,1760300694=>1,1760131061=>1,1760130878=>1,1760132340=>1,1760132440=>1,1760299869=>1,1760297799=>1,1760309384=>1,1760309426=>1,1760318291=>1,1760316604=>1,1760319017=>1,1760319322=>1,1760321689=>1,1760320404=>1,1760314632=>1,1760313549=>1,1760310288=>1,1760310181=>1,1760310939=>1,1760310980=>1,1760311088=>1,1790516249=>1,1790516394=>1,1805866438=>1,1805866433=>1,1805866443=>1,1805866444=>1,1805866447=>1,1805866445=>1,1805866431=>1,1805866429=>1,1805866417=>1,1805866413=>1,1805866418=>1,1805866420=>1,1805866428=>1,1805866425=>1,1805866448=>1,1805866450=>1,1805866484=>1,1805866479=>1,1805866489=>1,1805866490=>1,1805866493=>1,1805866492=>1,1805866477=>1,1805866474=>1,1805866460=>1,1805866452=>1,1805866461=>1,1805866469=>1,1805866473=>1,1805866472=>1,1805866411=>1,1805866406=>1,1805866335=>1,1805866334=>1,1805866343=>1,1805866344=>1,1805866353=>1,1805866346=>1,1805866333=>1,1805866331=>1,1805866318=>1,1805866316=>1,1805866320=>1,1805866321=>1,1805866330=>1,1805866322=>1,1805866354=>1,1805866358=>1,1805866391=>1,1805866384=>1,1805866392=>1,1805866396=>1,1805866405=>1,1805866397=>1,1805866378=>1,1805866370=>1,1805866364=>1,1805866363=>1,1805866366=>1,1805866367=>1,1805866369=>1,1805866494=>1,1805874481=>1,1806135109=>1,1806135092=>1,1806135119=>1,1806135120=>1,1806153516=>1,1806135129=>1,1806135084=>1,1806135076=>1,1805897912=>1,1805897905=>1,1805897914=>1,1805897927=>1,1806135069=>1,1805897957=>1,1806303588=>1,1806311495=>1,1806329127=>1,1806328043=>1,1806331102=>1,1806339957=>1,1806342480=>1,1806341639=>1,1806327072=>1,1806327053=>1,1806321312=>1,1806316084=>1,1806323242=>1,1806325435=>1,1806327021=>1,1805897886=>1,1805897881=>1,1805874610=>1,1805874576=>1,1805874615=>1,1805874651=>1,1805874686=>1,1805874667=>1,1805874557=>1,1805874550=>1,1805874522=>1,1805874513=>1,1805874538=>1,1805874540=>1,1805874543=>1,1805874542=>1,1805897740=>1,1805897742=>1,1805897825=>1,1805897823=>1,1805897832=>1,1805897850=>1,1805897863=>1,1805897852=>1,1805897815=>1,1805897804=>1,1805897779=>1,1805897748=>1,1805897796=>1,1805897800=>1,1805897803=>1,1805866315=>1,1805866310=>1,1796392459=>1,1796377481=>1,1796523607=>1,1804431089=>1,1804601154=>1,1804601142=>1,1796302078=>1,1796187958=>1,1795581580=>1,1795432303=>1,1795635546=>1,1795836568=>1,1796183269=>1,1795881669=>1,1804815141=>1,1804852489=>1,1805093062=>1,1805093061=>1,1805093066=>1,1805093067=>1,1805093069=>1,1805093068=>1,1805093060=>1,1805093059=>1,1804998781=>1,1804998665=>1,1805017310=>1,1805017556=>1,1805093058=>1,1805036476=>1,1795368200=>1,1795348000=>1,1790580860=>1,1790580289=>1,1790580882=>1,1790581077=>1,1790581771=>1,1790581713=>1,1790579240=>1,1790578842=>1,1790520104=>1,1790518659=>1,1790521319=>1,1790521567=>1,1790522828=>1,1790521737=>1,1790581793=>1,1790603817=>1,1790665773=>1,1790664786=>1,1794175115=>1,1794177642=>1,1795294820=>1,1794748629=>1,1790663929=>1,1790654447=>1,1790649701=>1,1790605697=>1,1790650117=>1,1790652177=>1,1790652315=>1,1805093070=>1,1805093074=>1,1805866250=>1,1805866249=>1,1805866251=>1,1805866259=>1,1805866263=>1,1805866262=>1,1805866247=>1,1805866246=>1,1805734083=>1,1805721521=>1,1805755140=>1,1805764490=>1,1805866245=>1,1805764511=>1,1805866264=>1,1805866266=>1,1805866303=>1,1805866302=>1,1805866304=>1,1805866305=>1,1805866309=>1,1805866308=>1,1805866301=>1,1805866299=>1,1805866273=>1,1805866267=>1,1805866277=>1,1805866287=>1,1805866298=>1,1805718129=>1,1805582102=>1,1805094514=>1,1805093086=>1,1805094515=>1,1805094516=>1,1805094518=>1,1805094517=>1,1805093085=>1,1805093084=>1,1805093076=>1,1805093075=>1,1805093077=>1,1805093078=>1,1805093083=>1,1805093082=>1,1805094522=>1,1805094523=>1,1805333798=>1,1805333734=>1,1805333803=>1,1805333810=>1,1805582101=>1,1805339783=>1,1805126209=>1,1805119874=>1,1805094525=>1,1805094524=>1,1805094526=>1,1805097170=>1,1805097178=>1,1759294979=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-22.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2479585280=>2479585535,2680881982=>1,2680881494=>1,2680882419=>1,2680882914=>1,2680883980=>1,2680883910=>1,2680881463=>1,2679532439=>1,2677309778=>1,2675637512=>1,2677323165=>1,2677324410=>1,2679532438=>1,2679532434=>1,2680884305=>1,2680885128=>1,2680886589=>1,2680886526=>1,2680886654=>1,2680886736=>1,2680886976=>1,2680886835=>1,2680885885=>1,2680885859=>1,2680885179=>1,2680885140=>1,2680885481=>1,2680885499=>1,2680885607=>1,2675608851=>1,2675607002=>1,2655382785=>1,2655378118=>1,2655383762=>1,2655731196=>1,2659320050=>1,2656415243=>1,2655377998=>1,2655377992=>1,2655377007=>1,2655376569=>1,2655377159=>1,2655377220=>1,2655377837=>1,2655377698=>1,2662701257=>1,2663487604=>1,2667534321=>1,2667513586=>1,2667566258=>1,2667566889=>1,2668151598=>1,2668118781=>1,2667512563=>1,2665401834=>1,2663877723=>1,2663487605=>1,2665376009=>1,2665392185=>1,2665401698=>1,2680887472=>1,2680888069=>1,2680944504=>1,2680944401=>1,2682262933=>1,2682272795=>1,2682273780=>1,2682272950=>1,2680942977=>1,2680938644=>1,2680918080=>1,2680914943=>1,2680924291=>1,2680924302=>1,2680931051=>1,2680930735=>1,2682286576=>1,2682286874=>1,2684330930=>1,2684292651=>1,2684331907=>1,2684878309=>1,2685424300=>1,2685404617=>1,2684292633=>1,2684290134=>1,2682398938=>1,2682290000=>1,2682446004=>1,2684289261=>1,2684290087=>1,2684289763=>1,2680913728=>1,2680913255=>1,2680902369=>1,2680901856=>1,2680902991=>1,2680903000=>1,2680904298=>1,2680903487=>1,2680900301=>1,2680899393=>1,2680891130=>1,2680889403=>1,2680893102=>1,2680897614=>1,2680899341=>1,2680899004=>1,2680904816=>1,2680904930=>1,2680909418=>1,2680909309=>1,2680911398=>1,2680911525=>1,2680912942=>1,2680911873=>1,2680908926=>1,2680908731=>1,2680906075=>1,2680906051=>1,2680906189=>1,2680906842=>1,2680907658=>1,2655376239=>1,2655375491=>1,2617127403=>1,2616681502=>1,2617175001=>1,2617177652=>1,2617177839=>1,2617177666=>1,2609194722=>1,2609191832=>1,2606689090=>1,2606677265=>1,2606892293=>1,2606892294=>1,2609186607=>1,2609186577=>1,2619507341=>1,2620979938=>1,2630337787=>1,2630322893=>1,2634514647=>1,2634514770=>1,2634515190=>1,2634515090=>1,2630310545=>1,2630303827=>1,2621021497=>1,2620979939=>1,2630293224=>1,2630293422=>1,2630302434=>1,2630297809=>1,2606666440=>1,2606665746=>1,2588531849=>1,2588508554=>1,2588532235=>1,2588534182=>1,2591486721=>1,2591486260=>1,2588492040=>1,2588488781=>1,2588486817=>1,2588486765=>1,2588486821=>1,2588486837=>1,2588486853=>1,2588486849=>1,2591486725=>1,2591486729=>1,2600732352=>1,2592049669=>1,2600736784=>1,2600745130=>1,2604051372=>1,2600745979=>1,2592043527=>1,2592030201=>1,2591504450=>1,2591504430=>1,2592029788=>1,2592029799=>1,2592030050=>1,2634515268=>1,2634515330=>1,2655349213=>1,2655348432=>1,2655350074=>1,2655350870=>1,2655360481=>1,2655358474=>1,2655334453=>1,2655330846=>1,2655325152=>1,2654644803=>1,2655327627=>1,2655330698=>1,2655330845=>1,2655330844=>1,2655366369=>1,2655371484=>1,2655374839=>1,2655374796=>1,2655374911=>1,2655374962=>1,2655375320=>1,2655375241=>1,2655374372=>1,2655373797=>1,2655372883=>1,2655371668=>1,2655373039=>1,2655373696=>1,2655373786=>1,2654644802=>1,2654644800=>1,2634543707=>1,2634543670=>1,2634543717=>1,2634543740=>1,2634543760=>1,2634543741=>1,2634543669=>1,2634535578=>1,2634515449=>1,2634515384=>1,2634515452=>1,2634515859=>1,2634532184=>1,2634520702=>1,2635718907=>1,2637735495=>1,2653838353=>1,2653589842=>1,2654066665=>1,2654644738=>1,2654644763=>1,2654644742=>1,2642058338=>1,2642048493=>1,2640606812=>1,2639689858=>1,2642047543=>1,2642047641=>1,2642047956=>1,2685424739=>1,2685435220=>1,2733860366=>1,2733860206=>1,2733860782=>1,2733860795=>1,2733862130=>1,2733861611=>1,2733860065=>1,2733859656=>1,2733853532=>1,2733852870=>1,2733854350=>1,2733858688=>1,2733858875=>1,2733858846=>1,2733864035=>1,2733866229=>1,2733872869=>1,2733872796=>1,2733874656=>1,2733875100=>1,2733876317=>1,2733876112=>1,2733871305=>1,2733870887=>1,2733867698=>1,2733866511=>1,2733868732=>1,2733869035=>1,2733870554=>1,2733870193=>1,2733852345=>1,2733852249=>1,2733837376=>1,2733836745=>1,2733837669=>1,2733837956=>1,2733839993=>1,2733838640=>1,2733836449=>1,2733836159=>1,2732547645=>1,2732546612=>1,2733000771=>1,2733105337=>1,2733789408=>1,2733150349=>1,2733840305=>1,2733841827=>1,2733847481=>1,2733846835=>1,2733848533=>1,2733849418=>1,2733851095=>1,2733850908=>1,2733846651=>1,2733845410=>1,2733843387=>1,2733842571=>1,2733844261=>1,2733844641=>1,2733844826=>1,2733884539=>1,2733887451=>1,2734115016=>1,2734115015=>1,2734115017=>1,2734115018=>1,2734115029=>1,2734115028=>1,2734114843=>1,2734114823=>1,2734043725=>1,2734035924=>1,2734047363=>1,2734047473=>1,2734100134=>1,2734047476=>1,2734115032=>1,2734115033=>1,2734197984=>1,2734164912=>1,2734198369=>1,2734198390=>1,2734198434=>1,2734198408=>1,2734164742=>1,2734164612=>1,2734115273=>1,2734115146=>1,2734115276=>1,2734115278=>1,2734164442=>1,2734016454=>1,2734016441=>1,2733906524=>1,2733906441=>1,2733907186=>1,2733908649=>1,2733935548=>1,2733935000=>1,2733906425=>1,2733906390=>1,2733892214=>1,2733888398=>1,2733893005=>1,2733895568=>1,2733897105=>1,2733896945=>1,2733969768=>1,2733971263=>1,2734015964=>1,2734015922=>1,2734015966=>1,2734016022=>1,2734016376=>1,2734016286=>1,2734015918=>1,2734015902=>1,2734009076=>1,2733981350=>1,2734015738=>1,2734015815=>1,2734015842=>1,2732546291=>1,2732536004=>1,2727743483=>1,2727743482=>1,2730553217=>1,2730672985=>1,2731290337=>1,2731149386=>1,2726237979=>1,2723351814=>1,2718772302=>1,2714429925=>1,2719044378=>1,2719048841=>1,2722668683=>1,2722623998=>1,2731471153=>1,2731471157=>1,2731792625=>1,2731792624=>1,2731794665=>1,2731794821=>1,2731843884=>1,2731818229=>1,2731792426=>1,2731792395=>1,2731633282=>1,2731632597=>1,2731699645=>1,2731774229=>1,2731783672=>1,2731774311=>1,2710280381=>1,2708755426=>1,2701190178=>1,2701190177=>1,2701190183=>1,2701190210=>1,2701195015=>1,2701193782=>1,2701190176=>1,2698688623=>1,2685464167=>1,2588486761=>1,2686766397=>1,2686914548=>1,2691854237=>1,2690723614=>1,2701195057=>1,2701195722=>1,2705652405=>1,2705652391=>1,2705652409=>1,2705652410=>1,2705652439=>1,2705652437=>1,2705652367=>1,2705652363=>1,2701196765=>1,2701196712=>1,2701831010=>1,2704636056=>1,2704646248=>1,2731844082=>1,2731868403=>1,2732352130=>1,2732351964=>1,2732352468=>1,2732352811=>1,2732353026=>1,2732352971=>1,2732351855=>1,2732319854=>1,2732262493=>1,2732262065=>1,2732262565=>1,2732263025=>1,2732263225=>1,2732263086=>1,2732353102=>1,2732369692=>1,2732501642=>1,2732501150=>1,2732501712=>1,2732501795=>1,2732507461=>1,2732501829=>1,2732461283=>1,2732460034=>1,2732395760=>1,2732382829=>1,2732439616=>1,2732443961=>1,2732444390=>1,2732261990=>1,2732257149=>1,2732122137=>1,2732119309=>1,2732122154=>1,2732128115=>1,2732138797=>1,2732138584=>1,2732118064=>1,2732076668=>1,2731926219=>1,2731868421=>1,2731930398=>1,2732069307=>1,2732076650=>1,2732076583=>1,2732138911=>1,2732138921=>1,2732245636=>1,2732245555=>1,2732246193=>1,2732246213=>1,2732255746=>1,2732249220=>1,2732245421=>1,2732245048=>1,2732139122=>1,2732139045=>1,2732139395=>1,2732144506=>1,2732226060=>1,2685424953=>1,2588486745=>1,2462592011=>1,2462469349=>1,2462645384=>1,2466200036=>1,2466247974=>1,2466205438=>1,2462469056=>1,2462179417=>1,2461643111=>1,2461641377=>1,2461645210=>1,2461645766=>1,2461659120=>1,2461646277=>1,2466248770=>1,2466820510=>1,2497962238=>1,2497657133=>1,2498463650=>1,2499057526=>1,2499484177=>1,2499482673=>1,2493729136=>1,2493729032=>1,2471215689=>1,2469660930=>1,2472259576=>1,2477767567=>1,2493727499=>1,2487878256=>1,2461636315=>1,2461636024=>1,2449492148=>1,2449492038=>1,2449493253=>1,2449493485=>1,2452916979=>1,2452889714=>1,2449484665=>1,2449482869=>1,2447114255=>1,2441423236=>1,2449301994=>1,2449411881=>1,2449481872=>1,2449477688=>1,2452925576=>1,2452941899=>1,2460412687=>1,2459204947=>1,2461605847=>1,2461605853=>1,2461632299=>1,2461631471=>1,2459196066=>1,2457366314=>1,2453442279=>1,2452945527=>1,2457031641=>1,2457047439=>1,2457053264=>1,2499490378=>1,2499491830=>1,2509936656=>1,2509916157=>1,2509936761=>1,2509936847=>1,2509938154=>1,2509938000=>1,2509916143=>1,2509915964=>1,2508457405=>1,2508068190=>1,2509914289=>1,2509914337=>1,2509915934=>1,2509914591=>1,2509938298=>1,2509938404=>1,2513053896=>1,2513052264=>1,2513054396=>1,2513054910=>1,2513055669=>1,2513055195=>1,2513048031=>1,2513046654=>1,2509938604=>1,2509938519=>1,2510057527=>1,2511105135=>1,2511124246=>1,2505790437=>1,2505790420=>1,2499530374=>1,2499526939=>1,2499530532=>1,2499532341=>1,2499535630=>1,2499534243=>1,2499526373=>1,2499510428=>1,2499499208=>1,2499495012=>1,2499500164=>1,2499500304=>1,2499509508=>1,2499506662=>1,2499537479=>1,2499537481=>1,2503478297=>1,2500985426=>1,2503478698=>1,2503873043=>1,2503906345=>1,2503873450=>1,2500395035=>1,2500142941=>1,2499542253=>1,2499540375=>1,2499542757=>1,2499542876=>1,2500038468=>1,2441414135=>1,2440303394=>1,2374667728=>1,2374645756=>1,2375800370=>1,2378455257=>1,2378473464=>1,2378460819=>1,2372510461=>1,2372510451=>1,2372214888=>1,2369962340=>1,2372478827=>1,2372486156=>1,2372510398=>1,2372504921=>1,2378473626=>1,2378476259=>1,2382341478=>1,2382340519=>1,2382341514=>1,2382341674=>1,2382341821=>1,2382341782=>1,2382340518=>1,2382338540=>1,2381288639=>1,2381287906=>1,2381289397=>1,2381289538=>1,2382337793=>1,2381312976=>1,2369333663=>1,2369170737=>1,2357364484=>1,2357189551=>1,2357759274=>1,2360655584=>1,2362332740=>1,2361449099=>1,2356897728=>1,2356897727=>1,2356395464=>1,2356395453=>1,2356583218=>1,2356760610=>1,2356897726=>1,2356760699=>1,2362401906=>1,2362418674=>1,2366906692=>1,2366906691=>1,2366924569=>1,2366934403=>1,2369167288=>1,2367609115=>1,2365773581=>1,2365740805=>1,2364964627=>1,2364532452=>1,2365227100=>1,2365593074=>1,2365627245=>1,2382347681=>1,2382635204=>1,2420920388=>1,2420918668=>1,2420923271=>1,2420924423=>1,2420927882=>1,2420925497=>1,2420917801=>1,2420916290=>1,2420910201=>1,2420910026=>1,2420910507=>1,2420912677=>1,2420915496=>1,2420913533=>1,2420928103=>1,2420928597=>1,2420950824=>1,2420947242=>1,2420959290=>1,2420964837=>1,2425042583=>1,2421498434=>1,2420944059=>1,2420942856=>1,2420933677=>1,2420929961=>1,2420940424=>1,2420941661=>1,2420941998=>1,2420907687=>1,2420906671=>1,2385945706=>1,2384106570=>1,2385948850=>1,2389246843=>1,2395312771=>1,2389299268=>1,2382682450=>1,2382681943=>1,2382678256=>1,2382677404=>1,2382679534=>1,2382679636=>1,2382681420=>1,2382681369=>1,2395326289=>1,2399205954=>1,2412780802=>1,2412399683=>1,2416080468=>1,2418150029=>1,2420903569=>1,2420902756=>1,2409608971=>1,2408137403=>1,2399205956=>1,2399205955=>1,2404989031=>1,2405299343=>1,2408137230=>1,2513056042=>1,2513057870=>1,2548829310=>1,2548829042=>1,2548829845=>1,2548832313=>1,2548840638=>1,2548833632=>1,2548828860=>1,2548828081=>1,2548340850=>1,2546787664=>1,2548827398=>1,2548827758=>1,2548827846=>1,2548827842=>1,2548842457=>1,2548881659=>1,2549753165=>1,2549697743=>1,2550368747=>1,2550723613=>1,2551858463=>1,2551848598=>1,2549695252=>1,2548940337=>1,2548882031=>1,2548881987=>1,2548882732=>1,2548892104=>1,2548936330=>1,2548936272=>1,2539951310=>1,2539652042=>1,2538612113=>1,2538611602=>1,2538612239=>1,2538612385=>1,2538613908=>1,2538613351=>1,2538610707=>1,2538610698=>1,2538256107=>1,2538255314=>1,2538256387=>1,2538256807=>1,2538608274=>1,2538257421=>1,2538620357=>1,2538632116=>1,2538652605=>1,2538647826=>1,2538653120=>1,2538653819=>1,2538663986=>1,2538662511=>1,2538647534=>1,2538644638=>1,2538636376=>1,2538635276=>1,2538637843=>1,2538640281=>1,2538644627=>1,2551858466=>1,2551858469=>1,2580496890=>1,2580359683=>1,2582029251=>1,2582239669=>1,2587939310=>1,2586030049=>1,2580357969=>1,2580273424=>1,2578531831=>1,2576874744=>1,2579605308=>1,2580085573=>1,2580273281=>1,2580272683=>1,2587940609=>1,2587940862=>1,2588486661=>1,2588482808=>1,2588486665=>1,2588486677=>1,2356395428=>1,2588486693=>1,2588482772=>1,2588482679=>1,2588069138=>1,2587952218=>1,2588079713=>1,2588339366=>1,2588482640=>1,2576873867=>1,2576704251=>1,2566519951=>1,2566130348=>1,2566584960=>1,2566946964=>1,2569347580=>1,2568208323=>1,2565287298=>1,2563657322=>1,2551858477=>1,2551858470=>1,2553043557=>1,2553043558=>1,2561908290=>1,2553676397=>1,2572954714=>1,2572954783=>1,2574921914=>1,2574853542=>1,2575209171=>1,2575226577=>1,2575302451=>1,2575302173=>1,2574789257=>1,2573590623=>1,2572975635=>1,2572954827=>1,2572975727=>1,2572975977=>1,2573586579=>1,2538255207=>1,2538254595=>1,2527424326=>1,2527139314=>1,2527424434=>1,2528839012=>1,2528874226=>1,2528857487=>1,2526085464=>1,2526085463=>1,2525037586=>1,2523633254=>1,2525037634=>1,2525051030=>1,2525780638=>1,2525677826=>1,2532468929=>1,2532468933=>1,2534719274=>1,2533480629=>1,2534838948=>1,2535440599=>1,2536326239=>1,2536012096=>1,2533471872=>1,2533412706=>1,2532468950=>1,2532468941=>1,2532468954=>1,2532468957=>1,2533398811=>1,2532468974=>1,2523633253=>1,2523632952=>1,2513083500=>1,2513082979=>1,2513084724=>1,2513086234=>1,2513096009=>1,2513095736=>1,2513082430=>1,2513068705=>1,2513059377=>1,2513058702=>1,2513061031=>1,2513063130=>1,2513068704=>1,2513066601=>1,2513104474=>1,2513105288=>1,2516524485=>1,2516523996=>1,2516542354=>1,2516545473=>1,2523263843=>1,2516560546=>1,2513628260=>1,2513625951=>1,2513609956=>1,2513608577=>1,2513623593=>1,2513624368=>1,2513625755=>1,2536326471=>1,2536326805=>1,2536924757=>1,2536923638=>1,2536925452=>1,2536926030=>1,2536927068=>1,2536926652=>1,2536922506=>1,2536921382=>1,2536917640=>1,2536917408=>1,2536918211=>1,2536918255=>1,2536920738=>1,2536918561=>1,2536927523=>1,2536927553=>1,2538245280=>1,2538242916=>1,2538245980=>1,2538249288=>1,2538253046=>1,2538251804=>1,2537668715=>1,2537173800=>1,2536931593=>1,2536928834=>1,2536932244=>1,2536932608=>1,2536933923=>1,2536916969=>1,2536916796=>1,2536639667=>1,2536366076=>1,2536643866=>1,2536757302=>1,2536841013=>1,2536837846=>1,2536365002=>1,2536362252=>1,2536332384=>1,2536328177=>1,2536332664=>1,2536333020=>1,2536334807=>1,2536333660=>1,2536900198=>1,2536901957=>1,2536913589=>1,2536912962=>1,2536913802=>1,2536914573=>1,2536916591=>1,2536915485=>1,2536912206=>1,2536912020=>1,2536903217=>1,2536902123=>1,2536908114=>1,2536909044=>1,2536909205=>1,2588486757=>1,);?>
1
+ <?php return array(1919972160=>1919972167,1919972128=>1919972135,1912552761=>1,1912561360=>1,1912590523=>1,1912591865=>1,1912549681=>1,1912570154=>1,1912526931=>1,1912387058=>1,1912386339=>1,1912466609=>1,1912474016=>1,1912592286=>1,1912499795=>1,1912536587=>1,1912881786=>1,1914326741=>1,1914320229=>1,1914337311=>1,1914368949=>1,1914637859=>1,1914589527=>1,1914308687=>1,1914308040=>1,1913004738=>1,1912933554=>1,1913007466=>1,1913771055=>1,1914307458=>1,1914189236=>1,1912373679=>1,1912367425=>1,1908996631=>1,1908987554=>1,1909249074=>1,1909321635=>1,1910134965=>1,1909485594=>1,1908973467=>1,1908952595=>1,1908341380=>1,1908288064=>1,1908639323=>1,1908658169=>1,1908940042=>1,1908939603=>1,1910802459=>1,1910802910=>1,1911936797=>1,1911761355=>1,1912121732=>1,1912123049=>1,1912366089=>1,1912318600=>1,1911759690=>1,1911758711=>1,1911117420=>1,1911036768=>1,1911566267=>1,1911587137=>1,1911614982=>1,1914717957=>1,1914843412=>1,1917188109=>1,1917185164=>1,1917820958=>1,1917821697=>1,1917868981=>1,1917821841=>1,1917184936=>1,1916929939=>1,1915692027=>1,1915656760=>1,1915741536=>1,1916346322=>1,1916929932=>1,1916398754=>1,1917880432=>1,1917903431=>1,1919198923=>1,1919198874=>1,1919200319=>1,1919271595=>1,1919273760=>1,1919271598=>1,1919198856=>1,1919198814=>1,1918854078=>1,1918851960=>1,1918875943=>1,1918876249=>1,1919046277=>1,1915653642=>1,1915617311=>1,1915251565=>1,1915248560=>1,1915252551=>1,1915252581=>1,1915283861=>1,1915283569=>1,1915244315=>1,1915240981=>1,1914846066=>1,1907650163=>1,1914918219=>1,1915024242=>1,1915127068=>1,1915118307=>1,1915284977=>1,1915285018=>1,1915421789=>1,1915345183=>1,1915484098=>1,1915570214=>1,1915608581=>1,1915608456=>1,1915335177=>1,1915289108=>1,1915285110=>1,1915285024=>1,1915285133=>1,1915285157=>1,1915285399=>1,1914728970=>1,1907642187=>1,1895460355=>1,1895460106=>1,1895629373=>1,1895631562=>1,1896133117=>1,1896132505=>1,1895389687=>1,1894948977=>1,1894607033=>1,1894598072=>1,1894652021=>1,1894652259=>1,1894823131=>1,1894652572=>1,1896337994=>1,1896521403=>1,1897071304=>1,1896799117=>1,1897120698=>1,1897165094=>1,1897260350=>1,1897260342=>1,1896600931=>1,1896580556=>1,1896537809=>1,1896533425=>1,1896542871=>1,1896579754=>1,1896580555=>1,1896580554=>1,1893211683=>1,1893039294=>1,1887822212=>1,1887815939=>1,1888235868=>1,1888270923=>1,1890199857=>1,1889720486=>1,1887324261=>1,1887322645=>1,1887186709=>1,1887185482=>1,1887187541=>1,1887189471=>1,1887322561=>1,1887191449=>1,1891859003=>1,1891946086=>1,1892108923=>1,1892106686=>1,1892110186=>1,1892608366=>1,1893032261=>1,1893030085=>1,1891947116=>1,1891947113=>1,1891947088=>1,1891947083=>1,1891947093=>1,1891947094=>1,1891947102=>1,1897369352=>1,1897817691=>1,1902860304=>1,1902860293=>1,1902877938=>1,1902889497=>1,1902950650=>1,1902939490=>1,1902860292=>1,1902852428=>1,1902787126=>1,1902773493=>1,1902795463=>1,1902796438=>1,1902829442=>1,1902826914=>1,1902967878=>1,1902968259=>1,1906477953=>1,1906476444=>1,1906681672=>1,1907032110=>1,1907642129=>1,1907381002=>1,1906427264=>1,1906316838=>1,1903767189=>1,1903766365=>1,1904377101=>1,1904377147=>1,1905725741=>1,1905011507=>1,1902767446=>1,1902754446=>1,1899320167=>1,1899302596=>1,1899357895=>1,1899715162=>1,1900166726=>1,1899715163=>1,1899302509=>1,1899267486=>1,1897869000=>1,1897817695=>1,1897869003=>1,1897869005=>1,1897869007=>1,1897869006=>1,1900286723=>1,1900286945=>1,1901084973=>1,1901078047=>1,1901884125=>1,1901884378=>1,1902727229=>1,1902344931=>1,1901039123=>1,1900977553=>1,1900394944=>1,1900367953=>1,1900394972=>1,1900647764=>1,1900685464=>1,1919273931=>1,1919283932=>1,1929138681=>1,1929135191=>1,1929139869=>1,1929143235=>1,1929260827=>1,1929260609=>1,1929115490=>1,1929071603=>1,1928767996=>1,1928702092=>1,1928862014=>1,1928935197=>1,1929042178=>1,1929013399=>1,1929363954=>1,1931053813=>1,1931238063=>1,1931227851=>1,1931249965=>1,1931250636=>1,1931277771=>1,1931250812=>1,1931227533=>1,1931227065=>1,1931217338=>1,1931216660=>1,1931217687=>1,1931220605=>1,1931224849=>1,1931224353=>1,1928668073=>1,1928488873=>1,1926737087=>1,1926731277=>1,1926740871=>1,1926745238=>1,1927126388=>1,1926755242=>1,1926718471=>1,1926717704=>1,1922265519=>1,1921978352=>1,1926713535=>1,1926715755=>1,1926717663=>1,1926715966=>1,1927126988=>1,1927164559=>1,1927655981=>1,1927590980=>1,1927660466=>1,1928202217=>1,1928487387=>1,1928406027=>1,1927447542=>1,1927414494=>1,1927184956=>1,1927172910=>1,1927250949=>1,1927365906=>1,1927405842=>1,1931289090=>1,1931291452=>1,1935094162=>1,1935091415=>1,1935094293=>1,1935094327=>1,1935094541=>1,1935094512=>1,1935091388=>1,1935091267=>1,1934967220=>1,1934967219=>1,1934967221=>1,1934970098=>1,1935091234=>1,1935091230=>1,1935094611=>1,1935094628=>1,1935095498=>1,1935095391=>1,1935095573=>1,1935095598=>1,1935095704=>1,1935095643=>1,1935094778=>1,1935094770=>1,1935094658=>1,1935094630=>1,1935094662=>1,1935094669=>1,1935094683=>1,1934931463=>1,1934911934=>1,1931321767=>1,1931321703=>1,1931329579=>1,1931329730=>1,1931331100=>1,1931329911=>1,1931321427=>1,1931317101=>1,1931293866=>1,1931291539=>1,1931294525=>1,1931299952=>1,1931316208=>1,1931306520=>1,1931332244=>1,1931458398=>1,1933214624=>1,1933214551=>1,1933957386=>1,1934015082=>1,1934568495=>1,1934020762=>1,1932958651=>1,1932474170=>1,1932254074=>1,1932200690=>1,1932417085=>1,1932449741=>1,1932466014=>1,1921974905=>1,1921894740=>1,1919972183=>1,1919972182=>1,1919972185=>1,1919972187=>1,1919972191=>1,1919972189=>1,1919972180=>1,1919972179=>1,1919972171=>1,1919972169=>1,1919972174=>1,1919972175=>1,1919972178=>1,1919972177=>1,1919972196=>1,1919972198=>1,1919972220=>1,1919972217=>1,1919972221=>1,1919972223=>1,1919972226=>1,1919972224=>1,1919972216=>1,1919972211=>1,1919972201=>1,1919972199=>1,1919972202=>1,1919972205=>1,1919972210=>1,1919972168=>1,1919972158=>1,1919972106=>1,1919972105=>1,1919972107=>1,1919972110=>1,1919972112=>1,1919972111=>1,1919972101=>1,1919972100=>1,1919352354=>1,1887184611=>1,1919470350=>1,1919756614=>1,1919972098=>1,1919774996=>1,1919972114=>1,1919972116=>1,1919972146=>1,1919972145=>1,1919972152=>1,1919972154=>1,1919972157=>1,1919972156=>1,1919972141=>1,1919972140=>1,1919972119=>1,1919972118=>1,1919972125=>1,1919972127=>1,1919972137=>1,1919972229=>1,1919972231=>1,1919972325=>1,1919972324=>1,1919972326=>1,1919972334=>1,1919972338=>1,1919972336=>1,1919972319=>1,1919972314=>1,1919972304=>1,1919972301=>1,1919972305=>1,1919972307=>1,1919972313=>1,1919972311=>1,1919972340=>1,1919972342=>1,1920411150=>1,1920066759=>1,1921125689=>1,1921135091=>1,1921856782=>1,1921856516=>1,1920040489=>1,1920040482=>1,1919972345=>1,1919972343=>1,1919972349=>1,1919972350=>1,1920040474=>1,1919972298=>1,1919972297=>1,1919972246=>1,1919972245=>1,1919972248=>1,1919972250=>1,1919972253=>1,1919972252=>1,1919972244=>1,1919972243=>1,1919972236=>1,1919972232=>1,1919972238=>1,1919972239=>1,1919972242=>1,1919972241=>1,1919972258=>1,1919972264=>1,1919972281=>1,1919972278=>1,1919972285=>1,1919972286=>1,1919972293=>1,1919972287=>1,1919972276=>1,1919972275=>1,1919972268=>1,1919972266=>1,1919972270=>1,1919972272=>1,1919972274=>1,1919283766=>1,1887184151=>1,1850646890=>1,1850646483=>1,1850647939=>1,1850649869=>1,1850676228=>1,1850651155=>1,1850646381=>1,1850646364=>1,1850645525=>1,1850645333=>1,1850645622=>1,1850645625=>1,1850645708=>1,1850645655=>1,1850676287=>1,1850863277=>1,1854466138=>1,1854439574=>1,1854468204=>1,1854468663=>1,1854626784=>1,1854526962=>1,1853215815=>1,1853213736=>1,1852180978=>1,1851594666=>1,1852190785=>1,1852191195=>1,1853213228=>1,1852191962=>1,1850644841=>1,1850644536=>1,1850599516=>1,1850598678=>1,1850599532=>1,1850600520=>1,1850640411=>1,1850603534=>1,1850598552=>1,1850598530=>1,1850597886=>1,1850597837=>1,1850597908=>1,1850598079=>1,1850598526=>1,1850598413=>1,1850640478=>1,1850640513=>1,1850642341=>1,1850642260=>1,1850642348=>1,1850642400=>1,1850642916=>1,1850642415=>1,1850642251=>1,1850642227=>1,1850640554=>1,1850640529=>1,1850640577=>1,1850640579=>1,1850640613=>1,1854633907=>1,1854853291=>1,1862322259=>1,1861387788=>1,1862322717=>1,1862344755=>1,1862345755=>1,1862344828=>1,1861282213=>1,1860897741=>1,1860717718=>1,1860716676=>1,1860717778=>1,1860722478=>1,1860897735=>1,1860896819=>1,1862350611=>1,1862352165=>1,1862998978=>1,1862954157=>1,1862998980=>1,1863012357=>1,1863012414=>1,1863012413=>1,1862923495=>1,1862894289=>1,1862452354=>1,1862359550=>1,1862464753=>1,1862841278=>1,1862872210=>1,1859132070=>1,1857923243=>1,1856677691=>1,1856645456=>1,1856707093=>1,1856774021=>1,1856800370=>1,1856799769=>1,1856562435=>1,1856296258=>1,1855523322=>1,1854919513=>1,1855968289=>1,1856292220=>1,1856295867=>1,1856292626=>1,1856803030=>1,1856803332=>1,1856813889=>1,1856812876=>1,1856813937=>1,1856814974=>1,1856908168=>1,1856871692=>1,1856811862=>1,1856811860=>1,1856803393=>1,1856803383=>1,1856804975=>1,1856809333=>1,1856811855=>1,1850597833=>1,1850597706=>1,1847900369=>1,1847899256=>1,1847908766=>1,1847974394=>1,1848792120=>1,1848409475=>1,1847897129=>1,1847772276=>1,1846652054=>1,1845848298=>1,1846735113=>1,1846967107=>1,1847766206=>1,1847732194=>1,1848792152=>1,1848934370=>1,1849882975=>1,1849878261=>1,1850222265=>1,1850278638=>1,1850278841=>1,1850278783=>1,1848980081=>1,1848979777=>1,1848961084=>1,1848961080=>1,1848961090=>1,1848961099=>1,1848968698=>1,1848961100=>1,1845848068=>1,1845768075=>1,1844391962=>1,1844382730=>1,1844391964=>1,1844392088=>1,1844839891=>1,1844537823=>1,1844373730=>1,1844370486=>1,1844276945=>1,1844276352=>1,1844325031=>1,1844337748=>1,1844340584=>1,1844339312=>1,1844890593=>1,1845024011=>1,1845294450=>1,1845207559=>1,1845364265=>1,1845399303=>1,1845484068=>1,1845482553=>1,1845185092=>1,1845033585=>1,1845029979=>1,1845029947=>1,1845029980=>1,1845029981=>1,1845029982=>1,1850278852=>1,1850279022=>1,1850587520=>1,1850587408=>1,1850587534=>1,1850587870=>1,1850589527=>1,1850589157=>1,1850586734=>1,1850586343=>1,1850583724=>1,1850583689=>1,1850583725=>1,1850583755=>1,1850586172=>1,1850585354=>1,1850589622=>1,1850590344=>1,1850595160=>1,1850594081=>1,1850595630=>1,1850596803=>1,1850597691=>1,1850597689=>1,1850593848=>1,1850593352=>1,1850591154=>1,1850590406=>1,1850591321=>1,1850592049=>1,1850592240=>1,1850583685=>1,1850583654=>1,1850396392=>1,1850396386=>1,1850396404=>1,1850457416=>1,1850574896=>1,1850574448=>1,1850394869=>1,1850394808=>1,1850280624=>1,1850279252=>1,1850324492=>1,1850392937=>1,1850393427=>1,1850393385=>1,1850576210=>1,1850578009=>1,1850582136=>1,1850582115=>1,1850582154=>1,1850583555=>1,1850583639=>1,1850583625=>1,1850581530=>1,1850581382=>1,1850580267=>1,1850578264=>1,1850580354=>1,1850581318=>1,1850581381=>1,1863050317=>1,1863050328=>1,1880659745=>1,1880658597=>1,1880697199=>1,1880697224=>1,1880746684=>1,1880730493=>1,1880548434=>1,1880507263=>1,1880119900=>1,1880119735=>1,1880338827=>1,1880394556=>1,1880430530=>1,1880427627=>1,1880786007=>1,1880795554=>1,1882308788=>1,1880992323=>1,1882542522=>1,1882542523=>1,1883250340=>1,1883250299=>1,1880805213=>1,1880805209=>1,1880804433=>1,1880804426=>1,1880804437=>1,1880804674=>1,1880805190=>1,1880805139=>1,1880119670=>1,1880119427=>1,1878776847=>1,1878749821=>1,1878781169=>1,1878822879=>1,1878885010=>1,1878885003=>1,1878743059=>1,1878693062=>1,1878067592=>1,1877278255=>1,1878067914=>1,1878213473=>1,1878552472=>1,1878551119=>1,1878887897=>1,1878887963=>1,1880116412=>1,1880058210=>1,1880119064=>1,1880119117=>1,1880119200=>1,1880119197=>1,1879440722=>1,1879314840=>1,1878954785=>1,1878887997=>1,1879078782=>1,1879155977=>1,1879257618=>1,1883250469=>1,1883250671=>1,1885332315=>1,1885332311=>1,1885332316=>1,1885332320=>1,1885338085=>1,1885335415=>1,1885332310=>1,1885206576=>1,1884984475=>1,1884964947=>1,1884992409=>1,1885106682=>1,1885164495=>1,1885140618=>1,1885687979=>1,1885864911=>1,1887020789=>1,1886960924=>1,1887175073=>1,1887180319=>1,1887183781=>1,1887182036=>1,1886941411=>1,1886392445=>1,1885865201=>1,1885865046=>1,1885881348=>1,1885946441=>1,1885952105=>1,1884789174=>1,1884729282=>1,1883916414=>1,1883909627=>1,1883919233=>1,1883922600=>1,1883947546=>1,1883930505=>1,1883901857=>1,1883832354=>1,1883290403=>1,1883289929=>1,1883330712=>1,1883330810=>1,1883366377=>1,1883345333=>1,1883951044=>1,1883951970=>1,1884198322=>1,1884195114=>1,1884205572=>1,1884205575=>1,1884205834=>1,1884205583=>1,1884172162=>1,1884171841=>1,1884169619=>1,1884161764=>1,1884169722=>1,1884170180=>1,1884170191=>1,1877278253=>1,1877278252=>1,1865944472=>1,1865944470=>1,1865944483=>1,1865944484=>1,1865944487=>1,1865944486=>1,1865603446=>1,1865603354=>1,1865395001=>1,1865394985=>1,1865526200=>1,1865549845=>1,1865593318=>1,1865592960=>1,1865944488=>1,1865944489=>1,1866684496=>1,1866681258=>1,1866752396=>1,1866752829=>1,1866756346=>1,1866754130=>1,1866588960=>1,1866409508=>1,1865949255=>1,1865949254=>1,1865949256=>1,1865949257=>1,1865951366=>1,1865949258=>1,1865354500=>1,1865354499=>1,1863086886=>1,1863086883=>1,1863126232=>1,1863126413=>1,1863198866=>1,1863150889=>1,1863086881=>1,1863084819=>1,1863078686=>1,1863078414=>1,1863078688=>1,1863078806=>1,1863078814=>1,1863078810=>1,1863198867=>1,1863198868=>1,1864913993=>1,1864805987=>1,1864919939=>1,1864942858=>1,1865354498=>1,1865122178=>1,1864112395=>1,1863774972=>1,1863198874=>1,1863198869=>1,1863198875=>1,1863438018=>1,1863627730=>1,1866759091=>1,1866838141=>1,1875092378=>1,1875044323=>1,1875097573=>1,1875247706=>1,1875338118=>1,1875282130=>1,1875038912=>1,1874917260=>1,1872854635=>1,1872854634=>1,1872854636=>1,1872854637=>1,1874890579=>1,1874077803=>1,1875360312=>1,1875437291=>1,1876781399=>1,1875855597=>1,1876808010=>1,1876821802=>1,1877278249=>1,1877277857=>1,1875820187=>1,1875792389=>1,1875527484=>1,1875510436=>1,1875640449=>1,1875667263=>1,1875792376=>1,1872838997=>1,1872838996=>1,1868209965=>1,1868207282=>1,1868217718=>1,1868300766=>1,1868380369=>1,1868303037=>1,1868206812=>1,1868146761=>1,1867135224=>1,1867135220=>1,1867231683=>1,1867407196=>1,1867898725=>1,1867896406=>1,1870049637=>1,1870333656=>1,1872838988=>1,1872838983=>1,1872838990=>1,1872838992=>1,1872838995=>1,1872838993=>1,1870587817=>1,1870587622=>1,1870454418=>1,1870425198=>1,1870512666=>1,1870587347=>1,1870587448=>1,1844255325=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-23.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2875289712=>1,2875289549=>1,2875290407=>1,2875290515=>1,2875290606=>1,2875290564=>1,2875289516=>1,2875289433=>1,2875287394=>1,2875285584=>1,2875287505=>1,2875289213=>1,2875289312=>1,2875289215=>1,2875291237=>1,2875291250=>1,2875293566=>1,2875293475=>1,2875293668=>1,2875295806=>1,2875295841=>1,2875295830=>1,2875293445=>1,2875293146=>1,2875291263=>1,2875291255=>1,2875291475=>1,2875292153=>1,2875292944=>1,2875292882=>1,2875285482=>1,2875285477=>1,2875282300=>1,2875282246=>1,2875282318=>1,2875282319=>1,2875282529=>1,2875282391=>1,2875281934=>1,2875281732=>1,2875280999=>1,2875280881=>1,2875281185=>1,2875281198=>1,2875281519=>1,2875281291=>1,2875282603=>1,2875282662=>1,2875284362=>1,2875284036=>1,2875284916=>1,2875284960=>1,2875285184=>1,2875285036=>1,2875283724=>1,2875283430=>1,2875283048=>1,2875282940=>1,2875283217=>1,2875283243=>1,2875283382=>1,2875295847=>1,2875295899=>1,2875297756=>1,2875297638=>1,2875297897=>1,2875297906=>1,2875297986=>1,2875297962=>1,2875297637=>1,2875297620=>1,2875297411=>1,2875297395=>1,2875297413=>1,2875297457=>1,2875297578=>1,2875297533=>1,2875298178=>1,2875298330=>1,2875301544=>1,2875301509=>1,2875301603=>1,2875301819=>1,2875302171=>1,2875302129=>1,2875301387=>1,2875301333=>1,2875298543=>1,2875298519=>1,2875300967=>1,2875301080=>1,2875301304=>1,2875301199=>1,2875297369=>1,2875297329=>1,2875296330=>1,2875296325=>1,2875296385=>1,2875296416=>1,2875296632=>1,2875296493=>1,2875296265=>1,2875296189=>1,2875295939=>1,2875295908=>1,2875295941=>1,2875295967=>1,2875296110=>1,2875295970=>1,2875296678=>1,2875296729=>1,2875297050=>1,2875297042=>1,2875297088=>1,2875297098=>1,2875297278=>1,2875297164=>1,2875297026=>1,2875297008=>1,2875296874=>1,2875296828=>1,2875296886=>1,2875296939=>1,2875296949=>1,2875280798=>1,2875280764=>1,2875269288=>1,2875269233=>1,2875269343=>1,2875269550=>1,2875269619=>1,2875269554=>1,2875268946=>1,2875260842=>1,2875260584=>1,2875260482=>1,2875260603=>1,2875260616=>1,2875260690=>1,2875260670=>1,2875269799=>1,2875270039=>1,2875271140=>1,2875271023=>1,2875271507=>1,2875271649=>1,2875272136=>1,2875271828=>1,2875270768=>1,2875270486=>1,2875270077=>1,2875270041=>1,2875270080=>1,2875270118=>1,2875270165=>1,2875270124=>1,2875260455=>1,2875260434=>1,2875256332=>1,2875256153=>1,2875256434=>1,2875256483=>1,2875256555=>1,2875256505=>1,2875255970=>1,2875255941=>1,2875255827=>1,2875255795=>1,2875255855=>1,2875255866=>1,2875255896=>1,2875255893=>1,2875258547=>1,2875259408=>1,2875260050=>1,2875260005=>1,2875260058=>1,2875260184=>1,2875260289=>1,2875260214=>1,2875259919=>1,2875259781=>1,2875259550=>1,2875259535=>1,2875259618=>1,2875259665=>1,2875259681=>1,2875272246=>1,2875272281=>1,2875277990=>1,2875277748=>1,2875278061=>1,2875278163=>1,2875278600=>1,2875278550=>1,2875277670=>1,2875277649=>1,2875276849=>1,2875276792=>1,2875276888=>1,2875276991=>1,2875277436=>1,2875277046=>1,2875278663=>1,2875278912=>1,2875280218=>1,2875280027=>1,2875280323=>1,2875280510=>1,2875280760=>1,2875280608=>1,2875279991=>1,2875279707=>1,2875279012=>1,2875279000=>1,2875279215=>1,2875279236=>1,2875279268=>1,2875275864=>1,2875275835=>1,2875273841=>1,2875273804=>1,2875274072=>1,2875274223=>1,2875274411=>1,2875274334=>1,2875273690=>1,2875273634=>1,2875272485=>1,2875272324=>1,2875272527=>1,2875272564=>1,2875272688=>1,2875272609=>1,2875274423=>1,2875274479=>1,2875275430=>1,2875275379=>1,2875275457=>1,2875275544=>1,2875275741=>1,2875275606=>1,2875275254=>1,2875275110=>1,2875274740=>1,2875274505=>1,2875274743=>1,2875274900=>1,2875275075=>1,2875302198=>1,2875302335=>1,2875311210=>1,2875311206=>1,2875311496=>1,2875311716=>1,2875311802=>1,2875311793=>1,2875311186=>1,2875311166=>1,2875310929=>1,2875310809=>1,2875310939=>1,2875310960=>1,2875311037=>1,2875311019=>1,2875311835=>1,2875311920=>1,2875312426=>1,2875312400=>1,2875312463=>1,2875312718=>1,2875312992=>1,2875312904=>1,2875312322=>1,2875312272=>1,2875311952=>1,2875311935=>1,2875312045=>1,2875312107=>1,2875312269=>1,2875312230=>1,2875310782=>1,2875310749=>1,2875309337=>1,2875309286=>1,2875309414=>1,2875309425=>1,2875309454=>1,2875309428=>1,2875309262=>1,2875309252=>1,2875308779=>1,2875308730=>1,2875308804=>1,2875308859=>1,2875309198=>1,2875309150=>1,2875309644=>1,2875309665=>1,2875310371=>1,2875310174=>1,2875310424=>1,2875310449=>1,2875310617=>1,2875310527=>1,2875309985=>1,2875309958=>1,2875309808=>1,2875309679=>1,2875309840=>1,2875309906=>1,2875309955=>1,2875313008=>1,2875313017=>1,2875315558=>1,2875315557=>1,2875315569=>1,2875315588=>1,2875315649=>1,2875315625=>1,2875315484=>1,2875315284=>1,2875314827=>1,2875314762=>1,2875314948=>1,2875315113=>1,2875315134=>1,2875315117=>1,2875315657=>1,2875315773=>1,2875316611=>1,2875316534=>1,2875316612=>1,2875316617=>1,2875316633=>1,2875316619=>1,2875316513=>1,2875316324=>1,2875315878=>1,2875315850=>1,2875316031=>1,2875316162=>1,2875316209=>1,2875314693=>1,2875314684=>1,2875313496=>1,2875313333=>1,2875313510=>1,2875313653=>1,2875313915=>1,2875313737=>1,2875313298=>1,2875313296=>1,2875313065=>1,2875313046=>1,2875313090=>1,2875313099=>1,2875313291=>1,2875313262=>1,2875313966=>1,2875313982=>1,2875314447=>1,2875314439=>1,2875314532=>1,2875314535=>1,2875314636=>1,2875314621=>1,2875314249=>1,2875314211=>1,2875314064=>1,2875314020=>1,2875314124=>1,2875314199=>1,2875314205=>1,2875308662=>1,2875308615=>1,2875303849=>1,2875303809=>1,2875303854=>1,2875303865=>1,2875304014=>1,2875303998=>1,2875303802=>1,2875303778=>1,2875303629=>1,2875303599=>1,2875303647=>1,2875303687=>1,2875303747=>1,2875303730=>1,2875304149=>1,2875304158=>1,2875304631=>1,2875304603=>1,2875304735=>1,2875304742=>1,2875304807=>1,2875304748=>1,2875304589=>1,2875304553=>1,2875304236=>1,2875304179=>1,2875304434=>1,2875304443=>1,2875304484=>1,2875304469=>1,2875303556=>1,2875303520=>1,2875302555=>1,2875302546=>1,2875302583=>1,2875302590=>1,2875302646=>1,2875302643=>1,2875302521=>1,2875302493=>1,2875302350=>1,2875302336=>1,2875302382=>1,2875302419=>1,2875302482=>1,2875302431=>1,2875302708=>1,2875302749=>1,2875303201=>1,2875303200=>1,2875303226=>1,2875303245=>1,2875303481=>1,2875303275=>1,2875303180=>1,2875303116=>1,2875303021=>1,2875302928=>1,2875303042=>1,2875303053=>1,2875303093=>1,2875304827=>1,2875304843=>1,2875307288=>1,2875307240=>1,2875307366=>1,2875307379=>1,2875307525=>1,2875307486=>1,2875307201=>1,2875307188=>1,2875306609=>1,2875306564=>1,2875306830=>1,2875307122=>1,2875307171=>1,2875307168=>1,2875307526=>1,2875307962=>1,2875308362=>1,2875308339=>1,2875308399=>1,2875308535=>1,2875308613=>1,2875308541=>1,2875308292=>1,2875308257=>1,2875308082=>1,2875308012=>1,2875308151=>1,2875308188=>1,2875308213=>1,2875306437=>1,2875306393=>1,2875305429=>1,2875305399=>1,2875305567=>1,2875305620=>1,2875305773=>1,2875305758=>1,2875305345=>1,2875305335=>1,2875304979=>1,2875304848=>1,2875305086=>1,2875305155=>1,2875305220=>1,2875305198=>1,2875305774=>1,2875305805=>1,2875306104=>1,2875306100=>1,2875306133=>1,2875306140=>1,2875306361=>1,2875306226=>1,2875306071=>1,2875305960=>1,2875305870=>1,2875305857=>1,2875305876=>1,2875305925=>1,2875305938=>1,2875255719=>1,2875255705=>1,2809275164=>1,2809273717=>1,2809275587=>1,2809277736=>1,2809283332=>1,2809283133=>1,2809273714=>1,2809268134=>1,2807590393=>1,2807590348=>1,2807591676=>1,2807593018=>1,2809267110=>1,2809266927=>1,2809284541=>1,2809284612=>1,2809306105=>1,2809306089=>1,2809308926=>1,2809311764=>1,2809313375=>1,2809313333=>1,2809305994=>1,2809305365=>1,2809292563=>1,2809290788=>1,2809295152=>1,2809295238=>1,2809305188=>1,2809300854=>1,2807590265=>1,2807590216=>1,2792294248=>1,2790524727=>1,2792301687=>1,2792309548=>1,2792323236=>1,2792313318=>1,2790397384=>1,2790193067=>1,2789618630=>1,2789618629=>1,2789630346=>1,2789658370=>1,2790171786=>1,2789661441=>1,2794220935=>1,2794384352=>1,2807582945=>1,2807573923=>1,2807583450=>1,2807585914=>1,2807590202=>1,2807590159=>1,2807572930=>1,2807572712=>1,2805481004=>1,2800734065=>1,2807571308=>1,2807571802=>1,2807572651=>1,2809316338=>1,2809316343=>1,2833990430=>1,2833990281=>1,2833990696=>1,2833990860=>1,2833995237=>1,2833990991=>1,2833990024=>1,2833989840=>1,2829539215=>1,2829539159=>1,2829539226=>1,2829582258=>1,2833392403=>1,2832493000=>1,2833996145=>1,2833996983=>1,2835401235=>1,2835401128=>1,2835401419=>1,2835411347=>1,2839085266=>1,2839085255=>1,2835376849=>1,2835369446=>1,2834011595=>1,2833997027=>1,2834012121=>1,2834012768=>1,2835172899=>1,2829539083=>1,2829539067=>1,2813660333=>1,2812323930=>1,2818639418=>1,2818651623=>1,2818657031=>1,2818654907=>1,2812323466=>1,2812322714=>1,2809322049=>1,2809322048=>1,2809322050=>1,2809326988=>1,2812322243=>1,2811163363=>1,2819127007=>1,2819172362=>1,2824706698=>1,2824481553=>1,2825372666=>1,2825485887=>1,2828466959=>1,2825487937=>1,2823175656=>1,2822753297=>1,2822579772=>1,2819172363=>1,2822691288=>1,2822706195=>1,2822707374=>1,2789618577=>1,2789609230=>1,2738207282=>1,2738198324=>1,2738207283=>1,2738207284=>1,2738207450=>1,2738207285=>1,2738164345=>1,2737913200=>1,2736390588=>1,2736326184=>1,2736408445=>1,2736441356=>1,2737768636=>1,2737600328=>1,2738207622=>1,2738212635=>1,2742936848=>1,2742929539=>1,2742940642=>1,2742942692=>1,2744715394=>1,2742943031=>1,2742929485=>1,2742928773=>1,2742882957=>1,2742882722=>1,2742883972=>1,2742896156=>1,2742927412=>1,2742896342=>1,2736210630=>1,2736210629=>1,2734224369=>1,2734223880=>1,2734330070=>1,2734330334=>1,2734346082=>1,2734330343=>1,2734223504=>1,2734223499=>1,2734204174=>1,2734203953=>1,2734223494=>1,2734223495=>1,2734223498=>1,2734223497=>1,2734363770=>1,2734400531=>1,2734486098=>1,2734485845=>1,2734503689=>1,2734535802=>1,2736132393=>1,2736132392=>1,2734476350=>1,2734462913=>1,2734401370=>1,2734401354=>1,2734461249=>1,2734461265=>1,2734461281=>1,2745960222=>1,2745960387=>1,2784958386=>1,2783326579=>1,2784959867=>1,2784963695=>1,2784963756=>1,2784963714=>1,2778363966=>1,2777388457=>1,2776344826=>1,2776132381=>1,2777301536=>1,2777301751=>1,2777316880=>1,2777305138=>1,2784963767=>1,2784963806=>1,2789106161=>1,2789106160=>1,2789106163=>1,2789106164=>1,2789107701=>1,2789106165=>1,2789106159=>1,2789106158=>1,2784991031=>1,2784981270=>1,2784991264=>1,2789102286=>1,2789105944=>1,2768407347=>1,2765582100=>1,2746306308=>1,2746008117=>1,2746306309=>1,2752461834=>1,2756549195=>1,2754022540=>1,2745991494=>1,2745991491=>1,2745961852=>1,2745960388=>1,2745962205=>1,2745991436=>1,2745991474=>1,2745991446=>1,2758028114=>1,2759035617=>1,2760513912=>1,2760141791=>1,2763108757=>1,2765553812=>1,2765574442=>1,2765559984=>1,2760140763=>1,2760138223=>1,2760118265=>1,2760118239=>1,2760133467=>1,2760134063=>1,2760137437=>1,2839116236=>1,2848395272=>1,2875237832=>1,2875237802=>1,2875237863=>1,2875237876=>1,2875237926=>1,2875237881=>1,2875237737=>1,2875237701=>1,2875237503=>1,2875237434=>1,2875237511=>1,2875237579=>1,2875237673=>1,2875237614=>1,2875238017=>1,2875238062=>1,2875244926=>1,2875244832=>1,2875245110=>1,2875245250=>1,2875245601=>1,2875245295=>1,2875244752=>1,2875244662=>1,2875240513=>1,2875238122=>1,2875241808=>1,2875242340=>1,2875244559=>1,2875242370=>1,2875237428=>1,2875237381=>1,2875236756=>1,2875236708=>1,2875236789=>1,2875236825=>1,2875236873=>1,2875236840=>1,2875236678=>1,2875236567=>1,2875236453=>1,2875236436=>1,2875236465=>1,2875236483=>1,2875236546=>1,2875236507=>1,2875236930=>1,2875236944=>1,2875237220=>1,2875237160=>1,2875237262=>1,2875237281=>1,2875237350=>1,2875237299=>1,2875237155=>1,2875237027=>1,2875236951=>1,2875236949=>1,2875236970=>1,2875236980=>1,2875237024=>1,2875245616=>1,2875245667=>1,2875254377=>1,2875254317=>1,2875254396=>1,2875254430=>1,2875254483=>1,2875254467=>1,2875254279=>1,2875254213=>1,2875254026=>1,2875253974=>1,2875254057=>1,2875254058=>1,2875254133=>1,2875254077=>1,2875254504=>1,2875254537=>1,2875254698=>1,2875254680=>1,2875255564=>1,2875255601=>1,2875255654=>1,2875255622=>1,2875254665=>1,2875254645=>1,2875254554=>1,2875254545=>1,2875254569=>1,2875254576=>1,2875254585=>1,2875253936=>1,2875253909=>1,2875247418=>1,2875247398=>1,2875247428=>1,2875247501=>1,2875247579=>1,2875247557=>1,2875247231=>1,2875246038=>1,2875245790=>1,2875245674=>1,2875245796=>1,2875245886=>1,2875246013=>1,2875245912=>1,2875247767=>1,2875247802=>1,2875253772=>1,2875248095=>1,2875253790=>1,2875253812=>1,2875253874=>1,2875253849=>1,2875248073=>1,2875248057=>1,2875247895=>1,2875247885=>1,2875247938=>1,2875247975=>1,2875248044=>1,2875236426=>1,2875236387=>1,2871230675=>1,2871142904=>1,2871259787=>1,2871259828=>1,2871401015=>1,2871370561=>1,2870591979=>1,2870591876=>1,2870591764=>1,2870591753=>1,2870591769=>1,2870591821=>1,2870591875=>1,2870591822=>1,2871434268=>1,2871444535=>1,2875224982=>1,2875224820=>1,2875225184=>1,2875225368=>1,2875225379=>1,2875225371=>1,2875224640=>1,2875224528=>1,2871469852=>1,2871466639=>1,2875220670=>1,2875224263=>1,2875224527=>1,2875224407=>1,2869445330=>1,2869438537=>1,2856853658=>1,2853734918=>1,2856859213=>1,2856864003=>1,2857083479=>1,2857083473=>1,2852120746=>1,2852112339=>1,2851045414=>1,2850758580=>1,2852068506=>1,2852068509=>1,2852080951=>1,2852080923=>1,2857083555=>1,2857083733=>1,2866233306=>1,2865951112=>1,2869244386=>1,2869244475=>1,2869266474=>1,2869264863=>1,2860646762=>1,2860646733=>1,2858500872=>1,2857083764=>1,2858500882=>1,2858501007=>1,2860646663=>1,2875225454=>1,2875225461=>1,2875233865=>1,2875232818=>1,2875233942=>1,2875233946=>1,2875234053=>1,2875234051=>1,2875232613=>1,2875232608=>1,2875231982=>1,2875231869=>1,2875232031=>1,2875232132=>1,2875232605=>1,2875232458=>1,2875234064=>1,2875234074=>1,2875234265=>1,2875234259=>1,2875234278=>1,2875234283=>1,2875236374=>1,2875234302=>1,2875234207=>1,2875234198=>1,2875234123=>1,2875234121=>1,2875234138=>1,2875234148=>1,2875234189=>1,2875231859=>1,2875231820=>1,2875226416=>1,2875226409=>1,2875226436=>1,2875226761=>1,2875227068=>1,2875227038=>1,2875226247=>1,2875226204=>1,2875225640=>1,2875225587=>1,2875225676=>1,2875226045=>1,2875226200=>1,2875226118=>1,2875227315=>1,2875227683=>1,2875231091=>1,2875228030=>1,2875231314=>1,2875231446=>1,2875231689=>1,2875231525=>1,2875227966=>1,2875227885=>1,2875227730=>1,2875227689=>1,2875227797=>1,2875227831=>1,2875227848=>1,2734202931=>1,);?>
1
+ <?php return array(1971846025=>1,1971846024=>1,1971846371=>1,1971907073=>1,1971907078=>1,1971907076=>1,1971846022=>1,1971846021=>1,1971845770=>1,1971845766=>1,1971845962=>1,1971846018=>1,1971846020=>1,1971846019=>1,1971907079=>1,1971907080=>1,1973576963=>1,1973562784=>1,1973579236=>1,1973580712=>1,1973606295=>1,1973600860=>1,1973560431=>1,1973338665=>1,1972702236=>1,1971907082=>1,1972707179=>1,1973289426=>1,1973327138=>1,1973326646=>1,1971845765=>1,1971845764=>1,1970639108=>1,1970438522=>1,1970868337=>1,1970876889=>1,1970922283=>1,1970917166=>1,1969683666=>1,1969650394=>1,1969641683=>1,1969640708=>1,1969641827=>1,1969642805=>1,1969649811=>1,1969649810=>1,1970922445=>1,1970923494=>1,1970926088=>1,1970924316=>1,1970978906=>1,1971831342=>1,1971845763=>1,1971845762=>1,1970923860=>1,1970923859=>1,1970923574=>1,1970923505=>1,1970923578=>1,1970923669=>1,1970923858=>1,1973617234=>1,1973619535=>1,1974058279=>1,1974027722=>1,1974059246=>1,1974073995=>1,1974076361=>1,1974076095=>1,1974026982=>1,1974026836=>1,1973977537=>1,1973976796=>1,1973977630=>1,1973986142=>1,1973999008=>1,1973995672=>1,1974078151=>1,1974105460=>1,1974309694=>1,1974291944=>1,1974452273=>1,1974452693=>1,1974598291=>1,1974598290=>1,1974291925=>1,1974195672=>1,1974130583=>1,1974129999=>1,1974146957=>1,1974149564=>1,1974176150=>1,1974150467=>1,1973954961=>1,1973954739=>1,1973685184=>1,1973678065=>1,1973692849=>1,1973692901=>1,1973704057=>1,1973692993=>1,1973662325=>1,1973659574=>1,1973639816=>1,1973637218=>1,1973641786=>1,1973642111=>1,1973647258=>1,1973646565=>1,1973721964=>1,1973742480=>1,1973841323=>1,1973840299=>1,1973845059=>1,1973932679=>1,1973951008=>1,1973937877=>1,1973789827=>1,1973785342=>1,1973760531=>1,1973743639=>1,1973761399=>1,1973769639=>1,1973775647=>1,1969638690=>1,1969631331=>1,1959600772=>1,1959529597=>1,1959990217=>1,1960089705=>1,1960090991=>1,1960090530=>1,1959511258=>1,1959499565=>1,1959102314=>1,1959102290=>1,1959447148=>1,1959450155=>1,1959490137=>1,1959450555=>1,1960091036=>1,1960091432=>1,1960998422=>1,1960995336=>1,1961016217=>1,1961035215=>1,1961152586=>1,1961136072=>1,1960974263=>1,1960972043=>1,1960133936=>1,1960099267=>1,1960602855=>1,1960886217=>1,1960971176=>1,1960970705=>1,1959102020=>1,1959101270=>1,1950958318=>1,1950910374=>1,1951026000=>1,1951141367=>1,1951221420=>1,1951206489=>1,1950877086=>1,1950657667=>1,1950018483=>1,1950017963=>1,1950021107=>1,1950023317=>1,1950657358=>1,1950023370=>1,1951874912=>1,1952097029=>1,1958744203=>1,1953786981=>1,1958747457=>1,1958824195=>1,1958861914=>1,1958861052=>1,1953616626=>1,1953522730=>1,1952109452=>1,1952108675=>1,1952266753=>1,1952279945=>1,1953246217=>1,1961302057=>1,1961335030=>1,1967814916=>1,1967814792=>1,1967814988=>1,1967815118=>1,1968055230=>1,1967816098=>1,1967814789=>1,1967814701=>1,1967012841=>1,1967007597=>1,1967041709=>1,1967130828=>1,1967369576=>1,1967336677=>1,1968055882=>1,1968055897=>1,1969128699=>1,1969128489=>1,1969136230=>1,1969176581=>1,1969624363=>1,1969621130=>1,1969068328=>1,1968897812=>1,1968134053=>1,1968056518=>1,1968272561=>1,1968757547=>1,1968774604=>1,1966902270=>1,1966858304=>1,1962372723=>1,1962372722=>1,1962372725=>1,1962510095=>1,1963396130=>1,1962719498=>1,1962281093=>1,1962281091=>1,1961335433=>1,1961335112=>1,1961336001=>1,1961350869=>1,1962021873=>1,1961673864=>1,1963724730=>1,1964133355=>1,1966797079=>1,1966712857=>1,1966856664=>1,1966856675=>1,1966858298=>1,1966856686=>1,1965344311=>1,1965344152=>1,1964259458=>1,1964139513=>1,1964357229=>1,1964357230=>1,1964605934=>1,1974598292=>1,1974598293=>1,1986075042=>1,1986074697=>1,1986076338=>1,1986076898=>1,1986084626=>1,1986081700=>1,1986072538=>1,1986072060=>1,1986047507=>1,1986038279=>1,1986047734=>1,1986071323=>1,1986072059=>1,1986072058=>1,1986085378=>1,1986087252=>1,1986103702=>1,1986101284=>1,1986106316=>1,1986107982=>1,1986112076=>1,1986108498=>1,1986101283=>1,1986101282=>1,1986088311=>1,1986087254=>1,1986091689=>1,1986093674=>1,1986101050=>1,1986097578=>1,1986036867=>1,1986033882=>1,1985718593=>1,1985718227=>1,1985718623=>1,1985718627=>1,1985720932=>1,1985718652=>1,1985718196=>1,1985716570=>1,1985040777=>1,1985040603=>1,1985041272=>1,1985041278=>1,1985503019=>1,1985487710=>1,1985720955=>1,1985721346=>1,1985786277=>1,1985785200=>1,1985865079=>1,1986013721=>1,1986020665=>1,1986013846=>1,1985782929=>1,1985756930=>1,1985721361=>1,1985721355=>1,1985721509=>1,1985721571=>1,1985722459=>1,1986112078=>1,1986117581=>1,1989188349=>1,1989187833=>1,1989189441=>1,1989190652=>1,1989193697=>1,1989192701=>1,1989187473=>1,1989187016=>1,1988962644=>1,1988922902=>1,1989154680=>1,1989175550=>1,1989185529=>1,1989176048=>1,1989193734=>1,1989194238=>1,1990274771=>1,1990252257=>1,1990279194=>1,1990280185=>1,1990281106=>1,1990280404=>1,1990026256=>1,1989203289=>1,1989196797=>1,1989196022=>1,1989197795=>1,1989198031=>1,1989203285=>1,1988671641=>1,1988495708=>1,1986132314=>1,1986132269=>1,1986133866=>1,1986143130=>1,1986226523=>1,1986226522=>1,1986132268=>1,1986132266=>1,1986121301=>1,1986117582=>1,1986122625=>1,1986122626=>1,1986130218=>1,1986129810=>1,1986226524=>1,1986228879=>1,1988005585=>1,1987774620=>1,1988379064=>1,1988414218=>1,1988486469=>1,1988461611=>1,1987202351=>1,1987119464=>1,1986244763=>1,1986241649=>1,1986455194=>1,1986735065=>1,1987118896=>1,1985028044=>1,1984985325=>1,1976769356=>1,1976769344=>1,1976769365=>1,1976769377=>1,1976769404=>1,1976769401=>1,1976769293=>1,1976576345=>1,1976133893=>1,1976133604=>1,1976268507=>1,1976376761=>1,1976424088=>1,1976407368=>1,1976769405=>1,1976769412=>1,1976783446=>1,1976783436=>1,1976783474=>1,1976787493=>1,1976797941=>1,1976787496=>1,1976783420=>1,1976783414=>1,1976778004=>1,1976769444=>1,1976778038=>1,1976783374=>1,1976783388=>1,1976783375=>1,1976128499=>1,1976075246=>1,1974663105=>1,1974625963=>1,1974804746=>1,1975023077=>1,1975435207=>1,1975060228=>1,1974624674=>1,1974610563=>1,1974598296=>1,1974598295=>1,1974598297=>1,1974598298=>1,1974609775=>1,1974609768=>1,1975435211=>1,1975435212=>1,1975670747=>1,1975670220=>1,1975676433=>1,1975680723=>1,1976049384=>1,1975690489=>1,1975664787=>1,1975650371=>1,1975435217=>1,1975435215=>1,1975435218=>1,1975649336=>1,1975650034=>1,1976804236=>1,1976938792=>1,1978719444=>1,1978716455=>1,1978770538=>1,1978777949=>1,1979628552=>1,1979211976=>1,1978715219=>1,1978714691=>1,1978695012=>1,1978687139=>1,1978695330=>1,1978710051=>1,1978710819=>1,1978710052=>1,1980368783=>1,1981431530=>1,1982489797=>1,1982489722=>1,1984276523=>1,1984288341=>1,1984965438=>1,1984331783=>1,1982489699=>1,1981473437=>1,1981445641=>1,1981445640=>1,1981445647=>1,1981452234=>1,1981466632=>1,1978687115=>1,1978687066=>1,1977555537=>1,1977412491=>1,1977555581=>1,1977556211=>1,1977565674=>1,1977556214=>1,1977401533=>1,1977234054=>1,1976960343=>1,1976959021=>1,1976979468=>1,1976982847=>1,1977181865=>1,1977180779=>1,1977605005=>1,1978601586=>1,1978648507=>1,1978648506=>1,1978648508=>1,1978659363=>1,1978659878=>1,1978659875=>1,1978647581=>1,1978646598=>1,1978604161=>1,1978602054=>1,1978608219=>1,1978610024=>1,1978621995=>1,1950016998=>1,1950016951=>1,1935138146=>1,1935138144=>1,1935138197=>1,1935138208=>1,1935138216=>1,1935138214=>1,1935138138=>1,1935138116=>1,1935138066=>1,1935138057=>1,1935138071=>1,1935138076=>1,1935138099=>1,1935138077=>1,1935138221=>1,1935138236=>1,1935141044=>1,1935141012=>1,1935141071=>1,1935141112=>1,1935141204=>1,1935141115=>1,1935140997=>1,1935140970=>1,1935138279=>1,1935138247=>1,1935138292=>1,1935140881=>1,1935140899=>1,1935140886=>1,1935138050=>1,1935138043=>1,1935137433=>1,1935137432=>1,1935137448=>1,1935137460=>1,1935137470=>1,1935137468=>1,1935137431=>1,1935137421=>1,1935137368=>1,1935137364=>1,1935137373=>1,1935137402=>1,1935137418=>1,1935137410=>1,1935137502=>1,1935137551=>1,1935137813=>1,1935137797=>1,1935137821=>1,1935137873=>1,1935138012=>1,1935137900=>1,1935137775=>1,1935137690=>1,1935137566=>1,1935137562=>1,1935137644=>1,1935137647=>1,1935137665=>1,1935141388=>1,1935141413=>1,1935142812=>1,1935142793=>1,1935142855=>1,1935142895=>1,1935142984=>1,1935142957=>1,1935142752=>1,1935142743=>1,1935142600=>1,1935142498=>1,1935142635=>1,1935142725=>1,1935142736=>1,1935142731=>1,1935143069=>1,1935143101=>1,1935143360=>1,1935143358=>1,1935143394=>1,1935143418=>1,1935143467=>1,1935143431=>1,1935143327=>1,1935143313=>1,1935143211=>1,1935143180=>1,1935143243=>1,1935143249=>1,1935143276=>1,1935142460=>1,1935142457=>1,1935141775=>1,1935141687=>1,1935141847=>1,1935141914=>1,1935141967=>1,1935141966=>1,1935141648=>1,1935141640=>1,1935141499=>1,1935141483=>1,1935141508=>1,1935141558=>1,1935141575=>1,1935141566=>1,1935141971=>1,1935141979=>1,1935142364=>1,1935142282=>1,1935142396=>1,1935142404=>1,1935142445=>1,1935142408=>1,1935142251=>1,1935142226=>1,1935142013=>1,1935141986=>1,1935142023=>1,1935142064=>1,1935142129=>1,1935137315=>1,1935137301=>1,1935135247=>1,1935135240=>1,1935135274=>1,1935135302=>1,1935135312=>1,1935135304=>1,1935134443=>1,1935134436=>1,1935134370=>1,1935134349=>1,1935134388=>1,1935134401=>1,1935134425=>1,1935134414=>1,1935135320=>1,1935135325=>1,1935135593=>1,1935135592=>1,1935135607=>1,1935135620=>1,1935135649=>1,1935135646=>1,1935135580=>1,1935135574=>1,1935135380=>1,1935135356=>1,1935135419=>1,1935135423=>1,1935135427=>1,1935135425=>1,1935134346=>1,1935134341=>1,1935096408=>1,1935096391=>1,1935096412=>1,1935096425=>1,1935097433=>1,1935096465=>1,1935096164=>1,1935096158=>1,1935095846=>1,1935095791=>1,1935095873=>1,1935095915=>1,1935096137=>1,1935096121=>1,1935097438=>1,1935097489=>1,1935134303=>1,1935134258=>1,1935134313=>1,1935134315=>1,1935134338=>1,1935134330=>1,1935134242=>1,1935134220=>1,1935097592=>1,1935097522=>1,1935097658=>1,1935126627=>1,1935134219=>1,1935135675=>1,1935135682=>1,1935137063=>1,1935137059=>1,1935137071=>1,1935137075=>1,1935137116=>1,1935137100=>1,1935137052=>1,1935137027=>1,1935136974=>1,1935136966=>1,1935136981=>1,1935136989=>1,1935137001=>1,1935136991=>1,1935137127=>1,1935137139=>1,1935137242=>1,1935137220=>1,1935137271=>1,1935137277=>1,1935137300=>1,1935137292=>1,1935137212=>1,1935137211=>1,1935137180=>1,1935137148=>1,1935137196=>1,1935137200=>1,1935137210=>1,1935136960=>1,1935136952=>1,1935135834=>1,1935135821=>1,1935135843=>1,1935135886=>1,1935135928=>1,1935135925=>1,1935135815=>1,1935135790=>1,1935135701=>1,1935135699=>1,1935135714=>1,1935135737=>1,1935135782=>1,1935135778=>1,1935135931=>1,1935135945=>1,1935136835=>1,1935136829=>1,1935136868=>1,1935136871=>1,1935136910=>1,1935136904=>1,1935136828=>1,1935136797=>1,1935135985=>1,1935135950=>1,1935135990=>1,1935136775=>1,1935136794=>1,1935143525=>1,1935143733=>1,1939847492=>1,1939847464=>1,1939847518=>1,1939848014=>1,1939848428=>1,1939848237=>1,1939847449=>1,1939847124=>1,1939846339=>1,1939846327=>1,1939846383=>1,1939846697=>1,1939847112=>1,1939846937=>1,1939848580=>1,1939848653=>1,1939852000=>1,1939851949=>1,1939852009=>1,1939852051=>1,1939852321=>1,1939852274=>1,1939850480=>1,1939850206=>1,1939848768=>1,1939848736=>1,1939849147=>1,1939849386=>1,1939849630=>1,1939849469=>1,1939840956=>1,1939840871=>1,1939828038=>1,1939827599=>1,1939829082=>1,1939829241=>1,1939830710=>1,1939829309=>1,1939827150=>1,1939825695=>1,1939820005=>1,1939819364=>1,1939821663=>1,1939824796=>1,1939825333=>1,1939824860=>1,1939831144=>1,1939831176=>1,1939839389=>1,1939838878=>1,1939839531=>1,1939839637=>1,1939840476=>1,1939839723=>1,1939837064=>1,1939836635=>1,1939831756=>1,1939831191=>1,1939831772=>1,1939832289=>1,1939832409=>1,1939852326=>1,1939853393=>1,1945935293=>1,1945920757=>1,1946043645=>1,1946052078=>1,1946493705=>1,1946297957=>1,1945661658=>1,1945304328=>1,1945188194=>1,1945188190=>1,1945191749=>1,1945294857=>1,1945298737=>1,1945296100=>1,1946569210=>1,1947753813=>1,1949649415=>1,1949441325=>1,1949805152=>1,1949970883=>1,1950016868=>1,1950016801=>1,1949440437=>1,1948208324=>1,1947986606=>1,1947829915=>1,1948019841=>1,1948134164=>1,1948208291=>1,1945175116=>1,1945096983=>1,1941697321=>1,1941578605=>1,1941698232=>1,1941988316=>1,1942757282=>1,1942280064=>1,1941380102=>1,1941379590=>1,1939900812=>1,1939900811=>1,1939900850=>1,1940254155=>1,1941307776=>1,1940781428=>1,1942896497=>1,1944306646=>1,1945016843=>1,1944995774=>1,1945016844=>1,1945032699=>1,1945093140=>1,1945035785=>1,1944888957=>1,1944888346=>1,1944350022=>1,1944349651=>1,1944350506=>1,1944485764=>1,1944848619=>1,1939817174=>1,1939816135=>1,1935146459=>1,1935146453=>1,1935146461=>1,1935146475=>1,1935146513=>1,1935146499=>1,1935146445=>1,1935146426=>1,1935146364=>1,1935146360=>1,1935146372=>1,1935146382=>1,1935146411=>1,1935146393=>1,1935146521=>1,1935146550=>1,1935146729=>1,1935146723=>1,1935146734=>1,1935146749=>1,1935146789=>1,1935146788=>1,1935146702=>1,1935146698=>1,1935146583=>1,1935146552=>1,1935146593=>1,1935146617=>1,1935146684=>1,1935146631=>1,1935146344=>1,1935146311=>1,1935144054=>1,1935144019=>1,1935144184=>1,1935144197=>1,1935144467=>1,1935144237=>1,1935144011=>1,1935144004=>1,1935143784=>1,1935143767=>1,1935143855=>1,1935143926=>1,1935143946=>1,1935143937=>1,1935144512=>1,1935144537=>1,1935146265=>1,1935144956=>1,1935146277=>1,1935146278=>1,1935146293=>1,1935146288=>1,1935144864=>1,1935144816=>1,1935144585=>1,1935144579=>1,1935144706=>1,1935144789=>1,1935144799=>1,1935146797=>1,1935146825=>1,1939506718=>1,1939474601=>1,1939645699=>1,1939801463=>1,1939801591=>1,1939801512=>1,1938980832=>1,1938844532=>1,1937720587=>1,1937720578=>1,1937721450=>1,1938155885=>1,1938193713=>1,1938157415=>1,1939807042=>1,1939807900=>1,1939811970=>1,1939811896=>1,1939812281=>1,1939812574=>1,1939813465=>1,1939812588=>1,1939811176=>1,1939810739=>1,1939809251=>1,1939808675=>1,1939809598=>1,1939810152=>1,1939810429=>1,1937720388=>1,1937719275=>1,1936670214=>1,1935147001=>1,1936762746=>1,1936796631=>1,1937059076=>1,1936974733=>1,1935146989=>1,1935146988=>1,1935146909=>1,1935146877=>1,1935146924=>1,1935146956=>1,1935146972=>1,1935146965=>1,1937059080=>1,1937210306=>1,1937708450=>1,1937704997=>1,1937708452=>1,1937708964=>1,1937711274=>1,1937710546=>1,1937538282=>1,1937535211=>1,1937524814=>1,1937210308=>1,1937524894=>1,1937525025=>1,1937533081=>1,1935095784=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-24.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2953470920=>2953470927,2902458368=>2902462463,2954826463=>1,2954627448=>1,2954827616=>1,2954828863=>1,2954833159=>1,2954830741=>1,2953825856=>1,2953778309=>1,2953481443=>1,2953481314=>1,2953483313=>1,2953509479=>1,2953608646=>1,2953759929=>1,2954847056=>1,2954867908=>1,2954867724=>1,2954868991=>1,2954870554=>1,2954872954=>1,2954870654=>1,2954866475=>1,2954865423=>1,2954849187=>1,2953481256=>1,2954852804=>1,2954853043=>1,2954862567=>1,2954862566=>1,2954876829=>1,2953478984=>1,2953439348=>1,2953429163=>1,2953443093=>1,2953455858=>1,2953456441=>1,2953456015=>1,2953425967=>1,2953420144=>1,2953417154=>1,2953416656=>1,2953417685=>1,2953417699=>1,2953418024=>1,2953417904=>1,2953470921=>1,2953470922=>1,2953472241=>1,2953472240=>1,2953472243=>1,2953472244=>1,2953478979=>1,2953472948=>1,2953470929=>1,2953470928=>1,2953470924=>1,2953470923=>1,2953470925=>1,2953470926=>1,2953470927=>1,2954882849=>1,2954886918=>1,2956616531=>1,2956614070=>1,2956616802=>1,2956618072=>1,2956618482=>1,2956618432=>1,2956520895=>1,2956520621=>1,2956269018=>1,2956266602=>1,2956269198=>1,2956270178=>1,2956322853=>1,2956296130=>1,2956619330=>1,2956620567=>1,2956902172=>1,2956898972=>1,2957224146=>1,2957224176=>1,2957582362=>1,2957224446=>1,2956825490=>1,2956822604=>1,2956621846=>1,2956621520=>1,2956622239=>1,2956739297=>1,2956822530=>1,2956266590=>1,2956266547=>1,2955194132=>1,2955193988=>1,2955195427=>1,2955201386=>1,2955219001=>1,2955211012=>1,2955185500=>1,2955173227=>1,2954996539=>1,2954886949=>1,2955103767=>1,2955151529=>1,2955158398=>1,2955152117=>1,2955223913=>1,2955225301=>1,2955325904=>1,2955323529=>1,2955513915=>1,2955738467=>1,2956266530=>1,2956142749=>1,2955320614=>1,2955319581=>1,2955267355=>1,2955225726=>1,2955267628=>1,2955285271=>1,2955316237=>1,2953415788=>1,2953415172=>1,2944297312=>1,2943313941=>1,2944877022=>1,2944898328=>1,2944987054=>1,2944982657=>1,2942964140=>1,2942962174=>1,2942585196=>1,2942584927=>1,2942591273=>1,2942595910=>1,2942775310=>1,2942775170=>1,2944990649=>1,2944991045=>1,2945409309=>1,2945396789=>1,2945412002=>1,2945423168=>1,2945502823=>1,2945446528=>1,2945379793=>1,2945299475=>1,2945177379=>1,2945065925=>1,2945199202=>1,2945199460=>1,2945223045=>1,2945223041=>1,2938937287=>1,2938934932=>1,2930695688=>1,2930686478=>1,2930695743=>1,2931221222=>1,2931613955=>1,2931606846=>1,2930686294=>1,2930686286=>1,2930684948=>1,2930684345=>1,2930684950=>1,2930685243=>1,2930686084=>1,2930685307=>1,2931619007=>1,2931619733=>1,2937196242=>1,2936808304=>1,2937206231=>1,2937850929=>1,2938248800=>1,2937958810=>1,2936752674=>1,2936568631=>1,2931619808=>1,2931619793=>1,2931683011=>1,2931784471=>1,2936550664=>1,2945718579=>1,2946137671=>1,2953390196=>1,2953390042=>1,2953390874=>1,2953391482=>1,2953392880=>1,2953392759=>1,2953389606=>1,2953385428=>1,2953346423=>1,2953346345=>1,2953376153=>1,2953381070=>1,2953384805=>1,2953381236=>1,2953393460=>1,2953393806=>1,2953408077=>1,2953406216=>1,2953409206=>1,2953410182=>1,2953414042=>1,2953410471=>1,2953405399=>1,2953405318=>1,2953399083=>1,2953395024=>1,2953399148=>1,2953401381=>1,2953403095=>1,2950010357=>1,2949979408=>1,2947826823=>1,2947826801=>1,2947837908=>1,2947838139=>1,2947855726=>1,2947838161=>1,2947826766=>1,2947020993=>1,2946257995=>1,2946256794=>1,2946271196=>1,2946287918=>1,2946594141=>1,2946297827=>1,2947855991=>1,2947859163=>1,2949321579=>1,2949321570=>1,2949321582=>1,2949321584=>1,2949875682=>1,2949723526=>1,2949321565=>1,2948817944=>1,2947969924=>1,2947884250=>1,2947970278=>1,2947973157=>1,2948130994=>1,2957606925=>1,2957642765=>1,2965532013=>1,2965531729=>1,2965532241=>1,2965532370=>1,2965552440=>1,2965544762=>1,2965531638=>1,2965531584=>1,2965530450=>1,2965530361=>1,2965530562=>1,2965531035=>1,2965531435=>1,2965531109=>1,2965588708=>1,2965590620=>1,2965779736=>1,2965778554=>1,2965781016=>1,2965790569=>1,2965854520=>1,2965796157=>1,2965764106=>1,2965739786=>1,2965602795=>1,2965594845=>1,2965623632=>1,2965629101=>1,2965673038=>1,2965648152=>1,2965530331=>1,2965519723=>1,2961068042=>1,2960952411=>1,2961069439=>1,2961069487=>1,2961109553=>1,2961069488=>1,2960907732=>1,2960883982=>1,2960858110=>1,2960852637=>1,2960858120=>1,2960858424=>1,2960858451=>1,2960858437=>1,2961110107=>1,2961110864=>1,2965435991=>1,2965398134=>1,2965466487=>1,2965486499=>1,2965504807=>1,2965503947=>1,2965190973=>1,2963178508=>1,2961112076=>1,2961112075=>1,2961377054=>1,2961741097=>1,2962566483=>1,2965862461=>1,2965887660=>1,2970941657=>1,2970873411=>1,2970943778=>1,2970946801=>1,2970946813=>1,2970946809=>1,2970865698=>1,2970859208=>1,2970354384=>1,2970329889=>1,2970378538=>1,2970629525=>1,2970854474=>1,2970635848=>1,2970952781=>1,2970952782=>1,2971086025=>1,2971066629=>1,2971096522=>1,2971097601=>1,2971113036=>1,2971098905=>1,2971040762=>1,2971037668=>1,2971001726=>1,2970993922=>1,2971001729=>1,2971001733=>1,2971037553=>1,2970324538=>1,2970323082=>1,2966893559=>1,2966881661=>1,2967291330=>1,2967347470=>1,2967718568=>1,2967718426=>1,2966880204=>1,2966815251=>1,2966704835=>1,2966689708=>1,2966705875=>1,2966714797=>1,2966749883=>1,2966715778=>1,2968608666=>1,2969049746=>1,2970228726=>1,2970135363=>1,2970260347=>1,2970260385=>1,2970292556=>1,2970260950=>1,2970135362=>1,2970135044=>1,2969951088=>1,2969826014=>1,2969980155=>1,2970027140=>1,2970133314=>1,2960852636=>1,2960852635=>1,2959864462=>1,2959853129=>1,2959908591=>1,2959927406=>1,2959974928=>1,2959954826=>1,2959847893=>1,2959774074=>1,2959767634=>1,2959750710=>1,2959767665=>1,2959767941=>1,2959769597=>1,2959769321=>1,2959979720=>1,2959980347=>1,2960261955=>1,2960261950=>1,2960261964=>1,2960261965=>1,2960261970=>1,2960261969=>1,2960261947=>1,2960190186=>1,2959995393=>1,2959993441=>1,2960006884=>1,2960040934=>1,2960090174=>1,2960053220=>1,2959609195=>1,2959606198=>1,2959121050=>1,2957941993=>1,2959211798=>1,2959233298=>1,2959245737=>1,2959237381=>1,2957861370=>1,2957859367=>1,2957675365=>1,2930684265=>1,2957848339=>1,2957849452=>1,2957854634=>1,2957851286=>1,2959246835=>1,2959248202=>1,2959548419=>1,2959531529=>1,2959548438=>1,2959548920=>1,2959596705=>1,2959557018=>1,2959369350=>1,2959360587=>1,2959295239=>1,2959248678=>1,2959311891=>1,2959319417=>1,2959360531=>1,2960261972=>1,2960261974=>1,2960501058=>1,2960490192=>1,2960515643=>1,2960585238=>1,2960740659=>1,2960593118=>1,2960457079=>1,2960418865=>1,2960336283=>1,2960324655=>1,2960336642=>1,2960340851=>1,2960418853=>1,2960362454=>1,2960781332=>1,2960799755=>1,2960801428=>1,2960801409=>1,2960801463=>1,2960842869=>1,2960852634=>1,2960852633=>1,2960801352=>1,2960801333=>1,2960801175=>1,2960800814=>1,2960801179=>1,2960801271=>1,2960801282=>1,2960314503=>1,2960313628=>1,2960262022=>1,2960262020=>1,2960262023=>1,2960262029=>1,2960262033=>1,2960262032=>1,2960261988=>1,2960261987=>1,2960261976=>1,2960261975=>1,2960261977=>1,2960261983=>1,2960261986=>1,2960261984=>1,2960262036=>1,2960262040=>1,2960262061=>1,2960262056=>1,2960262078=>1,2960293935=>1,2960296874=>1,2960294005=>1,2960262055=>1,2960262051=>1,2960262043=>1,2960262041=>1,2960262047=>1,2960262048=>1,2960262050=>1,2957630097=>1,2930511114=>1,2891874243=>1,2891804618=>1,2892064559=>1,2892120903=>1,2892120967=>1,2892120959=>1,2891355146=>1,2891354894=>1,2875326363=>1,2875326339=>1,2875488887=>1,2886539094=>1,2891087890=>1,2890506951=>1,2892125379=>1,2892154011=>1,2901742701=>1,2901590721=>1,2901743844=>1,2901745211=>1,2901745850=>1,2901745849=>1,2893041931=>1,2892895800=>1,2892186093=>1,2892155407=>1,2892272628=>1,2892895796=>1,2892895798=>1,2892895797=>1,2875326201=>1,2875326128=>1,2875324825=>1,2875324791=>1,2875324882=>1,2875325004=>1,2875325026=>1,2875325021=>1,2875324783=>1,2875324692=>1,2875324439=>1,2875324428=>1,2875324481=>1,2875324499=>1,2875324667=>1,2875324561=>1,2875325166=>1,2875325316=>1,2875325773=>1,2875325744=>1,2875325911=>1,2875325986=>1,2875326098=>1,2875326081=>1,2875325674=>1,2875325670=>1,2875325343=>1,2875325323=>1,2875325434=>1,2875325561=>1,2875325582=>1,2901752779=>1,2901752939=>1,2903709627=>1,2903667000=>1,2903822725=>1,2903837189=>1,2903944742=>1,2903879821=>1,2903649634=>1,2903582018=>1,2903489609=>1,2903426446=>1,2903493643=>1,2903521203=>1,2903573026=>1,2903535678=>1,2903961826=>1,2903976488=>1,2905355182=>1,2904472330=>1,2905357002=>1,2905375238=>1,2905465910=>1,2905387761=>1,2904432581=>1,2904379714=>1,2904171823=>1,2904160852=>1,2904265350=>1,2904285355=>1,2904310281=>1,2903425713=>1,2903420387=>1,2901869284=>1,2901835453=>1,2901869677=>1,2901872844=>1,2902079208=>1,2902011134=>1,2901815265=>1,2901802671=>1,2901768721=>1,2901753101=>1,2901769798=>1,2901791177=>1,2901802659=>1,2901793669=>1,2902484029=>1,2902498507=>1,2903311228=>1,2903178521=>1,2903340849=>1,2903346460=>1,2903360709=>1,2903349850=>1,2903133825=>1,2903090749=>1,2902719277=>1,2902709729=>1,2903001529=>1,2903036746=>1,2903075235=>1,2875324353=>1,2875324200=>1,2875318805=>1,2875318792=>1,2875318819=>1,2875318853=>1,2875318902=>1,2875318892=>1,2875318741=>1,2875318682=>1,2875318534=>1,2875318447=>1,2875318606=>1,2875318614=>1,2875318646=>1,2875318629=>1,2875318905=>1,2875319092=>1,2875320028=>1,2875320003=>1,2875320070=>1,2875320071=>1,2875320156=>1,2875320146=>1,2875319999=>1,2875319942=>1,2875319687=>1,2875319339=>1,2875319715=>1,2875319772=>1,2875319877=>1,2875319792=>1,2875318445=>1,2875318392=>1,2875317068=>1,2875316921=>1,2875317122=>1,2875317207=>1,2875317305=>1,2875317276=>1,2875316898=>1,2875316861=>1,2875316701=>1,2875316697=>1,2875316733=>1,2875316735=>1,2875316814=>1,2875316776=>1,2875317441=>1,2875317483=>1,2875317951=>1,2875317893=>1,2875318078=>1,2875318096=>1,2875318329=>1,2875318193=>1,2875317863=>1,2875317857=>1,2875317676=>1,2875317596=>1,2875317791=>1,2875317842=>1,2875317854=>1,2875320229=>1,2875320263=>1,2875323353=>1,2875323255=>1,2875323389=>1,2875323408=>1,2875323461=>1,2875323453=>1,2875323235=>1,2875323194=>1,2875322911=>1,2875322685=>1,2875322959=>1,2875323065=>1,2875323176=>1,2875323106=>1,2875323512=>1,2875323547=>1,2875324005=>1,2875323880=>1,2875324091=>1,2875324099=>1,2875324180=>1,2875324174=>1,2875323864=>1,2875323849=>1,2875323626=>1,2875323580=>1,2875323640=>1,2875323714=>1,2875323834=>1,2875322649=>1,2875322512=>1,2875320758=>1,2875320753=>1,2875320993=>1,2875321173=>1,2875321474=>1,2875321215=>1,2875320751=>1,2875320742=>1,2875320423=>1,2875320407=>1,2875320444=>1,2875320494=>1,2875320606=>1,2875320571=>1,2875321692=>1,2875321707=>1,2875322195=>1,2875322120=>1,2875322346=>1,2875322356=>1,2875322484=>1,2875322396=>1,2875322080=>1,2875322069=>1,2875321810=>1,2875321790=>1,2875321840=>1,2875321873=>1,2875322008=>1,2905622839=>1,2905865877=>1,2921521623=>1,2921519211=>1,2921582747=>1,2921651956=>1,2922141533=>1,2921708197=>1,2921509266=>1,2921487538=>1,2921142298=>1,2921084297=>1,2921151055=>1,2921360666=>1,2921472874=>1,2921360786=>1,2922172380=>1,2922200078=>1,2922789838=>1,2922775304=>1,2922818320=>1,2922869017=>1,2922968240=>1,2922928489=>1,2922610230=>1,2922606000=>1,2922334371=>1,2922224805=>1,2922381489=>1,2922534128=>1,2922594617=>1,2922564463=>1,2920857388=>1,2920403533=>1,2919228046=>1,2919225962=>1,2919228501=>1,2919228550=>1,2919228680=>1,2919228600=>1,2919224013=>1,2919220254=>1,2919162602=>1,2919159877=>1,2919169330=>1,2919196826=>1,2919219789=>1,2919206589=>1,2919229632=>1,2919231979=>1,2919698838=>1,2919581330=>1,2919706754=>1,2919719802=>1,2920337930=>1,2919741200=>1,2919530650=>1,2919336261=>1,2919233554=>1,2919232884=>1,2919234288=>1,2919240212=>1,2919302677=>1,2922979980=>1,2923004282=>1,2929924778=>1,2929924663=>1,2929935013=>1,2929935066=>1,2929935286=>1,2929935113=>1,2929924119=>1,2929920506=>1,2928512769=>1,2928512616=>1,2928516998=>1,2928517763=>1,2929920015=>1,2928594795=>1,2930200773=>1,2930357539=>1,2930400445=>1,2930400389=>1,2930408202=>1,2930510888=>1,2875316668=>1,2930510906=>1,2930400333=>1,2930400323=>1,2930357920=>1,2930357919=>1,2930377966=>1,2930378196=>1,2930399918=>1,2928409506=>1,2928175446=>1,2924385300=>1,2924306110=>1,2924804604=>1,2925637191=>1,2925840745=>1,2925795425=>1,2924290587=>1,2923770628=>1,2923286600=>1,2923073121=>1,2923334935=>1,2923396222=>1,2923764103=>1,2923613679=>1,2925905083=>1,2925914431=>1,2927008981=>1,2926972825=>1,2927118056=>1,2927473018=>1,2927688459=>1,2927576045=>1,2926915121=>1,2926525825=>1,2926033411=>1,2925972341=>1,2926227557=>1,2926247293=>1,2926343845=>1,2919159876=>1,2919159875=>1,2913428228=>1,2913416637=>1,2913458571=>1,2913741990=>1,2914245317=>1,2914013519=>1,2913336811=>1,2913333401=>1,2913242051=>1,2913216525=>1,2913259189=>1,2913262586=>1,2913308365=>1,2913270106=>1,2914727603=>1,2914729664=>1,2915516727=>1,2915391030=>1,2915531892=>1,2915587106=>1,2916134034=>1,2915676556=>1,2915353430=>1,2915307611=>1,2914851145=>1,2914831280=>1,2914851150=>1,2914934827=>1,2915071470=>1,2914968739=>1,2913194425=>1,2913130177=>1,2906962346=>1,2906854508=>1,2907151733=>1,2907302294=>1,2907365940=>1,2907313570=>1,2906821260=>1,2906805727=>1,2906051097=>1,2905927744=>1,2906108318=>1,2906136986=>1,2906598323=>1,2906460738=>1,2907641215=>1,2907653217=>1,2912965466=>1,2908729931=>1,2912972309=>1,2912990397=>1,2913040788=>1,2912993417=>1,2908288779=>1,2908275574=>1,2907976010=>1,2907727575=>1,2908023118=>1,2908253601=>1,2908268681=>1,2916139323=>1,2916144498=>1,2917840236=>1,2917840143=>1,2917988581=>1,2917990286=>1,2918159827=>1,2918141906=>1,2917835338=>1,2917571256=>1,2917566190=>1,2917565780=>1,2917568130=>1,2917569772=>1,2917571162=>1,2917570925=>1,2918166078=>1,2918191782=>1,2918717288=>1,2918693050=>1,2918876022=>1,2918983274=>1,2919159874=>1,2918988314=>1,2918647959=>1,2918607015=>1,2918495570=>1,2918410645=>1,2918498437=>1,2918590483=>1,2918606883=>1,2917565274=>1,2917564825=>1,2916445300=>1,2916363514=>1,2916446619=>1,2916522241=>1,2916556201=>1,2916550002=>1,2916362988=>1,2916360965=>1,2916197503=>1,2916175214=>1,2916198385=>1,2916355899=>1,2916357648=>1,2916356547=>1,2916558827=>1,2916559667=>1,2917268698=>1,2917165226=>1,2917423901=>1,2917533412=>1,2917564648=>1,2917564489=>1,2916920050=>1,2916834930=>1,2916678175=>1,2916665027=>1,2916706721=>1,2916766397=>1,2916770613=>1,2930511218=>1,);?>
1
+ <?php return array(2016692248=>2016692271,2055293474=>1,2054807465=>1,2055720218=>1,2056058218=>1,2056258870=>1,2056079986=>1,2054807438=>1,2054807302=>1,2054303878=>1,2053653510=>1,2054504489=>1,2054522116=>1,2054761529=>1,2054548285=>1,2056261035=>1,2056795589=>1,2057103026=>1,2057035362=>1,2057103038=>1,2057311652=>1,2057710795=>1,2057443320=>1,2057021729=>1,2056971078=>1,2056921545=>1,2056921386=>1,2056929924=>1,2056931121=>1,2056951682=>1,2053516650=>1,2053516274=>1,2052983962=>1,2052983898=>1,2052984690=>1,2052985923=>1,2052987253=>1,2052986866=>1,2052983790=>1,2052982413=>1,2052688818=>1,2052688774=>1,2052688835=>1,2052689197=>1,2052980787=>1,2052714545=>1,2052987757=>1,2052988533=>1,2053127019=>1,2053127016=>1,2053173012=>1,2053332129=>1,2053512738=>1,2053508108=>1,2053127012=>1,2053040931=>1,2053023192=>1,2053022316=>1,2053023772=>1,2053027171=>1,2053040911=>1,2053028653=>1,2057754982=>1,2057768084=>1,2063104440=>1,2063075685=>1,2063120613=>1,2063393670=>1,2063478712=>1,2063399171=>1,2062379881=>1,2061814983=>1,2061683526=>1,2061678313=>1,2061739023=>1,2061740006=>1,2061748146=>1,2061740822=>1,2063563002=>1,2063707183=>1,2064079045=>1,2064079019=>1,2064085901=>1,2064091548=>1,2064501869=>1,2064185380=>1,2064077332=>1,2064077331=>1,2063863465=>1,2063807368=>1,2063886944=>1,2064070335=>1,2064072346=>1,2061675274=>1,2061674676=>1,2059472494=>1,2059472493=>1,2059472498=>1,2059532483=>1,2061536626=>1,2060485978=>1,2059472492=>1,2059472490=>1,2059411533=>1,2058076828=>1,2059472469=>1,2059472487=>1,2059472489=>1,2059472488=>1,2061554018=>1,2061575269=>1,2061665419=>1,2061664507=>1,2061667651=>1,2061667892=>1,2061671644=>1,2061670402=>1,2061662212=>1,2061651426=>1,2061593124=>1,2061593123=>1,2061593489=>1,2061637060=>1,2061647450=>1,2052688546=>1,2052688343=>1,2035874077=>1,2035874076=>1,2035874079=>1,2036294880=>1,2036404258=>1,2036379860=>1,2035874075=>1,2035874074=>1,2034854176=>1,2034848704=>1,2034860942=>1,2034865629=>1,2035392226=>1,2035113954=>1,2036589582=>1,2036600898=>1,2037889325=>1,2037728166=>1,2037928151=>1,2038081957=>1,2038430364=>1,2038424648=>1,2037728012=>1,2037714748=>1,2036601434=>1,2036601198=>1,2036686503=>1,2036709770=>1,2037616998=>1,2037259818=>1,2034845453=>1,2034836430=>1,2033896558=>1,2033896557=>1,2033909305=>1,2034566798=>1,2034568250=>1,2034567498=>1,2033896556=>1,2033896551=>1,2033626930=>1,2033512461=>1,2033847628=>1,2033895299=>1,2033896550=>1,2033896549=>1,2034569046=>1,2034570758=>1,2034575962=>1,2034574458=>1,2034576802=>1,2034576806=>1,2034833745=>1,2034827666=>1,2034573726=>1,2034573202=>1,2034571286=>1,2034571002=>1,2034571558=>1,2034571578=>1,2034572550=>1,2038870763=>1,2039250682=>1,2048581433=>1,2048538950=>1,2050300806=>1,2050326085=>1,2050449491=>1,2050339428=>1,2047863501=>1,2047820363=>1,2046969544=>1,2046116679=>1,2047336706=>1,2047508939=>1,2047810081=>1,2047809883=>1,2050575399=>1,2051453682=>1,2052687404=>1,2052655671=>1,2052687677=>1,2052687695=>1,2052688176=>1,2052687762=>1,2052653274=>1,2051827443=>1,2051547530=>1,2051454858=>1,2051826580=>1,2051827277=>1,2051827315=>1,2045718310=>1,2045493521=>1,2043093141=>1,2043091264=>1,2043094624=>1,2043100208=>1,2043220554=>1,2043100512=>1,2043086657=>1,2042947873=>1,2040038920=>1,2039576741=>1,2040039132=>1,2041352254=>1,2042728441=>1,2042634461=>1,2043220868=>1,2043224997=>1,2045176934=>1,2045057853=>1,2045288610=>1,2045306535=>1,2045317728=>1,2045310412=>1,2045052090=>1,2044970860=>1,2043692433=>1,2043610750=>1,2043892357=>1,2044593381=>1,2044970784=>1,2064501911=>1,2064502331=>1,2081145948=>1,2081145827=>1,2081146091=>1,2081183607=>1,2081216396=>1,2081216329=>1,2081145821=>1,2081145778=>1,2081145006=>1,2081145001=>1,2081145041=>1,2081145083=>1,2081145699=>1,2081145633=>1,2081216476=>1,2081216482=>1,2083112991=>1,2083112987=>1,2083112994=>1,2083113003=>1,2083113029=>1,2083113025=>1,2083112979=>1,2083112970=>1,2081462310=>1,2081271917=>1,2082043895=>1,2083060098=>1,2083112347=>1,2083111716=>1,2081144631=>1,2080270390=>1,2077105345=>1,2077105252=>1,2077105691=>1,2077111697=>1,2077320504=>1,2077112120=>1,2077104920=>1,2077104874=>1,2076999698=>1,2076999528=>1,2077008912=>1,2077009284=>1,2077104843=>1,2077046731=>1,2077739749=>1,2078795190=>1,2079171475=>1,2079155589=>1,2079259560=>1,2079400079=>1,2079925004=>1,2079532809=>1,2079114421=>1,2079095306=>1,2078799346=>1,2078798218=>1,2078799610=>1,2078804718=>1,2078811502=>1,2083113031=>1,2083113035=>1,2083127286=>1,2083126474=>1,2083129191=>1,2083456682=>1,2083456813=>1,2083456806=>1,2083125783=>1,2083125647=>1,2083123541=>1,2083122213=>1,2083123662=>1,2083123696=>1,2083124188=>1,2083123798=>1,2084600556=>1,2084783002=>1,2086216654=>1,2086216045=>1,2086526559=>1,2086585630=>1,2087342376=>1,2087224530=>1,2086215996=>1,2086159185=>1,2085714178=>1,2084820740=>1,2085771169=>1,2086153874=>1,2086159124=>1,2083122046=>1,2083121995=>1,2083113177=>1,2083113148=>1,2083113187=>1,2083114673=>1,2083117218=>1,2083114706=>1,2083113142=>1,2083113094=>1,2083113055=>1,2083113037=>1,2083113060=>1,2083113067=>1,2083113087=>1,2083113079=>1,2083117219=>1,2083117221=>1,2083120689=>1,2083119258=>1,2083120694=>1,2083120959=>1,2083121863=>1,2083121517=>1,2083118310=>1,2083117544=>1,2083117232=>1,2083117231=>1,2083117238=>1,2083117409=>1,2083117506=>1,2076999205=>1,2076999178=>1,2067326176=>1,2067325566=>1,2067327706=>1,2067328395=>1,2067332510=>1,2067328470=>1,2067313140=>1,2067309495=>1,2067274948=>1,2067269126=>1,2067278414=>1,2067286640=>1,2067289291=>1,2067287497=>1,2067339122=>1,2067342467=>1,2067481270=>1,2067477126=>1,2067481602=>1,2067481695=>1,2067482423=>1,2067482312=>1,2067475669=>1,2067475626=>1,2067367280=>1,2067343868=>1,2067380247=>1,2067394216=>1,2067465011=>1,2067433715=>1,2067238802=>1,2067232827=>1,2065612195=>1,2065611822=>1,2065612685=>1,2065617759=>1,2066817532=>1,2065625970=>1,2065598535=>1,2065582963=>1,2064562782=>1,2064553158=>1,2064562784=>1,2064589766=>1,2065415946=>1,2064591912=>1,2066817539=>1,2066821746=>1,2067136809=>1,2067136530=>1,2067137298=>1,2067137301=>1,2067137862=>1,2067137861=>1,2067091320=>1,2067064990=>1,2066983480=>1,2066824438=>1,2066983481=>1,2066983482=>1,2067038723=>1,2067483142=>1,2067485022=>1,2073940286=>1,2073927314=>1,2073946506=>1,2074068247=>1,2074261063=>1,2074261062=>1,2073926458=>1,2073912204=>1,2072729686=>1,2072729682=>1,2072952782=>1,2073198607=>1,2073912203=>1,2073911604=>1,2074293272=>1,2074889804=>1,2076774781=>1,2076710074=>1,2076792466=>1,2076799317=>1,2076819017=>1,2076815718=>1,2076708830=>1,2076707794=>1,2075158093=>1,2074921316=>1,2076214543=>1,2076394624=>1,2076473462=>1,2072722418=>1,2072722164=>1,2070409549=>1,2068645072=>1,2070739343=>1,2071148750=>1,2071437541=>1,2071302155=>1,2068644415=>1,2067913111=>1,2067500487=>1,2067490148=>1,2067898161=>1,2067898201=>1,2067913080=>1,2067898355=>1,2071546691=>1,2071596423=>1,2072313253=>1,2072240736=>1,2072334598=>1,2072690468=>1,2072696924=>1,2072696923=>1,2072179835=>1,2072113326=>1,2071847556=>1,2071767189=>1,2071882942=>1,2072098278=>1,2072113325=>1,2033509683=>1,2033490587=>1,1999592566=>1,1999592311=>1,1999912874=>1,1999937538=>1,2000250906=>1,2000115990=>1,1999592309=>1,1999592308=>1,1999550502=>1,1999510674=>1,1999551864=>1,1999592305=>1,1999592307=>1,1999592306=>1,2000266334=>1,2000387944=>1,2001504107=>1,2001504083=>1,2001504113=>1,2001504158=>1,2001504171=>1,2001504165=>1,2001504006=>1,2001503917=>1,2001296700=>1,2000653979=>1,2001475500=>1,2001503781=>1,2001503842=>1,2001503834=>1,1999280603=>1,1999280599=>1,1998867763=>1,1998606597=>1,1998883459=>1,1999093556=>1,1999263504=>1,1999259176=>1,1998432105=>1,1998431321=>1,1998427118=>1,1998426738=>1,1998428516=>1,1998428706=>1,1998431122=>1,1998430817=>1,1999263508=>1,1999270722=>1,1999280562=>1,1999280532=>1,1999280575=>1,1999280584=>1,1999280588=>1,1999280586=>1,1999280529=>1,1999280510=>1,1999280389=>1,1999270744=>1,1999280407=>1,1999280436=>1,1999280493=>1,2001504177=>1,2001504185=>1,2006144724=>1,2006029479=>1,2006151942=>1,2006151966=>1,2006195461=>1,2006163767=>1,2005762593=>1,2005722536=>1,2005383522=>1,2004549609=>1,2005410350=>1,2005410449=>1,2005495858=>1,2005410462=>1,2007020131=>1,2007021376=>1,2009742413=>1,2008838940=>1,2009878065=>1,2009878230=>1,2011318195=>1,2011242534=>1,2008838935=>1,2008833681=>1,2007077026=>1,2007024136=>1,2007081404=>1,2007319739=>1,2008193606=>1,2004060310=>1,2003715354=>1,2001853433=>1,2001839810=>1,2001856818=>1,2001924122=>1,2002147708=>1,2002056777=>1,2001834906=>1,2001830402=>1,2001504198=>1,2001504196=>1,2001504248=>1,2001507603=>1,2001807304=>1,2001507728=>1,2002390533=>1,2002393385=>1,2002880912=>1,2002811038=>1,2002889525=>1,2003010763=>1,2003696337=>1,2003415401=>1,2002656126=>1,2002604692=>1,2002401539=>1,2002393386=>1,2002401541=>1,2002422560=>1,2002533494=>1,1998426030=>1,1998425789=>1,1991031202=>1,1991008077=>1,1991031254=>1,1991032139=>1,1991102921=>1,1991032204=>1,1991008070=>1,1991006480=>1,1990990165=>1,1990986688=>1,1990995791=>1,1990995833=>1,1990996694=>1,1990996641=>1,1991105353=>1,1991105850=>1,1991905627=>1,1991654910=>1,1992099467=>1,1992100618=>1,1992331619=>1,1992137993=>1,1991498938=>1,1991204131=>1,1991106529=>1,1991106312=>1,1991148434=>1,1991180986=>1,1991185570=>1,1991181346=>1,1990951653=>1,1990933416=>1,1990313510=>1,1990312695=>1,1990397276=>1,1990412957=>1,1990449320=>1,1990421608=>1,1990312689=>1,1990312661=>1,1990289921=>1,1990282141=>1,1990290798=>1,1990290863=>1,1990312145=>1,1990291430=>1,1990612981=>1,1990634258=>1,1990863812=>1,1990861931=>1,1990863962=>1,1990864125=>1,1990889173=>1,1990864610=>1,1990861779=>1,1990861707=>1,1990753555=>1,1990717672=>1,1990861101=>1,1990861110=>1,1990861220=>1,1992362637=>1,1992365134=>1,1998399603=>1,1998397514=>1,1998403027=>1,1998404403=>1,1998405731=>1,1998405162=>1,1998396078=>1,1998393969=>1,1998328316=>1,1998328086=>1,1998328795=>1,1998336443=>1,1998392408=>1,1998336604=>1,1998406776=>1,1998406837=>1,1998417933=>1,1998417861=>1,1998418009=>1,1998418895=>1,1998424959=>1,1998424790=>1,1998416522=>1,1998415820=>1,1998409364=>1,1998409228=>1,1998409888=>1,1998414249=>1,1998414291=>1,1997707538=>1,1997707316=>1,1992475498=>1,1992421394=>1,1992476090=>1,1993409743=>1,1994954396=>1,1994943779=>1,1992421198=>1,1992419981=>1,1992372341=>1,1992372338=>1,1992372342=>1,1992373041=>1,1992373045=>1,1992373042=>1,1995474240=>1,1995766178=>1,1997246852=>1,1997144725=>1,1997495538=>1,1997495874=>1,1997706931=>1,1997684046=>1,1996955979=>1,1996896190=>1,1995977577=>1,1995766179=>1,1996593142=>1,1996847842=>1,1996848069=>1,2011823896=>1,2011901986=>1,2026586135=>1,2026571766=>1,2026615488=>1,2026622621=>1,2026624696=>1,2026624668=>1,2026310834=>1,2026304541=>1,2026301269=>1,2026301208=>1,2026301270=>1,2026301271=>1,2026301907=>1,2026301272=>1,2026633609=>1,2026634454=>1,2028812627=>1,2028768742=>1,2028838448=>1,2030259828=>1,2030605138=>1,2030599210=>1,2028767771=>1,2028605314=>1,2026794534=>1,2026657053=>1,2026801267=>1,2026801952=>1,2028602930=>1,2026816733=>1,2026301207=>1,2026301206=>1,2023025305=>1,2022329139=>1,2023051970=>1,2023075890=>1,2023168016=>1,2023102890=>1,2021956597=>1,2021938637=>1,2021934133=>1,2021934126=>1,2021934216=>1,2021934224=>1,2021934412=>1,2021934409=>1,2025854215=>1,2025872482=>1,2026191348=>1,2026190098=>1,2026199360=>1,2026236580=>1,2026301205=>1,2026280450=>1,2026043888=>1,2026036948=>1,2026001713=>1,2025984602=>1,2026015368=>1,2026036474=>1,2026036944=>1,2030610997=>1,2030743925=>1,2032808830=>1,2032798044=>1,2032831885=>1,2032832104=>1,2032834350=>1,2032832700=>1,2032758345=>1,2032740700=>1,2032716651=>1,2032700370=>1,2032718476=>1,2032735042=>1,2032738288=>1,2032737729=>1,2032834579=>1,2032835624=>1,2033285375=>1,2033284354=>1,2033285535=>1,2033462568=>1,1990281970=>1,2033488501=>1,2032972495=>1,2032898756=>1,2032841290=>1,2032840789=>1,2032841618=>1,2032852047=>1,2032898691=>1,2032692300=>1,2032690887=>1,2031548429=>1,2031490250=>1,2031549681=>1,2031713417=>1,2031932076=>1,2031932072=>1,2031242506=>1,2031189572=>1,2030870058=>1,2030753874=>1,2030872517=>1,2030963020=>1,2031157574=>1,2030996024=>1,2032061578=>1,2032080266=>1,2032103507=>1,2032103506=>1,2032103509=>1,2032103510=>1,2032673453=>1,2032263847=>1,2032103502=>1,2032103501=>1,2032093623=>1,2032080466=>1,2032094094=>1,2032103497=>1,2032103500=>1,2021933699=>1,2021933673=>1,2015025932=>1,2015024439=>1,2015065741=>1,2015069106=>1,2015112650=>1,2015085135=>1,2015021763=>1,2015005046=>1,2014983229=>1,2014958100=>1,2014984915=>1,2014985500=>1,2014998075=>1,2014994837=>1,2015206570=>1,2015206686=>1,2016692277=>1,2016692276=>1,2016692278=>1,2016692281=>1,2016692283=>1,2016692282=>1,2016692275=>1,2016692273=>1,2015497526=>1,2015222062=>1,2016556867=>1,2016684651=>1,2016692272=>1,2016692243=>1,2014953592=>1,2014948656=>1,2013047941=>1,2012717651=>1,2013048530=>1,2013048532=>1,2013142142=>1,2013077509=>1,2012646817=>1,2012646696=>1,2011902810=>1,2011902626=>1,2011954405=>1,2012053276=>1,2012618233=>1,2012063008=>1,2013156442=>1,2013157429=>1,2014883286=>1,2014882699=>1,2014883609=>1,2014895601=>1,2014902607=>1,2014901078=>1,2014853186=>1,2014843679=>1,2013202781=>1,2013188966=>1,2013205487=>1,2013210251=>1,2013457466=>1,2016692289=>1,2016692290=>1,2021929658=>1,2021929635=>1,2021929851=>1,2021929963=>1,2021930366=>1,2021930346=>1,2021929579=>1,2021929380=>1,2021436542=>1,2020476694=>1,2021868402=>1,2021884115=>1,2021929141=>1,2021929046=>1,2021930404=>1,2021930409=>1,2021931996=>1,2021931690=>1,2021932100=>1,2021932155=>1,2021933328=>1,2021932297=>1,2021931617=>1,2021931454=>1,2021930831=>1,2021930826=>1,2021930852=>1,2021930926=>1,2021931316=>1,2019030646=>1,2019026431=>1,2016692302=>1,2016692301=>1,2016692304=>1,2016692307=>1,2016692629=>1,2016692404=>1,2016692300=>1,2016692299=>1,2016692292=>1,2016692291=>1,2016692294=>1,2016692295=>1,2016692297=>1,2016692296=>1,2016912330=>1,2016933167=>1,2018831199=>1,2018830708=>1,2018831996=>1,2018832299=>1,2018933126=>1,2018870506=>1,2018830508=>1,2018830459=>1,2016980294=>1,2016978653=>1,2017031356=>1,2017176946=>1,2018758725=>1,2033490723=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-25.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2988561952=>2988561959,2987399936=>2987400191,2985383196=>1,2985380880=>1,2985384671=>1,2985386561=>1,2985385963=>1,2985385718=>1,2985380838=>1,2985379603=>1,2985368646=>1,2985363130=>1,2985370200=>1,2985371352=>1,2985372354=>1,2985399445=>1,2985400939=>1,2985412577=>1,2985411106=>1,2985412618=>1,2985414415=>1,2985423941=>1,2985414736=>1,2985410467=>1,2985409980=>1,2985401032=>1,2985362749=>1,2985406783=>1,2985407562=>1,2985409924=>1,2985408310=>1,2985400746=>1,2985357372=>1,2985313527=>1,2985312341=>1,2985316320=>1,2985317887=>1,2985321704=>1,2985319879=>1,2985309425=>1,2985309203=>1,2985303702=>1,2985303601=>1,2985305413=>1,2985307131=>1,2985309042=>1,2985307635=>1,2985325136=>1,2985325948=>1,2985346695=>1,2985346654=>1,2985349366=>1,2985349404=>1,2985357362=>1,2985350979=>1,2985346105=>1,2985345993=>1,2985335885=>1,2985335863=>1,2985336206=>1,2985336653=>1,2985345159=>1,2985471696=>1,2985490780=>1,2985639415=>1,2985632429=>1,2985642388=>1,2985648283=>1,2985648900=>1,2985648514=>1,2985631538=>1,2985631240=>1,2985608228=>1,2985608160=>1,2985608952=>1,2985614137=>1,2985621336=>1,2985614307=>1,2985649135=>1,2985651014=>1,2985699497=>1,2985698859=>1,2985699505=>1,2985700716=>1,2985710970=>1,2985706436=>1,2985696429=>1,2985678373=>1,2985670521=>1,2985651984=>1,2985671494=>1,2985671574=>1,2985675214=>1,2985673481=>1,2985608126=>1,2985607604=>1,2985519316=>1,2985518131=>1,2985524728=>1,2985529368=>1,2985530885=>1,2985529956=>1,2985515215=>1,2985510837=>1,2985496476=>1,2985290328=>1,2985500148=>1,2985502251=>1,2985508918=>1,2985505877=>1,2985531262=>1,2985531937=>1,2985582859=>1,2985548766=>1,2985584968=>1,2985586013=>1,2985597750=>1,2985586356=>1,2985547992=>1,2985542865=>1,2985532709=>1,2985532610=>1,2985533093=>1,2985533171=>1,2985538513=>1,2985478465=>1,2985290013=>1,2985042126=>1,2985038812=>1,2985043770=>1,2985058713=>1,2985059295=>1,2985058755=>1,2985037984=>1,2985034764=>1,2984762587=>1,2984762042=>1,2984762855=>1,2984767401=>1,2985034640=>1,2984905930=>1,2985059680=>1,2985059835=>1,2985111702=>1,2985107550=>1,2985122358=>1,2985122500=>1,2985153983=>1,2985150343=>1,2985080529=>1,2985080356=>1,2985062404=>1,2985059860=>1,2985062689=>1,2985063681=>1,2985079285=>1,2985076217=>1,2984760238=>1,2984759211=>1,2984753517=>1,2984752038=>1,2984755809=>1,2984756213=>1,2984756239=>1,2984756229=>1,2984746932=>1,2984735603=>1,2984709737=>1,2984709534=>1,2984719710=>1,2984720351=>1,2984735380=>1,2984733126=>1,2984757109=>1,2984757368=>1,2984758664=>1,2984758655=>1,2984758789=>1,2984758981=>1,2984759085=>1,2984759083=>1,2984758608=>1,2984758469=>1,2984758028=>1,2984757437=>1,2984758256=>1,2984758287=>1,2984758309=>1,2985157603=>1,2985160084=>1,2985250938=>1,2985250922=>1,2985251253=>1,2985251309=>1,2985251442=>1,2985251356=>1,2985243693=>1,2985232930=>1,2985224362=>1,2985224341=>1,2985224638=>1,2985224741=>1,2985227239=>1,2985227106=>1,2985251788=>1,2985251943=>1,2985259821=>1,2985257104=>1,2985282582=>1,2985283948=>1,2985284815=>1,2985284268=>1,2985255703=>1,2985254463=>1,2985252436=>1,2985252421=>1,2985252820=>1,2985253401=>1,2985254136=>1,2985222795=>1,2985219985=>1,2985175533=>1,2985175057=>1,2985175701=>1,2985175884=>1,2985176223=>1,2985175933=>1,2985175023=>1,2985174618=>1,2985167313=>1,2985160920=>1,2985173965=>1,2985174363=>1,2985174500=>1,2985174435=>1,2985176256=>1,2985176592=>1,2985207016=>1,2985205132=>1,2985214527=>1,2985218271=>1,2985219483=>1,2985219288=>1,2985204091=>1,2985202861=>1,2985189528=>1,2985185389=>1,2985191524=>1,2985199495=>1,2985202168=>1,2985715137=>1,2985725061=>1,2988488034=>1,2988488033=>1,2988488035=>1,2988490072=>1,2988494648=>1,2988494647=>1,2988488032=>1,2988482172=>1,2988455262=>1,2988455221=>1,2988455299=>1,2988455322=>1,2988474638=>1,2988464102=>1,2988496993=>1,2988497042=>1,2988520552=>1,2988516247=>1,2988520607=>1,2988520623=>1,2988556085=>1,2988547254=>1,2988513795=>1,2988505961=>1,2988497981=>1,2988497932=>1,2988498327=>1,2988498383=>1,2988498594=>1,2988498453=>1,2988453021=>1,2988450395=>1,2987851721=>1,2987842050=>1,2987878722=>1,2987890337=>1,2987947371=>1,2987934191=>1,2987824999=>1,2987824250=>1,2987669266=>1,2987669264=>1,2987700227=>1,2987743292=>1,2987749957=>1,2987745238=>1,2988001519=>1,2988081440=>1,2988443041=>1,2988177598=>1,2988443044=>1,2988443058=>1,2988443281=>1,2988443070=>1,2988174226=>1,2988169458=>1,2988139482=>1,2988087066=>1,2988148401=>1,2988149671=>1,2988155414=>1,2988556443=>1,2988557106=>1,2990421269=>1,2990419463=>1,2990421931=>1,2990422571=>1,2990423813=>1,2990423077=>1,2990417184=>1,2990416960=>1,2990409917=>1,2990408533=>1,2990410137=>1,2990412676=>1,2990414729=>1,2990414036=>1,2990424024=>1,2990428131=>1,2990432928=>1,2990431987=>1,2990434450=>1,2990435748=>1,2990439805=>1,2990438787=>1,2990431524=>1,2990430831=>1,2990428923=>1,2990428352=>1,2990429792=>1,2990429902=>1,2990430319=>1,2990408149=>1,2990407773=>1,2988562017=>1,2988561979=>1,2988565460=>1,2988617814=>1,2988965870=>1,2988686938=>1,2988561978=>1,2988561977=>1,2988558684=>1,2988557109=>1,2988558685=>1,2988558687=>1,2988561931=>1,2988561928=>1,2989300650=>1,2989379179=>1,2989620695=>1,2989617544=>1,2989905905=>1,2990086137=>1,2990252385=>1,2990135850=>1,2989614181=>1,2989546088=>1,2989401202=>1,2989391884=>1,2989490549=>1,2989496077=>1,2989510753=>1,2987665584=>1,2987652937=>1,2985748792=>1,2985742293=>1,2985755328=>1,2985757038=>1,2985793277=>1,2985765324=>1,2985741915=>1,2985741349=>1,2985740770=>1,2985740420=>1,2985740797=>1,2985740928=>1,2985741286=>1,2985740993=>1,2985794563=>1,2985794573=>1,2985795522=>1,2985795402=>1,2985795537=>1,2985795547=>1,2985796569=>1,2985795548=>1,2985795289=>1,2985795277=>1,2985794879=>1,2985794637=>1,2985794881=>1,2985795125=>1,2985795194=>1,2985740281=>1,2985740128=>1,2985736743=>1,2985736710=>1,2985736979=>1,2985737491=>1,2985738416=>1,2985737805=>1,2985735980=>1,2985735022=>1,2985731974=>1,2984704849=>1,2985732072=>1,2985734187=>1,2985734848=>1,2985734384=>1,2985738446=>1,2985738483=>1,2985739792=>1,2985739778=>1,2985739834=>1,2985739988=>1,2985740043=>1,2985740023=>1,2985739533=>1,2985739479=>1,2985738850=>1,2985738501=>1,2985739038=>1,2985739093=>1,2985739249=>1,2985800000=>1,2985800216=>1,2987446333=>1,2987446332=>1,2987446334=>1,2987448472=>1,2987469197=>1,2987467535=>1,2987446331=>1,2987446330=>1,2987079384=>1,2987022329=>1,2987169236=>1,2987446327=>1,2987446329=>1,2987446328=>1,2987502157=>1,2987502229=>1,2987535433=>1,2987532425=>1,2987545559=>1,2987614465=>1,2987616483=>1,2987614721=>1,2987530581=>1,2987528652=>1,2987503114=>1,2987502422=>1,2987503135=>1,2987503203=>1,2987504356=>1,2987021468=>1,2986999033=>1,2986517687=>1,2986352342=>1,2986517997=>1,2986530615=>1,2986600400=>1,2986566742=>1,2985828564=>1,2985818011=>1,2985801891=>1,2985800822=>1,2985802273=>1,2985802458=>1,2985815798=>1,2985808789=>1,2986662723=>1,2986666388=>1,2986839159=>1,2986836113=>1,2986846655=>1,2986890400=>1,2986998493=>1,2986892107=>1,2986806403=>1,2986800878=>1,2986723846=>1,2986677363=>1,2986748371=>1,2986759162=>1,2986781666=>1,2985715984=>1,2984704631=>1,2975139710=>1,2975090722=>1,2975139836=>1,2975152919=>1,2975198177=>1,2975161480=>1,2975065429=>1,2974941411=>1,2974542909=>1,2974542873=>1,2974542929=>1,2974543385=>1,2974910606=>1,2974543500=>1,2975243534=>1,2975262337=>1,2975330654=>1,2975289189=>1,2975330786=>1,2975331430=>1,2975537682=>1,2975537117=>1,2975288321=>1,2975287297=>1,2975279113=>1,2975279106=>1,2975279121=>1,2975279137=>1,2975279614=>1,2975279157=>1,2974542865=>1,2974542853=>1,2974381837=>1,2974381795=>1,2974381852=>1,2974381877=>1,2974415274=>1,2974381981=>1,2974381711=>1,2974381652=>1,2974381394=>1,2974381389=>1,2974381483=>1,2974381485=>1,2974381648=>1,2974381604=>1,2974446990=>1,2974454289=>1,2974523433=>1,2974521195=>1,2974541831=>1,2974541832=>1,2974541838=>1,2974541837=>1,2974521188=>1,2974510082=>1,2974493450=>1,2974457710=>1,2974493481=>1,2974493490=>1,2974500353=>1,2975537686=>1,2975537696=>1,2975611654=>1,2975606442=>1,2975612035=>1,2975697013=>1,2975784908=>1,2975735480=>1,2975606405=>1,2975605982=>1,2975601322=>1,2975598806=>1,2975602810=>1,2975603010=>1,2975605357=>1,2975603011=>1,2975795934=>1,2975863973=>1,2976076739=>1,2976076013=>1,2976077035=>1,2976078321=>1,2976088716=>1,2976088563=>1,2976064624=>1,2976055637=>1,2975910765=>1,2975886400=>1,2975989079=>1,2976024123=>1,2976053808=>1,2975581090=>1,2975576934=>1,2975537859=>1,2975537846=>1,2975537970=>1,2975537973=>1,2975537997=>1,2975537995=>1,2975537821=>1,2975537799=>1,2975537738=>1,2975537722=>1,2975537746=>1,2975537750=>1,2975537790=>1,2975537782=>1,2975538011=>1,2975538040=>1,2975538317=>1,2975538315=>1,2975538337=>1,2975538354=>1,2975538390=>1,2975538362=>1,2975538304=>1,2975538274=>1,2975538084=>1,2975538050=>1,2975538148=>1,2975538159=>1,2975538211=>1,2974381355=>1,2974381297=>1,2972485018=>1,2972461924=>1,2972485858=>1,2972499071=>1,2972501246=>1,2972499190=>1,2972454407=>1,2972447595=>1,2972426690=>1,2972416562=>1,2972427266=>1,2972428323=>1,2972444738=>1,2972439596=>1,2972593219=>1,2972593220=>1,2972633118=>1,2972618533=>1,2972677554=>1,2973061863=>1,2973070034=>1,2973070029=>1,2972618368=>1,2972617783=>1,2972593223=>1,2972593221=>1,2972593225=>1,2972593226=>1,2972593229=>1,2972593228=>1,2972408718=>1,2972403963=>1,2972098344=>1,2972049194=>1,2972107468=>1,2972107514=>1,2972127100=>1,2972110609=>1,2972037346=>1,2971976750=>1,2971337286=>1,2971116082=>1,2971726046=>1,2971938078=>1,2971976749=>1,2971976748=>1,2972149641=>1,2972164166=>1,2972354108=>1,2972336523=>1,2972389393=>1,2972391979=>1,2972398294=>1,2972396218=>1,2972335465=>1,2972291501=>1,2972165889=>1,2972165201=>1,2972170811=>1,2972170813=>1,2972170814=>1,2973133217=>1,2973133465=>1,2974311441=>1,2974310489=>1,2974328950=>1,2974329336=>1,2974380410=>1,2974370000=>1,2974310481=>1,2974310401=>1,2974154467=>1,2974145857=>1,2974160796=>1,2974161566=>1,2974306616=>1,2974178829=>1,2974380514=>1,2974380654=>1,2974380888=>1,2974380877=>1,2974380891=>1,2974380926=>1,2974381106=>1,2974381097=>1,2974380863=>1,2974380729=>1,2974380669=>1,2974380658=>1,2974380683=>1,2974380700=>1,2974380716=>1,2974144453=>1,2974139140=>1,2973327859=>1,2973237242=>1,2973711310=>1,2973804474=>1,2973919614=>1,2973813426=>1,2973236932=>1,2973193153=>1,2973143833=>1,2973133510=>1,2973154442=>1,2973154491=>1,2973154967=>1,2973154532=>1,2973927043=>1,2973927068=>1,2974112834=>1,2974104946=>1,2974114908=>1,2974121581=>1,2974123996=>1,2974121917=>1,2974102720=>1,2974061349=>1,2973931674=>1,2973927647=>1,2973955602=>1,2973983433=>1,2973997322=>1,2976089143=>1,2976094628=>1,2984195342=>1,2984195234=>1,2984223792=>1,2984227982=>1,2984232449=>1,2984228701=>1,2984195086=>1,2984194907=>1,2984183809=>1,2984181787=>1,2984185106=>1,2984190765=>1,2984194906=>1,2984190773=>1,2984237660=>1,2984242215=>1,2984352067=>1,2984352013=>1,2984354637=>1,2984364090=>1,2984364883=>1,2984364117=>1,2984351809=>1,2984348667=>1,2984255743=>1,2984252004=>1,2984255795=>1,2984288402=>1,2984344294=>1,2984318252=>1,2984174646=>1,2984170984=>1,2982757203=>1,2982720034=>1,2983006405=>1,2983031320=>1,2983101324=>1,2983074934=>1,2982700605=>1,2982697510=>1,2982244141=>1,2982233818=>1,2982351076=>1,2982695610=>1,2982697500=>1,2982695660=>1,2983130038=>1,2983172518=>1,2984033301=>1,2984030931=>1,2984067080=>1,2984161549=>1,2984170153=>1,2984164353=>1,2984029643=>1,2984024962=>1,2983195557=>1,2983180694=>1,2983198658=>1,2984018298=>1,2984019157=>1,2984370549=>1,2984382910=>1,2984617727=>1,2984615463=>1,2984624515=>1,2984626253=>1,2984627324=>1,2984626666=>1,2984611122=>1,2984610512=>1,2984609228=>1,2984608418=>1,2984609307=>1,2984609343=>1,2984609951=>1,2984609655=>1,2984628535=>1,2984630061=>1,2984696301=>1,2984689054=>1,2984701208=>1,2984701595=>1,2984704080=>1,2984702310=>1,2984661610=>1,2984641855=>1,2984633124=>1,2984631633=>1,2984636059=>1,2984636351=>1,2984638743=>1,2984608146=>1,2984607956=>1,2984499300=>1,2984497864=>1,2984579670=>1,2984579671=>1,2984580040=>1,2984579914=>1,2984489405=>1,2984484248=>1,2984387147=>1,2984383086=>1,2984396312=>1,2984404890=>1,2984426953=>1,2984424897=>1,2984581317=>1,2984581568=>1,2984593554=>1,2984591099=>1,2984599590=>1,2984600843=>1,2984604299=>1,2984601982=>1,2984588937=>1,2984587681=>1,2984585701=>1,2984582033=>1,2984586229=>1,2984586627=>1,2984587442=>1,2982167107=>1,2982072586=>1,2978005125=>1,2978005105=>1,2978005137=>1,2978005362=>1,2978013186=>1,2978009498=>1,2978005097=>1,2978005073=>1,2977796382=>1,2977772810=>1,2977798696=>1,2977815571=>1,2977847628=>1,2977845554=>1,2978013397=>1,2978013426=>1,2978141052=>1,2978139067=>1,2978141172=>1,2978141509=>1,2978143536=>1,2978142312=>1,2978101922=>1,2978069209=>1,2978013438=>1,2978013434=>1,2978013633=>1,2978055024=>1,2978061828=>1,2978055263=>1,2977762974=>1,2977761434=>1,2976369979=>1,2976368212=>1,2976372295=>1,2976495428=>1,2976503095=>1,2976503068=>1,2976287753=>1,2976221130=>1,2976098199=>1,2976097850=>1,2976099489=>1,2976099610=>1,2976211446=>1,2976190232=>1,2976503097=>1,2976503098=>1,2977717234=>1,2976604662=>1,2977719320=>1,2977738718=>1,2977748866=>1,2977740955=>1,2976599581=>1,2976503328=>1,2976503105=>1,2976503099=>1,2976503113=>1,2976503114=>1,2976503115=>1,2978292993=>1,2978307397=>1,2979969513=>1,2979966680=>1,2980022223=>1,2980025347=>1,2981362398=>1,2981300207=>1,2979964432=>1,2979950722=>1,2979772426=>1,2979576190=>1,2979872948=>1,2979879874=>1,2979928637=>1,2979880616=>1,2981366293=>1,2981530129=>1,2981689371=>1,2981676677=>1,2981715516=>1,2982015139=>1,2982038745=>1,2982016117=>1,2981673862=>1,2981661918=>1,2981605391=>1,2981586650=>1,2981660641=>1,2981661093=>1,2981661757=>1,2979572592=>1,2979559106=>1,2978460533=>1,2978459786=>1,2978467853=>1,2978471386=>1,2978497794=>1,2978472629=>1,2978410552=>1,2978406098=>1,2978327919=>1,2978327422=>1,2978328485=>1,2978329333=>1,2978346743=>1,2978330153=>1,2978509094=>1,2978537489=>1,2978811954=>1,2978716287=>1,2978868588=>1,2978966532=>1,2979310007=>1,2979152374=>1,2978590036=>1,2978571163=>1,2978569009=>1,2978554124=>1,2978570775=>1,2978570872=>1,2978571090=>1,2971115618=>1,);?>
1
+ <?php return array(2088254265=>1,2088254198=>1,2088254279=>1,2088254293=>1,2088254313=>1,2088254309=>1,2088254176=>1,2088254158=>1,2088254017=>1,2088254008=>1,2088254025=>1,2088254034=>1,2088254156=>1,2088254050=>1,2088254329=>1,2088254364=>1,2088254536=>1,2088254511=>1,2088254591=>1,2088254594=>1,2088254633=>1,2088254618=>1,2088254501=>1,2088254482=>1,2088254386=>1,2088254366=>1,2088254439=>1,2088254446=>1,2088254479=>1,2088254459=>1,2088253968=>1,2088253922=>1,2088253552=>1,2088253547=>1,2088253598=>1,2088253662=>1,2088253700=>1,2088253669=>1,2088253546=>1,2088253514=>1,2088253466=>1,2088253459=>1,2088253467=>1,2088253473=>1,2088253501=>1,2088253488=>1,2088253703=>1,2088253727=>1,2088253828=>1,2088253823=>1,2088253869=>1,2088253881=>1,2088253898=>1,2088253888=>1,2088253820=>1,2088253811=>1,2088253753=>1,2088253737=>1,2088253758=>1,2088253787=>1,2088253802=>1,2088254666=>1,2088254668=>1,2088255566=>1,2088255506=>1,2088255661=>1,2088255676=>1,2088255721=>1,2088255713=>1,2088255499=>1,2088255458=>1,2088255389=>1,2088255377=>1,2088255395=>1,2088255398=>1,2088255430=>1,2088255426=>1,2088255747=>1,2088255749=>1,2088255895=>1,2088255883=>1,2088255917=>1,2088255931=>1,2088255952=>1,2088255941=>1,2088255871=>1,2088255869=>1,2088255774=>1,2088255754=>1,2088255781=>1,2088255784=>1,2088255863=>1,2088255832=>1,2088255365=>1,2088255347=>1,2088254875=>1,2088254871=>1,2088254947=>1,2088254996=>1,2088255104=>1,2088255068=>1,2088254847=>1,2088254838=>1,2088254699=>1,2088254697=>1,2088254767=>1,2088254799=>1,2088254828=>1,2088254821=>1,2088255119=>1,2088255125=>1,2088255238=>1,2088255221=>1,2088255255=>1,2088255263=>1,2088255344=>1,2088255327=>1,2088255210=>1,2088255178=>1,2088255154=>1,2088255133=>1,2088255165=>1,2088255169=>1,2088255177=>1,2088253434=>1,2088253425=>1,2088251460=>1,2088251453=>1,2088251490=>1,2088251503=>1,2088251548=>1,2088251532=>1,2088251426=>1,2088251417=>1,2088251338=>1,2088251324=>1,2088251339=>1,2088251340=>1,2088251379=>1,2088251341=>1,2088251595=>1,2088251601=>1,2088251899=>1,2088251896=>1,2088251901=>1,2088251932=>1,2088251978=>1,2088251938=>1,2088251804=>1,2088251785=>1,2088251661=>1,2088251624=>1,2088251690=>1,2088251705=>1,2088251748=>1,2088251728=>1,2088251297=>1,2088251290=>1,2088250954=>1,2088250952=>1,2088250982=>1,2088250990=>1,2088251010=>1,2088251002=>1,2088250910=>1,2088250909=>1,2088250855=>1,2088250854=>1,2088250856=>1,2088250861=>1,2088250867=>1,2088250866=>1,2088251015=>1,2088251026=>1,2088251212=>1,2088251206=>1,2088251241=>1,2088251257=>1,2088251282=>1,2088251277=>1,2088251107=>1,2088251105=>1,2088251059=>1,2088251047=>1,2088251081=>1,2088251083=>1,2088251104=>1,2088251979=>1,2088251983=>1,2088253029=>1,2088252997=>1,2088253050=>1,2088253055=>1,2088253063=>1,2088253060=>1,2088252970=>1,2088252966=>1,2088252837=>1,2088252716=>1,2088252850=>1,2088252851=>1,2088252888=>1,2088252886=>1,2088253092=>1,2088253118=>1,2088253323=>1,2088253293=>1,2088253325=>1,2088253354=>1,2088253406=>1,2088253358=>1,2088253272=>1,2088253238=>1,2088253178=>1,2088253143=>1,2088253180=>1,2088253218=>1,2088253235=>1,2088252681=>1,2088252649=>1,2088252121=>1,2088252113=>1,2088252129=>1,2088252164=>1,2088252220=>1,2088252189=>1,2088252105=>1,2088252104=>1,2088251990=>1,2088251988=>1,2088252042=>1,2088252058=>1,2088252073=>1,2088252066=>1,2088252224=>1,2088252228=>1,2088252557=>1,2088252532=>1,2088252566=>1,2088252572=>1,2088252592=>1,2088252591=>1,2088252443=>1,2088252409=>1,2088252250=>1,2088252230=>1,2088252270=>1,2088252323=>1,2088252324=>1,2088255959=>1,2088256016=>1,2088258533=>1,2088258525=>1,2088258569=>1,2088258575=>1,2088258636=>1,2088258579=>1,2088258514=>1,2088258512=>1,2088258476=>1,2088258456=>1,2088258490=>1,2088258492=>1,2088258511=>1,2088258502=>1,2088258671=>1,2088258685=>1,2088258850=>1,2088258800=>1,2088258856=>1,2088258867=>1,2088258923=>1,2088258874=>1,2088258789=>1,2088258762=>1,2088258688=>1,2088258686=>1,2088258712=>1,2088258715=>1,2088258747=>1,2088258730=>1,2088258427=>1,2088258417=>1,2088258187=>1,2088258171=>1,2088258199=>1,2088258209=>1,2088258237=>1,2088258210=>1,2088258170=>1,2088258159=>1,2088258079=>1,2088258072=>1,2088258096=>1,2088258107=>1,2088258150=>1,2088258146=>1,2088258267=>1,2088258271=>1,2088258344=>1,2088258340=>1,2088258374=>1,2088258380=>1,2088258391=>1,2088258386=>1,2088258338=>1,2088258332=>1,2088258300=>1,2088258296=>1,2088258309=>1,2088258317=>1,2088258321=>1,2088258927=>1,2088258944=>1,2088259535=>1,2088259509=>1,2088259541=>1,2088259552=>1,2088259569=>1,2088259556=>1,2088259507=>1,2088259505=>1,2088259434=>1,2088259414=>1,2088259467=>1,2088259470=>1,2088259498=>1,2088259474=>1,2088259613=>1,2088259615=>1,2088259754=>1,2088259719=>1,2088259755=>1,2088259781=>1,2088259794=>1,2088259789=>1,2088259696=>1,2088259685=>1,2088259636=>1,2088259626=>1,2088259637=>1,2088259638=>1,2088259677=>1,2088259386=>1,2088259372=>1,2088259043=>1,2088259036=>1,2088259063=>1,2088259066=>1,2088259102=>1,2088259075=>1,2088259035=>1,2088259031=>1,2088258972=>1,2088258968=>1,2088258974=>1,2088258993=>1,2088259006=>1,2088258997=>1,2088259143=>1,2088259156=>1,2088259326=>1,2088259254=>1,2088259337=>1,2088259345=>1,2088259368=>1,2088259355=>1,2088259241=>1,2088259233=>1,2088259209=>1,2088259164=>1,2088259215=>1,2088259219=>1,2088259228=>1,2088258052=>1,2088258038=>1,2088256869=>1,2088256853=>1,2088256873=>1,2088256922=>1,2088257040=>1,2088256948=>1,2088256842=>1,2088256795=>1,2088256697=>1,2088256686=>1,2088256703=>1,2088256731=>1,2088256761=>1,2088256739=>1,2088257041=>1,2088257043=>1,2088257198=>1,2088257191=>1,2088257206=>1,2088257209=>1,2088257216=>1,2088257211=>1,2088257176=>1,2088257153=>1,2088257063=>1,2088257049=>1,2088257065=>1,2088257077=>1,2088257093=>1,2088257082=>1,2088256679=>1,2088256629=>1,2088256149=>1,2088256147=>1,2088256150=>1,2088256215=>1,2088256236=>1,2088256235=>1,2088256140=>1,2088256122=>1,2088256082=>1,2088256071=>1,2088256083=>1,2088256096=>1,2088256121=>1,2088256112=>1,2088256296=>1,2088256305=>1,2088256500=>1,2088256498=>1,2088256537=>1,2088256584=>1,2088256616=>1,2088256611=>1,2088256485=>1,2088256466=>1,2088256354=>1,2088256346=>1,2088256364=>1,2088256444=>1,2088256453=>1,2088257221=>1,2088257229=>1,2088257746=>1,2088257735=>1,2088257748=>1,2088257751=>1,2088257783=>1,2088257757=>1,2088257718=>1,2088257715=>1,2088257674=>1,2088257673=>1,2088257686=>1,2088257688=>1,2088257707=>1,2088257699=>1,2088257789=>1,2088257800=>1,2088257986=>1,2088257933=>1,2088257992=>1,2088257994=>1,2088258032=>1,2088258025=>1,2088257903=>1,2088257902=>1,2088257841=>1,2088257826=>1,2088257865=>1,2088257885=>1,2088257890=>1,2088257671=>1,2088257654=>1,2088257328=>1,2088257299=>1,2088257334=>1,2088257342=>1,2088257366=>1,2088257356=>1,2088257289=>1,2088257269=>1,2088257235=>1,2088257231=>1,2088257236=>1,2088257239=>1,2088257258=>1,2088257249=>1,2088257421=>1,2088257445=>1,2088257590=>1,2088257569=>1,2088257613=>1,2088257616=>1,2088257633=>1,2088257618=>1,2088257555=>1,2088257550=>1,2088257512=>1,2088257474=>1,2088257517=>1,2088257541=>1,2088257544=>1,2088250832=>1,2088250831=>1,2088241325=>1,2088241256=>1,2088241328=>1,2088241394=>1,2088241414=>1,2088241413=>1,2088241248=>1,2088241234=>1,2088241188=>1,2088241179=>1,2088241191=>1,2088241201=>1,2088241228=>1,2088241215=>1,2088241415=>1,2088241429=>1,2088241533=>1,2088241527=>1,2088241535=>1,2088241537=>1,2088241550=>1,2088241549=>1,2088241522=>1,2088241509=>1,2088241452=>1,2088241451=>1,2088241473=>1,2088241483=>1,2088241503=>1,2088241494=>1,2088241146=>1,2088241139=>1,2088240839=>1,2088240835=>1,2088240849=>1,2088240867=>1,2088240882=>1,2088240873=>1,2088240817=>1,2088240802=>1,2088240778=>1,2088240719=>1,2088240779=>1,2088240787=>1,2088240800=>1,2088240799=>1,2088240888=>1,2088240930=>1,2088241028=>1,2088240994=>1,2088241036=>1,2088241044=>1,2088241107=>1,2088241056=>1,2088240988=>1,2088240978=>1,2088240958=>1,2088240932=>1,2088240963=>1,2088240967=>1,2088240977=>1,2088241564=>1,2088241607=>1,2088242420=>1,2088242414=>1,2088242430=>1,2088242443=>1,2088242461=>1,2088242444=>1,2088242386=>1,2088242369=>1,2088242311=>1,2088242282=>1,2088242341=>1,2088242346=>1,2088242368=>1,2088242362=>1,2088242465=>1,2088242502=>1,2088242638=>1,2088242620=>1,2088242641=>1,2088242661=>1,2088242666=>1,2088242665=>1,2088242614=>1,2088242612=>1,2088242553=>1,2088242517=>1,2088242555=>1,2088242560=>1,2088242603=>1,2088242275=>1,2088242206=>1,2088241758=>1,2088241754=>1,2088241786=>1,2088241796=>1,2088241809=>1,2088241797=>1,2088241748=>1,2088241696=>1,2088241620=>1,2088241610=>1,2088241631=>1,2088241635=>1,2088241682=>1,2088241652=>1,2088241810=>1,2088241846=>1,2088242004=>1,2088241999=>1,2088242013=>1,2088242118=>1,2088242189=>1,2088242173=>1,2088241965=>1,2088241962=>1,2088241862=>1,2088241848=>1,2088241874=>1,2088241955=>1,2088241956=>1,2088240704=>1,2088240686=>1,2088239621=>1,2088239601=>1,2088239622=>1,2088239674=>1,2088239697=>1,2088239693=>1,2088239594=>1,2088239587=>1,2088239539=>1,2088239533=>1,2088239549=>1,2088239554=>1,2088239582=>1,2088239579=>1,2088239745=>1,2088239752=>1,2088239839=>1,2088239822=>1,2088239849=>1,2088239857=>1,2088239952=>1,2088239887=>1,2088239821=>1,2088239806=>1,2088239763=>1,2088239754=>1,2088239767=>1,2088239769=>1,2088239785=>1,2088239771=>1,2088239512=>1,2088239466=>1,2088239154=>1,2088239147=>1,2088239174=>1,2088239179=>1,2088239211=>1,2088239192=>1,2088239135=>1,2088239118=>1,2087968652=>1,2087965470=>1,2087983798=>1,2088039143=>1,2088239106=>1,2088160430=>1,2088239228=>1,2088239249=>1,2088239355=>1,2088239343=>1,2088239357=>1,2088239365=>1,2088239453=>1,2088239430=>1,2088239336=>1,2088239321=>1,2088239285=>1,2088239269=>1,2088239311=>1,2088239318=>1,2088239319=>1,2088239956=>1,2088239961=>1,2088240445=>1,2088240442=>1,2088240450=>1,2088240456=>1,2088240465=>1,2088240460=>1,2088240436=>1,2088240417=>1,2088240354=>1,2088240338=>1,2088240370=>1,2088240381=>1,2088240401=>1,2088240400=>1,2088240466=>1,2088240470=>1,2088240592=>1,2088240578=>1,2088240605=>1,2088240611=>1,2088240633=>1,2088240630=>1,2088240565=>1,2088240552=>1,2088240490=>1,2088240474=>1,2088240516=>1,2088240522=>1,2088240535=>1,2088240327=>1,2088240325=>1,2088240103=>1,2088240086=>1,2088240123=>1,2088240133=>1,2088240157=>1,2088240141=>1,2088240068=>1,2088240060=>1,2088239966=>1,2088239962=>1,2088239997=>1,2088239999=>1,2088240021=>1,2088240009=>1,2088240183=>1,2088240194=>1,2088240280=>1,2088240276=>1,2088240314=>1,2088240318=>1,2088240321=>1,2088240319=>1,2088240253=>1,2088240249=>1,2088240209=>1,2088240199=>1,2088240210=>1,2088240230=>1,2088240243=>1,2088242669=>1,2088242677=>1,2088248853=>1,2088248827=>1,2088248884=>1,2088248893=>1,2088248934=>1,2088248919=>1,2088248823=>1,2088248782=>1,2088248663=>1,2088248631=>1,2088248688=>1,2088248710=>1,2088248750=>1,2088248718=>1,2088248937=>1,2088248939=>1,2088249107=>1,2088249097=>1,2088249110=>1,2088249120=>1,2088249128=>1,2088249125=>1,2088249059=>1,2088249058=>1,2088248968=>1,2088248952=>1,2088248970=>1,2088248980=>1,2088249044=>1,2088249028=>1,2088248596=>1,2088248561=>1,2088248138=>1,2088248123=>1,2088248142=>1,2088248198=>1,2088248233=>1,2088248226=>1,2088248103=>1,2088248085=>1,2088247980=>1,2088247951=>1,2088248000=>1,2088248004=>1,2088248054=>1,2088248050=>1,2088248270=>1,2088248308=>1,2088248496=>1,2088248477=>1,2088248504=>1,2088248537=>1,2088248558=>1,2088248552=>1,2088248415=>1,2088248403=>1,2088248323=>1,2088248317=>1,2088248333=>1,2088248371=>1,2088248398=>1,2088249151=>1,2088249153=>1,2088250479=>1,2088250461=>1,2088250497=>1,2088250519=>1,2088250558=>1,2088250529=>1,2088250459=>1,2088250427=>1,2088249667=>1,2088249649=>1,2088249686=>1,2088249823=>1,2088250417=>1,2088250371=>1,2088250561=>1,2088250565=>1,2088250758=>1,2088250757=>1,2088250760=>1,2088250772=>1,2088250826=>1,2088250819=>1,2088250751=>1,2088250720=>1,2088250585=>1,2088250568=>1,2088250641=>1,2088250696=>1,2088250703=>1,2088249597=>1,2088249568=>1,2088249268=>1,2088249264=>1,2088249288=>1,2088249298=>1,2088249332=>1,2088249309=>1,2088249244=>1,2088249230=>1,2088249188=>1,2088249177=>1,2088249189=>1,2088249198=>1,2088249206=>1,2088249202=>1,2088249346=>1,2088249356=>1,2088249531=>1,2088249526=>1,2088249553=>1,2088249556=>1,2088249567=>1,2088249560=>1,2088249478=>1,2088249473=>1,2088249392=>1,2088249386=>1,2088249454=>1,2088249463=>1,2088249466=>1,2088247948=>1,2088247929=>1,2088243142=>1,2088243111=>1,2088243150=>1,2088243152=>1,2088243170=>1,2088243161=>1,2088243108=>1,2088243098=>1,2088243047=>1,2088243046=>1,2088243069=>1,2088243075=>1,2088243089=>1,2088243077=>1,2088243177=>1,2088243195=>1,2088243375=>1,2088243345=>1,2088243376=>1,2088243382=>1,2088243400=>1,2088243399=>1,2088243295=>1,2088243281=>1,2088243257=>1,2088243234=>1,2088243262=>1,2088243269=>1,2088243280=>1,2088243270=>1,2088243019=>1,2088243018=>1,2088242786=>1,2088242744=>1,2088242795=>1,2088242847=>1,2088242889=>1,2088242862=>1,2088242730=>1,2088242729=>1,2088242695=>1,2088242692=>1,2088242703=>1,2088242708=>1,2088242724=>1,2088242722=>1,2088242892=>1,2088242893=>1,2088243003=>1,2088242982=>1,2088243010=>1,2088243011=>1,2088243016=>1,2088243013=>1,2088242971=>1,2088242970=>1,2088242914=>1,2088242904=>1,2088242925=>1,2088242963=>1,2088242965=>1,2088243411=>1,2088243420=>1,2088247685=>1,2088247678=>1,2088247696=>1,2088247715=>1,2088247726=>1,2088247718=>1,2088247671=>1,2088247651=>1,2088247563=>1,2088247559=>1,2088247595=>1,2088247644=>1,2088247649=>1,2088247645=>1,2088247727=>1,2088247745=>1,2088247864=>1,2088247836=>1,2088247878=>1,2088247903=>1,2088247920=>1,2088247909=>1,2088247821=>1,2088247803=>1,2088247762=>1,2088247746=>1,2088247791=>1,2088247792=>1,2088247801=>1,2088247538=>1,2088247531=>1,2088243620=>1,2088243618=>1,2088243647=>1,2088243648=>1,2088247308=>1,2088247299=>1,2088243613=>1,2088243599=>1,2088243433=>1,2088243432=>1,2088243436=>1,2088243443=>1,2088243494=>1,2088243451=>1,2088247309=>1,2088247311=>1,2088247468=>1,2088247401=>1,2088247490=>1,2088247508=>1,2088247530=>1,2088247511=>1,2088247389=>1,2088247388=>1,2088247333=>1,2088247330=>1,2088247367=>1,2088247382=>1,2088247384=>1,2087666980=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-26.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3032335599=>1,3031982549=>1,3033706326=>1,3033706384=>1,3033706386=>1,3033706385=>1,3031950059=>1,3031949747=>1,3031933751=>1,3031931872=>1,3031934571=>1,3031938134=>1,3031943458=>1,3031939134=>1,3033712769=>1,3033713657=>1,3034048288=>1,3034047496=>1,3034465500=>1,3035693343=>1,3035693427=>1,3035693357=>1,3033986818=>1,3033986657=>1,3033757418=>1,3033756085=>1,3033764892=>1,3033772850=>1,3033777045=>1,3033772890=>1,3031931833=>1,3031931643=>1,3031916671=>1,3031915709=>1,3031917459=>1,3031919679=>1,3031921708=>1,3031921282=>1,3031909582=>1,3031905663=>1,3031719608=>1,3031708547=>1,3031726349=>1,3031726545=>1,3031899494=>1,3031895332=>1,3031921842=>1,3031922203=>1,3031929059=>1,3031925845=>1,3031929307=>1,3031929496=>1,3031930400=>1,3031930316=>1,3031925600=>1,3031924993=>1,3031923170=>1,3031922879=>1,3031923177=>1,3031923509=>1,3031923706=>1,3035701495=>1,3035732861=>1,3036291218=>1,3036290138=>1,3036292810=>1,3036294307=>1,3036295116=>1,3036294876=>1,3036270855=>1,3036219538=>1,3036132252=>1,3036120322=>1,3036155592=>1,3036178178=>1,3036219038=>1,3036218970=>1,3036296446=>1,3036296546=>1,3036308546=>1,3036306410=>1,3036308570=>1,3036308797=>1,3036316523=>1,3036308921=>1,3036305954=>1,3036302812=>1,3036296653=>1,3036296564=>1,3036297154=>1,3036297699=>1,3036302034=>1,3036299930=>1,3036119866=>1,3036105944=>1,3035988116=>1,3035928770=>1,3035988251=>1,3035988747=>1,3035995901=>1,3035989868=>1,3035884328=>1,3035835309=>1,3035736541=>1,3035733975=>1,3035760214=>1,3035761147=>1,3035778941=>1,3035778805=>1,3036007849=>1,3036008654=>1,3036077013=>1,3036074508=>1,3036091232=>1,3036091319=>1,3036105931=>1,3036097208=>1,3036058870=>1,3036037162=>1,3036013906=>1,3036009182=>1,3036035094=>1,3036035105=>1,3036035861=>1,3031684251=>1,3031608506=>1,3015412213=>1,3015343445=>1,3015423644=>1,3015614304=>1,3015699206=>1,3015660358=>1,3015314253=>1,3015272562=>1,3015224279=>1,3015195316=>1,3015262866=>1,3015265738=>1,3015265741=>1,3015265740=>1,3015699290=>1,3015700428=>1,3017127059=>1,3016864171=>1,3017269787=>1,3017320935=>1,3017340847=>1,3017322737=>1,3016854727=>1,3016798104=>1,3016048569=>1,3015700469=>1,3016049208=>1,3016195292=>1,3016796013=>1,3016794860=>1,3015140451=>1,3015112220=>1,3011497793=>1,3011489747=>1,3012650453=>1,3013292309=>1,3013300950=>1,3013298538=>1,3011489746=>1,3011387943=>1,3010452768=>1,3010285826=>1,3011326750=>1,3011342600=>1,3011357338=>1,3011345647=>1,3013330490=>1,3013348520=>1,3014965665=>1,3014955073=>1,3015014581=>1,3015064546=>1,3015099612=>1,3015086344=>1,3014840501=>1,3014806907=>1,3014660163=>1,3013470966=>1,3014670732=>1,3014671197=>1,3014795585=>1,3017456571=>1,3017475320=>1,3029653349=>1,3029652922=>1,3029689038=>1,3029764034=>1,3029937776=>1,3029777503=>1,3029644102=>1,3027607960=>1,3026263353=>1,3025989189=>1,3026303267=>1,3026704957=>1,3026905147=>1,3026858946=>1,3030001166=>1,3030058804=>1,3031409520=>1,3031409211=>1,3031410445=>1,3031424465=>1,3031575994=>1,3031433340=>1,3031405561=>1,3031392009=>1,3030122848=>1,3030059991=>1,3030921580=>1,3031242368=>1,3031389402=>1,3024928339=>1,3024914321=>1,3018589867=>1,3018451305=>1,3018602153=>1,3018619440=>1,3018638008=>1,3018633395=>1,3018419708=>1,3018419011=>1,3017531086=>1,3017477065=>1,3017533040=>1,3017691411=>1,3017777351=>1,3017772634=>1,3019655849=>1,3019707038=>1,3024683017=>1,3024683016=>1,3024683021=>1,3024683037=>1,3024700149=>1,3024683088=>1,3024683012=>1,3024683010=>1,3019713176=>1,3019707338=>1,3019771372=>1,3022009400=>1,3024683009=>1,3036316978=>1,3036320549=>1,3044162579=>1,3044162566=>1,3044162615=>1,3044162639=>1,3044274254=>1,3044205216=>1,3044159146=>1,3044087522=>1,3044053146=>1,3044026390=>1,3044056036=>1,3044056213=>1,3044074567=>1,3044071546=>1,3044436026=>1,3044441761=>1,3046017732=>1,3045993599=>1,3046050139=>1,3046061251=>1,3046063867=>1,3046063866=>1,3045986529=>1,3045973416=>1,3045284471=>1,3045258159=>1,3045356103=>1,3045522563=>1,3045649703=>1,3045609985=>1,3044008579=>1,3044005515=>1,3041592678=>1,3041592674=>1,3041593194=>1,3041593235=>1,3041596043=>1,3041596025=>1,3041592666=>1,3041592648=>1,3041588943=>1,3041578184=>1,3041590822=>1,3041591627=>1,3041592637=>1,3041592584=>1,3041596301=>1,3041602945=>1,3043944481=>1,3043937458=>1,3043944529=>1,3043996019=>1,3044004354=>1,3044001741=>1,3042669739=>1,3042645615=>1,3041623171=>1,3041613776=>1,3042582771=>1,3042594122=>1,3042642533=>1,3046063868=>1,3046063869=>1,3049011987=>1,3049011782=>1,3049014857=>1,3049014873=>1,3049016695=>1,3049014929=>1,3049011137=>1,3049010662=>1,3049008150=>1,3049008031=>1,3049008752=>1,3049009342=>1,3049010057=>1,3049009901=>1,3049017406=>1,3049017797=>1,3049021329=>1,3049021170=>1,3049021778=>1,3049021804=>1,3049022201=>1,3049021976=>1,3049021127=>1,3049020700=>1,3049018744=>1,3049017819=>1,3049019412=>1,3049020049=>1,3049020624=>1,3049007955=>1,3049007047=>1,3047716678=>1,3047608706=>1,3047722814=>1,3047723650=>1,3048108090=>1,3047879004=>1,3047578079=>1,3047478132=>1,3046085418=>1,3046070204=>1,3046103490=>1,3046108058=>1,3047445438=>1,3046108794=>1,3048163268=>1,3048336866=>1,3049002921=>1,3049000897=>1,3049004962=>1,3049005217=>1,3049006526=>1,3049005874=>1,3049000878=>1,3049000724=>1,3048998073=>1,3048997769=>1,3048999187=>1,3048999587=>1,3049000337=>1,3041574638=>1,3041574585=>1,3036515970=>1,3036515728=>1,3036516048=>1,3036517869=>1,3036559773=>1,3036541327=>1,3036514968=>1,3036513740=>1,3036498527=>1,3036497784=>1,3036499809=>1,3036506223=>1,3036513414=>1,3036507354=>1,3036562466=>1,3036563320=>1,3036598863=>1,3036594107=>1,3036599448=>1,3036599537=>1,3036600326=>1,3036600313=>1,3036588516=>1,3036579637=>1,3036564426=>1,3036564015=>1,3036566295=>1,3036568379=>1,3036569374=>1,3036568902=>1,3036495307=>1,3036494887=>1,3036331260=>1,3036330666=>1,3036331262=>1,3036332254=>1,3036336492=>1,3036335731=>1,3036329525=>1,3036329522=>1,3036321467=>1,3036321097=>1,3036324642=>1,3036326778=>1,3036328202=>1,3036327674=>1,3036337394=>1,3036337842=>1,3036390966=>1,3036390370=>1,3036392427=>1,3036396958=>1,3036492434=>1,3036431061=>1,3036373418=>1,3036372033=>1,3036345334=>1,3036338443=>1,3036347194=>1,3036359744=>1,3036363346=>1,3036600350=>1,3036600351=>1,3040971395=>1,3040959695=>1,3040980500=>1,3041126616=>1,3041444916=>1,3041420436=>1,3040930510=>1,3040888171=>1,3039943942=>1,3039896738=>1,3040525366=>1,3040673095=>1,3040869678=>1,3040803925=>1,3041449074=>1,3041449624=>1,3041519044=>1,3041499480=>1,3041520838=>1,3041555627=>1,3041574575=>1,3041574535=>1,3041490683=>1,3041490207=>1,3041468561=>1,3041465724=>1,3041473723=>1,3041486983=>1,3041490136=>1,3039889986=>1,3039880642=>1,3038645063=>1,3038515618=>1,3039036810=>1,3039419253=>1,3039426062=>1,3039425081=>1,3038490051=>1,3037765691=>1,3037656514=>1,3036608912=>1,3037656554=>1,3037682603=>1,3037704967=>1,3037688734=>1,3039569931=>1,3039579447=>1,3039860026=>1,3039858860=>1,3039860509=>1,3039878658=>1,3039880450=>1,3039880334=>1,3039844322=>1,3039842426=>1,3039805692=>1,3039728945=>1,3039821997=>1,3039829459=>1,3039831294=>1,3010214039=>1,3010214026=>1,2994493530=>1,2994493147=>1,2994517238=>1,2994530689=>1,2994534626=>1,2994533445=>1,2994492840=>1,2994489379=>1,2993707150=>1,2992629378=>1,2993773650=>1,2993990837=>1,2994165916=>1,2994043951=>1,2994802482=>1,2994832299=>1,2994845965=>1,2994845925=>1,2994846246=>1,2994853022=>1,2995047883=>1,2995015316=>1,2994845913=>1,2994845353=>1,2994835515=>1,2994834019=>1,2994836791=>1,2994843355=>1,2994844880=>1,2994844539=>1,2992478122=>1,2992420845=>1,2991563160=>1,2991562720=>1,2991563185=>1,2991564053=>1,2991567252=>1,2991566962=>1,2991562643=>1,2991562461=>1,2991556292=>1,2991556131=>1,2991556838=>1,2991557741=>1,2991561196=>1,2991557996=>1,2991568358=>1,2991570132=>1,2991880777=>1,2991864843=>1,2991951094=>1,2992115596=>1,2992240421=>1,2992177774=>1,2991854428=>1,2991853263=>1,2991758581=>1,2991727216=>1,2991761044=>1,2991816459=>1,2991832684=>1,2995050926=>1,2995149214=>1,2996258960=>1,2996258412=>1,2996278755=>1,2996281530=>1,2996287099=>1,2996285720=>1,2996258167=>1,2996257741=>1,2996211351=>1,2996197802=>1,2996235173=>1,2996237258=>1,2996256359=>1,2996245079=>1,2996288792=>1,2996291703=>1,2996746029=>1,2996744708=>1,2996757640=>1,2996760906=>1,2996764292=>1,2996764281=>1,2996733699=>1,2996685133=>1,2996302958=>1,2996301200=>1,2996337294=>1,2996378859=>1,2996643115=>1,2996197663=>1,2996192075=>1,2995555819=>1,2995550065=>1,2995579790=>1,2995585097=>1,2995587732=>1,2995585756=>1,2995546130=>1,2995540302=>1,2995369287=>1,2995369182=>1,2995369291=>1,2995369583=>1,2995525733=>1,2995369768=>1,2995588595=>1,2995591939=>1,2995633118=>1,2995628612=>1,2996065222=>1,2996138983=>1,2996181532=>1,2996165421=>1,2995621737=>1,2995621302=>1,2995596125=>1,2995596036=>1,2995597470=>1,2995599899=>1,2995604243=>1,2991510565=>1,2991453038=>1,2990471248=>1,2990471070=>1,2990471601=>1,2990471700=>1,2990471944=>1,2990471824=>1,2990471034=>1,2990470676=>1,2990467995=>1,2990467448=>1,2990469823=>1,2990470069=>1,2990470312=>1,2990470191=>1,2990472034=>1,2990472120=>1,2990490035=>1,2990488899=>1,2990493192=>1,2990494990=>1,2990498082=>1,2990497424=>1,2990485089=>1,2990477849=>1,2990472274=>1,2990472273=>1,2990472357=>1,2990472426=>1,2990477360=>1,2990475685=>1,2990467113=>1,2990466823=>1,2990458030=>1,2990457927=>1,2990458230=>1,2990458850=>1,2990459175=>1,2990459151=>1,2990457520=>1,2990454931=>1,2990447639=>1,2990446017=>1,2990450495=>1,2990452171=>1,2990454817=>1,2990452422=>1,2990459616=>1,2990459774=>1,2990463465=>1,2990463455=>1,2990463648=>1,2990463796=>1,2990466428=>1,2990464987=>1,2990463366=>1,2990463212=>1,2990460586=>1,2990460579=>1,2990461436=>1,2990461578=>1,2990462491=>1,2990499171=>1,2990499979=>1,2990828448=>1,2990717950=>1,2990828759=>1,2990830452=>1,2990832486=>1,2990832435=>1,2990716841=>1,2990713933=>1,2990649208=>1,2990648503=>1,2990649551=>1,2990651343=>1,2990709111=>1,2990653152=>1,2991057979=>1,2991178232=>1,2991364185=>1,2991298233=>1,2991422249=>1,2991422815=>1,2991450232=>1,2991444997=>1,2991249273=>1,2991226226=>1,2991182454=>1,2991178571=>1,2991182576=>1,2991184811=>1,2991184845=>1,2990648394=>1,2990647790=>1,2990554314=>1,2990526771=>1,2990633167=>1,2990634291=>1,2990637242=>1,2990637104=>1,2990524017=>1,2990514900=>1,2990501710=>1,2990501527=>1,2990503069=>1,2990509302=>1,2990510569=>1,2990510562=>1,2990638760=>1,2990639264=>1,2990646048=>1,2990646020=>1,2990646081=>1,2990646658=>1,2990647599=>1,2990646880=>1,2990645867=>1,2990645863=>1,2990643249=>1,2990642941=>1,2990643279=>1,2990643411=>1,2990644299=>1,2996797249=>1,2996797283=>1,3001999972=>1,3001999724=>1,3002000244=>1,3002000396=>1,3002001518=>1,3002000785=>1,3001999492=>1,3001999171=>1,3001787713=>1,3001761059=>1,3001821283=>1,3001847245=>1,3001972646=>1,3001952764=>1,3002002732=>1,3002023563=>1,3002893540=>1,3002893539=>1,3002893542=>1,3002896902=>1,3002908130=>1,3002904450=>1,3002884726=>1,3002883979=>1,3002829459=>1,3002625142=>1,3002848727=>1,3002849530=>1,3002866888=>1,3002852494=>1,3000761634=>1,3000761202=>1,3000457482=>1,3000426099=>1,3000458407=>1,3000463174=>1,3000509995=>1,3000502614=>1,3000388123=>1,3000354769=>1,3000184178=>1,3000120490=>1,3000219247=>1,3000285013=>1,3000312646=>1,3000289123=>1,3000523893=>1,3000560028=>1,3000706037=>1,3000698067=>1,3000718107=>1,3000733884=>1,3000741644=>1,3000740434=>1,3000687840=>1,3000660655=>1,3000612896=>1,3000564311=>1,3000613358=>1,3000613671=>1,3000649292=>1,3002908389=>1,3002991129=>1,3005985122=>1,3005982990=>1,3005988094=>1,3006330897=>1,3006915082=>1,3006550455=>1,3005976482=>1,3005973826=>1,3005760204=>1,3005760203=>1,3005760205=>1,3005760254=>1,3005973814=>1,3005971150=>1,3007143373=>1,3007189694=>1,3010207937=>1,3010207777=>1,3010208065=>1,3010208385=>1,3010209665=>1,3010209153=>1,3010169153=>1,3010121067=>1,3009472140=>1,3009468725=>1,3009478428=>1,3009946634=>1,3010120631=>1,3005760201=>1,3005760003=>1,3002998358=>1,3002997492=>1,3002998737=>1,3002999776=>1,3003000661=>1,3002999869=>1,3002996595=>1,3002996452=>1,3002992149=>1,3002991193=>1,3002994012=>1,3002994046=>1,3002996413=>1,3002995846=>1,3003000837=>1,3003000841=>1,3003418268=>1,3003412798=>1,3003431412=>1,3003437811=>1,3004732799=>1,3003440392=>1,3003394144=>1,3003171527=>1,3003004748=>1,3003001991=>1,3003004773=>1,3003004905=>1,3003029934=>1,3000119767=>1,3000119279=>1,2997013788=>1,2997013786=>1,2997014894=>1,2997015016=>1,2997015496=>1,2997015493=>1,2997013785=>1,2997013784=>1,2997013762=>1,2997013761=>1,2997013763=>1,2997013764=>1,2997013783=>1,2997013765=>1,2997015510=>1,2997015511=>1,2997133868=>1,2997129638=>1,2997135271=>1,2997165052=>1,2997307184=>1,2997174044=>1,2997106326=>1,2997018340=>1,2997015513=>1,2997015512=>1,2997015515=>1,2997015528=>1,2997017988=>1,2997016618=>1,2997012833=>1,2997012435=>1,2996920150=>1,2996917437=>1,2996923511=>1,2996932818=>1,2996970104=>1,2996940055=>1,2996910928=>1,2996908623=>1,2996825138=>1,2996797359=>1,2996829507=>1,2996830133=>1,2996899440=>1,2996898325=>1,2996978388=>1,2996982424=>1,2997012317=>1,2997012316=>1,2997012319=>1,2997012323=>1,2997012421=>1,2997012366=>1,2997012315=>1,2997012313=>1,2997011026=>1,2996988340=>1,2997011154=>1,2997012259=>1,2997012263=>1,2997364168=>1,2997365634=>1,3000001955=>1,3000001937=>1,3000001983=>1,3000002204=>1,3000002455=>1,3000002293=>1,3000001931=>1,2999995449=>1,2999804228=>1,2999734243=>1,2999829246=>1,2999852065=>1,2999950562=>1,2999903117=>1,3000002713=>1,3000002805=>1,3000054929=>1,3000054831=>1,3000054946=>1,3000054971=>1,3000118747=>1,3000071075=>1,3000054627=>1,3000054423=>1,3000009029=>1,3000002850=>1,3000009810=>1,3000028329=>1,3000053421=>1,2999710200=>1,2999697841=>1,2998424914=>1,2998415291=>1,2998543334=>1,2998754422=>1,2998829877=>1,2998774719=>1,2998368928=>1,2997846978=>1,2997406354=>1,2997369606=>1,2997514178=>1,2997812314=>1,2997846070=>1,2997846066=>1,2998883042=>1,2998932074=>1,2999590645=>1,2999588026=>1,2999619673=>1,2999623614=>1,2999684965=>1,2999679215=>1,2999508614=>1,2999470912=>1,2999211969=>1,2998967594=>1,2999458901=>1,2999460866=>1,2999465206=>1,2990442431=>1,);?>
1
+ <?php return array(2088276821=>1,2088276808=>1,2088276853=>1,2088276880=>1,2088276895=>1,2088276892=>1,2088276781=>1,2088276779=>1,2088276710=>1,2088276691=>1,2088276725=>1,2088276741=>1,2088276754=>1,2088276743=>1,2088276909=>1,2088276915=>1,2088277050=>1,2088277045=>1,2088277108=>1,2088277112=>1,2088277154=>1,2088277146=>1,2088277030=>1,2088277023=>1,2088276942=>1,2088276920=>1,2088276948=>1,2088276952=>1,2088277004=>1,2088276990=>1,2088276689=>1,2088276683=>1,2088276259=>1,2088276247=>1,2088276266=>1,2088276306=>1,2088276365=>1,2088276317=>1,2088276233=>1,2088276199=>1,2088276160=>1,2088276092=>1,2088276169=>1,2088276172=>1,2088276197=>1,2088276178=>1,2088276370=>1,2088276389=>1,2088276586=>1,2088276567=>1,2088276614=>1,2088276638=>1,2088276666=>1,2088276663=>1,2088276548=>1,2088276528=>1,2088276452=>1,2088276441=>1,2088276457=>1,2088276494=>1,2088276502=>1,2088277184=>1,2088277234=>1,2088277942=>1,2088277922=>1,2088277967=>1,2088277970=>1,2088278004=>1,2088277972=>1,2088277915=>1,2088277883=>1,2088277780=>1,2088277771=>1,2088277786=>1,2088277816=>1,2088277864=>1,2088277838=>1,2088278046=>1,2088278076=>1,2088278166=>1,2088278155=>1,2088278169=>1,2088278180=>1,2088278242=>1,2088278185=>1,2088278150=>1,2088278131=>1,2088278087=>1,2088278079=>1,2088278102=>1,2088278107=>1,2088278115=>1,2088278108=>1,2088277765=>1,2088277758=>1,2088277452=>1,2088277451=>1,2088277465=>1,2088277472=>1,2088277482=>1,2088277479=>1,2088277442=>1,2088277417=>1,2088277279=>1,2088277239=>1,2088277319=>1,2088277321=>1,2088277406=>1,2088277364=>1,2088277508=>1,2088277518=>1,2088277715=>1,2088277709=>1,2088277732=>1,2088277739=>1,2088277756=>1,2088277746=>1,2088277684=>1,2088277679=>1,2088277522=>1,2088277519=>1,2088277545=>1,2088277559=>1,2088277583=>1,2088275997=>1,2088275980=>1,2088273525=>1,2088273519=>1,2088273565=>1,2088273595=>1,2088273611=>1,2088273597=>1,2088273515=>1,2088273509=>1,2088273439=>1,2088273419=>1,2088273453=>1,2088273491=>1,2088273497=>1,2088273495=>1,2088273627=>1,2088273656=>1,2088274060=>1,2088273949=>1,2088274062=>1,2088274103=>1,2088274144=>1,2088274120=>1,2088273917=>1,2088273884=>1,2088273718=>1,2088273666=>1,2088273735=>1,2088273792=>1,2088273870=>1,2088273810=>1,2088273404=>1,2088273394=>1,2088272811=>1,2088272808=>1,2088272822=>1,2088272849=>1,2088272863=>1,2088272855=>1,2088272794=>1,2088272698=>1,2088272480=>1,2088272470=>1,2088272489=>1,2088272623=>1,2088272689=>1,2088272643=>1,2088272898=>1,2088272924=>1,2088273235=>1,2088273206=>1,2088273316=>1,2088273330=>1,2088273379=>1,2088273346=>1,2088273198=>1,2088273115=>1,2088273014=>1,2088272926=>1,2088273050=>1,2088273079=>1,2088273099=>1,2088274191=>1,2088274208=>1,2088274899=>1,2088274875=>1,2088274907=>1,2088274930=>1,2088275735=>1,2088275716=>1,2088274864=>1,2088274862=>1,2088274817=>1,2088274794=>1,2088274835=>1,2088274838=>1,2088274854=>1,2088274844=>1,2088275748=>1,2088275752=>1,2088275931=>1,2088275916=>1,2088275938=>1,2088275952=>1,2088275962=>1,2088275961=>1,2088275901=>1,2088275896=>1,2088275796=>1,2088275760=>1,2088275811=>1,2088275870=>1,2088275893=>1,2088274791=>1,2088274790=>1,2088274468=>1,2088274462=>1,2088274471=>1,2088274483=>1,2088274517=>1,2088274492=>1,2088274456=>1,2088274437=>1,2088274231=>1,2088274214=>1,2088274252=>1,2088274340=>1,2088274356=>1,2088274346=>1,2088274541=>1,2088274542=>1,2088274721=>1,2088274651=>1,2088274740=>1,2088274757=>1,2088274779=>1,2088274777=>1,2088274650=>1,2088274625=>1,2088274558=>1,2088274554=>1,2088274573=>1,2088274577=>1,2088274612=>1,2088278257=>1,2088278261=>1,2088282729=>1,2088282725=>1,2088282739=>1,2088282781=>1,2088282810=>1,2088282787=>1,2088282696=>1,2088282610=>1,2088282490=>1,2088282475=>1,2088282532=>1,2088282550=>1,2088282599=>1,2088282554=>1,2088282813=>1,2088282891=>1,2088283068=>1,2088283061=>1,2088283114=>1,2088283118=>1,2088283196=>1,2088283122=>1,2088283038=>1,2088283032=>1,2088282895=>1,2088282894=>1,2088282904=>1,2088282936=>1,2088283025=>1,2088282990=>1,2088282432=>1,2088282390=>1,2088281451=>1,2088281424=>1,2088281485=>1,2088281511=>1,2088281548=>1,2088281513=>1,2088281416=>1,2088281400=>1,2088281223=>1,2088281209=>1,2088281238=>1,2088281265=>1,2088281274=>1,2088281266=>1,2088281575=>1,2088282121=>1,2088282337=>1,2088282299=>1,2088282357=>1,2088282359=>1,2088282388=>1,2088282376=>1,2088282246=>1,2088282234=>1,2088282151=>1,2088282142=>1,2088282183=>1,2088282191=>1,2088282214=>1,2088283252=>1,2088283256=>1,2088284013=>1,2088284002=>1,2088284023=>1,2088284066=>1,2088284078=>1,2088284074=>1,2088283954=>1,2088283938=>1,2088283767=>1,2088283753=>1,2088283858=>1,2088283868=>1,2088283931=>1,2088283922=>1,2088284110=>1,2088284114=>1,2088284335=>1,2088284311=>1,2088284398=>1,2088284404=>1,2088284446=>1,2088284414=>1,2088284291=>1,2088284278=>1,2088284211=>1,2088284205=>1,2088284214=>1,2088284236=>1,2088284251=>1,2088283700=>1,2088283699=>1,2088283340=>1,2088283313=>1,2088283342=>1,2088283355=>1,2088283363=>1,2088283357=>1,2088283302=>1,2088283285=>1,2088283260=>1,2088283258=>1,2088283264=>1,2088283265=>1,2088283275=>1,2088283270=>1,2088283379=>1,2088283419=>1,2088283571=>1,2088283542=>1,2088283574=>1,2088283586=>1,2088283691=>1,2088283659=>1,2088283522=>1,2088283512=>1,2088283426=>1,2088283422=>1,2088283447=>1,2088283499=>1,2088283508=>1,2088281201=>1,2088281187=>1,2088279062=>1,2088279051=>1,2088279070=>1,2088279100=>1,2088279114=>1,2088279108=>1,2088279022=>1,2088279010=>1,2088278935=>1,2088278920=>1,2088278945=>1,2088278976=>1,2088279007=>1,2088279003=>1,2088279129=>1,2088279134=>1,2088279327=>1,2088279283=>1,2088279366=>1,2088279370=>1,2088279375=>1,2088279372=>1,2088279272=>1,2088279255=>1,2088279147=>1,2088279142=>1,2088279174=>1,2088279206=>1,2088279228=>1,2088279226=>1,2088278916=>1,2088278877=>1,2088278501=>1,2088278495=>1,2088278547=>1,2088278556=>1,2088278569=>1,2088278564=>1,2088278483=>1,2088278450=>1,2088278323=>1,2088278310=>1,2088278339=>1,2088278401=>1,2088278442=>1,2088278435=>1,2088278622=>1,2088278648=>1,2088278849=>1,2088278835=>1,2088278850=>1,2088278864=>1,2088278873=>1,2088278870=>1,2088278831=>1,2088278827=>1,2088278706=>1,2088278678=>1,2088278721=>1,2088278763=>1,2088278783=>1,2088279428=>1,2088279429=>1,2088280597=>1,2088280578=>1,2088280614=>1,2088280659=>1,2088280683=>1,2088280670=>1,2088280569=>1,2088280554=>1,2088280435=>1,2088280400=>1,2088280459=>1,2088280463=>1,2088280482=>1,2088280473=>1,2088280688=>1,2088280724=>1,2088281067=>1,2088281049=>1,2088281098=>1,2088281112=>1,2088281138=>1,2088281125=>1,2088281038=>1,2088281030=>1,2088280859=>1,2088280787=>1,2088280872=>1,2088280882=>1,2088280958=>1,2088280366=>1,2088280311=>1,2088279545=>1,2088279543=>1,2088279555=>1,2088279562=>1,2088279578=>1,2088279569=>1,2088279527=>1,2088279526=>1,2088279445=>1,2088279440=>1,2088279457=>1,2088279475=>1,2088279511=>1,2088279500=>1,2088279598=>1,2088279668=>1,2088280243=>1,2088280240=>1,2088280245=>1,2088280246=>1,2088280303=>1,2088280292=>1,2088280225=>1,2088280193=>1,2088279744=>1,2088279710=>1,2088280109=>1,2088280137=>1,2088280163=>1,2088272447=>1,2088272430=>1,2088264300=>1,2088264288=>1,2088264309=>1,2088264323=>1,2088264345=>1,2088264334=>1,2088264270=>1,2088264233=>1,2088264120=>1,2088264112=>1,2088264130=>1,2088264162=>1,2088264189=>1,2088264164=>1,2088264366=>1,2088264434=>1,2088264622=>1,2088264607=>1,2088264623=>1,2088264627=>1,2088264743=>1,2088264698=>1,2088264590=>1,2088264586=>1,2088264472=>1,2088264464=>1,2088264501=>1,2088264503=>1,2088264562=>1,2088264553=>1,2088264098=>1,2088264068=>1,2088263164=>1,2088263036=>1,2088263690=>1,2088263695=>1,2088263779=>1,2088263736=>1,2088262963=>1,2088262946=>1,2088262850=>1,2088262839=>1,2088262864=>1,2088262887=>1,2088262910=>1,2088262898=>1,2088263806=>1,2088263826=>1,2088264007=>1,2088263997=>1,2088264012=>1,2088264015=>1,2088264044=>1,2088264025=>1,2088263982=>1,2088263963=>1,2088263842=>1,2088263837=>1,2088263922=>1,2088263925=>1,2088263950=>1,2088264762=>1,2088264813=>1,2088265928=>1,2088265916=>1,2088265934=>1,2088265971=>1,2088266102=>1,2088266032=>1,2088265908=>1,2088265905=>1,2088265780=>1,2088265703=>1,2088265810=>1,2088265824=>1,2088265896=>1,2088265892=>1,2088266177=>1,2088266198=>1,2088266419=>1,2088266373=>1,2088266457=>1,2088266508=>1,2088266626=>1,2088266622=>1,2088266363=>1,2088266294=>1,2088266242=>1,2088266238=>1,2088266252=>1,2088266284=>1,2088266287=>1,2088265694=>1,2088265679=>1,2088265046=>1,2088265032=>1,2088265056=>1,2088265064=>1,2088265138=>1,2088265092=>1,2088264970=>1,2088264946=>1,2088264875=>1,2088264835=>1,2088264891=>1,2088264905=>1,2088264937=>1,2088264909=>1,2088265210=>1,2088265213=>1,2088265467=>1,2088265456=>1,2088265522=>1,2088265612=>1,2088265639=>1,2088265626=>1,2088265449=>1,2088265448=>1,2088265349=>1,2088265335=>1,2088265403=>1,2088265437=>1,2088265447=>1,2088262792=>1,2088262786=>1,2088261256=>1,2088261251=>1,2088261286=>1,2088261316=>1,2088261457=>1,2088261419=>1,2088261235=>1,2088261191=>1,2088260920=>1,2088260910=>1,2088260934=>1,2088260950=>1,2088261132=>1,2088261031=>1,2088261515=>1,2088261519=>1,2088261714=>1,2088261687=>1,2088261724=>1,2088261733=>1,2088261760=>1,2088261735=>1,2088261666=>1,2088261647=>1,2088261544=>1,2088261526=>1,2088261554=>1,2088261557=>1,2088261569=>1,2088261558=>1,2088260897=>1,2088260870=>1,2088259999=>1,2088259926=>1,2088260033=>1,2088260057=>1,2088260196=>1,2088260160=>1,2088259858=>1,2088259845=>1,2088259810=>1,2088259807=>1,2088259818=>1,2088259819=>1,2088259831=>1,2088259821=>1,2088260261=>1,2088260306=>1,2088260687=>1,2088260678=>1,2088260706=>1,2088260744=>1,2088260775=>1,2088260765=>1,2088260628=>1,2088260618=>1,2088260349=>1,2088260342=>1,2088260364=>1,2088260579=>1,2088260612=>1,2088261801=>1,2088261810=>1,2088262428=>1,2088262415=>1,2088262432=>1,2088262448=>1,2088262465=>1,2088262458=>1,2088262404=>1,2088262386=>1,2088262283=>1,2088262274=>1,2088262304=>1,2088262332=>1,2088262375=>1,2088262366=>1,2088262533=>1,2088262538=>1,2088262713=>1,2088262700=>1,2088262749=>1,2088262750=>1,2088262765=>1,2088262752=>1,2088262679=>1,2088262674=>1,2088262563=>1,2088262542=>1,2088262618=>1,2088262644=>1,2088262668=>1,2088262264=>1,2088262255=>1,2088261997=>1,2088261967=>1,2088262007=>1,2088262019=>1,2088262055=>1,2088262036=>1,2088261963=>1,2088261958=>1,2088261866=>1,2088261858=>1,2088261884=>1,2088261899=>1,2088261906=>1,2088261901=>1,2088262064=>1,2088262065=>1,2088262140=>1,2088262139=>1,2088262141=>1,2088262156=>1,2088262237=>1,2088262172=>1,2088262116=>1,2088262111=>1,2088262068=>1,2088262066=>1,2088262071=>1,2088262080=>1,2088262088=>1,2088266650=>1,2088266676=>1,2088270339=>1,2088270338=>1,2088270387=>1,2088270388=>1,2088270443=>1,2088270416=>1,2088270298=>1,2088270290=>1,2088270159=>1,2088270156=>1,2088270165=>1,2088270188=>1,2088270203=>1,2088270193=>1,2088270444=>1,2088270476=>1,2088270638=>1,2088270580=>1,2088270662=>1,2088270670=>1,2088270800=>1,2088270676=>1,2088270575=>1,2088270574=>1,2088270516=>1,2088270509=>1,2088270545=>1,2088270556=>1,2088270563=>1,2088270557=>1,2088270153=>1,2088270125=>1,2088269537=>1,2088269526=>1,2088269560=>1,2088269567=>1,2088269580=>1,2088269573=>1,2088269525=>1,2088269452=>1,2088269299=>1,2088269290=>1,2088269310=>1,2088269316=>1,2088269437=>1,2088269407=>1,2088269598=>1,2088269621=>1,2088270001=>1,2088269981=>1,2088270054=>1,2088270082=>1,2088270094=>1,2088270093=>1,2088269978=>1,2088269801=>1,2088269714=>1,2088269690=>1,2088269776=>1,2088269790=>1,2088269796=>1,2088270805=>1,2088270853=>1,2088271866=>1,2088271818=>1,2088271886=>1,2088271951=>1,2088271972=>1,2088271968=>1,2088271806=>1,2088271779=>1,2088271645=>1,2088271635=>1,2088271680=>1,2088271686=>1,2088271777=>1,2088271720=>1,2088271982=>1,2088271993=>1,2088272325=>1,2088272261=>1,2088272340=>1,2088272362=>1,2088272387=>1,2088272366=>1,2088272230=>1,2088272117=>1,2088272010=>1,2088272008=>1,2088272055=>1,2088272111=>1,2088272114=>1,2088271593=>1,2088271577=>1,2088271225=>1,2088271097=>1,2088271252=>1,2088271283=>1,2088271365=>1,2088271331=>1,2088271062=>1,2088271037=>1,2088270882=>1,2088270880=>1,2088270893=>1,2088270911=>1,2088271022=>1,2088270991=>1,2088271368=>1,2088271380=>1,2088271487=>1,2088271478=>1,2088271489=>1,2088271512=>1,2088271539=>1,2088271519=>1,2088271452=>1,2088271437=>1,2088271415=>1,2088271402=>1,2088271416=>1,2088271421=>1,2088271431=>1,2088269211=>1,2088269175=>1,2088267490=>1,2088267487=>1,2088267553=>1,2088267555=>1,2088267601=>1,2088267567=>1,2088267449=>1,2088267409=>1,2088267282=>1,2088267275=>1,2088267308=>1,2088267365=>1,2088267377=>1,2088267375=>1,2088267619=>1,2088267624=>1,2088267852=>1,2088267847=>1,2088267861=>1,2088267865=>1,2088267909=>1,2088267902=>1,2088267844=>1,2088267812=>1,2088267663=>1,2088267644=>1,2088267756=>1,2088267781=>1,2088267807=>1,2088267797=>1,2088267250=>1,2088267233=>1,2088266823=>1,2088266822=>1,2088266826=>1,2088266846=>1,2088266853=>1,2088266851=>1,2088266798=>1,2088266776=>1,2088266684=>1,2088266681=>1,2088266691=>1,2088266694=>1,2088266762=>1,2088266720=>1,2088266863=>1,2088266879=>1,2088267083=>1,2088267060=>1,2088267088=>1,2088267092=>1,2088267203=>1,2088267200=>1,2088267058=>1,2088267057=>1,2088266957=>1,2088266951=>1,2088266969=>1,2088267025=>1,2088267032=>1,2088267921=>1,2088267960=>1,2088268709=>1,2088268705=>1,2088268841=>1,2088268850=>1,2088268871=>1,2088268861=>1,2088268678=>1,2088268674=>1,2088268539=>1,2088268513=>1,2088268542=>1,2088268552=>1,2088268609=>1,2088268556=>1,2088268901=>1,2088268964=>1,2088269077=>1,2088269075=>1,2088269103=>1,2088269115=>1,2088269161=>1,2088269142=>1,2088269072=>1,2088269049=>1,2088269002=>1,2088268970=>1,2088269015=>1,2088269024=>1,2088269045=>1,2088268498=>1,2088268487=>1,2088268135=>1,2088268126=>1,2088268168=>1,2088268170=>1,2088268183=>1,2088268174=>1,2088268121=>1,2088268091=>1,2088268012=>1,2088267987=>1,2088268038=>1,2088268040=>1,2088268052=>1,2088268043=>1,2088268202=>1,2088268218=>1,2088268390=>1,2088268376=>1,2088268398=>1,2088268414=>1,2088268427=>1,2088268424=>1,2088268316=>1,2088268304=>1,2088268232=>1,2088268227=>1,2088268240=>1,2088268248=>1,2088268290=>1,2088259802=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-27.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3107442688=>3107443711,3105445632=>3105445887,3105444864=>3105445119,3104957865=>1,3104946404=>1,3104976035=>1,3104978054=>1,3105052468=>1,3105016023=>1,3104936074=>1,3104848979=>1,3104877910=>1,3104877908=>1,3104884912=>1,3104903828=>1,3105054051=>1,3104877723=>1,3105054254=>1,3105186979=>1,3105186866=>1,3105216652=>1,3105216695=>1,3105270932=>1,3105216778=>1,3105180709=>1,3105180707=>1,3105077418=>1,3104842920=>1,3105089646=>1,3105124628=>1,3105180706=>1,3105054163=>1,3104830588=>1,3104646569=>1,3104630514=>1,3104646731=>1,3104646853=>1,3104647109=>1,3104646861=>1,3104575347=>1,3104574597=>1,3104370315=>1,3104370128=>1,3104432528=>1,3104458603=>1,3104521250=>1,3104511595=>1,3104709738=>1,3104709741=>1,3104779060=>1,3104779059=>1,3104779061=>1,3104779062=>1,3105270950=>1,3104792078=>1,3104766060=>1,3104766031=>1,3104710213=>1,3104709786=>1,3104710239=>1,3104740817=>1,3104750064=>1,3104749942=>1,3104830698=>1,3105325802=>1,3106013372=>1,3106013336=>1,3106017400=>1,3106021634=>1,3106109997=>1,3106028587=>1,3106008938=>1,3105938916=>1,3105872426=>1,3105851636=>1,3105875525=>1,3105887451=>1,3105938889=>1,3105923094=>1,3106110034=>1,3106130653=>1,3106444803=>1,3106313805=>1,3106446484=>1,3106604454=>1,3106604460=>1,3106604456=>1,3106279127=>1,3106267965=>1,3106224009=>1,3106170001=>1,3106231566=>1,3106246956=>1,3106247344=>1,3105836398=>1,3105836350=>1,3105497567=>1,3105478893=>1,3105497693=>1,3105520761=>1,3105528846=>1,3105528844=>1,3105462068=>1,3105453410=>1,3105413957=>1,3104370119=>1,3105414001=>1,3105435702=>1,3105436039=>1,3105528860=>1,3105528872=>1,3105687684=>1,3105669474=>1,3105707109=>1,3105744978=>1,3105775898=>1,3105775890=>1,3105669471=>1,3105625693=>1,3105528879=>1,3105528878=>1,3105539341=>1,3105548506=>1,3105599256=>1,3105270988=>1,3104369795=>1,3091753524=>1,3091734228=>1,3091872288=>1,3091914803=>1,3091978447=>1,3091915030=>1,3091603946=>1,3091547002=>1,3090811487=>1,3090748310=>1,3090897299=>1,3091076839=>1,3091349734=>1,3091207381=>1,3091978898=>1,3091978909=>1,3093339962=>1,3093312260=>1,3093936274=>1,3093945368=>1,3093998332=>1,3093982708=>1,3093248219=>1,3093247180=>1,3091978930=>1,3091978916=>1,3091978956=>1,3092157491=>1,3092937090=>1,3092931150=>1,3090279686=>1,3090278890=>1,3085936506=>1,3085931124=>1,3085938058=>1,3086008546=>1,3086008550=>1,3086008547=>1,3085862187=>1,3085825634=>1,3085317556=>1,3085317551=>1,3085317573=>1,3085317584=>1,3085578441=>1,3085334410=>1,3086217148=>1,3086370087=>1,3088395435=>1,3088331647=>1,3088497703=>1,3088564360=>1,3089305116=>1,3089139909=>1,3087413915=>1,3086751477=>1,3086458565=>1,3086458556=>1,3086460592=>1,3086660366=>1,3086750339=>1,3094009698=>1,3094036078=>1,3098479149=>1,3098375795=>1,3098556931=>1,3098556936=>1,3098760543=>1,3098579518=>1,3098306818=>1,3098192537=>1,3098166461=>1,3098031969=>1,3098166645=>1,3098169903=>1,3098175624=>1,3098171030=>1,3098860756=>1,3099002315=>1,3104170967=>1,3104169772=>1,3104247322=>1,3104276370=>1,3104325392=>1,3104281678=>1,3104169749=>1,3104169748=>1,3099579778=>1,3099269102=>1,3104064151=>1,3104070723=>1,3104115132=>1,3097997340=>1,3097793285=>1,3095391984=>1,3095391518=>1,3095392091=>1,3095392133=>1,3095395628=>1,3095395459=>1,3094805565=>1,3094805513=>1,3094061714=>1,3094060955=>1,3094061715=>1,3094061716=>1,3094061718=>1,3094061717=>1,3095395751=>1,3095396153=>1,3097286459=>1,3097138683=>1,3097727914=>1,3097774882=>1,3097793030=>1,3097789554=>1,3097115235=>1,3097109511=>1,3097048295=>1,3096775244=>1,3097073464=>1,3097080033=>1,3097102266=>1,3106604461=>1,3106604706=>1,3110360645=>1,3110360564=>1,3110360662=>1,3110360676=>1,3110360843=>1,3110360704=>1,3110360563=>1,3110360527=>1,3110360467=>1,3110360458=>1,3110360488=>1,3110360510=>1,3110360512=>1,3110360511=>1,3110360853=>1,3110381720=>1,3110463090=>1,3110444173=>1,3110465029=>1,3110465045=>1,3110581157=>1,3110536202=>1,3110431677=>1,3110431624=>1,3110413113=>1,3110381729=>1,3110428142=>1,3110428252=>1,3110431605=>1,3110431601=>1,3110360452=>1,3110360421=>1,3110058113=>1,3110057987=>1,3110058378=>1,3110058380=>1,3110071704=>1,3110058381=>1,3109926245=>1,3109877739=>1,3109520224=>1,3109509128=>1,3109527687=>1,3109767554=>1,3109871156=>1,3109870676=>1,3110071766=>1,3110071790=>1,3110360239=>1,3110360172=>1,3110360276=>1,3110360315=>1,3110360394=>1,3110360381=>1,3110360146=>1,3110267106=>1,3110122525=>1,3110098973=>1,3110173649=>1,3110173650=>1,3110173651=>1,3110603046=>1,3110631426=>1,3120615565=>1,3112306457=>1,3120619018=>1,3120619027=>1,3120860770=>1,3120674430=>1,3112306118=>1,3112255039=>1,3112182823=>1,3112182822=>1,3112182824=>1,3112182825=>1,3112255038=>1,3112182826=>1,3121175249=>1,3121218954=>1,3121498990=>1,3121495740=>1,3121504590=>1,3121504845=>1,3121510403=>1,3121508015=>1,3121488837=>1,3121482922=>1,3121218956=>1,3121218955=>1,3121218957=>1,3121218958=>1,3121482880=>1,3112182821=>1,3112182815=>1,3110763151=>1,3110763094=>1,3110895621=>1,3110965255=>1,3111122163=>1,3111117855=>1,3110762649=>1,3110762537=>1,3110631428=>1,3110631427=>1,3110631431=>1,3110636752=>1,3110755396=>1,3110726885=>1,3111163054=>1,3111165319=>1,3111649224=>1,3111560689=>1,3112032578=>1,3112032865=>1,3112182789=>1,3112032885=>1,3111507715=>1,3111473796=>1,3111354010=>1,3111165401=>1,3111441710=>1,3111471130=>1,3111471381=>1,3109459814=>1,3109459448=>1,3107818002=>1,3107804665=>1,3107820555=>1,3107820624=>1,3107820685=>1,3107820637=>1,3107754741=>1,3107754737=>1,3107751737=>1,3107751565=>1,3107754015=>1,3107754016=>1,3107754717=>1,3107754017=>1,3107820722=>1,3107820733=>1,3107821042=>1,3107820993=>1,3107896870=>1,3107930185=>1,3107962240=>1,3107939671=>1,3107820919=>1,3107820918=>1,3107820772=>1,3107820743=>1,3107820841=>1,3107820843=>1,3107820916=>1,3107820851=>1,3107698762=>1,3107659498=>1,3106802220=>1,3106752399=>1,3106802288=>1,3106877578=>1,3106960376=>1,3106878522=>1,3106737498=>1,3106727480=>1,3106604938=>1,3085317548=>1,3106604946=>1,3106604947=>1,3106727064=>1,3106604949=>1,3106962782=>1,3107017922=>1,3107463112=>1,3107301693=>1,3107476518=>1,3107589954=>1,3107643839=>1,3107591623=>1,3107272571=>1,3107272531=>1,3107110906=>1,3107026451=>1,3107116916=>1,3107121433=>1,3107193552=>1,3107962701=>1,3107962868=>1,3109214248=>1,3109210802=>1,3109214489=>1,3109214594=>1,3109280478=>1,3109275041=>1,3109210422=>1,3109210320=>1,3108864390=>1,3108802925=>1,3109033049=>1,3109084830=>1,3109164137=>1,3109084836=>1,3109389154=>1,3109441091=>1,3109459098=>1,3109459094=>1,3109459106=>1,3109459253=>1,3109459405=>1,3109459327=>1,3109459081=>1,3109459050=>1,3109458961=>1,3109441316=>1,3109458971=>1,3109458995=>1,3109459031=>1,3108802346=>1,3108714622=>1,3108246597=>1,3108239105=>1,3108269881=>1,3108281168=>1,3108458646=>1,3108333690=>1,3108174477=>1,3108112911=>1,3107983777=>1,3107978284=>1,3107983785=>1,3108075910=>1,3108096093=>1,3108079587=>1,3108548646=>1,3108548724=>1,3108580410=>1,3108580406=>1,3108625995=>1,3108714600=>1,3108714614=>1,3108714606=>1,3108579261=>1,3108578822=>1,3108549185=>1,3108548744=>1,3108563747=>1,3108566053=>1,3108566929=>1,3106604704=>1,3085317523=>1,3070042542=>1,3070042468=>1,3070042544=>1,3070042562=>1,3070042659=>1,3070042641=>1,3070042349=>1,3070042330=>1,3070038874=>1,3070034970=>1,3070039858=>1,3070040772=>1,3070042199=>1,3070040818=>1,3070042700=>1,3070042719=>1,3070043296=>1,3070043239=>1,3070043351=>1,3070043416=>1,3070043481=>1,3070043451=>1,3070043204=>1,3070043171=>1,3070042938=>1,3070042758=>1,3070042942=>1,3070043014=>1,3070043081=>1,3070043078=>1,3069410520=>1,3068985989=>1,3063700026=>1,3063698790=>1,3063965330=>1,3063968482=>1,3063971085=>1,3063969132=>1,3063698788=>1,3063258328=>1,3061772092=>1,3061415695=>1,3061772236=>1,3062685088=>1,3063258315=>1,3062685095=>1,3063971090=>1,3063971526=>1,3067674076=>1,3066626090=>1,3068491199=>1,3068839911=>1,3068911073=>1,3068878828=>1,3065988389=>1,3065298473=>1,3064106247=>1,3064105120=>1,3064150068=>1,3064150074=>1,3064150104=>1,3070043512=>1,3070043531=>1,3070065458=>1,3070065454=>1,3070065465=>1,3070065467=>1,3070065469=>1,3070065468=>1,3070065446=>1,3070065441=>1,3070065202=>1,3070065199=>1,3070065204=>1,3070065221=>1,3070065430=>1,3070065423=>1,3070065472=>1,3070065474=>1,3070079290=>1,3070079198=>1,3070079401=>1,3070079614=>1,3070079714=>1,3070079682=>1,3070073442=>1,3070073419=>1,3070070534=>1,3070067280=>1,3070070538=>1,3070072857=>1,3070072987=>1,3070065172=>1,3070065165=>1,3070044034=>1,3070043969=>1,3070044128=>1,3070044574=>1,3070046689=>1,3070046423=>1,3070043752=>1,3070043742=>1,3070043583=>1,3070043567=>1,3070043601=>1,3070043683=>1,3070043731=>1,3070043691=>1,3070052441=>1,3070052444=>1,3070064955=>1,3070064913=>1,3070065056=>1,3070065066=>1,3070065164=>1,3070065162=>1,3070052926=>1,3070052769=>1,3070052604=>1,3070052580=>1,3070052675=>1,3070052703=>1,3070052749=>1,3061310785=>1,3061302804=>1,3050792675=>1,3050791674=>1,3050802962=>1,3051292727=>1,3051436097=>1,3051329584=>1,3050664678=>1,3050553315=>1,3050320396=>1,3050312362=>1,3050329048=>1,3050331181=>1,3050514330=>1,3050352902=>1,3051436327=>1,3051436480=>1,3054971042=>1,3054969114=>1,3054972994=>1,3054972995=>1,3054974204=>1,3054972996=>1,3054965426=>1,3054712438=>1,3051645889=>1,3051437345=>1,3051657304=>1,3051711643=>1,3051776804=>1,3051719691=>1,3050308491=>1,3049751389=>1,3049027063=>1,3049027016=>1,3049027255=>1,3049028305=>1,3049028538=>1,3049028489=>1,3049025210=>1,3049024544=>1,3049023041=>1,3049022344=>1,3049024274=>1,3049024302=>1,3049024438=>1,3049024309=>1,3049028564=>1,3049028721=>1,3049559802=>1,3049557372=>1,3049559803=>1,3049634055=>1,3049751102=>1,3049673172=>1,3049525322=>1,3049113833=>1,3049029199=>1,3049028801=>1,3049029225=>1,3049029440=>1,3049046434=>1,3054981651=>1,3054981894=>1,3059366041=>1,3059356882=>1,3059366307=>1,3059379604=>1,3059502308=>1,3059449474=>1,3059355270=>1,3059287442=>1,3058365230=>1,3058365228=>1,3058422942=>1,3059272748=>1,3059287194=>1,3059278945=>1,3059520583=>1,3059521260=>1,3059608854=>1,3059608758=>1,3059608934=>1,3059610166=>1,3061188413=>1,3059891330=>1,3059605878=>1,3059603874=>1,3059537138=>1,3059530775=>1,3059542026=>1,3059544805=>1,3059546891=>1,3058365227=>1,3058285386=>1,3056763291=>1,3056652915=>1,3056763385=>1,3056769331=>1,3056876880=>1,3056769493=>1,3056650251=>1,3056625162=>1,3055420393=>1,3054981909=>1,3056469705=>1,3056622270=>1,3056625160=>1,3056625156=>1,3056890941=>1,3056900122=>1,3058216638=>1,3058180510=>1,3058229402=>1,3058232913=>1,3058268854=>1,3058238738=>1,3058130442=>1,3057931119=>1,3056979225=>1,3056961049=>1,3056979427=>1,3056985956=>1,3057458044=>1,3070079727=>1,3070079747=>1,3083854892=>1,3083842790=>1,3083854969=>1,3083854970=>1,3083880742=>1,3083855915=>1,3083820829=>1,3083540296=>1,3082180961=>1,3082179659=>1,3082180977=>1,3082181150=>1,3083108583=>1,3083048980=>1,3083914828=>1,3083936304=>1,3084520744=>1,3084520722=>1,3084520753=>1,3084520762=>1,3084520788=>1,3084520779=>1,3084508802=>1,3084437782=>1,3084076818=>1,3083985387=>1,3084168665=>1,3084421760=>1,3084430257=>1,3084427892=>1,3082134738=>1,3082134708=>1,3078854883=>1,3078854608=>1,3079198048=>1,3079204689=>1,3079321696=>1,3079313645=>1,3078835227=>1,3078747319=>1,3077548495=>1,3077548494=>1,3077548496=>1,3077548497=>1,3078747318=>1,3078719202=>1,3079446927=>1,3079447325=>1,3079491063=>1,3079490295=>1,3079491389=>1,3081856011=>1,3082107558=>1,3081983842=>1,3079489856=>1,3079487973=>1,3079448274=>1,3079447531=>1,3079448381=>1,3079487541=>1,3079487734=>1,3084520811=>1,3084520813=>1,3084880017=>1,3084855471=>1,3084880152=>1,3084932672=>1,3085044958=>1,3084935514=>1,3084851322=>1,3084796355=>1,3084751665=>1,3084751650=>1,3084751698=>1,3084751731=>1,3084796072=>1,3084770709=>1,3085144550=>1,3085175159=>1,3085317483=>1,3085317480=>1,3085317485=>1,3085317496=>1,3085317508=>1,3085317497=>1,3085317460=>1,3085317455=>1,3085191263=>1,3085175708=>1,3085203760=>1,3085317400=>1,3085317401=>1,3084751648=>1,3084749752=>1,3084520942=>1,3084520918=>1,3084520947=>1,3084520992=>1,3084521134=>1,3084521058=>1,3084520864=>1,3084520840=>1,3084520815=>1,3084520814=>1,3084520823=>1,3084520834=>1,3084520837=>1,3084520835=>1,3084529859=>1,3084533988=>1,3084618579=>1,3084590969=>1,3084621544=>1,3084624885=>1,3084749683=>1,3084687968=>1,3084590814=>1,3084590340=>1,3084534765=>1,3084534474=>1,3084548840=>1,3084556878=>1,3084585814=>1,3077548492=>1,3077548491=>1,3073973155=>1,3073940114=>1,3073987143=>1,3073987146=>1,3074199417=>1,3074197712=>1,3073637782=>1,3073135612=>1,3071385843=>1,3071375638=>1,3071673044=>1,3071754465=>1,3072718343=>1,3072439080=>1,3074215944=>1,3074216096=>1,3074346706=>1,3074341422=>1,3074358035=>1,3074391370=>1,3074755786=>1,3074392411=>1,3074308858=>1,3074288695=>1,3074216113=>1,3074216112=>1,3074216116=>1,3074232339=>1,3074288694=>1,3074288693=>1,3071286321=>1,3071284002=>1,3070085452=>1,3070085387=>1,3070085454=>1,3070086244=>1,3070086770=>1,3070086714=>1,3070085386=>1,3070082922=>1,3070079820=>1,3070079814=>1,3070080119=>1,3070080237=>1,3070082722=>1,3070082450=>1,3070087627=>1,3070091148=>1,3070161982=>1,3070158227=>1,3071273764=>1,3071274774=>1,3071276520=>1,3071275060=>1,3070157473=>1,3070155416=>1,3070135424=>1,3070091364=>1,3070137691=>1,3070138678=>1,3070139341=>1,3075385660=>1,3075385661=>1,3076103330=>1,3076103023=>1,3076103586=>1,3076117026=>1,3076117281=>1,3076117140=>1,3076102875=>1,3076102296=>1,3076100229=>1,3076097780=>1,3076100662=>1,3076101223=>1,3076101873=>1,3076101668=>1,3076117449=>1,3076117652=>1,3076216612=>1,3076216611=>1,3076477284=>1,3076632134=>1,3077548490=>1,3077548489=>1,3076216610=>1,3076211800=>1,3076176217=>1,3076120789=>1,3076197815=>1,3076211794=>1,3076211799=>1,3076096199=>1,3076092756=>1,3076006046=>1,3075965426=>1,3076006247=>1,3076008781=>1,3076010123=>1,3076010096=>1,3075962382=>1,3075962381=>1,3075605420=>1,3075558819=>1,3075622096=>1,3075639415=>1,3075920583=>1,3075686964=>1,3076011366=>1,3076011824=>1,3076083134=>1,3076083041=>1,3076083812=>1,3076084060=>1,3076085265=>1,3076084865=>1,3076082374=>1,3076082219=>1,3076027013=>1,3076023674=>1,3076030884=>1,3076078894=>1,3076082034=>1,3049022310=>1,);?>
1
+ <?php return array(2088300466=>1,2088300460=>1,2088300503=>1,2088300542=>1,2088300580=>1,2088300566=>1,2088300453=>1,2088300443=>1,2088300395=>1,2088300386=>1,2088300430=>1,2088300435=>1,2088300442=>1,2088300441=>1,2088300592=>1,2088300607=>1,2088300827=>1,2088300824=>1,2088300876=>1,2088300877=>1,2088300902=>1,2088300896=>1,2088300791=>1,2088300781=>1,2088300715=>1,2088300677=>1,2088300752=>1,2088300757=>1,2088300779=>1,2088300770=>1,2088300381=>1,2088300379=>1,2088300114=>1,2088300107=>1,2088300116=>1,2088300124=>1,2088300176=>1,2088300159=>1,2088300101=>1,2088300090=>1,2088300030=>1,2088299994=>1,2088300034=>1,2088300035=>1,2088300084=>1,2088300073=>1,2088300229=>1,2088300230=>1,2088300339=>1,2088300328=>1,2088300349=>1,2088300353=>1,2088300373=>1,2088300361=>1,2088300323=>1,2088300316=>1,2088300245=>1,2088300236=>1,2088300275=>1,2088300280=>1,2088300284=>1,2088300910=>1,2088300960=>1,2088301954=>1,2088301924=>1,2088301958=>1,2088302008=>1,2088302106=>1,2088302104=>1,2088301922=>1,2088301902=>1,2088301743=>1,2088301678=>1,2088301788=>1,2088301833=>1,2088301887=>1,2088301881=>1,2088302122=>1,2088302123=>1,2088302342=>1,2088302327=>1,2088302348=>1,2088302349=>1,2088302387=>1,2088302354=>1,2088302305=>1,2088302263=>1,2088302154=>1,2088302134=>1,2088302172=>1,2088302191=>1,2088302260=>1,2088302249=>1,2088301661=>1,2088301642=>1,2088301144=>1,2088301141=>1,2088301170=>1,2088301194=>1,2088301204=>1,2088301198=>1,2088301136=>1,2088301101=>1,2088300997=>1,2088300991=>1,2088301021=>1,2088301032=>1,2088301099=>1,2088301039=>1,2088301251=>1,2088301285=>1,2088301436=>1,2088301434=>1,2088301443=>1,2088301445=>1,2088301571=>1,2088301515=>1,2088301423=>1,2088301404=>1,2088301328=>1,2088301289=>1,2088301349=>1,2088301350=>1,2088301367=>1,2088299993=>1,2088299990=>1,2088298874=>1,2088298866=>1,2088298889=>1,2088298910=>1,2088298926=>1,2088298914=>1,2088298841=>1,2088298838=>1,2088298803=>1,2088298717=>1,2088298805=>1,2088298817=>1,2088298825=>1,2088298823=>1,2088298935=>1,2088298944=>1,2088299058=>1,2088299050=>1,2088299059=>1,2088299097=>1,2088299100=>1,2088299098=>1,2088299043=>1,2088299020=>1,2088298990=>1,2088298980=>1,2088299001=>1,2088299004=>1,2088299013=>1,2088299006=>1,2088298704=>1,2088298693=>1,2088298236=>1,2088298234=>1,2088298238=>1,2088298275=>1,2088298286=>1,2088298283=>1,2088298220=>1,2088298199=>1,2088297991=>1,2088297972=>1,2088298013=>1,2088298113=>1,2088298171=>1,2088298164=>1,2088298294=>1,2088298314=>1,2088298532=>1,2088298488=>1,2088298544=>1,2088298573=>1,2088298615=>1,2088298594=>1,2088298486=>1,2088298431=>1,2088298352=>1,2088298329=>1,2088298389=>1,2088298398=>1,2088298430=>1,2088299118=>1,2088299123=>1,2088299703=>1,2088299702=>1,2088299742=>1,2088299750=>1,2088299767=>1,2088299763=>1,2088299701=>1,2088299684=>1,2088299623=>1,2088299612=>1,2088299635=>1,2088299645=>1,2088299680=>1,2088299652=>1,2088299788=>1,2088299799=>1,2088299909=>1,2088299890=>1,2088299926=>1,2088299952=>1,2088299979=>1,2088299960=>1,2088299856=>1,2088299834=>1,2088299805=>1,2088299801=>1,2088299809=>1,2088299820=>1,2088299824=>1,2088299608=>1,2088299600=>1,2088299198=>1,2088299194=>1,2088299202=>1,2088299237=>1,2088299277=>1,2088299273=>1,2088299191=>1,2088299184=>1,2088299156=>1,2088299147=>1,2088299162=>1,2088299165=>1,2088299169=>1,2088299166=>1,2088299280=>1,2088299281=>1,2088299433=>1,2088299427=>1,2088299465=>1,2088299513=>1,2088299594=>1,2088299533=>1,2088299412=>1,2088299407=>1,2088299314=>1,2088299307=>1,2088299357=>1,2088299361=>1,2088299362=>1,2088302424=>1,2088302450=>1,2088371438=>1,2088371425=>1,2088371440=>1,2088371451=>1,2088371463=>1,2088371461=>1,2088371408=>1,2088371348=>1,2088371288=>1,2088371268=>1,2088371292=>1,2088371308=>1,2088371343=>1,2088371318=>1,2088371465=>1,2088371469=>1,2088371635=>1,2088371594=>1,2088371638=>1,2088371653=>1,2088371668=>1,2088371662=>1,2088371591=>1,2088371588=>1,2088371509=>1,2088371484=>1,2088371532=>1,2088371537=>1,2088371585=>1,2088371547=>1,2088371251=>1,2088371240=>1,2088370951=>1,2088370895=>1,2088370987=>1,2088370991=>1,2088371022=>1,2088371018=>1,2088370867=>1,2088370855=>1,2088370655=>1,2088370648=>1,2088370670=>1,2088370738=>1,2088370805=>1,2088370792=>1,2088371025=>1,2088371041=>1,2088371164=>1,2088371151=>1,2088371168=>1,2088371177=>1,2088371211=>1,2088371182=>1,2088371130=>1,2088371126=>1,2088371067=>1,2088371050=>1,2088371090=>1,2088371092=>1,2088371124=>1,2088371685=>1,2088371687=>1,2088374846=>1,2088374804=>1,2088374914=>1,2088374935=>1,2088374950=>1,2088374947=>1,2088374689=>1,2088374673=>1,2088374280=>1,2088374240=>1,2088374447=>1,2088374560=>1,2088374642=>1,2088374568=>1,2088374952=>1,2088374954=>1,2088375156=>1,2088375123=>1,2088375305=>1,2088375310=>1,2088375359=>1,2088375312=>1,2088375085=>1,2088375083=>1,2088374980=>1,2088374957=>1,2088375004=>1,2088375040=>1,2088375058=>1,2088374218=>1,2088374171=>1,2088371913=>1,2088371889=>1,2088371921=>1,2088371935=>1,2088371978=>1,2088371937=>1,2088371862=>1,2088371849=>1,2088371705=>1,2088371697=>1,2088371736=>1,2088371775=>1,2088371825=>1,2088371778=>1,2088372018=>1,2088372151=>1,2088374020=>1,2088373952=>1,2088374026=>1,2088374039=>1,2088374162=>1,2088374160=>1,2088373917=>1,2088373858=>1,2088372189=>1,2088372166=>1,2088373785=>1,2088373794=>1,2088373856=>1,2088370602=>1,2088370583=>1,2088303147=>1,2088303144=>1,2088303157=>1,2088303187=>1,2088303208=>1,2088303202=>1,2088303141=>1,2088303132=>1,2088303092=>1,2088303082=>1,2088303094=>1,2088303097=>1,2088303131=>1,2088303128=>1,2088303209=>1,2088303214=>1,2088303346=>1,2088303345=>1,2088303358=>1,2088303393=>1,2088303452=>1,2088303436=>1,2088303333=>1,2088303292=>1,2088303252=>1,2088303248=>1,2088303266=>1,2088303272=>1,2088303288=>1,2088303286=>1,2088303074=>1,2088303071=>1,2088302691=>1,2088302682=>1,2088302694=>1,2088302709=>1,2088302761=>1,2088302717=>1,2088302625=>1,2088302618=>1,2088302489=>1,2088302478=>1,2088302524=>1,2088302527=>1,2088302608=>1,2088302601=>1,2088302769=>1,2088302771=>1,2088302985=>1,2088302959=>1,2088303012=>1,2088303039=>1,2088303063=>1,2088303061=>1,2088302957=>1,2088302881=>1,2088302851=>1,2088302813=>1,2088302854=>1,2088302867=>1,2088302874=>1,2088303461=>1,2088303509=>1,2088304266=>1,2088304265=>1,2088304309=>1,2088304314=>1,2088304336=>1,2088304325=>1,2088304257=>1,2088304256=>1,2088304197=>1,2088304174=>1,2088304200=>1,2088304210=>1,2088304232=>1,2088304223=>1,2088304340=>1,2088304352=>1,2088370410=>1,2088370383=>1,2088370416=>1,2088370441=>1,2088370581=>1,2088370550=>1,2088370358=>1,2088370297=>1,2088370189=>1,2088304358=>1,2088370217=>1,2088370233=>1,2088370248=>1,2088304164=>1,2088304163=>1,2088303728=>1,2088303656=>1,2088303732=>1,2088303803=>1,2088303823=>1,2088303814=>1,2088303634=>1,2088303619=>1,2088303567=>1,2088303511=>1,2088303573=>1,2088303576=>1,2088303612=>1,2088303582=>1,2088303824=>1,2088303862=>1,2088304029=>1,2088304026=>1,2088304053=>1,2088304117=>1,2088304162=>1,2088304130=>1,2088304019=>1,2088304015=>1,2088303875=>1,2088303867=>1,2088303932=>1,2088303958=>1,2088303972=>1,2088297970=>1,2088297946=>1,2088288028=>1,2088288023=>1,2088288032=>1,2088288034=>1,2088288067=>1,2088288062=>1,2088287983=>1,2088287969=>1,2088287878=>1,2088287855=>1,2088287919=>1,2088287923=>1,2088287928=>1,2088287926=>1,2088288069=>1,2088288070=>1,2088288237=>1,2088288234=>1,2088289041=>1,2088289042=>1,2088289056=>1,2088289048=>1,2088288230=>1,2088288207=>1,2088288139=>1,2088288086=>1,2088288145=>1,2088288150=>1,2088288195=>1,2088288156=>1,2088287840=>1,2088287838=>1,2088287503=>1,2088287491=>1,2088287511=>1,2088287516=>1,2088287579=>1,2088287549=>1,2088287484=>1,2088287482=>1,2088287392=>1,2088287340=>1,2088287414=>1,2088287421=>1,2088287466=>1,2088287439=>1,2088287609=>1,2088287631=>1,2088287797=>1,2088287762=>1,2088287801=>1,2088287813=>1,2088287831=>1,2088287829=>1,2088287761=>1,2088287725=>1,2088287638=>1,2088287636=>1,2088287687=>1,2088287688=>1,2088287702=>1,2088289068=>1,2088289069=>1,2088289551=>1,2088289546=>1,2088289555=>1,2088289586=>1,2088289616=>1,2088289599=>1,2088289539=>1,2088289537=>1,2088289481=>1,2088289472=>1,2088289502=>1,2088289523=>1,2088289533=>1,2088289524=>1,2088289618=>1,2088289625=>1,2088289712=>1,2088289705=>1,2088289742=>1,2088289747=>1,2088289835=>1,2088289805=>1,2088289687=>1,2088289685=>1,2088289650=>1,2088289633=>1,2088289659=>1,2088289666=>1,2088289676=>1,2088289471=>1,2088289446=>1,2088289208=>1,2088289200=>1,2088289229=>1,2088289243=>1,2088289252=>1,2088289244=>1,2088289187=>1,2088289171=>1,2088289089=>1,2088289082=>1,2088289143=>1,2088289147=>1,2088289161=>1,2088289148=>1,2088289274=>1,2088289277=>1,2088289372=>1,2088289365=>1,2088289379=>1,2088289393=>1,2088289407=>1,2088289401=>1,2088289361=>1,2088289347=>1,2088289308=>1,2088289286=>1,2088289312=>1,2088289325=>1,2088289340=>1,2088287337=>1,2088287267=>1,2088285476=>1,2088285435=>1,2088285531=>1,2088285546=>1,2088285568=>1,2088285560=>1,2088285397=>1,2088285390=>1,2088285326=>1,2088285279=>1,2088285340=>1,2088285356=>1,2088285373=>1,2088285367=>1,2088285587=>1,2088285589=>1,2088285844=>1,2088285826=>1,2088285893=>1,2088285896=>1,2088285975=>1,2088285955=>1,2088285824=>1,2088285809=>1,2088285617=>1,2088285601=>1,2088285653=>1,2088285658=>1,2088285784=>1,2088285674=>1,2088285247=>1,2088285164=>1,2088284789=>1,2088284771=>1,2088284802=>1,2088284827=>1,2088284936=>1,2088284882=>1,2088284759=>1,2088284712=>1,2088284543=>1,2088284491=>1,2088284560=>1,2088284608=>1,2088284699=>1,2088284691=>1,2088284951=>1,2088284957=>1,2088285118=>1,2088285112=>1,2088285127=>1,2088285133=>1,2088285143=>1,2088285138=>1,2088285108=>1,2088285057=>1,2088284978=>1,2088284969=>1,2088284988=>1,2088285012=>1,2088285039=>1,2088285978=>1,2088285987=>1,2088286635=>1,2088286581=>1,2088286647=>1,2088286663=>1,2088286690=>1,2088286668=>1,2088286578=>1,2088286539=>1,2088286453=>1,2088286433=>1,2088286469=>1,2088286471=>1,2088286537=>1,2088286487=>1,2088286718=>1,2088286729=>1,2088287075=>1,2088287069=>1,2088287102=>1,2088287174=>1,2088287239=>1,2088287189=>1,2088287065=>1,2088287032=>1,2088286791=>1,2088286732=>1,2088286800=>1,2088286994=>1,2088287000=>1,2088286405=>1,2088286382=>1,2088286101=>1,2088286080=>1,2088286105=>1,2088286110=>1,2088286133=>1,2088286114=>1,2088286074=>1,2088286073=>1,2088286011=>1,2088286008=>1,2088286014=>1,2088286034=>1,2088286068=>1,2088286059=>1,2088286134=>1,2088286157=>1,2088286296=>1,2088286285=>1,2088286309=>1,2088286342=>1,2088286364=>1,2088286362=>1,2088286275=>1,2088286250=>1,2088286220=>1,2088286178=>1,2088286228=>1,2088286229=>1,2088286239=>1,2088289840=>1,2088289844=>1,2088295170=>1,2088295133=>1,2088295172=>1,2088295206=>1,2088295213=>1,2088295211=>1,2088295126=>1,2088295056=>1,2088294936=>1,2088294934=>1,2088294968=>1,2088294984=>1,2088295051=>1,2088295044=>1,2088295256=>1,2088295259=>1,2088295403=>1,2088295387=>1,2088296467=>1,2088296477=>1,2088296527=>1,2088296517=>1,2088295377=>1,2088295345=>1,2088295270=>1,2088295261=>1,2088295290=>1,2088295306=>1,2088295332=>1,2088295317=>1,2088294899=>1,2088294875=>1,2088294458=>1,2088294408=>1,2088294459=>1,2088294474=>1,2088294491=>1,2088294481=>1,2088294340=>1,2088294337=>1,2088294083=>1,2088294065=>1,2088294124=>1,2088294139=>1,2088294293=>1,2088294273=>1,2088294506=>1,2088294515=>1,2088294772=>1,2088294752=>1,2088294819=>1,2088294821=>1,2088294849=>1,2088294831=>1,2088294746=>1,2088294729=>1,2088294612=>1,2088294542=>1,2088294630=>1,2088294705=>1,2088294728=>1,2088296528=>1,2088296594=>1,2088297525=>1,2088297522=>1,2088297569=>1,2088297626=>1,2088297669=>1,2088297628=>1,2088297498=>1,2088297484=>1,2088297415=>1,2088297370=>1,2088297417=>1,2088297432=>1,2088297458=>1,2088297442=>1,2088297683=>1,2088297703=>1,2088297876=>1,2088297868=>1,2088297896=>1,2088297899=>1,2088297929=>1,2088297919=>1,2088297855=>1,2088297807=>1,2088297757=>1,2088297714=>1,2088297763=>1,2088297769=>1,2088297786=>1,2088297273=>1,2088297257=>1,2088296848=>1,2088296821=>1,2088296851=>1,2088296860=>1,2088296924=>1,2088296898=>1,2088296811=>1,2088296756=>1,2088296675=>1,2088296633=>1,2088296688=>1,2088296707=>1,2088296736=>1,2088296713=>1,2088296926=>1,2088296968=>1,2088297136=>1,2088297129=>1,2088297181=>1,2088297193=>1,2088297254=>1,2088297228=>1,2088297106=>1,2088297079=>1,2088296976=>1,2088296973=>1,2088296980=>1,2088297020=>1,2088297029=>1,2088294039=>1,2088294036=>1,2088292437=>1,2088292433=>1,2088292450=>1,2088292463=>1,2088292471=>1,2088292466=>1,2088292430=>1,2088292377=>1,2088290246=>1,2088290226=>1,2088290277=>1,2088290279=>1,2088292371=>1,2088292366=>1,2088292513=>1,2088292515=>1,2088292699=>1,2088292654=>1,2088292702=>1,2088292817=>1,2088292831=>1,2088292819=>1,2088292651=>1,2088292641=>1,2088292547=>1,2088292527=>1,2088292603=>1,2088292611=>1,2088292640=>1,2088292613=>1,2088290205=>1,2088290203=>1,2088289968=>1,2088289961=>1,2088289991=>1,2088289992=>1,2088290030=>1,2088290010=>1,2088289957=>1,2088289953=>1,2088289891=>1,2088289866=>1,2088289894=>1,2088289906=>1,2088289937=>1,2088289914=>1,2088290033=>1,2088290044=>1,2088290130=>1,2088290109=>1,2088290135=>1,2088290158=>1,2088290182=>1,2088290177=>1,2088290100=>1,2088290096=>1,2088290055=>1,2088290052=>1,2088290071=>1,2088290078=>1,2088290080=>1,2088292836=>1,2088292862=>1,2088293636=>1,2088293616=>1,2088293639=>1,2088293653=>1,2088293673=>1,2088293671=>1,2088293589=>1,2088293570=>1,2088293433=>1,2088293421=>1,2088293460=>1,2088293524=>1,2088293554=>1,2088293530=>1,2088293681=>1,2088293757=>1,2088293953=>1,2088293947=>1,2088293973=>1,2088293985=>1,2088294034=>1,2088294027=>1,2088293884=>1,2088293877=>1,2088293780=>1,2088293771=>1,2088293805=>1,2088293824=>1,2088293843=>1,2088293410=>1,2088293407=>1,2088293056=>1,2088293050=>1,2088293086=>1,2088293091=>1,2088293136=>1,2088293109=>1,2088293003=>1,2088292948=>1,2088292880=>1,2088292875=>1,2088292915=>1,2088292935=>1,2088292943=>1,2088292937=>1,2088293152=>1,2088293187=>1,2088293355=>1,2088293350=>1,2088293359=>1,2088293370=>1,2088293406=>1,2088293395=>1,2088293340=>1,2088293337=>1,2088293319=>1,2088293240=>1,2088293321=>1,2088293332=>1,2088293336=>1,2088284486=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-28.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3126773562=>1,3126772643=>1,3126773781=>1,3126774163=>1,3126776163=>1,3126776074=>1,3126771718=>1,3126771716=>1,3126764437=>1,3126764338=>1,3126765502=>1,3126765808=>1,3126769994=>1,3126769154=>1,3126776732=>1,3126777085=>1,3126786651=>1,3126784858=>1,3126787523=>1,3126787622=>1,3126788298=>1,3126788160=>1,3126783132=>1,3126781050=>1,3126779017=>1,3126778639=>1,3126779264=>1,3126779402=>1,3126779945=>1,3126779775=>1,3126762945=>1,3126762481=>1,3126748778=>1,3126747228=>1,3126751260=>1,3126751275=>1,3126751829=>1,3126751645=>1,3126741603=>1,3126739899=>1,3126734995=>1,3126734882=>1,3126735309=>1,3126736177=>1,3126737607=>1,3126736880=>1,3126752217=>1,3126752286=>1,3126755119=>1,3126754823=>1,3126756833=>1,3126758500=>1,3126760979=>1,3126759703=>1,3126754179=>1,3126754108=>1,3126753103=>1,3126752472=>1,3126753499=>1,3126753862=>1,3126753889=>1,3126788516=>1,3126789346=>1,3126808760=>1,3126808606=>1,3126809188=>1,3126809464=>1,3126810223=>1,3126809930=>1,3126808469=>1,3126807877=>1,3126806371=>1,3126806329=>1,3126806632=>1,3126807073=>1,3126807843=>1,3126807555=>1,3126810374=>1,3126810990=>1,3126818663=>1,3126817611=>1,3126821336=>1,3126823049=>1,3126827181=>1,3126826011=>1,3126817153=>1,3126815322=>1,3126811579=>1,3126811008=>1,3126811940=>1,3126812004=>1,3126813400=>1,3126812607=>1,3126805841=>1,3126805327=>1,3126796599=>1,3126796533=>1,3126797184=>1,3126797712=>1,3126799008=>1,3126798359=>1,3126795340=>1,3126792960=>1,3126789879=>1,3126789543=>1,3126790874=>1,3126790985=>1,3126792469=>1,3126791111=>1,3126799237=>1,3126799914=>1,3126803032=>1,3126802979=>1,3126803295=>1,3126803837=>1,3126803880=>1,3126803852=>1,3126802940=>1,3126801364=>1,3126800765=>1,3126800261=>1,3126800813=>1,3126800837=>1,3126800981=>1,3126734297=>1,3126734010=>1,3126683187=>1,3126683100=>1,3126683951=>1,3126684175=>1,3126684440=>1,3126684280=>1,3126683092=>1,3126682794=>1,3126665030=>1,3126664628=>1,3126675279=>1,3126681693=>1,3126682186=>1,3126681847=>1,3126684492=>1,3126684586=>1,3126691395=>1,3126691386=>1,3126691757=>1,3126691842=>1,3126692012=>1,3126691865=>1,3126691299=>1,3126691282=>1,3126685275=>1,3126684735=>1,3126688299=>1,3126688614=>1,3126691058=>1,3126690953=>1,3126663705=>1,3126663481=>1,3126644495=>1,3126644357=>1,3126645704=>1,3126645969=>1,3126646627=>1,3126646141=>1,3126643596=>1,3126642771=>1,3126639643=>1,3126639099=>1,3126639908=>1,3126640135=>1,3126641977=>1,3126640854=>1,3126646719=>1,3126648893=>1,3126658937=>1,3126658897=>1,3126660572=>1,3126661484=>1,3126662443=>1,3126662017=>1,3126658387=>1,3126654313=>1,3126650089=>1,3126649898=>1,3126652047=>1,3126652594=>1,3126653714=>1,3126692516=>1,3126692547=>1,3126709529=>1,3126709145=>1,3126709951=>1,3126710080=>1,3126711478=>1,3126710127=>1,3126708861=>1,3126708288=>1,3126706836=>1,3126706792=>1,3126706869=>1,3126707112=>1,3126707511=>1,3126707117=>1,3126712059=>1,3126712672=>1,3126728795=>1,3126727561=>1,3126728840=>1,3126731433=>1,3126733626=>1,3126732199=>1,3126723165=>1,3126720937=>1,3126713521=>1,3126713283=>1,3126713850=>1,3126717254=>1,3126720570=>1,3126706263=>1,3126706208=>1,3126693451=>1,3126693442=>1,3126693713=>1,3126693755=>1,3126696283=>1,3126696259=>1,3126693410=>1,3126693138=>1,3126692669=>1,3126692636=>1,3126692737=>1,3126692916=>1,3126693021=>1,3126692924=>1,3126696656=>1,3126697102=>1,3126701679=>1,3126701472=>1,3126701683=>1,3126704522=>1,3126705360=>1,3126704621=>1,3126700619=>1,3126699232=>1,3126697577=>1,3126697446=>1,3126697992=>1,3126698274=>1,3126698440=>1,3126827598=>1,3126828369=>1,3135443488=>1,3135443477=>1,3135443511=>1,3135443528=>1,3135443563=>1,3135443554=>1,3135443463=>1,3135443460=>1,3135373166=>1,3135369158=>1,3135373178=>1,3135421998=>1,3135438347=>1,3135438027=>1,3135443566=>1,3135443580=>1,3135443696=>1,3135443686=>1,3135443814=>1,3135443857=>1,3135444496=>1,3135444486=>1,3135443673=>1,3135443671=>1,3135443592=>1,3135443586=>1,3135443605=>1,3135443620=>1,3135443668=>1,3135443638=>1,3135355509=>1,3135339586=>1,3134923818=>1,3134923816=>1,3134923821=>1,3134923822=>1,3134923833=>1,3134923826=>1,3134923807=>1,3134923804=>1,3134759365=>1,3134759362=>1,3134884796=>1,3134914696=>1,3134923796=>1,3134923778=>1,3135115317=>1,3135124170=>1,3135320346=>1,3135320329=>1,3135321145=>1,3135321193=>1,3135337262=>1,3135335474=>1,3135319093=>1,3135318637=>1,3135125266=>1,3135124821=>1,3135187853=>1,3135316065=>1,3135318473=>1,3135444500=>1,3135444503=>1,3135446223=>1,3135446134=>1,3135446231=>1,3135446261=>1,3135457788=>1,3135453342=>1,3135446122=>1,3135446107=>1,3135445978=>1,3135445948=>1,3135445986=>1,3135446064=>1,3135446106=>1,3135446101=>1,3135463742=>1,3135464070=>1,3135480242=>1,3135476716=>1,3135480722=>1,3135481222=>1,3135482735=>1,3135481259=>1,3135476605=>1,3135476588=>1,3135465991=>1,3135464508=>1,3135466985=>1,3135467040=>1,3135476563=>1,3135445936=>1,3135445931=>1,3135444617=>1,3135444603=>1,3135444633=>1,3135444640=>1,3135444661=>1,3135444643=>1,3135444598=>1,3135444590=>1,3135444511=>1,3135444510=>1,3135444514=>1,3135444533=>1,3135444565=>1,3135444563=>1,3135444670=>1,3135444674=>1,3135445816=>1,3135445769=>1,3135445834=>1,3135445837=>1,3135445918=>1,3135445859=>1,3135445761=>1,3135445225=>1,3135444705=>1,3135444691=>1,3135445154=>1,3135445202=>1,3135445224=>1,3134628545=>1,3134609962=>1,3126851222=>1,3126850847=>1,3126851232=>1,3126851332=>1,3126853583=>1,3126852500=>1,3126850846=>1,3126850686=>1,3126846410=>1,3126844459=>1,3126848243=>1,3126849331=>1,3126850521=>1,3126850498=>1,3126874042=>1,3126918329=>1,3127369412=>1,3127361846=>1,3127378358=>1,3127378375=>1,3127380138=>1,3127378617=>1,3127355814=>1,3127355813=>1,3127204495=>1,3127182066=>1,3127350578=>1,3127351493=>1,3127355812=>1,3127355811=>1,3126843356=>1,3126842911=>1,3126832708=>1,3126832206=>1,3126832818=>1,3126833066=>1,3126833777=>1,3126833658=>1,3126831214=>1,3126830207=>1,3126829283=>1,3126828538=>1,3126829287=>1,3126829648=>1,3126829883=>1,3126829709=>1,3126833947=>1,3126834442=>1,3126839774=>1,3126839461=>1,3126840182=>1,3126841291=>1,3126841640=>1,3126841495=>1,3126838865=>1,3126837875=>1,3126834743=>1,3126834465=>1,3126835125=>1,3126835807=>1,3126836083=>1,3127382058=>1,3127382520=>1,3133835490=>1,3133384743=>1,3133932826=>1,3133938824=>1,3133988051=>1,3133976157=>1,3133324822=>1,3133223796=>1,3133053098=>1,3132912017=>1,3133154319=>1,3133215242=>1,3133223412=>1,3133221787=>1,3134046883=>1,3134111128=>1,3134524606=>1,3134515763=>1,3134536743=>1,3134587544=>1,3134601672=>1,3134590865=>1,3134485888=>1,3134416551=>1,3134267942=>1,3134153899=>1,3134299410=>1,3134392628=>1,3134406971=>1,3132896196=>1,3132542375=>1,3127945578=>1,3127922842=>1,3128084159=>1,3128259099=>1,3128545000=>1,3128264342=>1,3127760830=>1,3127760766=>1,3127385238=>1,3127384222=>1,3127385455=>1,3127390419=>1,3127391379=>1,3127390661=>1,3128545001=>1,3128545002=>1,3130708122=>1,3130634194=>1,3130771999=>1,3131011334=>1,3132524952=>1,3132229258=>1,3130622905=>1,3130255082=>1,3128546418=>1,3128546394=>1,3128594373=>1,3129564710=>1,3129680723=>1,3126638814=>1,3126638681=>1,3126414471=>1,3126413713=>1,3126415517=>1,3126416507=>1,3126417830=>1,3126416882=>1,3126412581=>1,3126408227=>1,3126400880=>1,3126400609=>1,3126401852=>1,3126402337=>1,3126408193=>1,3126402599=>1,3126419050=>1,3126419560=>1,3126425761=>1,3126425316=>1,3126425919=>1,3126427067=>1,3126427471=>1,3126427143=>1,3126424876=>1,3126424373=>1,3126420700=>1,3126419843=>1,3126423700=>1,3126423993=>1,3126424202=>1,3126424154=>1,3126400461=>1,3126400187=>1,3126387889=>1,3126386856=>1,3126387891=>1,3126388013=>1,3126388422=>1,3126388062=>1,3126386842=>1,3126386697=>1,3126380067=>1,3126379920=>1,3126380463=>1,3126382229=>1,3126382704=>1,3126382525=>1,3126389333=>1,3126390021=>1,3126397346=>1,3126395955=>1,3126397536=>1,3126399053=>1,3126400086=>1,3126399687=>1,3126395521=>1,3126394939=>1,3126390539=>1,3126390487=>1,3126390788=>1,3126392070=>1,3126393297=>1,3126427951=>1,3126432503=>1,3126479237=>1,3126478141=>1,3126481083=>1,3126481484=>1,3126481925=>1,3126481907=>1,3126477468=>1,3126475448=>1,3126466413=>1,3126465887=>1,3126467311=>1,3126468047=>1,3126474719=>1,3126469673=>1,3126482057=>1,3126482511=>1,3126491107=>1,3126490623=>1,3126491260=>1,3126491299=>1,3126492753=>1,3126491471=>1,3126490488=>1,3126488583=>1,3126486250=>1,3126483927=>1,3126486487=>1,3126487481=>1,3126487613=>1,3126464947=>1,3126464402=>1,3126440744=>1,3126440673=>1,3126441149=>1,3126442096=>1,3126447460=>1,3126443156=>1,3126440135=>1,3126439808=>1,3126434105=>1,3126433702=>1,3126435304=>1,3126435687=>1,3126436001=>1,3126435969=>1,3126447543=>1,3126448221=>1,3126457022=>1,3126456577=>1,3126457798=>1,3126458258=>1,3126461560=>1,3126458316=>1,3126456569=>1,3126452555=>1,3126448690=>1,3126448474=>1,3126449752=>1,3126450394=>1,3126452094=>1,3126379268=>1,3126379229=>1,3126337635=>1,3126332325=>1,3126337758=>1,3126337856=>1,3126338655=>1,3126338403=>1,3126329967=>1,3126154605=>1,3124992250=>1,3124984814=>1,3124993579=>1,3125002690=>1,3125469822=>1,3125178400=>1,3126338703=>1,3126339096=>1,3126340359=>1,3126340178=>1,3126340400=>1,3126341539=>1,3126343245=>1,3126342183=>1,3126339846=>1,3126339842=>1,3126339342=>1,3126339214=>1,3126339367=>1,3126339409=>1,3126339678=>1,3126339626=>1,3124977958=>1,3124819390=>1,3122364034=>1,3122137530=>1,3122461899=>1,3122671336=>1,3122803389=>1,3122803387=>1,3122083117=>1,3121809514=>1,3121530739=>1,3121520853=>1,3121542956=>1,3121544715=>1,3121784384=>1,3121782880=>1,3122803403=>1,3122805603=>1,3123618550=>1,3123609972=>1,3123662771=>1,3123696798=>1,3124788482=>1,3124239371=>1,3123606465=>1,3123606295=>1,3123059722=>1,3122975242=>1,3123063780=>1,3123372548=>1,3123577558=>1,3126343653=>1,3126343672=>1,3126371195=>1,3126371056=>1,3126372420=>1,3126372490=>1,3126374262=>1,3126373881=>1,3126370846=>1,3126369321=>1,3126363819=>1,3126361907=>1,3126365655=>1,3126366401=>1,3126367326=>1,3126366971=>1,3126374548=>1,3126374550=>1,3126376683=>1,3126376657=>1,3126376801=>1,3126376981=>1,3126377574=>1,3126377492=>1,3126376503=>1,3126376494=>1,3126374860=>1,3126374689=>1,3126375139=>1,3126375263=>1,3126375697=>1,3126361875=>1,3126361620=>1,3126354242=>1,3126353991=>1,3126354836=>1,3126354850=>1,3126355002=>1,3126354973=>1,3126353965=>1,3126353625=>1,3126347112=>1,3126345938=>1,3126348431=>1,3126349605=>1,3126352334=>1,3126351068=>1,3126355388=>1,3126356008=>1,3126358317=>1,3126358150=>1,3126358507=>1,3126359223=>1,3126361463=>1,3126360835=>1,3126357482=>1,3126357332=>1,3126356661=>1,3126356142=>1,3126356744=>1,3126356754=>1,3126357314=>1,3126492774=>1,3126492920=>1,3126597747=>1,3126597644=>1,3126598064=>1,3126598206=>1,3126598904=>1,3126598573=>1,3126597387=>1,3126597169=>1,3126596197=>1,3126595765=>1,3126596355=>1,3126596686=>1,3126597154=>1,3126596780=>1,3126599619=>1,3126600472=>1,3126608800=>1,3126605692=>1,3126609087=>1,3126609094=>1,3126609972=>1,3126609891=>1,3126605661=>1,3126605466=>1,3126601158=>1,3126600879=>1,3126602237=>1,3126602470=>1,3126605361=>1,3126603723=>1,3126595326=>1,3126593568=>1,3126584896=>1,3126584012=>1,3126584999=>1,3126585257=>1,3126585749=>1,3126585489=>1,3126583842=>1,3126583822=>1,3126582875=>1,3126582595=>1,3126583070=>1,3126583103=>1,3126583691=>1,3126583437=>1,3126586496=>1,3126587170=>1,3126591562=>1,3126591358=>1,3126592325=>1,3126592411=>1,3126592936=>1,3126592447=>1,3126591341=>1,3126590982=>1,3126589649=>1,3126588832=>1,3126589909=>1,3126589937=>1,3126590283=>1,3126610219=>1,3126611379=>1,3126627678=>1,3126627333=>1,3126628538=>1,3126629354=>1,3126630819=>1,3126629998=>1,3126627084=>1,3126627021=>1,3126624033=>1,3126623931=>1,3126624471=>1,3126625389=>1,3126626940=>1,3126625439=>1,3126630900=>1,3126631420=>1,3126637865=>1,3126637490=>1,3126637943=>1,3126638145=>1,3126638330=>1,3126638308=>1,3126634929=>1,3126634558=>1,3126632713=>1,3126632474=>1,3126632919=>1,3126633061=>1,3126634235=>1,3126623886=>1,3126623119=>1,3126616410=>1,3126616386=>1,3126616819=>1,3126616890=>1,3126617272=>1,3126616910=>1,3126616170=>1,3126615883=>1,3126613187=>1,3126611894=>1,3126613327=>1,3126613699=>1,3126614541=>1,3126613983=>1,3126617315=>1,3126618327=>1,3126621015=>1,3126620887=>1,3126621090=>1,3126621183=>1,3126622046=>1,3126621452=>1,3126620637=>1,3126620580=>1,3126618427=>1,3126618423=>1,3126619748=>1,3126619956=>1,3126620235=>1,3126582361=>1,3126581721=>1,3126542713=>1,3126542604=>1,3126542717=>1,3126543115=>1,3126543531=>1,3126543390=>1,3126542579=>1,3126542507=>1,3126538198=>1,3126538005=>1,3126540366=>1,3126540448=>1,3126542051=>1,3126541933=>1,3126543554=>1,3126543789=>1,3126545994=>1,3126545983=>1,3126546228=>1,3126546279=>1,3126549166=>1,3126549130=>1,3126545947=>1,3126545897=>1,3126543942=>1,3126543884=>1,3126544681=>1,3126544898=>1,3126545875=>1,3126545597=>1,3126537867=>1,3126537731=>1,3126511059=>1,3126511009=>1,3126511642=>1,3126513987=>1,3126516540=>1,3126516022=>1,3126510818=>1,3126510608=>1,3126494530=>1,3126494019=>1,3126499948=>1,3126500399=>1,3126501336=>1,3126500477=>1,3126518805=>1,3126522802=>1,3126536195=>1,3126535941=>1,3126536623=>1,3126536854=>1,3126537704=>1,3126537596=>1,3126535911=>1,3126535908=>1,3126523562=>1,3126523033=>1,3126524436=>1,3126534455=>1,3126534563=>1,3126549363=>1,3126549422=>1,3126573265=>1,3126572968=>1,3126574361=>1,3126574593=>1,3126575097=>1,3126574656=>1,3126571537=>1,3126570577=>1,3126568595=>1,3126568123=>1,3126568817=>1,3126569132=>1,3126569272=>1,3126569239=>1,3126575445=>1,3126575647=>1,3126578436=>1,3126578404=>1,3126578949=>1,3126581098=>1,3126581506=>1,3126581111=>1,3126578219=>1,3126578015=>1,3126576502=>1,3126576043=>1,3126576893=>1,3126577873=>1,3126578001=>1,3126567647=>1,3126566886=>1,3126553142=>1,3126552918=>1,3126553361=>1,3126554110=>1,3126554418=>1,3126554311=>1,3126552553=>1,3126552293=>1,3126549952=>1,3126549541=>1,3126551144=>1,3126551316=>1,3126552016=>1,3126551779=>1,3126554572=>1,3126555574=>1,3126560532=>1,3126559201=>1,3126561972=>1,3126562725=>1,3126566869=>1,3126565367=>1,3126559095=>1,3126557798=>1,3126557363=>1,3126556895=>1,3126557415=>1,3126557671=>1,3126557705=>1,3121515936=>1,);?>
1
+ <?php return array(2088387223=>1,2088387201=>1,2088387227=>1,2088387262=>1,2088387417=>1,2088387328=>1,2088387199=>1,2088387187=>1,2088387115=>1,2088387109=>1,2088387116=>1,2088387129=>1,2088387182=>1,2088387170=>1,2088387430=>1,2088387494=>1,2088387684=>1,2088387622=>1,2088387690=>1,2088387694=>1,2088387715=>1,2088387708=>1,2088387593=>1,2088387582=>1,2088387505=>1,2088387502=>1,2088387511=>1,2088387514=>1,2088387575=>1,2088387520=>1,2088387076=>1,2088387067=>1,2088386544=>1,2088386487=>1,2088386600=>1,2088386633=>1,2088386665=>1,2088386655=>1,2088386372=>1,2088386348=>1,2088386232=>1,2088386133=>1,2088386271=>1,2088386274=>1,2088386324=>1,2088386322=>1,2088386738=>1,2088386740=>1,2088386930=>1,2088386927=>1,2088386959=>1,2088386990=>1,2088387041=>1,2088387035=>1,2088386905=>1,2088386865=>1,2088386803=>1,2088386802=>1,2088386821=>1,2088386826=>1,2088386839=>1,2088387730=>1,2088387789=>1,2088388222=>1,2088388206=>1,2088388258=>1,2088388261=>1,2088388268=>1,2088388267=>1,2088388201=>1,2088388187=>1,2088388140=>1,2088388130=>1,2088388147=>1,2088388156=>1,2088388164=>1,2088388157=>1,2088388272=>1,2088388333=>1,2088388593=>1,2088388588=>1,2088388625=>1,2088388629=>1,2088388656=>1,2088388634=>1,2088388571=>1,2088388561=>1,2088388397=>1,2088388360=>1,2088388400=>1,2088388413=>1,2088388517=>1,2088388472=>1,2088388128=>1,2088388124=>1,2088387911=>1,2088387879=>1,2088387923=>1,2088387931=>1,2088387942=>1,2088387935=>1,2088387871=>1,2088387864=>1,2088387797=>1,2088387796=>1,2088387806=>1,2088387816=>1,2088387853=>1,2088387837=>1,2088387966=>1,2088387975=>1,2088388047=>1,2088388041=>1,2088388074=>1,2088388076=>1,2088388112=>1,2088388090=>1,2088388036=>1,2088388034=>1,2088387988=>1,2088387982=>1,2088388004=>1,2088388019=>1,2088388033=>1,2088386108=>1,2088386087=>1,2088384451=>1,2088384448=>1,2088384462=>1,2088384469=>1,2088384499=>1,2088384487=>1,2088384440=>1,2088384432=>1,2088384386=>1,2088384383=>1,2088384391=>1,2088384399=>1,2088384425=>1,2088384415=>1,2088384500=>1,2088384506=>1,2088384585=>1,2088384566=>1,2088384590=>1,2088384602=>1,2088384616=>1,2088384610=>1,2088384561=>1,2088384550=>1,2088384529=>1,2088384526=>1,2088384534=>1,2088384535=>1,2088384546=>1,2088384537=>1,2088384370=>1,2088384368=>1,2088384113=>1,2088384108=>1,2088384118=>1,2088384130=>1,2088384152=>1,2088384149=>1,2088384107=>1,2088384091=>1,2088384046=>1,2088384025=>1,2088384049=>1,2088384075=>1,2088384090=>1,2088384084=>1,2088384153=>1,2088384168=>1,2088384247=>1,2088384241=>1,2088384264=>1,2088384272=>1,2088384328=>1,2088384326=>1,2088384239=>1,2088384237=>1,2088384177=>1,2088384173=>1,2088384187=>1,2088384195=>1,2088384210=>1,2088384624=>1,2088384630=>1,2088385262=>1,2088385245=>1,2088385386=>1,2088385411=>1,2088385494=>1,2088385444=>1,2088385223=>1,2088385213=>1,2088385063=>1,2088385046=>1,2088385099=>1,2088385153=>1,2088385188=>1,2088385186=>1,2088385498=>1,2088385606=>1,2088385892=>1,2088385877=>1,2088385990=>1,2088385992=>1,2088386086=>1,2088386013=>1,2088385857=>1,2088385772=>1,2088385654=>1,2088385636=>1,2088385731=>1,2088385761=>1,2088385767=>1,2088385040=>1,2088385032=>1,2088384711=>1,2088384707=>1,2088384715=>1,2088384717=>1,2088384753=>1,2088384722=>1,2088384688=>1,2088384680=>1,2088384653=>1,2088384640=>1,2088384654=>1,2088384657=>1,2088384678=>1,2088384664=>1,2088384758=>1,2088384776=>1,2088384936=>1,2088384932=>1,2088384966=>1,2088384971=>1,2088384989=>1,2088384973=>1,2088384899=>1,2088384855=>1,2088384807=>1,2088384778=>1,2088384809=>1,2088384816=>1,2088384826=>1,2088388665=>1,2088388681=>1,2088395911=>1,2088395910=>1,2088395923=>1,2088395949=>1,2088395986=>1,2088395959=>1,2088395877=>1,2088395844=>1,2088395756=>1,2088395715=>1,2088395813=>1,2088395814=>1,2088395836=>1,2088395831=>1,2088395992=>1,2088395994=>1,2088396196=>1,2088396172=>1,2088396202=>1,2088396208=>1,2088396231=>1,2088396223=>1,2088396143=>1,2088396135=>1,2088396018=>1,2088395995=>1,2088396030=>1,2088396072=>1,2088396119=>1,2088396090=>1,2088395695=>1,2088395669=>1,2088393582=>1,2088393547=>1,2088393592=>1,2088393668=>1,2088393674=>1,2088393671=>1,2088393544=>1,2088393516=>1,2088393442=>1,2088393417=>1,2088393462=>1,2088393481=>1,2088393513=>1,2088393495=>1,2088393694=>1,2088393765=>1,2088395548=>1,2088395536=>1,2088395637=>1,2088395639=>1,2088395664=>1,2088395662=>1,2088395534=>1,2088395529=>1,2088393824=>1,2088393786=>1,2088393835=>1,2088393838=>1,2088393945=>1,2088396259=>1,2088396275=>1,2088397123=>1,2088397116=>1,2088397136=>1,2088397165=>1,2088397225=>1,2088397170=>1,2088397110=>1,2088397107=>1,2088397045=>1,2088397041=>1,2088397079=>1,2088397088=>1,2088397092=>1,2088397089=>1,2088397239=>1,2088397250=>1,2088397436=>1,2088397408=>1,2088397442=>1,2088397455=>1,2088397459=>1,2088397457=>1,2088397393=>1,2088397352=>1,2088397274=>1,2088397260=>1,2088397296=>1,2088397304=>1,2088397310=>1,2088397025=>1,2088396972=>1,2088396502=>1,2088396479=>1,2088396518=>1,2088396539=>1,2088396595=>1,2088396547=>1,2088396409=>1,2088396395=>1,2088396310=>1,2088396308=>1,2088396320=>1,2088396345=>1,2088396393=>1,2088396364=>1,2088396605=>1,2088396649=>1,2088396841=>1,2088396838=>1,2088396845=>1,2088396894=>1,2088396946=>1,2088396945=>1,2088396793=>1,2088396784=>1,2088396719=>1,2088396705=>1,2088396752=>1,2088396774=>1,2088396782=>1,2088393394=>1,2088393390=>1,2088389550=>1,2088389499=>1,2088389565=>1,2088389578=>1,2088390447=>1,2088390418=>1,2088389498=>1,2088389484=>1,2088389412=>1,2088389382=>1,2088389442=>1,2088389446=>1,2088389479=>1,2088389459=>1,2088390463=>1,2088390503=>1,2088390654=>1,2088390629=>1,2088390683=>1,2088390685=>1,2088390705=>1,2088390702=>1,2088390616=>1,2088390611=>1,2088390551=>1,2088390512=>1,2088390555=>1,2088390565=>1,2088390585=>1,2088390584=>1,2088389374=>1,2088389358=>1,2088388988=>1,2088388927=>1,2088388997=>1,2088389030=>1,2088389045=>1,2088389036=>1,2088388925=>1,2088388888=>1,2088388708=>1,2088388707=>1,2088388720=>1,2088388810=>1,2088388884=>1,2088388829=>1,2088389079=>1,2088389127=>1,2088389213=>1,2088389212=>1,2088389230=>1,2088389231=>1,2088389290=>1,2088389269=>1,2088389194=>1,2088389176=>1,2088389151=>1,2088389129=>1,2088389160=>1,2088389161=>1,2088389175=>1,2088390712=>1,2088390760=>1,2088392995=>1,2088392981=>1,2088392998=>1,2088393017=>1,2088393119=>1,2088393050=>1,2088392187=>1,2088392158=>1,2088391998=>1,2088391992=>1,2088392093=>1,2088392130=>1,2088392145=>1,2088392135=>1,2088393139=>1,2088393153=>1,2088393337=>1,2088393326=>1,2088393339=>1,2088393360=>1,2088393371=>1,2088393363=>1,2088393315=>1,2088393312=>1,2088393178=>1,2088393172=>1,2088393270=>1,2088393279=>1,2088393293=>1,2088391971=>1,2088391422=>1,2088390987=>1,2088390958=>1,2088390989=>1,2088390990=>1,2088391021=>1,2088391003=>1,2088390920=>1,2088390898=>1,2088390814=>1,2088390777=>1,2088390841=>1,2088390846=>1,2088390889=>1,2088390847=>1,2088391050=>1,2088391064=>1,2088391355=>1,2088391323=>1,2088391389=>1,2088391404=>1,2088391409=>1,2088391408=>1,2088391286=>1,2088391270=>1,2088391190=>1,2088391126=>1,2088391217=>1,2088391241=>1,2088391264=>1,2088383998=>1,2088383997=>1,2088377741=>1,2088377727=>1,2088377748=>1,2088377773=>1,2088377782=>1,2088377779=>1,2088377697=>1,2088377630=>1,2088377570=>1,2088377501=>1,2088377573=>1,2088377602=>1,2088377618=>1,2088377614=>1,2088377786=>1,2088377794=>1,2088378229=>1,2088378223=>1,2088378259=>1,2088378325=>1,2088378347=>1,2088378332=>1,2088378195=>1,2088378011=>1,2088377888=>1,2088377849=>1,2088377916=>1,2088377946=>1,2088377999=>1,2088377956=>1,2088377494=>1,2088377487=>1,2088376875=>1,2088376828=>1,2088376905=>1,2088376906=>1,2088376919=>1,2088376917=>1,2088376826=>1,2088376797=>1,2088376753=>1,2088376751=>1,2088376756=>1,2088376787=>1,2088376794=>1,2088376789=>1,2088376931=>1,2088376951=>1,2088377205=>1,2088377144=>1,2088377283=>1,2088377355=>1,2088377422=>1,2088377380=>1,2088377077=>1,2088377050=>1,2088376974=>1,2088376954=>1,2088376976=>1,2088376995=>1,2088377025=>1,2088378376=>1,2088378382=>1,2088378800=>1,2088378799=>1,2088378833=>1,2088378840=>1,2088378857=>1,2088378848=>1,2088378792=>1,2088378783=>1,2088378753=>1,2088378740=>1,2088378754=>1,2088378762=>1,2088378780=>1,2088378769=>1,2088378858=>1,2088378877=>1,2088378940=>1,2088378937=>1,2088378950=>1,2088378959=>1,2088378980=>1,2088378967=>1,2088378930=>1,2088378924=>1,2088378890=>1,2088378882=>1,2088378895=>1,2088378912=>1,2088378917=>1,2088378715=>1,2088378706=>1,2088378475=>1,2088378451=>1,2088378490=>1,2088378503=>1,2088378524=>1,2088378505=>1,2088378449=>1,2088378439=>1,2088378384=>1,2088378383=>1,2088378393=>1,2088378401=>1,2088378413=>1,2088378410=>1,2088378527=>1,2088378547=>1,2088378643=>1,2088378629=>1,2088378665=>1,2088378676=>1,2088378702=>1,2088378692=>1,2088378626=>1,2088378591=>1,2088378559=>1,2088378552=>1,2088378566=>1,2088378572=>1,2088378586=>1,2088376747=>1,2088376742=>1,2088375973=>1,2088375972=>1,2088375981=>1,2088375983=>1,2088376007=>1,2088375991=>1,2088375966=>1,2088375959=>1,2088375930=>1,2088375916=>1,2088375940=>1,2088375941=>1,2088375956=>1,2088375954=>1,2088376025=>1,2088376040=>1,2088376121=>1,2088376120=>1,2088376169=>1,2088376173=>1,2088376202=>1,2088376179=>1,2088376116=>1,2088376114=>1,2088376072=>1,2088376060=>1,2088376092=>1,2088376099=>1,2088376107=>1,2088376100=>1,2088375913=>1,2088375905=>1,2088375548=>1,2088375518=>1,2088375581=>1,2088375610=>1,2088375768=>1,2088375654=>1,2088375498=>1,2088375497=>1,2088375462=>1,2088375404=>1,2088375483=>1,2088375486=>1,2088375494=>1,2088375489=>1,2088375771=>1,2088375811=>1,2088375866=>1,2088375856=>1,2088375867=>1,2088375878=>1,2088375899=>1,2088375886=>1,2088375851=>1,2088375838=>1,2088375820=>1,2088375813=>1,2088375827=>1,2088375831=>1,2088375834=>1,2088376213=>1,2088376228=>1,2088376594=>1,2088376593=>1,2088376601=>1,2088376602=>1,2088376608=>1,2088376607=>1,2088376580=>1,2088376579=>1,2088376542=>1,2088376540=>1,2088376548=>1,2088376555=>1,2088376573=>1,2088376571=>1,2088376612=>1,2088376621=>1,2088376683=>1,2088376673=>1,2088376687=>1,2088376699=>1,2088376741=>1,2088376724=>1,2088376662=>1,2088376661=>1,2088376646=>1,2088376630=>1,2088376655=>1,2088376656=>1,2088376660=>1,2088376530=>1,2088376525=>1,2088376312=>1,2088376311=>1,2088376314=>1,2088376318=>1,2088376340=>1,2088376335=>1,2088376300=>1,2088376277=>1,2088376241=>1,2088376235=>1,2088376255=>1,2088376257=>1,2088376260=>1,2088376258=>1,2088376354=>1,2088376380=>1,2088376470=>1,2088376467=>1,2088376482=>1,2088376484=>1,2088376507=>1,2088376493=>1,2088376448=>1,2088376425=>1,2088376404=>1,2088376394=>1,2088376411=>1,2088376412=>1,2088376414=>1,2088378996=>1,2088379010=>1,2088381865=>1,2088381759=>1,2088381907=>1,2088381944=>1,2088381982=>1,2088381972=>1,2088381751=>1,2088381682=>1,2088381602=>1,2088381573=>1,2088381628=>1,2088381662=>1,2088381680=>1,2088381670=>1,2088381999=>1,2088382005=>1,2088382233=>1,2088382227=>1,2088382249=>1,2088382306=>1,2088382396=>1,2088382312=>1,2088382206=>1,2088382163=>1,2088382079=>1,2088382008=>1,2088382105=>1,2088382133=>1,2088382155=>1,2088382134=>1,2088381560=>1,2088381477=>1,2088380836=>1,2088380771=>1,2088380858=>1,2088380883=>1,2088380959=>1,2088380946=>1,2088380715=>1,2088380653=>1,2088380491=>1,2088380474=>1,2088380543=>1,2088380565=>1,2088380649=>1,2088380624=>1,2088381057=>1,2088381086=>1,2088381379=>1,2088381378=>1,2088381398=>1,2088381399=>1,2088381406=>1,2088381403=>1,2088381353=>1,2088381324=>1,2088381213=>1,2088381203=>1,2088381227=>1,2088381253=>1,2088381279=>1,2088382421=>1,2088382424=>1,2088383434=>1,2088383427=>1,2088383473=>1,2088383480=>1,2088383666=>1,2088383624=>1,2088383424=>1,2088383354=>1,2088383218=>1,2088383180=>1,2088383285=>1,2088383304=>1,2088383335=>1,2088383313=>1,2088383684=>1,2088383688=>1,2088383911=>1,2088383854=>1,2088383934=>1,2088383935=>1,2088383982=>1,2088383937=>1,2088383825=>1,2088383789=>1,2088383755=>1,2088383727=>1,2088383759=>1,2088383761=>1,2088383769=>1,2088383162=>1,2088383124=>1,2088382684=>1,2088382627=>1,2088382689=>1,2088382708=>1,2088382800=>1,2088382727=>1,2088382606=>1,2088382580=>1,2088382456=>1,2088382450=>1,2088382483=>1,2088382502=>1,2088382569=>1,2088382516=>1,2088382821=>1,2088382825=>1,2088383028=>1,2088383002=>1,2088383030=>1,2088383073=>1,2088383095=>1,2088383094=>1,2088382946=>1,2088382939=>1,2088382887=>1,2088382880=>1,2088382897=>1,2088382918=>1,2088382927=>1,2088380467=>1,2088380463=>1,2088379552=>1,2088379545=>1,2088379563=>1,2088379566=>1,2088379634=>1,2088379594=>1,2088379516=>1,2088379489=>1,2088379444=>1,2088379433=>1,2088379462=>1,2088379470=>1,2088379486=>1,2088379478=>1,2088379645=>1,2088379656=>1,2088379733=>1,2088379728=>1,2088379745=>1,2088379752=>1,2088379759=>1,2088379755=>1,2088379725=>1,2088379723=>1,2088379675=>1,2088379674=>1,2088379680=>1,2088379684=>1,2088379715=>1,2088379712=>1,2088379418=>1,2088379337=>1,2088379166=>1,2088379139=>1,2088379169=>1,2088379170=>1,2088379189=>1,2088379185=>1,2088379113=>1,2088379103=>1,2088379055=>1,2088379021=>1,2088379059=>1,2088379081=>1,2088379102=>1,2088379089=>1,2088379196=>1,2088379202=>1,2088379295=>1,2088379293=>1,2088379296=>1,2088379300=>1,2088379330=>1,2088379329=>1,2088379286=>1,2088379281=>1,2088379214=>1,2088379203=>1,2088379226=>1,2088379249=>1,2088379278=>1,2088379765=>1,2088379774=>1,2088380101=>1,2088380100=>1,2088380109=>1,2088380113=>1,2088380124=>1,2088380122=>1,2088380087=>1,2088380055=>1,2088380038=>1,2088380023=>1,2088380040=>1,2088380041=>1,2088380046=>1,2088380042=>1,2088380143=>1,2088380151=>1,2088380294=>1,2088380290=>1,2088380366=>1,2088380367=>1,2088380462=>1,2088380400=>1,2088380289=>1,2088380276=>1,2088380214=>1,2088380157=>1,2088380242=>1,2088380249=>1,2088380272=>1,2088380016=>1,2088380014=>1,2088379825=>1,2088379824=>1,2088379828=>1,2088379832=>1,2088379873=>1,2088379869=>1,2088379822=>1,2088379817=>1,2088379792=>1,2088379789=>1,2088379797=>1,2088379801=>1,2088379816=>1,2088379812=>1,2088379886=>1,2088379887=>1,2088379965=>1,2088379964=>1,2088379967=>1,2088379968=>1,2088380006=>1,2088379973=>1,2088379950=>1,2088379936=>1,2088379900=>1,2088379895=>1,2088379909=>1,2088379923=>1,2088379926=>1,2088375362=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-29.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3147857931=>1,3147857909=>1,3147857971=>1,3147858011=>1,3147858045=>1,3147858023=>1,3147857901=>1,3147857899=>1,3147857843=>1,3147857831=>1,3147857850=>1,3147857859=>1,3147857878=>1,3147857869=>1,3147858062=>1,3147858077=>1,3147858248=>1,3147858243=>1,3147858280=>1,3147858322=>1,3147858408=>1,3147858342=>1,3147858222=>1,3147858202=>1,3147858136=>1,3147858124=>1,3147858142=>1,3147858154=>1,3147858196=>1,3147858195=>1,3147857806=>1,3147857793=>1,3147857283=>1,3147857261=>1,3147857319=>1,3147857328=>1,3147857380=>1,3147857358=>1,3147857260=>1,3147857236=>1,3147857155=>1,3147857140=>1,3147857170=>1,3147857172=>1,3147857214=>1,3147857205=>1,3147857389=>1,3147857395=>1,3147857682=>1,3147857622=>1,3147857720=>1,3147857753=>1,3147857769=>1,3147857765=>1,3147857590=>1,3147857570=>1,3147857424=>1,3147857397=>1,3147857439=>1,3147857476=>1,3147857566=>1,3147858414=>1,3147858418=>1,3147862664=>1,3147862629=>1,3147862734=>1,3147862759=>1,3147862800=>1,3147862798=>1,3147862615=>1,3147862605=>1,3147862532=>1,3147862529=>1,3147862538=>1,3147862545=>1,3147862597=>1,3147862575=>1,3147862801=>1,3147862803=>1,3147864205=>1,3147864154=>1,3147864254=>1,3147864292=>1,3147864324=>1,3147864295=>1,3147864147=>1,3147864142=>1,3147862875=>1,3147862864=>1,3147862992=>1,3147863158=>1,3147864087=>1,3147863770=>1,3147862518=>1,3147862440=>1,3147861271=>1,3147861151=>1,3147861325=>1,3147861334=>1,3147862048=>1,3147862038=>1,3147861121=>1,3147861114=>1,3147861036=>1,3147858427=>1,3147861058=>1,3147861063=>1,3147861109=>1,3147861085=>1,3147862124=>1,3147862129=>1,3147862362=>1,3147862300=>1,3147862371=>1,3147862389=>1,3147862434=>1,3147862394=>1,3147862269=>1,3147862252=>1,3147862162=>1,3147862144=>1,3147862166=>1,3147862171=>1,3147862242=>1,3147857134=>1,3147857124=>1,3147852955=>1,3147852924=>1,3147852977=>1,3147853023=>1,3147853041=>1,3147853039=>1,3147852900=>1,3147852885=>1,3147851829=>1,3147850728=>1,3147852810=>1,3147852831=>1,3147852883=>1,3147852867=>1,3147853044=>1,3147853047=>1,3147853902=>1,3147853897=>1,3147853926=>1,3147854006=>1,3147854059=>1,3147854022=>1,3147853891=>1,3147853872=>1,3147853180=>1,3147853153=>1,3147853183=>1,3147853195=>1,3147853842=>1,3147853278=>1,3147850709=>1,3147850700=>1,3147850203=>1,3147850173=>1,3147850209=>1,3147850233=>1,3147850281=>1,3147850252=>1,3147850114=>1,3147850087=>1,3147849865=>1,3147849855=>1,3147849973=>1,3147850027=>1,3147850054=>1,3147850048=>1,3147850284=>1,3147850347=>1,3147850671=>1,3147850665=>1,3147850672=>1,3147850677=>1,3147850687=>1,3147850683=>1,3147850630=>1,3147850509=>1,3147850452=>1,3147850443=>1,3147850477=>1,3147850488=>1,3147850494=>1,3147854073=>1,3147854107=>1,3147856642=>1,3147856612=>1,3147856653=>1,3147856693=>1,3147856725=>1,3147856702=>1,3147856605=>1,3147856590=>1,3147856518=>1,3147856459=>1,3147856540=>1,3147856554=>1,3147856570=>1,3147856558=>1,3147856729=>1,3147856740=>1,3147856971=>1,3147856935=>1,3147856981=>1,3147857068=>1,3147857110=>1,3147857077=>1,3147856837=>1,3147856806=>1,3147856764=>1,3147856761=>1,3147856782=>1,3147856783=>1,3147856801=>1,3147856408=>1,3147856370=>1,3147854362=>1,3147854320=>1,3147854391=>1,3147854468=>1,3147854568=>1,3147854565=>1,3147854301=>1,3147854223=>1,3147854151=>1,3147854150=>1,3147854177=>1,3147854181=>1,3147854206=>1,3147854190=>1,3147854656=>1,3147854770=>1,3147856059=>1,3147856044=>1,3147856102=>1,3147856200=>1,3147856287=>1,3147856282=>1,3147856030=>1,3147856000=>1,3147854828=>1,3147854793=>1,3147854839=>1,3147855943=>1,3147855955=>1,3147864333=>1,3147864337=>1,3147876870=>1,3147875896=>1,3147876876=>1,3147876879=>1,3147876912=>1,3147876885=>1,3147875517=>1,3147875412=>1,3147874462=>1,3147874399=>1,3147874518=>1,3147875349=>1,3147875385=>1,3147875358=>1,3147876920=>1,3147876953=>1,3147877116=>1,3147877077=>1,3147877173=>1,3147877186=>1,3147877216=>1,3147877213=>1,3147877069=>1,3147877056=>1,3147876996=>1,3147876984=>1,3147876997=>1,3147876999=>1,3147877038=>1,3147877014=>1,3147874381=>1,3147874375=>1,3147874010=>1,3147874003=>1,3147874015=>1,3147874035=>1,3147874077=>1,3147874057=>1,3147873921=>1,3147873916=>1,3147873692=>1,3147873688=>1,3147873802=>1,3147873817=>1,3147873864=>1,3147873855=>1,3147874090=>1,3147874104=>1,3147874254=>1,3147874252=>1,3147874279=>1,3147874359=>1,3147874374=>1,3147874366=>1,3147874249=>1,3147874222=>1,3147874118=>1,3147874116=>1,3147874146=>1,3147874168=>1,3147874197=>1,3147877219=>1,3147877225=>1,3147879372=>1,3147879333=>1,3147879375=>1,3147879378=>1,3147879420=>1,3147879415=>1,3147879255=>1,3147879229=>1,3147879105=>1,3147879093=>1,3147879110=>1,3147879212=>1,3147879228=>1,3147879221=>1,3147879427=>1,3147879500=>1,3147879846=>1,3147879814=>1,3147879899=>1,3147879924=>1,3147879963=>1,3147879957=>1,3147879789=>1,3147879729=>1,3147879633=>1,3147879540=>1,3147879648=>1,3147879660=>1,3147879718=>1,3147879085=>1,3147879082=>1,3147877347=>1,3147877342=>1,3147877361=>1,3147877452=>1,3147877506=>1,3147877470=>1,3147877336=>1,3147877333=>1,3147877269=>1,3147877233=>1,3147877284=>1,3147877300=>1,3147877320=>1,3147877318=>1,3147877537=>1,3147877585=>1,3147877794=>1,3147877780=>1,3147877857=>1,3147878926=>1,3147879037=>1,3147878967=>1,3147877776=>1,3147877759=>1,3147877659=>1,3147877641=>1,3147877662=>1,3147877716=>1,3147877728=>1,3147873625=>1,3147873558=>1,3147865399=>1,3147865369=>1,3147865425=>1,3147865442=>1,3147865517=>1,3147865475=>1,3147865353=>1,3147865350=>1,3147865261=>1,3147865257=>1,3147865264=>1,3147865287=>1,3147865293=>1,3147865291=>1,3147865540=>1,3147865547=>1,3147865767=>1,3147865752=>1,3147865770=>1,3147865793=>1,3147865851=>1,3147865794=>1,3147865740=>1,3147865696=>1,3147865620=>1,3147865561=>1,3147865662=>1,3147865663=>1,3147865695=>1,3147865692=>1,3147865244=>1,3147865199=>1,3147864621=>1,3147864615=>1,3147864665=>1,3147864744=>1,3147864757=>1,3147864750=>1,3147864604=>1,3147864595=>1,3147864403=>1,3147864386=>1,3147864502=>1,3147864504=>1,3147864553=>1,3147864550=>1,3147864768=>1,3147864772=>1,3147865000=>1,3147864991=>1,3147865016=>1,3147865131=>1,3147865189=>1,3147865143=>1,3147864930=>1,3147864924=>1,3147864808=>1,3147864778=>1,3147864835=>1,3147864890=>1,3147864901=>1,3147865883=>1,3147865887=>1,3147871697=>1,3147871684=>1,3147871713=>1,3147871846=>1,3147871890=>1,3147871863=>1,3147871657=>1,3147871651=>1,3147871614=>1,3147871603=>1,3147871624=>1,3147871632=>1,3147871637=>1,3147871633=>1,3147871952=>1,3147871955=>1,3147872127=>1,3147872113=>1,3147872179=>1,3147872196=>1,3147872231=>1,3147872203=>1,3147872108=>1,3147872085=>1,3147872012=>1,3147871998=>1,3147872013=>1,3147872041=>1,3147872047=>1,3147871581=>1,3147871565=>1,3147869979=>1,3147866092=>1,3147869986=>1,3147870175=>1,3147871267=>1,3147871257=>1,3147866091=>1,3147866004=>1,3147865908=>1,3147865893=>1,3147865914=>1,3147865963=>1,3147865975=>1,3147865965=>1,3147871287=>1,3147871297=>1,3147871493=>1,3147871467=>1,3147871518=>1,3147871531=>1,3147871542=>1,3147871540=>1,3147871459=>1,3147871419=>1,3147871312=>1,3147871305=>1,3147871353=>1,3147871386=>1,3147871417=>1,3147849817=>1,3147849766=>1,3142886193=>1,3142885994=>1,3142890278=>1,3142892292=>1,3142983018=>1,3142899787=>1,3142885841=>1,3142517756=>1,3141655340=>1,3141618167=>1,3141707350=>1,3142068548=>1,3142504820=>1,3142115395=>1,3142994141=>1,3143000150=>1,3143525318=>1,3143525317=>1,3143588371=>1,3143594469=>1,3143626241=>1,3143597620=>1,3143525314=>1,3143521433=>1,3143022114=>1,3143012589=>1,3143394746=>1,3143520289=>1,3143520313=>1,3143520305=>1,3141584270=>1,3141564479=>1,3140989498=>1,3140828435=>1,3141140749=>1,3141150635=>1,3141226707=>1,3141159275=>1,3140826458=>1,3140826134=>1,3140774395=>1,3140691282=>1,3140823752=>1,3140823919=>1,3140825913=>1,3140824848=>1,3141262638=>1,3141266050=>1,3141457170=>1,3141455650=>1,3141457174=>1,3141493784=>1,3141543427=>1,3141540973=>1,3141454161=>1,3141315094=>1,3141280721=>1,3141280682=>1,3141283630=>1,3141283636=>1,3141311138=>1,3143628593=>1,3144153339=>1,3146804989=>1,3146131385=>1,3147674878=>1,3147825669=>1,3147825886=>1,3147825873=>1,3145699270=>1,3145569202=>1,3145273716=>1,3145229382=>1,3145305847=>1,3145360693=>1,3145559162=>1,3145539709=>1,3147825925=>1,3147825987=>1,3147826813=>1,3147826777=>1,3147826845=>1,3147826915=>1,3147827052=>1,3147827040=>1,3147826755=>1,3147826750=>1,3147826557=>1,3147826020=>1,3147826719=>1,3147826739=>1,3147826741=>1,3145212629=>1,3145204626=>1,3144536292=>1,3144536291=>1,3144536293=>1,3144536294=>1,3144546290=>1,3144542116=>1,3144536290=>1,3144483152=>1,3144310220=>1,3144169386=>1,3144427906=>1,3144435155=>1,3144466135=>1,3144460858=>1,3144547038=>1,3144614062=>1,3144838398=>1,3144837781=>1,3144840870=>1,3144874549=>1,3144914061=>1,3144913981=>1,3144819369=>1,3144818126=>1,3144659052=>1,3144627397=>1,3144670986=>1,3144750094=>1,3144753885=>1,3140611013=>1,3140583338=>1,3136834217=>1,3136156547=>1,3136836586=>1,3136882637=>1,3136970753=>1,3136886198=>1,3136156505=>1,3136150996=>1,3136011005=>1,3136010938=>1,3136021405=>1,3136026872=>1,3136148795=>1,3136141620=>1,3136970818=>1,3136970829=>1,3137523550=>1,3137397186=>1,3137614641=>1,3137618466=>1,3137666299=>1,3137654169=>1,3137396391=>1,3137386183=>1,3136979474=>1,3136971265=>1,3136986390=>1,3136993968=>1,3137347664=>1,3137011655=>1,3136010830=>1,3135982039=>1,3135570230=>1,3135570229=>1,3135574170=>1,3135577389=>1,3135725952=>1,3135580220=>1,3135570226=>1,3135505778=>1,3135486610=>1,3135483548=>1,3135492258=>1,3135498057=>1,3135498160=>1,3135498108=>1,3135795385=>1,3135796250=>1,3135861444=>1,3135861315=>1,3135877158=>1,3135877836=>1,3135981296=>1,3135965234=>1,3135856718=>1,3135843846=>1,3135821785=>1,3135796254=>1,3135821808=>1,3135830866=>1,3135843501=>1,3137739002=>1,3137739064=>1,3139885193=>1,3139787949=>1,3139982865=>1,3139988608=>1,3140231756=>1,3140223286=>1,3139710135=>1,3139669962=>1,3139514530=>1,3139492473=>1,3139514532=>1,3139559994=>1,3139649326=>1,3139560803=>1,3140250422=>1,3140250423=>1,3140571413=>1,3140571412=>1,3140573821=>1,3140575016=>1,3140579841=>1,3140579366=>1,3140571408=>1,3140522806=>1,3140260979=>1,3140260906=>1,3140287598=>1,3140288266=>1,3140317189=>1,3139221842=>1,3139193490=>1,3138402730=>1,3138402486=>1,3138418803=>1,3138459094=>1,3138550483=>1,3138511746=>1,3138307189=>1,3138174429=>1,3137797266=>1,3137796411=>1,3137896501=>1,3138091656=>1,3138125545=>1,3138109994=>1,3138550575=>1,3138562605=>1,3138681658=>1,3138678515=>1,3138693791=>1,3138701629=>1,3138905258=>1,3138881193=>1,3138646326=>1,3138578376=>1,3138572580=>1,3138570953=>1,3138572725=>1,3138572803=>1,3138572838=>1,3147827059=>1,3147827066=>1,3147842089=>1,3147842085=>1,3147842122=>1,3147842265=>1,3147842278=>1,3147842266=>1,3147842068=>1,3147842061=>1,3147841629=>1,3147841576=>1,3147841639=>1,3147841729=>1,3147841786=>1,3147841741=>1,3147842315=>1,3147842398=>1,3147842449=>1,3147842448=>1,3147842451=>1,3147842474=>1,3147843614=>1,3147843589=>1,3147842446=>1,3147842444=>1,3147842418=>1,3147842415=>1,3147842424=>1,3147842431=>1,3147842434=>1,3147842433=>1,3147841555=>1,3147841554=>1,3147837855=>1,3147837801=>1,3147837874=>1,3147837888=>1,3147837934=>1,3147837893=>1,3147837789=>1,3147837766=>1,3147837711=>1,3147837709=>1,3147837713=>1,3147837720=>1,3147837763=>1,3147837756=>1,3147837940=>1,3147839533=>1,3147839704=>1,3147839683=>1,3147839717=>1,3147839723=>1,3147839921=>1,3147839727=>1,3147839682=>1,3147839661=>1,3147839571=>1,3147839565=>1,3147839589=>1,3147839599=>1,3147839635=>1,3147843628=>1,3147843634=>1,3147846136=>1,3147846135=>1,3147846181=>1,3147846187=>1,3147846247=>1,3147846220=>1,3147846124=>1,3147846115=>1,3147845814=>1,3147845737=>1,3147845821=>1,3147845934=>1,3147846058=>1,3147846049=>1,3147846274=>1,3147846285=>1,3147846489=>1,3147846452=>1,3147846592=>1,3147846648=>1,3147849751=>1,3147849657=>1,3147846447=>1,3147846427=>1,3147846357=>1,3147846286=>1,3147846369=>1,3147846379=>1,3147846389=>1,3147845706=>1,3147845695=>1,3147843840=>1,3147843798=>1,3147843843=>1,3147843860=>1,3147843990=>1,3147843891=>1,3147843789=>1,3147843768=>1,3147843697=>1,3147843679=>1,3147843723=>1,3147843726=>1,3147843750=>1,3147843747=>1,3147844003=>1,3147844045=>1,3147844423=>1,3147844410=>1,3147844455=>1,3147844462=>1,3147844497=>1,3147844477=>1,3147844386=>1,3147844345=>1,3147844201=>1,3147844134=>1,3147844215=>1,3147844233=>1,3147844287=>1,3147837704=>1,3147837702=>1,3147831216=>1,3147831204=>1,3147831223=>1,3147831232=>1,3147831439=>1,3147831387=>1,3147831190=>1,3147831184=>1,3147830917=>1,3147830916=>1,3147830928=>1,3147830982=>1,3147831105=>1,3147831010=>1,3147831459=>1,3147831464=>1,3147831639=>1,3147831615=>1,3147831641=>1,3147831661=>1,3147831672=>1,3147831669=>1,3147831595=>1,3147831584=>1,3147831510=>1,3147831502=>1,3147831537=>1,3147831566=>1,3147831571=>1,3147831570=>1,3147830901=>1,3147830899=>1,3147830353=>1,3147830341=>1,3147830376=>1,3147830382=>1,3147830449=>1,3147830448=>1,3147830314=>1,3147830290=>1,3147827085=>1,3147827079=>1,3147827086=>1,3147827118=>1,3147827196=>1,3147827173=>1,3147830465=>1,3147830520=>1,3147830707=>1,3147830704=>1,3147830719=>1,3147830727=>1,3147830808=>1,3147830800=>1,3147830703=>1,3147830692=>1,3147830548=>1,3147830538=>1,3147830583=>1,3147830586=>1,3147830611=>1,3147831673=>1,3147831676=>1,3147837254=>1,3147837238=>1,3147837273=>1,3147837291=>1,3147837334=>1,3147837318=>1,3147837215=>1,3147837115=>1,3147834934=>1,3147834919=>1,3147836937=>1,3147836989=>1,3147837080=>1,3147837048=>1,3147837350=>1,3147837460=>1,3147837594=>1,3147837532=>1,3147837610=>1,3147837616=>1,3147837675=>1,3147837652=>1,3147837526=>1,3147837525=>1,3147837495=>1,3147837463=>1,3147837505=>1,3147837510=>1,3147837511=>1,3147834918=>1,3147834870=>1,3147832482=>1,3147832436=>1,3147832490=>1,3147832493=>1,3147832694=>1,3147832549=>1,3147832425=>1,3147832418=>1,3147831722=>1,3147831700=>1,3147831769=>1,3147831798=>1,3147832398=>1,3147832347=>1,3147834449=>1,3147834492=>1,3147834701=>1,3147834688=>1,3147834723=>1,3147834741=>1,3147834753=>1,3147834751=>1,3147834652=>1,3147834626=>1,3147834515=>1,3147834499=>1,3147834519=>1,3147834580=>1,3147834613=>1,3135483320=>1,);?>
1
+ <?php return array(2088413927=>1,2088413921=>1,2088413931=>1,2088413932=>1,2088413939=>1,2088413938=>1,2088413892=>1,2088413834=>1,2088413778=>1,2088413775=>1,2088413805=>1,2088413807=>1,2088413820=>1,2088413818=>1,2088413958=>1,2088413968=>1,2088414135=>1,2088414129=>1,2088414140=>1,2088414167=>1,2088414248=>1,2088414210=>1,2088414127=>1,2088414111=>1,2088414024=>1,2088413980=>1,2088414045=>1,2088414055=>1,2088414081=>1,2088414068=>1,2088413756=>1,2088413723=>1,2088413512=>1,2088413508=>1,2088413539=>1,2088413554=>1,2088413579=>1,2088413573=>1,2088413502=>1,2088413492=>1,2088413450=>1,2088413431=>1,2088413455=>1,2088413464=>1,2088413478=>1,2088413466=>1,2088413580=>1,2088413585=>1,2088413688=>1,2088413663=>1,2088413690=>1,2088413704=>1,2088413718=>1,2088413713=>1,2088413662=>1,2088413654=>1,2088413604=>1,2088413600=>1,2088413618=>1,2088413624=>1,2088413646=>1,2088414250=>1,2088414259=>1,2088414915=>1,2088414898=>1,2088414919=>1,2088414956=>1,2088415018=>1,2088414973=>1,2088414877=>1,2088414863=>1,2088414718=>1,2088414705=>1,2088414767=>1,2088414831=>1,2088414841=>1,2088414837=>1,2088415048=>1,2088415049=>1,2088415281=>1,2088415275=>1,2088415292=>1,2088415306=>1,2088415379=>1,2088415331=>1,2088415267=>1,2088415240=>1,2088415122=>1,2088415119=>1,2088415128=>1,2088415139=>1,2088415170=>1,2088415147=>1,2088414688=>1,2088414659=>1,2088414384=>1,2088414372=>1,2088414397=>1,2088414412=>1,2088414448=>1,2088414427=>1,2088414349=>1,2088414348=>1,2088414288=>1,2088414281=>1,2088414292=>1,2088414301=>1,2088414340=>1,2088414330=>1,2088414465=>1,2088414466=>1,2088414579=>1,2088414565=>1,2088414582=>1,2088414626=>1,2088414652=>1,2088414644=>1,2088414555=>1,2088414547=>1,2088414507=>1,2088414488=>1,2088414519=>1,2088414525=>1,2088414529=>1,2088413400=>1,2088413386=>1,2088411389=>1,2088411382=>1,2088411402=>1,2088411407=>1,2088411458=>1,2088411441=>1,2088411371=>1,2088411367=>1,2088411236=>1,2088411202=>1,2088411265=>1,2088411279=>1,2088411357=>1,2088411311=>1,2088411478=>1,2088411479=>1,2088411787=>1,2088411779=>1,2088411802=>1,2088411844=>1,2088411879=>1,2088411875=>1,2088411761=>1,2088411749=>1,2088411547=>1,2088411539=>1,2088411548=>1,2088411550=>1,2088411680=>1,2088411564=>1,2088411189=>1,2088411144=>1,2088410678=>1,2088410664=>1,2088410766=>1,2088410813=>1,2088410902=>1,2088410858=>1,2088410659=>1,2088410638=>1,2088410494=>1,2088410471=>1,2088410571=>1,2088410578=>1,2088410609=>1,2088410599=>1,2088410905=>1,2088410920=>1,2088411093=>1,2088411092=>1,2088411095=>1,2088411119=>1,2088411141=>1,2088411121=>1,2088411069=>1,2088411031=>1,2088410934=>1,2088410927=>1,2088410961=>1,2088410974=>1,2088410992=>1,2088411898=>1,2088411917=>1,2088412746=>1,2088412725=>1,2088412765=>1,2088412768=>1,2088412865=>1,2088412796=>1,2088412722=>1,2088412716=>1,2088412595=>1,2088412591=>1,2088412633=>1,2088412654=>1,2088412714=>1,2088412712=>1,2088412881=>1,2088412889=>1,2088413288=>1,2088413287=>1,2088413314=>1,2088413341=>1,2088413383=>1,2088413367=>1,2088413230=>1,2088413227=>1,2088413188=>1,2088412914=>1,2088413195=>1,2088413206=>1,2088413211=>1,2088412562=>1,2088412560=>1,2088412151=>1,2088412137=>1,2088412155=>1,2088412188=>1,2088412240=>1,2088412215=>1,2088412125=>1,2088412119=>1,2088412007=>1,2088411930=>1,2088412031=>1,2088412038=>1,2088412111=>1,2088412099=>1,2088412267=>1,2088412268=>1,2088412481=>1,2088412464=>1,2088412492=>1,2088412494=>1,2088412545=>1,2088412534=>1,2088412448=>1,2088412355=>1,2088412306=>1,2088412303=>1,2088412313=>1,2088412321=>1,2088412349=>1,2088415424=>1,2088415501=>1,2088421803=>1,2088421799=>1,2088421829=>1,2088421834=>1,2088421851=>1,2088421848=>1,2088421796=>1,2088421795=>1,2088421767=>1,2088421751=>1,2088421778=>1,2088421782=>1,2088421794=>1,2088421787=>1,2088421863=>1,2088421871=>1,2088421925=>1,2088421921=>1,2088421948=>1,2088421981=>1,2088422045=>1,2088422037=>1,2088421918=>1,2088421914=>1,2088421881=>1,2088421878=>1,2088421882=>1,2088421902=>1,2088421913=>1,2088421912=>1,2088421748=>1,2088421746=>1,2088421493=>1,2088421492=>1,2088421517=>1,2088421518=>1,2088421533=>1,2088421528=>1,2088421478=>1,2088421469=>1,2088421379=>1,2088421203=>1,2088421394=>1,2088421440=>1,2088421467=>1,2088421447=>1,2088421535=>1,2088421555=>1,2088421723=>1,2088421721=>1,2088421727=>1,2088421736=>1,2088421744=>1,2088421737=>1,2088421710=>1,2088421687=>1,2088421591=>1,2088421578=>1,2088421594=>1,2088421636=>1,2088421680=>1,2088422049=>1,2088422053=>1,2088422646=>1,2088422644=>1,2088422651=>1,2088422653=>1,2088422687=>1,2088422662=>1,2088422640=>1,2088422616=>1,2088422543=>1,2088422539=>1,2088422546=>1,2088422595=>1,2088422614=>1,2088422600=>1,2088422688=>1,2088422707=>1,2088422809=>1,2088422799=>1,2088422875=>1,2088422877=>1,2088422885=>1,2088422882=>1,2088422797=>1,2088422761=>1,2088422724=>1,2088422719=>1,2088422729=>1,2088422747=>1,2088422751=>1,2088422538=>1,2088422510=>1,2088422208=>1,2088422201=>1,2088422209=>1,2088422210=>1,2088422213=>1,2088422212=>1,2088422185=>1,2088422160=>1,2088422063=>1,2088422056=>1,2088422074=>1,2088422098=>1,2088422155=>1,2088422124=>1,2088422235=>1,2088422305=>1,2088422435=>1,2088422420=>1,2088422445=>1,2088422458=>1,2088422491=>1,2088422479=>1,2088422406=>1,2088422375=>1,2088422314=>1,2088422306=>1,2088422319=>1,2088422353=>1,2088422371=>1,2088421186=>1,2088421120=>1,2088417238=>1,2088417236=>1,2088417266=>1,2088417277=>1,2088418058=>1,2088418052=>1,2088417221=>1,2088417214=>1,2088417134=>1,2088417124=>1,2088417143=>1,2088417147=>1,2088417194=>1,2088417148=>1,2088418063=>1,2088418068=>1,2088418295=>1,2088418256=>1,2088418302=>1,2088419088=>1,2088419107=>1,2088419097=>1,2088418251=>1,2088418192=>1,2088418122=>1,2088418089=>1,2088418139=>1,2088418144=>1,2088418171=>1,2088418152=>1,2088417118=>1,2088417094=>1,2088415870=>1,2088415858=>1,2088415873=>1,2088415886=>1,2088416129=>1,2088416077=>1,2088415735=>1,2088415733=>1,2088415548=>1,2088415532=>1,2088415575=>1,2088415613=>1,2088415665=>1,2088415618=>1,2088416542=>1,2088416545=>1,2088416862=>1,2088416858=>1,2088416884=>1,2088416934=>1,2088416973=>1,2088416957=>1,2088416852=>1,2088416843=>1,2088416712=>1,2088416694=>1,2088416736=>1,2088416790=>1,2088416840=>1,2088419109=>1,2088419128=>1,2088420630=>1,2088420529=>1,2088420655=>1,2088420669=>1,2088420736=>1,2088420678=>1,2088420518=>1,2088420500=>1,2088420324=>1,2088420241=>1,2088420394=>1,2088420396=>1,2088420484=>1,2088420402=>1,2088420756=>1,2088420765=>1,2088420945=>1,2088420933=>1,2088420987=>1,2088421020=>1,2088421110=>1,2088421025=>1,2088420921=>1,2088420896=>1,2088420813=>1,2088420798=>1,2088420833=>1,2088420848=>1,2088420874=>1,2088420223=>1,2088420219=>1,2088419334=>1,2088419313=>1,2088419361=>1,2088419472=>1,2088419710=>1,2088419526=>1,2088419230=>1,2088419224=>1,2088419133=>1,2088419130=>1,2088419134=>1,2088419143=>1,2088419198=>1,2088419197=>1,2088419773=>1,2088419781=>1,2088420059=>1,2088420041=>1,2088420077=>1,2088420148=>1,2088420213=>1,2088420196=>1,2088419995=>1,2088419988=>1,2088419862=>1,2088419847=>1,2088419915=>1,2088419928=>1,2088419967=>1,2088410461=>1,2088410372=>1,2088400459=>1,2088400437=>1,2088400483=>1,2088400493=>1,2088400505=>1,2088400496=>1,2088400436=>1,2088400424=>1,2088400352=>1,2088400345=>1,2088400362=>1,2088400399=>1,2088400423=>1,2088400404=>1,2088400509=>1,2088400516=>1,2088400601=>1,2088400576=>1,2088400604=>1,2088400610=>1,2088400616=>1,2088400612=>1,2088400575=>1,2088400572=>1,2088400525=>1,2088400524=>1,2088400528=>1,2088400537=>1,2088400545=>1,2088400543=>1,2088400337=>1,2088400334=>1,2088400130=>1,2088400112=>1,2088400135=>1,2088400164=>1,2088400185=>1,2088400181=>1,2088400111=>1,2088400103=>1,2088400062=>1,2088400035=>1,2088400071=>1,2088400078=>1,2088400097=>1,2088400095=>1,2088400188=>1,2088400200=>1,2088400267=>1,2088400262=>1,2088400268=>1,2088400302=>1,2088400323=>1,2088400306=>1,2088400257=>1,2088400252=>1,2088400203=>1,2088400202=>1,2088400211=>1,2088400228=>1,2088400244=>1,2088400619=>1,2088400626=>1,2088401387=>1,2088401385=>1,2088401392=>1,2088401403=>1,2088401425=>1,2088401404=>1,2088401376=>1,2088401366=>1,2088401261=>1,2088401217=>1,2088401277=>1,2088401329=>1,2088401354=>1,2088401346=>1,2088401473=>1,2088401488=>1,2088401709=>1,2088401667=>1,2088401713=>1,2088401719=>1,2088401755=>1,2088401722=>1,2088401629=>1,2088401551=>1,2088401522=>1,2088401518=>1,2088401532=>1,2088401539=>1,2088401545=>1,2088401206=>1,2088401168=>1,2088400887=>1,2088400877=>1,2088400899=>1,2088400903=>1,2088400910=>1,2088400906=>1,2088400875=>1,2088400872=>1,2088400657=>1,2088400630=>1,2088400660=>1,2088400726=>1,2088400823=>1,2088400740=>1,2088400924=>1,2088400930=>1,2088401045=>1,2088401044=>1,2088401048=>1,2088401054=>1,2088401150=>1,2088401149=>1,2088401024=>1,2088401016=>1,2088400935=>1,2088400931=>1,2088400976=>1,2088400998=>1,2088401010=>1,2088400010=>1,2088400007=>1,2088398999=>1,2088398983=>1,2088399033=>1,2088399044=>1,2088399069=>1,2088399051=>1,2088398976=>1,2088398969=>1,2088398912=>1,2088398850=>1,2088398923=>1,2088398938=>1,2088398954=>1,2088398945=>1,2088399075=>1,2088399087=>1,2088399238=>1,2088399220=>1,2088399241=>1,2088399247=>1,2088399262=>1,2088399250=>1,2088399194=>1,2088399171=>1,2088399106=>1,2088399098=>1,2088399109=>1,2088399119=>1,2088399147=>1,2088399133=>1,2088398321=>1,2088398319=>1,2088397717=>1,2088397702=>1,2088397722=>1,2088397743=>1,2088397798=>1,2088397776=>1,2088397689=>1,2088397681=>1,2088397542=>1,2088397508=>1,2088397566=>1,2088397606=>1,2088397656=>1,2088397625=>1,2088397812=>1,2088397857=>1,2088398225=>1,2088398117=>1,2088398265=>1,2088398269=>1,2088398286=>1,2088398283=>1,2088398116=>1,2088398107=>1,2088397916=>1,2088397902=>1,2088397956=>1,2088398067=>1,2088398104=>1,2088399277=>1,2088399288=>1,2088399837=>1,2088399829=>1,2088399847=>1,2088399853=>1,2088399875=>1,2088399870=>1,2088399828=>1,2088399825=>1,2088399775=>1,2088399744=>1,2088399777=>1,2088399789=>1,2088399824=>1,2088399813=>1,2088399882=>1,2088399886=>1,2088399968=>1,2088399961=>1,2088399971=>1,2088399972=>1,2088399991=>1,2088399981=>1,2088399959=>1,2088399941=>1,2088399920=>1,2088399891=>1,2088399927=>1,2088399936=>1,2088399937=>1,2088399741=>1,2088399731=>1,2088399448=>1,2088399413=>1,2088399455=>1,2088399458=>1,2088399477=>1,2088399462=>1,2088399410=>1,2088399402=>1,2088399320=>1,2088399295=>1,2088399327=>1,2088399341=>1,2088399401=>1,2088399349=>1,2088399531=>1,2088399564=>1,2088399660=>1,2088399658=>1,2088399670=>1,2088399674=>1,2088399699=>1,2088399684=>1,2088399649=>1,2088399647=>1,2088399589=>1,2088399580=>1,2088399593=>1,2088399597=>1,2088399603=>1,2088401770=>1,2088401786=>1,2088406978=>1,2088406977=>1,2088406981=>1,2088407005=>1,2088407048=>1,2088407009=>1,2088406969=>1,2088406963=>1,2088406843=>1,2088406825=>1,2088406876=>1,2088406888=>1,2088406922=>1,2088406899=>1,2088407050=>1,2088407064=>1,2088407270=>1,2088407251=>1,2088407275=>1,2088407288=>1,2088407312=>1,2088407299=>1,2088407216=>1,2088407213=>1,2088407109=>1,2088407106=>1,2088407123=>1,2088407125=>1,2088407194=>1,2088407172=>1,2088406818=>1,2088406782=>1,2088404517=>1,2088404449=>1,2088404612=>1,2088404639=>1,2088406301=>1,2088406277=>1,2088404437=>1,2088404417=>1,2088404367=>1,2088404320=>1,2088404374=>1,2088404377=>1,2088404390=>1,2088404385=>1,2088406340=>1,2088406343=>1,2088406608=>1,2088406606=>1,2088406634=>1,2088406669=>1,2088406758=>1,2088406742=>1,2088406605=>1,2088406599=>1,2088406382=>1,2088406380=>1,2088406469=>1,2088406507=>1,2088406521=>1,2088407367=>1,2088407386=>1,2088409094=>1,2088409091=>1,2088409106=>1,2088409109=>1,2088409184=>1,2088409156=>1,2088409035=>1,2088409020=>1,2088408605=>1,2088408318=>1,2088408654=>1,2088408716=>1,2088408999=>1,2088408773=>1,2088409238=>1,2088409253=>1,2088409425=>1,2088409422=>1,2088409426=>1,2088409454=>1,2088409570=>1,2088409510=>1,2088409377=>1,2088409354=>1,2088409271=>1,2088409262=>1,2088409296=>1,2088409309=>1,2088409345=>1,2088408316=>1,2088408315=>1,2088407549=>1,2088407542=>1,2088407565=>1,2088407601=>1,2088407648=>1,2088407616=>1,2088407539=>1,2088407521=>1,2088407438=>1,2088407434=>1,2088407454=>1,2088407465=>1,2088407519=>1,2088407494=>1,2088407685=>1,2088407728=>1,2088408201=>1,2088408185=>1,2088408210=>1,2088408241=>1,2088408276=>1,2088408247=>1,2088408128=>1,2088408082=>1,2088407765=>1,2088407756=>1,2088407768=>1,2088407803=>1,2088408070=>1,2088404292=>1,2088404290=>1,2088402374=>1,2088402355=>1,2088402379=>1,2088402394=>1,2088402401=>1,2088402400=>1,2088402340=>1,2088402333=>1,2088402258=>1,2088402244=>1,2088402271=>1,2088402276=>1,2088402303=>1,2088402291=>1,2088402402=>1,2088402404=>1,2088402633=>1,2088402628=>1,2088402645=>1,2088402649=>1,2088402672=>1,2088402660=>1,2088402576=>1,2088402566=>1,2088402471=>1,2088402461=>1,2088402482=>1,2088402520=>1,2088402551=>1,2088402543=>1,2088402237=>1,2088402235=>1,2088401886=>1,2088401875=>1,2088401892=>1,2088401897=>1,2088401955=>1,2088401908=>1,2088401871=>1,2088401869=>1,2088401818=>1,2088401812=>1,2088401819=>1,2088401824=>1,2088401849=>1,2088401827=>1,2088401960=>1,2088401984=>1,2088402178=>1,2088402158=>1,2088402193=>1,2088402195=>1,2088402206=>1,2088402200=>1,2088402067=>1,2088402065=>1,2088401993=>1,2088401985=>1,2088402001=>1,2088402014=>1,2088402060=>1,2088402682=>1,2088402686=>1,2088403942=>1,2088403937=>1,2088403946=>1,2088403988=>1,2088404004=>1,2088403990=>1,2088403893=>1,2088403839=>1,2088403668=>1,2088403645=>1,2088403673=>1,2088403728=>1,2088403831=>1,2088403782=>1,2088404041=>1,2088404057=>1,2088404226=>1,2088404196=>1,2088404248=>1,2088404266=>1,2088404282=>1,2088404273=>1,2088404121=>1,2088404106=>1,2088404073=>1,2088404059=>1,2088404080=>1,2088404088=>1,2088404089=>1,2088403582=>1,2088403533=>1,2088402926=>1,2088402865=>1,2088402951=>1,2088402991=>1,2088403007=>1,2088403003=>1,2088402857=>1,2088402852=>1,2088402721=>1,2088402698=>1,2088402724=>1,2088402777=>1,2088402832=>1,2088402791=>1,2088403051=>1,2088403078=>1,2088403282=>1,2088403260=>1,2088403329=>1,2088403444=>1,2088403514=>1,2088403492=>1,2088403223=>1,2088403216=>1,2088403136=>1,2088403125=>1,2088403152=>1,2088403192=>1,2088403197=>1,2088397490=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-3.php CHANGED
@@ -1 +1 @@
1
- <?php return array(787881984=>787890175,778672208=>778672231,774163416=>774163455,774163392=>774163399,774163352=>774163359,774163128=>774163199,774163016=>774163071,774162992=>774162999,773033728=>773033983,773032192=>773032447,772808704=>772810751,782418102=>1,782418086=>1,782418730=>1,782113267=>1,782138659=>1,782340683=>1,781701569=>1,782393481=>1,782452877=>1,782618818=>1,782615904=>1,782618827=>1,782618831=>1,782620738=>1,782619153=>1,782540154=>1,782538470=>1,782453792=>1,781696355=>1,782477355=>1,782490029=>1,782538426=>1,782422341=>1,781619501=>1,781066143=>1,781065035=>1,781073254=>1,781182129=>1,781363463=>1,781182726=>1,781063947=>1,781063873=>1,780154483=>1,780152182=>1,780155964=>1,780211087=>1,780226840=>1,781373613=>1,781378279=>1,781457991=>1,781455946=>1,781457998=>1,782621903=>1,781685245=>1,781654885=>1,781455906=>1,781455602=>1,781380339=>1,781380338=>1,781393278=>1,781409829=>1,781448508=>1,781688159=>1,782621908=>1,782679280=>1,782679275=>1,782679273=>1,782679683=>1,782679728=>1,782679732=>1,782679730=>1,782679269=>1,782679265=>1,782679245=>1,782679241=>1,782679251=>1,782679255=>1,782679259=>1,782679257=>1,782679733=>1,782679741=>1,783098931=>1,782977415=>1,783133694=>1,783137895=>1,783157653=>1,783157610=>1,782895722=>1,782759340=>1,782679743=>1,782679742=>1,782679757=>1,782716141=>1,782759219=>1,782759211=>1,782679240=>1,782679237=>1,782629699=>1,782629348=>1,782629780=>1,782629787=>1,782630324=>1,782630055=>1,782628756=>1,782627494=>1,782622251=>1,782622118=>1,782622554=>1,782622681=>1,782624261=>1,782623863=>1,782663945=>1,782671889=>1,782678767=>1,782678762=>1,782678769=>1,782678772=>1,782678779=>1,782678774=>1,782678760=>1,782678743=>1,782673710=>1,782673170=>1,782674435=>1,782674436=>1,782674438=>1,782674437=>1,780133110=>1,780036226=>1,778403060=>1,778402619=>1,778403378=>1,778403961=>1,778406446=>1,778405870=>1,778402282=>1,778402075=>1,778400185=>1,778400183=>1,778400211=>1,778400235=>1,778400803=>1,778400446=>1,778406791=>1,778407151=>1,778412162=>1,778411954=>1,778412249=>1,778413563=>1,778414764=>1,778414730=>1,778410673=>1,778409950=>1,778407853=>1,778407598=>1,778408049=>1,778408543=>1,778409321=>1,778395846=>1,778394315=>1,776817371=>1,776554434=>1,776989040=>1,778109114=>1,778225433=>1,778218995=>1,776554195=>1,776554048=>1,776501948=>1,776501735=>1,776531592=>1,776552548=>1,776553352=>1,776553250=>1,778225587=>1,778226735=>1,778385514=>1,778385395=>1,778386642=>1,778393148=>1,778393749=>1,778393365=>1,778380374=>1,778376591=>1,778274289=>1,778274186=>1,778319145=>1,778371521=>1,778373427=>1,778415892=>1,778417122=>1,778672201=>1,778672200=>1,778672203=>1,778672207=>1,778840027=>1,778696497=>1,778672199=>1,778672198=>1,778648974=>1,778647663=>1,778664570=>1,778672193=>1,778672195=>1,778672194=>1,778869904=>1,779408104=>1,779709001=>1,779596774=>1,783157722=>1,780046791=>1,780125796=>1,780082703=>1,779568022=>1,779549406=>1,779490867=>1,779490393=>1,779491082=>1,779495177=>1,779496934=>1,778645833=>1,778475523=>1,778421464=>1,778421294=>1,778421727=>1,778421929=>1,778423450=>1,778422153=>1,778421213=>1,778421150=>1,778417816=>1,778417556=>1,778418080=>1,778418841=>1,778421130=>1,778425395=>1,778425737=>1,778432796=>1,778432640=>1,778432815=>1,778434240=>1,778449097=>1,778435613=>1,778430449=>1,778429633=>1,778426439=>1,778426334=>1,778427043=>1,778427223=>1,778427553=>1,780126983=>1,783268149=>1,794303456=>1,794302504=>1,794303469=>1,794303618=>1,794304604=>1,794304180=>1,794301969=>1,794300371=>1,794298144=>1,794298139=>1,794298385=>1,794299962=>1,794300198=>1,794300059=>1,794304627=>1,794309429=>1,794337905=>1,794335077=>1,794337984=>1,794344451=>1,794344613=>1,794344610=>1,794334900=>1,794332137=>1,794331222=>1,794331182=>1,794331591=>1,794331932=>1,794332082=>1,794332000=>1,794298120=>1,794297922=>1,788133860=>1,788133086=>1,788273208=>1,788273657=>1,788367341=>1,788273666=>1,788132864=>1,788132797=>1,787897670=>1,787896745=>1,788071219=>1,788079981=>1,788081405=>1,788080015=>1,788382750=>1,788385156=>1,794296673=>1,794296632=>1,794296780=>1,794297088=>1,794297528=>1,794297378=>1,794296466=>1,794296424=>1,788403125=>1,788385157=>1,788522723=>1,790692870=>1,792128086=>1,794344745=>1,794371439=>1,839008462=>1,839004098=>1,839040548=>1,839061739=>1,839162100=>1,839125861=>1,838939415=>1,838893694=>1,837285333=>1,837285314=>1,837606421=>1,837836027=>1,838367130=>1,838347034=>1,839163344=>1,839170260=>1,839358240=>1,839355666=>1,839358255=>1,839360986=>1,839365220=>1,839365154=>1,839355650=>1,839354378=>1,839339609=>1,839339608=>1,839351484=>1,839351534=>1,839352450=>1,839351539=>1,837274966=>1,837226860=>1,827084867=>1,826925524=>1,827184591=>1,829868804=>1,831793143=>1,831275859=>1,825380037=>1,822211723=>1,803154150=>1,794372011=>1,803180606=>1,822092242=>1,822204434=>1,822093809=>1,831911920=>1,831994429=>1,836046746=>1,836046474=>1,836046859=>1,836073171=>1,837046356=>1,837043883=>1,836019750=>1,836010557=>1,835609054=>1,832319262=>1,835614567=>1,835673442=>1,836010461=>1,787895037=>1,787894651=>1,784085552=>1,784083632=>1,784086826=>1,784087949=>1,784305068=>1,784304910=>1,784082192=>1,784080626=>1,784014807=>1,784008092=>1,784073444=>1,784073765=>1,784076298=>1,784075287=>1,784305213=>1,784317105=>1,785487964=>1,785466956=>1,785504360=>1,785505955=>1,785908681=>1,785509514=>1,785466955=>1,785462251=>1,784325258=>1,784324100=>1,784330102=>1,784639919=>1,785453018=>1,785426692=>1,783983920=>1,783981566=>1,783713370=>1,783706814=>1,783778199=>1,783800413=>1,783801030=>1,783800560=>1,783684583=>1,783684503=>1,783268269=>1,776501367=>1,783684132=>1,783684207=>1,783684341=>1,783684319=>1,783801031=>1,783801479=>1,783908166=>1,783898574=>1,783977632=>1,783977865=>1,783981203=>1,783980563=>1,783898521=>1,783898202=>1,783801770=>1,783801489=>1,783801831=>1,783802022=>1,783802027=>1,785911340=>1,785917544=>1,787440300=>1,787361207=>1,787442506=>1,787442882=>1,787628784=>1,787445172=>1,787361206=>1,787353502=>1,787210978=>1,787210779=>1,787211078=>1,787256800=>1,787348953=>1,787339132=>1,787750950=>1,787801883=>1,787886487=>1,787886264=>1,787889436=>1,787889489=>1,787894474=>1,787894373=>1,787884836=>1,787884488=>1,787823471=>1,787806395=>1,787883915=>1,787884171=>1,787884359=>1,787884191=>1,787210394=>1,787106895=>1,786528108=>1,786432680=>1,786558858=>1,786558898=>1,786591394=>1,786590746=>1,786423014=>1,786398675=>1,786060645=>1,785919353=>1,786112926=>1,786128341=>1,786371550=>1,786134018=>1,786591453=>1,786634893=>1,786820780=>1,786804203=>1,786920858=>1,787009446=>1,787081835=>1,787021894=>1,786796528=>1,786795180=>1,786654035=>1,786653402=>1,786741537=>1,786745107=>1,786782898=>1,783200460=>1,776494673=>1,758592099=>1,758591271=>1,758592227=>1,758593356=>1,758594937=>1,758594469=>1,758590684=>1,758590132=>1,758584776=>1,758584555=>1,758586182=>1,758587343=>1,758590118=>1,758589890=>1,758595233=>1,758599667=>1,758625824=>1,758625075=>1,758633689=>1,758644481=>1,758665913=>1,758644507=>1,758622785=>1,758621985=>1,758603280=>1,758602450=>1,758612263=>1,758618939=>1,758620055=>1,758582295=>1,758582036=>1,757149900=>1,757147474=>1,757150883=>1,757151847=>1,757156636=>1,757154116=>1,757139502=>1,757135512=>1,757132901=>1,757131825=>1,757133811=>1,757135069=>1,757135334=>1,757135086=>1,757206661=>1,757206907=>1,758096498=>1,758094052=>1,758271284=>1,758579602=>1,758579757=>1,758579635=>1,758076302=>1,758008569=>1,757286775=>1,757239558=>1,757291554=>1,757443314=>1,757993486=>1,758676773=>1,758677393=>1,759211649=>1,759211526=>1,759211653=>1,759211657=>1,759211662=>1,759211661=>1,759211522=>1,759189725=>1,759130813=>1,759130747=>1,759133398=>1,759136228=>1,759189713=>1,759184577=>1,759211665=>1,759211669=>1,759237429=>1,759223798=>1,759767931=>1,759797419=>1,760094183=>1,760091046=>1,759211745=>1,759211729=>1,759211677=>1,759211673=>1,759211681=>1,759211689=>1,759211693=>1,759130562=>1,759130527=>1,759097082=>1,759096101=>1,759098569=>1,759098858=>1,759107297=>1,759105186=>1,759095520=>1,759067680=>1,758788296=>1,758682760=>1,758788415=>1,758839709=>1,758870538=>1,758839764=>1,759116077=>1,759116447=>1,759124785=>1,759124495=>1,759124973=>1,759125209=>1,759130340=>1,759128379=>1,759121463=>1,759121194=>1,759119164=>1,759117953=>1,759119222=>1,759120753=>1,759121192=>1,757128288=>1,757127537=>1,736128369=>1,736128289=>1,736128371=>1,736180274=>1,736220868=>1,736204514=>1,736128146=>1,736109166=>1,715124765=>1,712601555=>1,715125977=>1,717759259=>1,717918769=>1,717850759=>1,736330986=>1,736330987=>1,737174729=>1,737174699=>1,737271495=>1,737271806=>1,737341907=>1,737306667=>1,737174534=>1,737169754=>1,736494727=>1,736395992=>1,736573990=>1,737156646=>1,737156647=>1,712577443=>1,712511909=>1,710976252=>1,710968152=>1,710982507=>1,710984935=>1,711166736=>1,711074380=>1,710967924=>1,708752166=>1,707986457=>1,704279681=>1,707988839=>1,708187472=>1,708711099=>1,708650910=>1,711987242=>1,711987400=>1,712431834=>1,712312693=>1,712431835=>1,712431836=>1,712431838=>1,712431837=>1,711992993=>1,711988169=>1,711988033=>1,711987985=>1,711988121=>1,711988136=>1,711988142=>1,737374216=>1,737374217=>1,757087009=>1,757086522=>1,757088330=>1,757088986=>1,757089470=>1,757089012=>1,757086007=>1,757084612=>1,757074634=>1,757074532=>1,757074981=>1,757077137=>1,757083174=>1,757082980=>1,757090798=>1,757092113=>1,757111585=>1,757110601=>1,757113117=>1,757117139=>1,757121068=>1,757121067=>1,757109483=>1,757109333=>1,757094293=>1,757092393=>1,757104802=>1,757104932=>1,757105496=>1,757073940=>1,737944846=>1,737374296=>1,737374295=>1,737374321=>1,737374322=>1,737374330=>1,737374323=>1,737374294=>1,737374287=>1,737374231=>1,737374218=>1,737374232=>1,737374233=>1,737374286=>1,737374285=>1,737374331=>1,737374332=>1,737825474=>1,737675738=>1,737874046=>1,737939932=>1,737939959=>1,737939938=>1,737595527=>1,737528440=>1,737382018=>1,737381650=>1,737397962=>1,737498605=>1,737502209=>1,760096322=>1,760152979=>1,774216991=>1,774163231=>1,774242383=>1,774254604=>1,774254817=>1,774254775=>1,774163015=>1,774162974=>1,774162788=>1,774162739=>1,774162943=>1,774162944=>1,774162973=>1,774162972=>1,774255378=>1,774255492=>1,774334202=>1,774315014=>1,774357040=>1,774360321=>1,774366081=>1,774361086=>1,774306507=>1,774306343=>1,774274828=>1,774273406=>1,774301649=>1,774302194=>1,774304016=>1,774162688=>1,774162432=>1,773615233=>1,773615079=>1,773615240=>1,773615348=>1,773639447=>1,773615482=>1,773615011=>1,773614374=>1,773277379=>1,773272500=>1,773277777=>1,773281055=>1,773604510=>1,773293598=>1,773639594=>1,773639955=>1,774013482=>1,773908718=>1,774107003=>1,774120575=>1,774121266=>1,774120999=>1,773858876=>1,773849698=>1,773672468=>1,773640077=>1,773716206=>1,773729751=>1,773729868=>1,774366088=>1,774405385=>1,775905627=>1,775887626=>1,775905718=>1,775905767=>1,775905869=>1,775905862=>1,775769562=>1,775682039=>1,775654598=>1,775653330=>1,775658359=>1,775658945=>1,775680692=>1,775674024=>1,776488851=>1,776489465=>1,704278921=>1,776494426=>1,776495981=>1,776497683=>1,776500743=>1,776499581=>1,776494054=>1,776493918=>1,776489898=>1,776489615=>1,776490220=>1,776491800=>1,776492714=>1,775652537=>1,775643941=>1,774705019=>1,774597479=>1,774730261=>1,774736199=>1,774807866=>1,774792992=>1,774582877=>1,774472788=>1,774411330=>1,774405589=>1,774445013=>1,774454239=>1,774472327=>1,774469417=>1,774852345=>1,774934980=>1,775278348=>1,775272719=>1,775278555=>1,775377972=>1,775630423=>1,775628399=>1,775201950=>1,775063494=>1,774943206=>1,774935930=>1,774954414=>1,774976271=>1,774994363=>1,773272397=>1,773269267=>1,762556192=>1,762556163=>1,762556263=>1,762556292=>1,762556386=>1,762556328=>1,762556025=>1,762555962=>1,762555600=>1,762555539=>1,762555613=>1,762555698=>1,762555904=>1,762555789=>1,762870082=>1,762886279=>1,771803768=>1,771753964=>1,772014236=>1,772019721=>1,772023026=>1,772020694=>1,763297213=>1,763297026=>1,763046206=>1,762886508=>1,763046230=>1,763117912=>1,763118414=>1,762555453=>1,762555405=>1,760187208=>1,760180078=>1,760187435=>1,760189667=>1,760193498=>1,760192532=>1,760180023=>1,760179808=>1,760154819=>1,760154814=>1,760174981=>1,760175486=>1,760177509=>1,760176829=>1,760195921=>1,760196765=>1,760207280=>1,760207067=>1,762347130=>1,762347186=>1,762475618=>1,762468373=>1,760206952=>1,760206891=>1,760199723=>1,760199282=>1,760203956=>1,760205232=>1,760206843=>1,772023947=>1,772024299=>1,772846446=>1,772828194=>1,772858378=>1,772858451=>1,772860547=>1,772859822=>1,772804231=>1,772803393=>1,772459879=>1,772435807=>1,772472891=>1,772476178=>1,772707373=>1,772490355=>1,772882390=>1,772891101=>1,773071227=>1,773066179=>1,773080913=>1,773141905=>1,773250997=>1,773155814=>1,773066171=>1,773063011=>1,773032308=>1,773021142=>1,773032327=>1,773056306=>1,773063010=>1,772409995=>1,772391700=>1,772041423=>1,772041123=>1,772042620=>1,772045485=>1,772051025=>1,772046910=>1,772040483=>1,772040291=>1,772028337=>1,772026825=>1,772029659=>1,772031526=>1,772036811=>1,772036524=>1,772051749=>1,772058676=>1,772285888=>1,772214414=>1,772285889=>1,772288538=>1,772339980=>1,772339978=>1,772131319=>1,772122228=>1,772079042=>1,772061358=>1,772079481=>1,772096819=>1,772122078=>1,776501007=>1,);?>
1
+ <?php return array(737161971=>1,737156646=>1,737174729=>1,737229303=>1,737269949=>1,737229304=>1,737152058=>1,736614538=>1,736573864=>1,736544087=>1,736573978=>1,736573979=>1,736613262=>1,736588066=>1,737270295=>1,737270342=>1,737374217=>1,737374216=>1,737374218=>1,737374231=>1,737374233=>1,737374232=>1,737366785=>1,737341907=>1,737270570=>1,737270419=>1,737271410=>1,737271630=>1,737306667=>1,737271641=>1,736543758=>1,736533730=>1,736220868=>1,736220862=>1,736273003=>1,736304703=>1,736359444=>1,736330987=>1,736220594=>1,736220474=>1,736147413=>1,736146886=>1,736183109=>1,736183399=>1,736220245=>1,736215162=>1,736388048=>1,736395992=>1,736480258=>1,736469752=>1,736480273=>1,736485398=>1,736494727=>1,736485795=>1,736469751=>1,736469736=>1,736469595=>1,736469506=>1,736469604=>1,736469711=>1,736469733=>1,737374285=>1,737374286=>1,757077137=>1,757074981=>1,757078297=>1,757078300=>1,757081764=>1,757078813=>1,756595421=>1,756059241=>1,737958305=>1,737951349=>1,738098210=>1,738122026=>1,747667146=>1,738159168=>1,757084514=>1,757084612=>1,757111585=>1,757110601=>1,757112746=>1,757121067=>1,757130920=>1,757127537=>1,757109333=>1,757094293=>1,757088190=>1,757086007=>1,757088296=>1,757088396=>1,757091420=>1,757089470=>1,737944846=>1,737939911=>1,737374332=>1,737374331=>1,737381650=>1,737382018=>1,737498413=>1,737397962=>1,737374330=>1,737374323=>1,737374294=>1,737374287=>1,737374295=>1,737374296=>1,737374322=>1,737374321=>1,737498477=>1,737498606=>1,737869570=>1,737869289=>1,737869700=>1,737870083=>1,737924966=>1,737870330=>1,737869146=>1,737869130=>1,737528440=>1,737502209=>1,737616254=>1,737825474=>1,737868860=>1,736146854=>1,736146835=>1,702494093=>1,702488072=>1,702512830=>1,702616594=>1,702775442=>1,702768987=>1,702486846=>1,702474810=>1,702291082=>1,702176307=>1,702311360=>1,702312425=>1,702367087=>1,702341414=>1,702776489=>1,702777450=>1,703073267=>1,702942636=>1,703076218=>1,703078842=>1,703083383=>1,703081876=>1,702802498=>1,702800596=>1,702778984=>1,702777738=>1,702780798=>1,702780799=>1,702788820=>1,702782009=>1,702176007=>1,702134351=>1,702075067=>1,702075049=>1,702075069=>1,702075182=>1,702075432=>1,702075430=>1,702075004=>1,702021426=>1,701978084=>1,701976346=>1,702017693=>1,702017697=>1,702017705=>1,702017703=>1,702075446=>1,702075767=>1,702076679=>1,702076571=>1,702076814=>1,702076824=>1,702080869=>1,702076888=>1,702076391=>1,702076233=>1,702076081=>1,702076079=>1,702076107=>1,702076190=>1,702076201=>1,703084193=>1,703084283=>1,711988142=>1,711988136=>1,711988169=>1,712431834=>1,712431836=>1,712431835=>1,711988121=>1,711988033=>1,710982507=>1,710976252=>1,710984935=>1,711987242=>1,711987985=>1,711987400=>1,712431837=>1,712431838=>1,717918769=>1,717869166=>1,736109166=>1,736146575=>1,736146802=>1,736146725=>1,717760406=>1,717759649=>1,712577443=>1,712573039=>1,715124765=>1,715125977=>1,717759259=>1,710970717=>1,710968152=>1,703290118=>1,703289400=>1,703290956=>1,703457072=>1,703528698=>1,703522714=>1,703135376=>1,703134615=>1,703095541=>1,703085457=>1,703096011=>1,703097136=>1,703113176=>1,703097428=>1,703742238=>1,703742345=>1,707988839=>1,707986457=>1,708650910=>1,708719045=>1,710967924=>1,708720710=>1,704829196=>1,704279447=>1,703761446=>1,703742349=>1,703761511=>1,703767986=>1,703793282=>1,757132769=>1,757132901=>1,762347186=>1,762347130=>1,762445099=>1,762445101=>1,762445318=>1,762445314=>1,760207280=>1,760207222=>1,760203956=>1,760200559=>1,760205232=>1,760206891=>1,760207067=>1,760206952=>1,762445320=>1,762445321=>1,762445336=>1,762445333=>1,762445338=>1,762445341=>1,762445346=>1,762445343=>1,762445332=>1,762445331=>1,762445324=>1,762445323=>1,762445325=>1,762445326=>1,762445329=>1,762445328=>1,760199723=>1,760199282=>1,760152979=>1,760094736=>1,760154518=>1,760154819=>1,760171392=>1,760169276=>1,759767931=>1,759734981=>1,759211689=>1,759211681=>1,759211693=>1,759211745=>1,759237429=>1,759223798=>1,760171692=>1,760173936=>1,760180078=>1,760180023=>1,760187208=>1,760187435=>1,760196960=>1,760189667=>1,760179808=>1,760177770=>1,760175486=>1,760174981=>1,760176006=>1,760176605=>1,760177509=>1,762445348=>1,762445350=>1,762445436=>1,762445435=>1,762445437=>1,762445439=>1,762445445=>1,762445441=>1,762445432=>1,762445431=>1,762445421=>1,762445420=>1,762445425=>1,762445427=>1,762445429=>1,762445428=>1,762445446=>1,762445447=>1,762445473=>1,762445470=>1,762445474=>1,762445475=>1,762445478=>1,762445476=>1,762445468=>1,762445467=>1,762445453=>1,762445452=>1,762445458=>1,762445465=>1,762445466=>1,762445419=>1,762445417=>1,762445373=>1,762445372=>1,762445377=>1,762445378=>1,762445382=>1,762445380=>1,762445367=>1,762445365=>1,762445357=>1,762445352=>1,762445358=>1,762445359=>1,762445363=>1,762445362=>1,762445385=>1,762445386=>1,762445410=>1,762445408=>1,762445411=>1,762445413=>1,762445415=>1,762445414=>1,762445402=>1,762445400=>1,762445391=>1,762445390=>1,762445396=>1,762445397=>1,762445398=>1,759211677=>1,759211673=>1,758581595=>1,758579757=>1,758582295=>1,758584555=>1,758587343=>1,758585567=>1,758579602=>1,758354522=>1,758017516=>1,757632825=>1,758076302=>1,758168773=>1,758271284=>1,758189974=>1,758590132=>1,758590282=>1,758612263=>1,758611026=>1,758615838=>1,758616936=>1,758621985=>1,758618162=>1,758599667=>1,758595233=>1,758590905=>1,758590684=>1,758591246=>1,758593356=>1,758594469=>1,758594361=>1,757454223=>1,757443314=>1,757139502=>1,757138470=>1,757147474=>1,757149900=>1,757154116=>1,757150883=>1,757136830=>1,757136332=>1,757134360=>1,757134320=>1,757135069=>1,757135334=>1,757136306=>1,757135918=>1,757154936=>1,757155056=>1,757286775=>1,757284805=>1,757287737=>1,757291556=>1,757420971=>1,757293250=>1,757280035=>1,757239558=>1,757177101=>1,757156636=>1,757206907=>1,757206923=>1,757207170=>1,758622841=>1,758625075=>1,759134955=>1,759133398=>1,759171090=>1,759171091=>1,759171339=>1,759171101=>1,759131046=>1,759130813=>1,759124973=>1,759121413=>1,759124980=>1,759125209=>1,759130758=>1,759128379=>1,759171434=>1,759184577=>1,759211657=>1,759211653=>1,759211661=>1,759211662=>1,759211669=>1,759211665=>1,759211649=>1,759211526=>1,759189725=>1,759188123=>1,759190597=>1,759193896=>1,759211522=>1,759120753=>1,759107297=>1,758840987=>1,758788415=>1,758870628=>1,758881561=>1,759065268=>1,758886519=>1,758788296=>1,758785595=>1,758633689=>1,758626161=>1,758644507=>1,758661328=>1,758677393=>1,758675101=>1,759067680=>1,759068376=>1,759098208=>1,759097634=>1,759098858=>1,759099037=>1,759105645=>1,759104619=>1,759097605=>1,759097517=>1,759096101=>1,759095644=>1,759096164=>1,759096741=>1,759096941=>1,701957982=>1,701879302=>1,687918370=>1,687912443=>1,687918371=>1,687918372=>1,690035076=>1,690012026=>1,679921912=>1,679619862=>1,678884603=>1,678838718=>1,678886824=>1,679032814=>1,679596858=>1,679462146=>1,690035081=>1,690039716=>1,690089644=>1,690089642=>1,690103415=>1,690108481=>1,690134924=>1,690114640=>1,690089641=>1,690088462=>1,690072971=>1,690039718=>1,690072974=>1,690077554=>1,690077558=>1,690077557=>1,678794372=>1,678634168=>1,666184175=>1,666081424=>1,666241543=>1,666241671=>1,666245014=>1,666244460=>1,666080408=>1,666069768=>1,665929591=>1,665856129=>1,665983338=>1,666001876=>1,666053876=>1,666053688=>1,666569564=>1,666808139=>1,678493718=>1,678475905=>1,678524590=>1,678615636=>1,678619228=>1,678616718=>1,676828102=>1,676691988=>1,676069734=>1,675973717=>1,676239181=>1,676652221=>1,676683863=>1,690228636=>1,690231640=>1,690666572=>1,690666451=>1,690666808=>1,690666942=>1,690668580=>1,690667222=>1,690665330=>1,690664645=>1,690662214=>1,690661875=>1,690664020=>1,690664186=>1,690664578=>1,690664315=>1,690669500=>1,690669673=>1,690674055=>1,690674040=>1,690675198=>1,690675518=>1,690676346=>1,690675981=>1,690673795=>1,690673780=>1,690672342=>1,690671268=>1,690672357=>1,690672498=>1,690673025=>1,690661118=>1,690660785=>1,690294141=>1,690293442=>1,690297743=>1,690328325=>1,690388538=>1,690374778=>1,690292918=>1,690292319=>1,690285094=>1,690283902=>1,690285259=>1,690287427=>1,690288355=>1,690288109=>1,690392427=>1,690636497=>1,690656134=>1,690656046=>1,690658026=>1,690659200=>1,690660722=>1,690659940=>1,690655652=>1,690655603=>1,690645828=>1,690643977=>1,690648792=>1,690652907=>1,690655464=>1,665630753=>1,665319951=>1,643000900=>1,643000771=>1,643194952=>1,643318795=>1,643788021=>1,643408017=>1,643000770=>1,642502950=>1,641994376=>1,641910256=>1,642068792=>1,642071275=>1,642458420=>1,642384217=>1,643788025=>1,643788069=>1,645399567=>1,644856729=>1,645480394=>1,645612305=>1,645646875=>1,645646867=>1,644856699=>1,644856438=>1,644205214=>1,643788101=>1,644521603=>1,644599924=>1,644856384=>1,644856079=>1,641828602=>1,641828540=>1,636447086=>1,636447076=>1,636447142=>1,636447224=>1,636448259=>1,636447886=>1,636446935=>1,636446899=>1,636445708=>1,636445672=>1,636446134=>1,636446434=>1,636446629=>1,636446619=>1,636448505=>1,636448619=>1,637320880=>1,636958686=>1,641779253=>1,641828377=>1,641828523=>1,641828519=>1,636958676=>1,636958555=>1,636470956=>1,636468399=>1,636477050=>1,636955257=>1,636956744=>1,645646884=>1,645647412=>1,654386644=>1,654386641=>1,654386667=>1,654386684=>1,658585381=>1,657349042=>1,654386568=>1,654386497=>1,652562178=>1,652559933=>1,654386439=>1,654386450=>1,654386486=>1,654386451=>1,658901942=>1,659397027=>1,664858963=>1,662152458=>1,665211641=>1,665243556=>1,665314306=>1,665279936=>1,662152451=>1,662152275=>1,661456008=>1,659638100=>1,661459231=>1,661502693=>1,661745329=>1,652559926=>1,652559925=>1,645688623=>1,645688520=>1,645688664=>1,645704035=>1,645704115=>1,645704076=>1,645679633=>1,645679610=>1,645676089=>1,645671109=>1,645676268=>1,645678708=>1,645679525=>1,645679270=>1,645704748=>1,645704995=>1,652559905=>1,652541981=>1,652559906=>1,652559914=>1,652559924=>1,652559923=>1,652541980=>1,646212230=>1,646152205=>1,645840984=>1,646152930=>1,646212228=>1,646212229=>1,690676427=>1,690676514=>1,699437230=>1,699437188=>1,699437232=>1,699437243=>1,699437274=>1,699437252=>1,699437187=>1,699437172=>1,699437083=>1,699437059=>1,699437101=>1,699437118=>1,699437133=>1,699437124=>1,699437287=>1,699574501=>1,699779825=>1,699779799=>1,699933282=>1,699933285=>1,700061765=>1,699977852=>1,699779791=>1,699779787=>1,699779739=>1,699779734=>1,699779762=>1,699779764=>1,699779777=>1,699779768=>1,699435181=>1,698949363=>1,696927309=>1,696671818=>1,696959266=>1,696960994=>1,696973362=>1,696961050=>1,696671812=>1,696450082=>1,696290987=>1,696290952=>1,696290990=>1,696291005=>1,696328460=>1,696291020=>1,697019206=>1,697333097=>1,698943490=>1,698630282=>1,698945705=>1,698945738=>1,698946810=>1,698946808=>1,698621780=>1,698621779=>1,698389377=>1,697485287=>1,698408956=>1,698437285=>1,698439211=>1,700125126=>1,700199294=>1,701305202=>1,701305176=>1,701306356=>1,701314218=>1,701327885=>1,701320684=>1,701305122=>1,701305117=>1,701304867=>1,701304850=>1,701304957=>1,701304973=>1,701305054=>1,701305030=>1,701327981=>1,701328066=>1,701671230=>1,701660005=>1,701769083=>1,701828586=>1,701866812=>1,701863781=>1,701494519=>1,701494353=>1,701360074=>1,701328107=>1,701444488=>1,701461721=>1,701485731=>1,701304725=>1,701304683=>1,700439526=>1,700439522=>1,700443478=>1,700445418=>1,700771677=>1,700500656=>1,700438982=>1,700438950=>1,700199378=>1,700199327=>1,700201065=>1,700401307=>1,700438942=>1,700438739=>1,700775347=>1,700775694=>1,701301276=>1,701298342=>1,701301288=>1,701301335=>1,701303205=>1,701301374=>1,701295766=>1,701259202=>1,701257482=>1,701191037=>1,701257497=>1,701257501=>1,701259062=>1,694028294=>1,693998098=>1,690989705=>1,690937464=>1,691556472=>1,691556693=>1,691603417=>1,691558319=>1,690936490=>1,690936439=>1,690934033=>1,690933221=>1,690934193=>1,690935003=>1,690936420=>1,690935059=>1,692135649=>1,692254490=>1,692735368=>1,692732482=>1,692735690=>1,692809227=>1,692867187=>1,692857932=>1,692712284=>1,692655178=>1,692611366=>1,692256442=>1,692618670=>1,692635982=>1,692639518=>1,692638547=>1,690933170=>1,690932833=>1,690682314=>1,690681784=>1,690688396=>1,690752952=>1,690802733=>1,690759807=>1,690681185=>1,690680503=>1,690678427=>1,690677622=>1,690678971=>1,690679449=>1,690680258=>1,690679924=>1,690802843=>1,690805246=>1,690930274=>1,690930044=>1,690930486=>1,690930519=>1,690932131=>1,690931121=>1,690929995=>1,690868258=>1,690811552=>1,690809471=>1,690812364=>1,690812482=>1,690814788=>1,692867237=>1,692883153=>1,693618434=>1,693610226=>1,693704288=>1,693705244=>1,693705270=>1,693705269=>1,693588362=>1,693584082=>1,693512052=>1,693275363=>1,693540732=>1,693560999=>1,693568362=>1,693563142=>1,693723142=>1,693723190=>1,693723240=>1,693723239=>1,693723244=>1,693723273=>1,693755185=>1,693723357=>1,693723230=>1,693723227=>1,693723197=>1,693723193=>1,693723199=>1,693723203=>1,693723224=>1,693247917=>1,693103066=>1,692961480=>1,692961459=>1,693000373=>1,693001165=>1,693022500=>1,693001166=>1,692959367=>1,692959268=>1,692915946=>1,692905411=>1,692932675=>1,692947122=>1,692950802=>1,692949581=>1,693022614=>1,693044313=>1,693061411=>1,693060243=>1,693078399=>1,693086753=>1,693100717=>1,693092566=>1,693058762=>1,693056060=>1,693044462=>1,693044323=>1,693052746=>1,693055749=>1,693055790=>1,636445086=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-30.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3147947385=>1,3147947379=>1,3147947420=>1,3147947434=>1,3147947455=>1,3147947439=>1,3147947346=>1,3147947336=>1,3147946411=>1,3147946387=>1,3147946434=>1,3147946446=>1,3147947275=>1,3147946479=>1,3147947461=>1,3147947509=>1,3147947866=>1,3147947727=>1,3147947905=>1,3147947913=>1,3147947959=>1,3147947944=>1,3147947688=>1,3147947673=>1,3147947524=>1,3147947523=>1,3147947625=>1,3147947644=>1,3147947668=>1,3147947667=>1,3147946376=>1,3147946374=>1,3147945274=>1,3147945253=>1,3147945307=>1,3147945345=>1,3147945491=>1,3147945347=>1,3147945235=>1,3147945230=>1,3147944104=>1,3147944084=>1,3147944109=>1,3147944112=>1,3147944134=>1,3147944131=>1,3147945512=>1,3147945603=>1,3147946303=>1,3147946299=>1,3147946325=>1,3147946341=>1,3147946373=>1,3147946357=>1,3147946275=>1,3147946252=>1,3147945633=>1,3147945616=>1,3147945645=>1,3147945670=>1,3147945701=>1,3147947982=>1,3147948006=>1,3147949570=>1,3147949561=>1,3147949581=>1,3147949646=>1,3147949663=>1,3147949657=>1,3147949545=>1,3147949522=>1,3147949474=>1,3147949466=>1,3147949485=>1,3147949491=>1,3147949509=>1,3147949502=>1,3147949678=>1,3147949681=>1,3147949905=>1,3147949896=>1,3147949940=>1,3147949980=>1,3147950056=>1,3147949995=>1,3147949858=>1,3147949822=>1,3147949752=>1,3147949725=>1,3147949783=>1,3147949796=>1,3147949801=>1,3147949799=>1,3147949465=>1,3147949464=>1,3147948915=>1,3147948881=>1,3147948916=>1,3147948934=>1,3147948955=>1,3147948954=>1,3147948715=>1,3147948705=>1,3147948648=>1,3147948015=>1,3147948653=>1,3147948661=>1,3147948679=>1,3147948666=>1,3147948970=>1,3147949002=>1,3147949324=>1,3147949297=>1,3147949372=>1,3147949392=>1,3147949458=>1,3147949413=>1,3147949291=>1,3147949272=>1,3147949140=>1,3147949110=>1,3147949167=>1,3147949171=>1,3147949261=>1,3147943999=>1,3147943986=>1,3147931410=>1,3147931386=>1,3147931419=>1,3147931420=>1,3147931441=>1,3147931434=>1,3147931372=>1,3147931371=>1,3147931183=>1,3147931168=>1,3147931215=>1,3147931246=>1,3147931328=>1,3147931315=>1,3147931453=>1,3147931462=>1,3147932171=>1,3147931632=>1,3147932196=>1,3147932203=>1,3147932271=>1,3147932226=>1,3147931584=>1,3147931562=>1,3147931504=>1,3147931497=>1,3147931510=>1,3147931517=>1,3147931561=>1,3147931527=>1,3147931159=>1,3147931104=>1,3147930689=>1,3147930655=>1,3147930708=>1,3147930718=>1,3147930795=>1,3147930738=>1,3147930609=>1,3147930580=>1,3147930507=>1,3147930487=>1,3147930516=>1,3147930538=>1,3147930550=>1,3147930539=>1,3147930817=>1,3147930823=>1,3147931023=>1,3147931009=>1,3147931027=>1,3147931066=>1,3147931098=>1,3147931069=>1,3147930992=>1,3147930973=>1,3147930831=>1,3147930828=>1,3147930874=>1,3147930910=>1,3147930967=>1,3147932310=>1,3147932319=>1,3147938651=>1,3147938396=>1,3147940938=>1,3147941068=>1,3147941312=>1,3147941218=>1,3147937240=>1,3147937132=>1,3147935683=>1,3147935671=>1,3147935691=>1,3147935710=>1,3147937114=>1,3147936483=>1,3147941391=>1,3147941398=>1,3147941909=>1,3147941857=>1,3147942151=>1,3147942364=>1,3147943977=>1,3147943942=>1,3147941851=>1,3147941850=>1,3147941586=>1,3147941566=>1,3147941734=>1,3147941803=>1,3147941828=>1,3147935593=>1,3147935562=>1,3147933747=>1,3147933702=>1,3147933816=>1,3147933850=>1,3147933968=>1,3147933876=>1,3147932444=>1,3147932438=>1,3147932383=>1,3147932344=>1,3147932398=>1,3147932419=>1,3147932437=>1,3147932423=>1,3147933969=>1,3147933986=>1,3147934302=>1,3147934231=>1,3147934317=>1,3147934384=>1,3147935529=>1,3147934497=>1,3147934182=>1,3147934156=>1,3147934096=>1,3147933997=>1,3147934113=>1,3147934120=>1,3147934137=>1,3147950073=>1,3147951487=>1,3149516313=>1,3149515707=>1,3149516601=>1,3149518221=>1,3149524177=>1,3149523381=>1,3149514624=>1,3149514543=>1,3149504830=>1,3149504823=>1,3149504841=>1,3149505294=>1,3149505343=>1,3149505333=>1,3149527714=>1,3149527967=>1,3149739764=>1,3149737402=>1,3149746943=>1,3149789930=>1,3149789932=>1,3149789931=>1,3149737298=>1,3149729772=>1,3149681188=>1,3149527998=>1,3149694005=>1,3149702418=>1,3149712547=>1,3149710146=>1,3149504745=>1,3149502790=>1,3149475159=>1,3149474913=>1,3149475390=>1,3149475877=>1,3149481391=>1,3149476026=>1,3149474883=>1,3149465715=>1,3149464957=>1,3149464796=>1,3149465005=>1,3149465635=>1,3149465652=>1,3149465640=>1,3149481451=>1,3149481822=>1,3149496910=>1,3149496803=>1,3149498302=>1,3149498499=>1,3149502074=>1,3149500677=>1,3149496779=>1,3149495890=>1,3149492738=>1,3149488357=>1,3149493574=>1,3149493996=>1,3149494553=>1,3149863183=>1,3149863188=>1,3153236774=>1,3153233812=>1,3153237347=>1,3153237914=>1,3153239438=>1,3153238160=>1,3153223885=>1,3153213114=>1,3153202252=>1,3153193463=>1,3153207153=>1,3153210949=>1,3153212494=>1,3153211176=>1,3153240580=>1,3153255450=>1,3153308850=>1,3153301215=>1,3153309699=>1,3153311881=>1,3153316909=>1,3153314994=>1,3153297149=>1,3153282756=>1,3153259906=>1,3153259841=>1,3153261634=>1,3153265211=>1,3153274917=>1,3153182457=>1,3153148993=>1,3153136857=>1,3153112187=>1,3153137091=>1,3153137378=>1,3153137598=>1,3153137552=>1,3153108216=>1,3153106421=>1,3151583603=>1,3151526499=>1,3153071667=>1,3153088651=>1,3153092103=>1,3153090720=>1,3153138379=>1,3153138584=>1,3153141409=>1,3153141272=>1,3153141415=>1,3153142667=>1,3153147533=>1,3153146576=>1,3153141151=>1,3153140857=>1,3153139298=>1,3153138885=>1,3153140368=>1,3153140392=>1,3153140823=>1,3149464779=>1,3149464704=>1,3149406874=>1,3149406412=>1,3149407402=>1,3149407714=>1,3149409639=>1,3149408899=>1,3149406117=>1,3149405755=>1,3149404801=>1,3149404521=>1,3149405088=>1,3149405091=>1,3149405605=>1,3149405557=>1,3149411349=>1,3149411570=>1,3149425899=>1,3149423839=>1,3149427235=>1,3149427516=>1,3149428519=>1,3149428348=>1,3149423574=>1,3149423344=>1,3149411653=>1,3149411615=>1,3149413603=>1,3149418610=>1,3149423208=>1,3149419621=>1,3149404489=>1,3149404420=>1,3147952428=>1,3147952425=>1,3147952434=>1,3147952435=>1,3147953700=>1,3147952449=>1,3147952370=>1,3147952368=>1,3147952227=>1,3147952152=>1,3147952264=>1,3147952282=>1,3147952348=>1,3147952296=>1,3147953972=>1,3148773075=>1,3149401698=>1,3149401521=>1,3149402142=>1,3149402154=>1,3149403901=>1,3149403117=>1,3149400214=>1,3149371158=>1,3149063520=>1,3148806787=>1,3149227748=>1,3149229946=>1,3149239120=>1,3149429817=>1,3149429976=>1,3149452501=>1,3149452482=>1,3149452588=>1,3149452726=>1,3149455866=>1,3149453175=>1,3149449740=>1,3149447835=>1,3149444598=>1,3149442721=>1,3149446306=>1,3149446419=>1,3149446660=>1,3149446594=>1,3149455944=>1,3149456119=>1,3149461560=>1,3149461117=>1,3149461986=>1,3149462098=>1,3149464633=>1,3149462479=>1,3149460755=>1,3149460717=>1,3149456401=>1,3149456356=>1,3149456754=>1,3149457481=>1,3149460693=>1,3149442541=>1,3149441863=>1,3149432472=>1,3149432094=>1,3149433547=>1,3149435011=>1,3149435067=>1,3149435065=>1,3149431707=>1,3149431168=>1,3149430318=>1,3149430279=>1,3149430382=>1,3149430747=>1,3149430957=>1,3149430835=>1,3149435652=>1,3149435980=>1,3149439129=>1,3149438758=>1,3149440286=>1,3149441202=>1,3149441605=>1,3149441418=>1,3149438634=>1,3149438532=>1,3149436484=>1,3149436172=>1,3149436577=>1,3149437318=>1,3149437997=>1,3147930471=>1,3147930410=>1,3147897654=>1,3147897216=>1,3147897895=>1,3147897906=>1,3147898048=>1,3147897942=>1,3147896775=>1,3147896772=>1,3147896502=>1,3147896490=>1,3147896554=>1,3147896566=>1,3147896749=>1,3147896702=>1,3147898052=>1,3147898068=>1,3147898588=>1,3147898476=>1,3147898594=>1,3147898611=>1,3147898627=>1,3147898620=>1,3147898465=>1,3147898320=>1,3147898153=>1,3147898123=>1,3147898219=>1,3147898222=>1,3147898285=>1,3147898276=>1,3147896415=>1,3147896404=>1,3147895824=>1,3147895813=>1,3147895854=>1,3147895888=>1,3147895909=>1,3147895897=>1,3147895806=>1,3147895798=>1,3147895670=>1,3147895662=>1,3147895713=>1,3147895756=>1,3147895797=>1,3147895766=>1,3147896001=>1,3147896050=>1,3147896365=>1,3147896355=>1,3147896388=>1,3147896397=>1,3147896403=>1,3147896398=>1,3147896343=>1,3147896286=>1,3147896244=>1,3147896086=>1,3147896251=>1,3147896254=>1,3147896269=>1,3147898683=>1,3147898714=>1,3147904127=>1,3147904108=>1,3147904157=>1,3147904171=>1,3147904195=>1,3147904192=>1,3147904097=>1,3147904083=>1,3147904050=>1,3147904027=>1,3147904053=>1,3147904058=>1,3147904079=>1,3147904078=>1,3147904198=>1,3147904218=>1,3147906587=>1,3147906562=>1,3147906675=>1,3147906708=>1,3147906817=>1,3147906814=>1,3147906486=>1,3147906397=>1,3147905514=>1,3147904225=>1,3147906142=>1,3147906280=>1,3147906283=>1,3147903712=>1,3147903595=>1,3147902638=>1,3147902602=>1,3147902709=>1,3147902751=>1,3147902857=>1,3147902856=>1,3147902583=>1,3147902509=>1,3147898842=>1,3147898818=>1,3147898849=>1,3147899667=>1,3147902498=>1,3147899797=>1,3147903277=>1,3147903283=>1,3147903397=>1,3147903396=>1,3147903400=>1,3147903457=>1,3147903541=>1,3147903510=>1,3147903393=>1,3147903390=>1,3147903342=>1,3147903308=>1,3147903348=>1,3147903361=>1,3147903373=>1,3147895627=>1,3147895563=>1,3147880896=>1,3147880885=>1,3147881004=>1,3147881037=>1,3147881095=>1,3147881094=>1,3147880855=>1,3147880804=>1,3147880554=>1,3147880546=>1,3147880590=>1,3147880693=>1,3147880780=>1,3147880746=>1,3147881101=>1,3147881116=>1,3147881352=>1,3147881348=>1,3147881457=>1,3147885556=>1,3147891348=>1,3147891330=>1,3147881340=>1,3147881335=>1,3147881137=>1,3147881122=>1,3147881148=>1,3147881205=>1,3147881227=>1,3147881213=>1,3147880500=>1,3147880497=>1,3147880181=>1,3147880159=>1,3147880183=>1,3147880185=>1,3147880192=>1,3147880187=>1,3147880143=>1,3147880081=>1,3147879978=>1,3147879976=>1,3147879982=>1,3147879985=>1,3147880063=>1,3147880038=>1,3147880197=>1,3147880210=>1,3147880402=>1,3147880401=>1,3147880413=>1,3147880419=>1,3147880494=>1,3147880440=>1,3147880381=>1,3147880353=>1,3147880256=>1,3147880222=>1,3147880288=>1,3147880312=>1,3147880315=>1,3147891381=>1,3147891382=>1,3147895054=>1,3147895038=>1,3147895060=>1,3147895077=>1,3147895095=>1,3147895093=>1,3147895030=>1,3147894964=>1,3147894756=>1,3147894715=>1,3147894766=>1,3147894814=>1,3147894833=>1,3147894822=>1,3147895142=>1,3147895153=>1,3147895360=>1,3147895354=>1,3147895389=>1,3147895434=>1,3147895471=>1,3147895459=>1,3147895326=>1,3147895302=>1,3147895204=>1,3147895155=>1,3147895261=>1,3147895275=>1,3147895290=>1,3147894681=>1,3147894660=>1,3147893803=>1,3147893788=>1,3147893844=>1,3147893848=>1,3147893914=>1,3147893908=>1,3147892562=>1,3147892544=>1,3147891493=>1,3147891386=>1,3147891519=>1,3147891565=>1,3147892089=>1,3147891615=>1,3147893923=>1,3147893955=>1,3147894412=>1,3147894355=>1,3147894415=>1,3147894422=>1,3147894546=>1,3147894529=>1,3147894348=>1,3147894327=>1,3147894010=>1,3147893956=>1,3147894279=>1,3147894280=>1,3147894286=>1,3147906858=>1,3147906904=>1,3147921883=>1,3147921870=>1,3147921964=>1,3147922002=>1,3147922009=>1,3147922004=>1,3147921777=>1,3147921765=>1,3147921679=>1,3147921604=>1,3147921702=>1,3147921709=>1,3147921741=>1,3147921718=>1,3147922011=>1,3147922035=>1,3147922293=>1,3147922282=>1,3147925276=>1,3147925537=>1,3147925569=>1,3147925549=>1,3147922251=>1,3147922245=>1,3147922099=>1,3147922053=>1,3147922105=>1,3147922156=>1,3147922214=>1,3147922204=>1,3147921540=>1,3147921516=>1,3147920779=>1,3147920761=>1,3147920815=>1,3147920829=>1,3147920890=>1,3147920872=>1,3147920665=>1,3147920641=>1,3147920430=>1,3147920424=>1,3147920463=>1,3147920475=>1,3147920612=>1,3147920496=>1,3147920919=>1,3147920929=>1,3147921322=>1,3147921312=>1,3147921337=>1,3147921372=>1,3147921463=>1,3147921387=>1,3147921310=>1,3147921279=>1,3147921013=>1,3147920982=>1,3147921058=>1,3147921123=>1,3147921224=>1,3147925605=>1,3147925687=>1,3147929713=>1,3147929662=>1,3147929773=>1,3147929844=>1,3147929920=>1,3147929866=>1,3147929632=>1,3147929628=>1,3147929566=>1,3147929564=>1,3147929578=>1,3147929583=>1,3147929612=>1,3147929590=>1,3147929921=>1,3147929976=>1,3147930262=>1,3147930236=>1,3147930268=>1,3147930282=>1,3147930370=>1,3147930332=>1,3147930208=>1,3147930186=>1,3147930049=>1,3147930027=>1,3147930079=>1,3147930143=>1,3147930159=>1,3147929545=>1,3147929533=>1,3147925904=>1,3147925900=>1,3147925969=>1,3147925971=>1,3147926136=>1,3147925975=>1,3147925896=>1,3147925895=>1,3147925712=>1,3147925689=>1,3147925756=>1,3147925821=>1,3147925858=>1,3147925831=>1,3147926148=>1,3147926206=>1,3147929362=>1,3147929334=>1,3147929376=>1,3147929404=>1,3147929508=>1,3147929487=>1,3147929256=>1,3147929250=>1,3147929130=>1,3147929091=>1,3147929142=>1,3147929199=>1,3147929233=>1,3147919950=>1,3147918270=>1,3147911025=>1,3147911021=>1,3147911031=>1,3147911097=>1,3147911166=>1,3147911101=>1,3147911015=>1,3147910929=>1,3147910781=>1,3147910757=>1,3147910784=>1,3147910873=>1,3147910914=>1,3147910886=>1,3147912231=>1,3147912306=>1,3147912483=>1,3147912478=>1,3147912484=>1,3147912513=>1,3147912568=>1,3147912560=>1,3147912459=>1,3147912450=>1,3147912339=>1,3147912330=>1,3147912375=>1,3147912379=>1,3147912445=>1,3147912423=>1,3147910684=>1,3147910678=>1,3147907772=>1,3147907572=>1,3147908153=>1,3147908154=>1,3147908627=>1,3147908613=>1,3147907482=>1,3147907441=>1,3147906982=>1,3147906970=>1,3147907077=>1,3147907225=>1,3147907417=>1,3147907401=>1,3147908672=>1,3147908721=>1,3147909043=>1,3147909035=>1,3147909044=>1,3147909094=>1,3147910665=>1,3147909100=>1,3147909025=>1,3147908964=>1,3147908775=>1,3147908769=>1,3147908868=>1,3147908871=>1,3147908918=>1,3147912609=>1,3147912634=>1,3147917922=>1,3147917920=>1,3147917930=>1,3147917943=>1,3147917953=>1,3147917945=>1,3147917858=>1,3147917857=>1,3147917733=>1,3147917715=>1,3147917743=>1,3147917793=>1,3147917853=>1,3147917817=>1,3147917962=>1,3147917970=>1,3147918147=>1,3147918146=>1,3147918175=>1,3147918214=>1,3147918254=>1,3147918216=>1,3147918097=>1,3147918079=>1,3147917986=>1,3147917985=>1,3147918016=>1,3147918067=>1,3147918072=>1,3147917703=>1,3147917701=>1,3147913628=>1,3147913553=>1,3147913632=>1,3147913641=>1,3147913707=>1,3147913659=>1,3147913497=>1,3147913430=>1,3147913240=>1,3147912637=>1,3147913362=>1,3147913366=>1,3147913408=>1,3147913406=>1,3147913720=>1,3147917320=>1,3147917572=>1,3147917571=>1,3147917593=>1,3147917610=>1,3147917694=>1,3147917666=>1,3147917553=>1,3147917496=>1,3147917389=>1,3147917332=>1,3147917397=>1,3147917418=>1,3147917490=>1,3147879973=>1,);?>
1
+ <?php return array(2093876544=>1,2093862834=>1,2093880952=>1,2093902717=>1,2093905787=>1,2093903774=>1,2093670346=>1,2093664460=>1,2093655718=>1,2093529294=>1,2093659122=>1,2093659142=>1,2093664354=>1,2093659578=>1,2093909475=>1,2093913741=>1,2093935786=>1,2093934702=>1,2093935787=>1,2093937117=>1,2093939207=>1,2093939205=>1,2093931730=>1,2093928948=>1,2093918202=>1,2093917364=>1,2093922473=>1,2093922977=>1,2093928945=>1,2093927615=>1,2093528370=>1,2093507634=>1,2093025542=>1,2093025271=>1,2093028601=>1,2093029278=>1,2093031913=>1,2093030397=>1,2093024440=>1,2093024253=>1,2093021886=>1,2093021851=>1,2093022373=>1,2093023726=>1,2093024245=>1,2093023727=>1,2093032445=>1,2093033979=>1,2093305571=>1,2093078697=>1,2093490578=>1,2093491738=>1,2093507226=>1,2093506786=>1,2093039029=>1,2093038090=>1,2093035273=>1,2093035005=>1,2093035766=>1,2093035768=>1,2093036918=>1,2093940440=>1,2093944475=>1,2098747317=>1,2098746655=>1,2098749929=>1,2098750107=>1,2098750271=>1,2098750116=>1,2098746297=>1,2098745778=>1,2098710566=>1,2098590026=>1,2098739116=>1,2098744810=>1,2098745045=>1,2098744956=>1,2098750498=>1,2098750519=>1,2098753222=>1,2098753093=>1,2098754183=>1,2098754266=>1,2098754924=>1,2098754603=>1,2098752957=>1,2098752601=>1,2098751763=>1,2098751728=>1,2098751794=>1,2098751887=>1,2098752533=>1,2098752518=>1,2098559649=>1,2098533140=>1,2095784928=>1,2095616871=>1,2095924044=>1,2095938480=>1,2096151377=>1,2096021114=>1,2095616790=>1,2095615959=>1,2093965653=>1,2093961894=>1,2093974770=>1,2093984018=>1,2095300651=>1,2093985627=>1,2096383224=>1,2096385409=>1,2098207267=>1,2097275109=>1,2098209738=>1,2098231588=>1,2098472708=>1,2098269080=>1,2097092202=>1,2097091974=>1,2096672374=>1,2096670763=>1,2096672488=>1,2096676430=>1,2096688634=>1,2093016750=>1,2093014512=>1,2088435377=>1,2088435370=>1,2088435383=>1,2088435442=>1,2088435481=>1,2088435471=>1,2088435355=>1,2088435348=>1,2088435129=>1,2088435125=>1,2088435144=>1,2088435197=>1,2088435322=>1,2088435286=>1,2088435483=>1,2088435485=>1,2088559666=>1,2088435703=>1,2088630216=>1,2088632164=>1,2088754170=>1,2088664675=>1,2088435637=>1,2088435600=>1,2088435531=>1,2088435486=>1,2088435591=>1,2088435592=>1,2088435597=>1,2088435596=>1,2088435100=>1,2088435042=>1,2088434468=>1,2088434443=>1,2088434474=>1,2088434487=>1,2088434513=>1,2088434491=>1,2088434422=>1,2088434410=>1,2088434305=>1,2088434296=>1,2088434316=>1,2088434336=>1,2088434389=>1,2088434388=>1,2088434579=>1,2088434598=>1,2088434818=>1,2088434809=>1,2088434881=>1,2088434894=>1,2088434941=>1,2088434900=>1,2088434796=>1,2088434666=>1,2088434629=>1,2088434603=>1,2088434638=>1,2088434647=>1,2088434659=>1,2088794601=>1,2088819995=>1,2092973999=>1,2092973176=>1,2092974587=>1,2092979984=>1,2092980336=>1,2092980248=>1,2092969969=>1,2092967928=>1,2092959716=>1,2092959714=>1,2092959945=>1,2092962171=>1,2092966136=>1,2092964854=>1,2092980406=>1,2092980854=>1,2093000575=>1,2092999431=>1,2093004917=>1,2093005037=>1,2093012860=>1,2093012661=>1,2092989430=>1,2092989116=>1,2092982769=>1,2092981755=>1,2092982984=>1,2092984816=>1,2092985079=>1,2092958973=>1,2092958971=>1,2090886662=>1,2090880946=>1,2090910279=>1,2090910280=>1,2090974513=>1,2090946250=>1,2090877422=>1,2090869506=>1,2089016718=>1,2088823170=>1,2089093112=>1,2089359170=>1,2090868490=>1,2090561621=>1,2090975466=>1,2090975601=>1,2091532267=>1,2091433704=>1,2091593018=>1,2091633503=>1,2092957939=>1,2091691655=>1,2091318766=>1,2091317775=>1,2091091645=>1,2091034808=>1,2091182945=>1,2091252808=>1,2091317125=>1,2098755449=>1,2098755619=>1,2108129317=>1,2108126253=>1,2108146002=>1,2108448881=>1,2108990340=>1,2108862027=>1,2108126180=>1,2108119539=>1,2108002262=>1,2107990086=>1,2108002265=>1,2108089530=>1,2108091429=>1,2108091124=>1,2109723595=>1,2110123671=>1,2111055176=>1,2110882758=>1,2111101381=>1,2111101917=>1,2111109950=>1,2111102012=>1,2110878749=>1,2110876824=>1,2110728334=>1,2110401352=>1,2110867769=>1,2110872510=>1,2110876755=>1,2110874046=>1,2107986941=>1,2107986393=>1,2107823542=>1,2107818741=>1,2107879436=>1,2107894236=>1,2107906958=>1,2107901886=>1,2107787105=>1,2107783682=>1,2107755385=>1,2107724733=>1,2107768969=>1,2107769297=>1,2107783453=>1,2107774818=>1,2107907430=>1,2107908049=>1,2107967238=>1,2107958616=>1,2107968554=>1,2107970284=>1,2107975472=>1,2107974811=>1,2107958410=>1,2107928386=>1,2107925382=>1,2107916478=>1,2107926372=>1,2107926755=>1,2107926801=>1,2111306305=>1,2111424404=>1,2148040303=>1,2147668701=>1,2148143924=>1,2148315451=>1,2149515298=>1,2149470154=>1,2147528125=>1,2147521002=>1,2113763950=>1,2113762286=>1,2113805333=>1,2118518674=>1,2122087537=>1,2119045092=>1,2150041668=>1,2150924393=>1,2152156357=>1,2152145476=>1,2152164756=>1,2152219310=>1,2152259059=>1,2152250828=>1,2152143178=>1,2152102644=>1,2151355001=>1,2150932500=>1,2151975758=>1,2152035966=>1,2152056031=>1,2113762283=>1,2113762254=>1,2112653533=>1,2112239776=>1,2113733646=>1,2113740958=>1,2113762051=>1,2113748052=>1,2112090378=>1,2112061139=>1,2111845353=>1,2111844159=>1,2111845366=>1,2111845370=>1,2111845770=>1,2111845614=>1,2113762054=>1,2113762057=>1,2113762195=>1,2113762140=>1,2113762201=>1,2113762205=>1,2113762245=>1,2113762231=>1,2113762139=>1,2113762115=>1,2113762060=>1,2113762059=>1,2113762064=>1,2113762071=>1,2113762091=>1,2107704922=>1,2107699779=>1,2098832178=>1,2098832148=>1,2098832267=>1,2098832292=>1,2098832372=>1,2098832351=>1,2098832067=>1,2098832046=>1,2098831375=>1,2098829677=>1,2098831402=>1,2098831511=>1,2098831790=>1,2098831580=>1,2098837377=>1,2098852310=>1,2100123404=>1,2100047629=>1,2100181253=>1,2100181276=>1,2101218978=>1,2100992153=>1,2099725250=>1,2099413179=>1,2098852654=>1,2098852641=>1,2098853265=>1,2098856032=>1,2099288572=>1,2098911424=>1,2098829565=>1,2098824650=>1,2098759552=>1,2098759400=>1,2098759556=>1,2098761081=>1,2098770393=>1,2098761253=>1,2098759140=>1,2098757635=>1,2098755991=>1,2098755871=>1,2098756194=>1,2098756378=>1,2098757600=>1,2098757018=>1,2098771923=>1,2098789538=>1,2098800272=>1,2098800205=>1,2098800348=>1,2098813389=>1,2098823865=>1,2098822770=>1,2098800187=>1,2098793315=>1,2098790973=>1,2098789778=>1,2098791148=>1,2098792537=>1,2098793221=>1,2101224706=>1,2101347586=>1,2105270621=>1,2105270607=>1,2105270635=>1,2105270652=>1,2105271845=>1,2105270666=>1,2105270550=>1,2105270539=>1,2105080496=>1,2104317903=>1,2105233525=>1,2105235117=>1,2105270309=>1,2105235193=>1,2105272206=>1,2105272302=>1,2107655652=>1,2105817146=>1,2107655653=>1,2107658905=>1,2107691562=>1,2107668661=>1,2105511530=>1,2105508855=>1,2105272766=>1,2105272741=>1,2105273788=>1,2105274015=>1,2105274334=>1,2104315479=>1,2103670970=>1,2102561216=>1,2101902606=>1,2102712438=>1,2102718909=>1,2102750514=>1,2102728386=>1,2101880590=>1,2101866252=>1,2101402311=>1,2101347587=>1,2101440688=>1,2101440713=>1,2101859177=>1,2101857090=>1,2102788164=>1,2102791441=>1,2103665670=>1,2103367501=>1,2103665674=>1,2103665677=>1,2103665737=>1,2103665681=>1,2103170094=>1,2103130637=>1,2102793883=>1,2102792955=>1,2102793971=>1,2102795864=>1,2103074756=>1,2088434255=>1,2088434243=>1,2088426410=>1,2088426406=>1,2088426434=>1,2088426439=>1,2088426522=>1,2088426463=>1,2088426399=>1,2088426388=>1,2088426245=>1,2088426205=>1,2088426288=>1,2088426331=>1,2088426341=>1,2088426334=>1,2088426590=>1,2088426592=>1,2088426794=>1,2088426774=>1,2088426824=>1,2088426860=>1,2088426895=>1,2088426871=>1,2088426771=>1,2088426716=>1,2088426631=>1,2088426599=>1,2088426642=>1,2088426668=>1,2088426701=>1,2088426669=>1,2088426196=>1,2088426184=>1,2088425226=>1,2088425207=>1,2088425229=>1,2088425247=>1,2088425277=>1,2088425252=>1,2088425188=>1,2088425172=>1,2088425049=>1,2088425045=>1,2088425095=>1,2088425120=>1,2088425132=>1,2088425128=>1,2088425300=>1,2088425310=>1,2088425469=>1,2088425463=>1,2088425990=>1,2088426017=>1,2088426077=>1,2088426038=>1,2088425445=>1,2088425440=>1,2088425391=>1,2088425330=>1,2088425394=>1,2088425416=>1,2088425428=>1,2088426965=>1,2088427010=>1,2088428649=>1,2088428628=>1,2088428656=>1,2088428727=>1,2088428851=>1,2088428768=>1,2088428591=>1,2088428585=>1,2088428461=>1,2088428446=>1,2088428487=>1,2088428539=>1,2088428561=>1,2088428558=>1,2088428882=>1,2088428886=>1,2088428996=>1,2088428989=>1,2088429005=>1,2088429018=>1,2088429041=>1,2088429036=>1,2088428967=>1,2088428956=>1,2088428915=>1,2088428887=>1,2088428927=>1,2088428936=>1,2088428955=>1,2088428429=>1,2088428298=>1,2088427252=>1,2088427232=>1,2088427281=>1,2088427289=>1,2088427369=>1,2088427292=>1,2088427202=>1,2088427180=>1,2088427056=>1,2088427021=>1,2088427101=>1,2088427141=>1,2088427172=>1,2088427149=>1,2088427467=>1,2088427504=>1,2088428035=>1,2088428020=>1,2088428048=>1,2088428051=>1,2088428239=>1,2088428199=>1,2088427922=>1,2088427873=>1,2088427672=>1,2088427565=>1,2088427708=>1,2088427778=>1,2088427844=>1,2088425042=>1,2088424994=>1,2088423369=>1,2088423361=>1,2088423370=>1,2088423384=>1,2088423393=>1,2088423387=>1,2088423356=>1,2088423353=>1,2088423270=>1,2088423268=>1,2088423280=>1,2088423283=>1,2088423348=>1,2088423316=>1,2088423404=>1,2088423448=>1,2088423523=>1,2088423520=>1,2088423524=>1,2088423526=>1,2088423534=>1,2088423528=>1,2088423517=>1,2088423496=>1,2088423455=>1,2088423454=>1,2088423458=>1,2088423471=>1,2088423494=>1,2088423492=>1,2088423263=>1,2088423256=>1,2088423047=>1,2088423034=>1,2088423049=>1,2088423065=>1,2088423076=>1,2088423073=>1,2088423024=>1,2088423021=>1,2088422924=>1,2088422891=>1,2088422957=>1,2088422958=>1,2088423005=>1,2088422988=>1,2088423077=>1,2088423078=>1,2088423175=>1,2088423169=>1,2088423179=>1,2088423188=>1,2088423232=>1,2088423227=>1,2088423149=>1,2088423140=>1,2088423084=>1,2088423081=>1,2088423103=>1,2088423105=>1,2088423111=>1,2088423542=>1,2088423547=>1,2088424474=>1,2088424460=>1,2088424498=>1,2088424530=>1,2088424595=>1,2088424571=>1,2088424418=>1,2088424367=>1,2088424262=>1,2088424258=>1,2088424265=>1,2088424297=>1,2088424355=>1,2088424352=>1,2088424625=>1,2088424628=>1,2088424849=>1,2088424790=>1,2088424853=>1,2088424900=>1,2088424978=>1,2088424916=>1,2088424745=>1,2088424732=>1,2088424642=>1,2088424629=>1,2088424657=>1,2088424719=>1,2088424725=>1,2088424218=>1,2088424217=>1,2088423768=>1,2088423721=>1,2088423779=>1,2088423792=>1,2088423848=>1,2088423837=>1,2088423705=>1,2088423704=>1,2088423573=>1,2088423562=>1,2088423577=>1,2088423590=>1,2088423604=>1,2088423597=>1,2088423867=>1,2088423884=>1,2088424024=>1,2088424015=>1,2088424090=>1,2088424105=>1,2088424209=>1,2088424200=>1,2088424010=>1,2088423991=>1,2088423892=>1,2088423888=>1,2088423926=>1,2088423974=>1,2088423982=>1,2088429059=>1,2088429067=>1,2088432437=>1,2088432435=>1,2088432461=>1,2088432462=>1,2088432524=>1,2088432510=>1,2088432425=>1,2088432407=>1,2088432308=>1,2088432250=>1,2088432345=>1,2088432370=>1,2088432393=>1,2088432390=>1,2088432538=>1,2088432545=>1,2088432756=>1,2088432712=>1,2088432769=>1,2088432770=>1,2088432785=>1,2088432778=>1,2088432692=>1,2088432671=>1,2088432582=>1,2088432552=>1,2088432589=>1,2088432620=>1,2088432668=>1,2088432654=>1,2088432202=>1,2088432122=>1,2088431352=>1,2088431348=>1,2088431355=>1,2088431389=>1,2088431435=>1,2088431402=>1,2088431332=>1,2088431327=>1,2088431218=>1,2088431186=>1,2088431257=>1,2088431306=>1,2088431321=>1,2088431320=>1,2088431449=>1,2088431470=>1,2088431988=>1,2088431841=>1,2088431998=>1,2088432039=>1,2088432119=>1,2088432092=>1,2088431779=>1,2088431745=>1,2088431589=>1,2088431549=>1,2088431618=>1,2088431699=>1,2088431726=>1,2088432916=>1,2088432947=>1,2088433716=>1,2088433666=>1,2088433794=>1,2088433799=>1,2088433930=>1,2088433837=>1,2088433645=>1,2088433642=>1,2088433526=>1,2088433523=>1,2088433560=>1,2088433574=>1,2088433639=>1,2088433604=>1,2088433938=>1,2088433965=>1,2088434169=>1,2088434145=>1,2088434188=>1,2088434199=>1,2088434224=>1,2088434219=>1,2088434112=>1,2088434107=>1,2088434006=>1,2088433991=>1,2088434047=>1,2088434059=>1,2088434096=>1,2088433447=>1,2088433439=>1,2088433086=>1,2088433084=>1,2088433123=>1,2088433138=>1,2088433143=>1,2088433139=>1,2088433052=>1,2088433000=>1,2088432954=>1,2088432950=>1,2088432959=>1,2088432966=>1,2088432998=>1,2088432993=>1,2088433180=>1,2088433201=>1,2088433367=>1,2088433297=>1,2088433370=>1,2088433377=>1,2088433415=>1,2088433378=>1,2088433293=>1,2088433267=>1,2088433224=>1,2088433207=>1,2088433231=>1,2088433254=>1,2088433255=>1,2088431182=>1,2088431151=>1,2088429616=>1,2088429553=>1,2088429662=>1,2088429747=>1,2088429776=>1,2088429774=>1,2088429524=>1,2088429505=>1,2088429421=>1,2088429318=>1,2088429431=>1,2088429447=>1,2088429488=>1,2088429450=>1,2088429778=>1,2088429785=>1,2088430039=>1,2088429999=>1,2088430060=>1,2088430061=>1,2088430100=>1,2088430089=>1,2088429994=>1,2088429991=>1,2088429828=>1,2088429803=>1,2088429897=>1,2088429968=>1,2088429986=>1,2088429977=>1,2088429305=>1,2088429302=>1,2088429148=>1,2088429141=>1,2088429152=>1,2088429153=>1,2088429184=>1,2088429177=>1,2088429140=>1,2088429128=>1,2088429088=>1,2088429071=>1,2088429094=>1,2088429110=>1,2088429116=>1,2088429111=>1,2088429197=>1,2088429200=>1,2088429281=>1,2088429276=>1,2088429283=>1,2088429284=>1,2088429292=>1,2088429287=>1,2088429261=>1,2088429248=>1,2088429217=>1,2088429215=>1,2088429222=>1,2088429241=>1,2088429246=>1,2088430102=>1,2088430104=>1,2088430772=>1,2088430769=>1,2088430794=>1,2088430810=>1,2088430898=>1,2088430856=>1,2088430737=>1,2088430727=>1,2088430564=>1,2088430557=>1,2088430674=>1,2088430675=>1,2088430708=>1,2088430686=>1,2088430905=>1,2088430916=>1,2088431093=>1,2088431067=>1,2088431102=>1,2088431108=>1,2088431148=>1,2088431125=>1,2088431035=>1,2088431021=>1,2088430934=>1,2088430924=>1,2088430968=>1,2088430976=>1,2088431008=>1,2088430552=>1,2088430543=>1,2088430224=>1,2088430223=>1,2088430231=>1,2088430264=>1,2088430270=>1,2088430266=>1,2088430219=>1,2088430195=>1,2088430114=>1,2088430107=>1,2088430130=>1,2088430134=>1,2088430178=>1,2088430147=>1,2088430284=>1,2088430291=>1,2088430464=>1,2088430453=>1,2088430470=>1,2088430503=>1,2088430537=>1,2088430532=>1,2088430418=>1,2088430399=>1,2088430306=>1,2088430293=>1,2088430309=>1,2088430333=>1,2088430371=>1,2088422890=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-31.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3161728000=>3161728255,3176428013=>1,3176354437=>1,3176429841=>1,3176448194=>1,3176468762=>1,3176453130=>1,3176329979=>1,3176170390=>1,3175976550=>1,3175976291=>1,3175976673=>1,3176038702=>1,3176154838=>1,3176139702=>1,3176469518=>1,3176469524=>1,3176801949=>1,3176770230=>1,3176804642=>1,3176856222=>1,3176897644=>1,3176857237=>1,3176471918=>1,3176471906=>1,3176469601=>1,3176469525=>1,3176469617=>1,3176469633=>1,3176469641=>1,3175976198=>1,3175975866=>1,3174777842=>1,3174761690=>1,3174799963=>1,3174800487=>1,3174924566=>1,3174807365=>1,3174715719=>1,3174505534=>1,3174059657=>1,3173894626=>1,3174173204=>1,3174267181=>1,3174344070=>1,3174323906=>1,3175034731=>1,3175040993=>1,3175964305=>1,3175964286=>1,3175965716=>1,3175965986=>1,3175975358=>1,3175975141=>1,3175964180=>1,3175964014=>1,3175491489=>1,3175062882=>1,3175518124=>1,3175524563=>1,3175933962=>1,3175928990=>1,3177462180=>1,3177662399=>1,3183491922=>1,3183491633=>1,3183492865=>1,3183493566=>1,3183494073=>1,3183493627=>1,3183490890=>1,3183489383=>1,3183486268=>1,3183485560=>1,3183486781=>1,3183487335=>1,3183489227=>1,3183487545=>1,3183495856=>1,3183499696=>1,3183526110=>1,3183518006=>1,3183532206=>1,3183534937=>1,3183540344=>1,3183537736=>1,3183511610=>1,3183509025=>1,3183505621=>1,3183505403=>1,3183505982=>1,3183506402=>1,3183508979=>1,3183485122=>1,3183484569=>1,3178434909=>1,3178424368=>1,3178778735=>1,3178827851=>1,3178831695=>1,3178831327=>1,3178334182=>1,3178263372=>1,3178002114=>1,3177795468=>1,3178022422=>1,3178144744=>1,3178234710=>1,3178204752=>1,3179023494=>1,3179024774=>1,3182387806=>1,3182364567=>1,3183476774=>1,3183478115=>1,3183480240=>1,3183480028=>1,3182277175=>1,3182124060=>1,3179206090=>1,3179193527=>1,3179564865=>1,3179625558=>1,3180227266=>1,3173857378=>1,3173846665=>1,3168438852=>1,3168205608=>1,3168648606=>1,3168807919=>1,3168943790=>1,3168909091=>1,3168174421=>1,3168147323=>1,3168147304=>1,3168147299=>1,3168147307=>1,3168147310=>1,3168147319=>1,3168147315=>1,3168960576=>1,3168960945=>1,3168978400=>1,3168976944=>1,3168979160=>1,3168980680=>1,3168983438=>1,3168981948=>1,3168975754=>1,3168973732=>1,3168963909=>1,3168961112=>1,3168966012=>1,3168967877=>1,3168972370=>1,3168971631=>1,3168147289=>1,3168147286=>1,3168147218=>1,3168147216=>1,3168147219=>1,3168147221=>1,3168147235=>1,3168147224=>1,3168147215=>1,3168147213=>1,3168147205=>1,3168147203=>1,3168147206=>1,3168147208=>1,3168147212=>1,3168147211=>1,3168147236=>1,3168147239=>1,3168147272=>1,3168147266=>1,3168147273=>1,3168147274=>1,3168147283=>1,3168147278=>1,3168147263=>1,3168147261=>1,3168147244=>1,3168147242=>1,3168147247=>1,3168147249=>1,3168147259=>1,3168984563=>1,3168984595=>1,3171468034=>1,3171270931=>1,3171691346=>1,3171976308=>1,3172158469=>1,3172006258=>1,3171259502=>1,3171228497=>1,3171092690=>1,3171001897=>1,3171092691=>1,3171151266=>1,3171182418=>1,3171155590=>1,3172311633=>1,3172311871=>1,3173385433=>1,3173384969=>1,3173402498=>1,3173513564=>1,3173755457=>1,3173588319=>1,3173243968=>1,3173127044=>1,3172473562=>1,3172369623=>1,3172637218=>1,3172771444=>1,3173048788=>1,3170857695=>1,3170803211=>1,3169205469=>1,3169044870=>1,3169324011=>1,3169345739=>1,3169416179=>1,3169347286=>1,3169007702=>1,3168992693=>1,3168985363=>1,3168985202=>1,3168985519=>1,3168986006=>1,3168991201=>1,3168988570=>1,3169418827=>1,3169419152=>1,3170070451=>1,3170009722=>1,3170118425=>1,3170154514=>1,3170784667=>1,3170290755=>1,3169928295=>1,3169560489=>1,3169513690=>1,3169425693=>1,3169523564=>1,3169528351=>1,3169554475=>1,3183542431=>1,3183543489=>1,3183894539=>1,3183894474=>1,3183894541=>1,3183894591=>1,3183897680=>1,3183894802=>1,3183893151=>1,3183891553=>1,3183879609=>1,3183879205=>1,3183880145=>1,3183880275=>1,3183891107=>1,3183890711=>1,3183899858=>1,3183900005=>1,3183901594=>1,3183900831=>1,3183901610=>1,3183911373=>1,3183917883=>1,3183916894=>1,3183900760=>1,3183900667=>1,3183900348=>1,3183900299=>1,3183900352=>1,3183900360=>1,3183900430=>1,3183900376=>1,3183877319=>1,3183876405=>1,3183852378=>1,3183847010=>1,3183866269=>1,3183866551=>1,3183870523=>1,3183870163=>1,3183846944=>1,3183827614=>1,3183815504=>1,3183815468=>1,3183815906=>1,3183816332=>1,3183822795=>1,3183821648=>1,3183870617=>1,3183870814=>1,3183874634=>1,3183874514=>1,3183874637=>1,3183874653=>1,3183876322=>1,3183876244=>1,3183874467=>1,3183874278=>1,3183874119=>1,3183874076=>1,3183874169=>1,3183874193=>1,3183874273=>1,3183917886=>1,3183918325=>1,3184162384=>1,3184161133=>1,3184162496=>1,3184164113=>1,3184188608=>1,3184187529=>1,3184159887=>1,3184159389=>1,3184132314=>1,3184132259=>1,3184132518=>1,3184133882=>1,3184135072=>1,3184135026=>1,3184190314=>1,3184233757=>1,3184828502=>1,3184755421=>1,3184869730=>1,3184869731=>1,3184929388=>1,3184869740=>1,3184708483=>1,3184497120=>1,3184402002=>1,3184235287=>1,3184421893=>1,3184428364=>1,3184447194=>1,3184132101=>1,3184128613=>1,3183942367=>1,3183942047=>1,3183943689=>1,3183944405=>1,3183946876=>1,3183946691=>1,3183942043=>1,3183931657=>1,3183918568=>1,3183918505=>1,3183918637=>1,3183918718=>1,3183931490=>1,3183918770=>1,3183947525=>1,3183951448=>1,3183984292=>1,3183983931=>1,3183984339=>1,3183998344=>1,3184128488=>1,3183998628=>1,3183983719=>1,3183983122=>1,3183970705=>1,3183951641=>1,3183970853=>1,3183982375=>1,3183982381=>1,3183815252=>1,3183815246=>1,3183616519=>1,3183616421=>1,3183616655=>1,3183616798=>1,3183617118=>1,3183617031=>1,3183616392=>1,3183616387=>1,3183598993=>1,3183598378=>1,3183599128=>1,3183610040=>1,3183616105=>1,3183611252=>1,3183617185=>1,3183617465=>1,3183670014=>1,3183648684=>1,3183703524=>1,3183704556=>1,3183714874=>1,3183709734=>1,3183638724=>1,3183637346=>1,3183617554=>1,3183617498=>1,3183617821=>1,3183619496=>1,3183619871=>1,3183619794=>1,3183598365=>1,3183597318=>1,3183558853=>1,3183555856=>1,3183558925=>1,3183559095=>1,3183572506=>1,3183567642=>1,3183554986=>1,3183550842=>1,3183544294=>1,3183544110=>1,3183547068=>1,3183547258=>1,3183549268=>1,3183548592=>1,3183572982=>1,3183574131=>1,3183582852=>1,3183581739=>1,3183584068=>1,3183593328=>1,3183596204=>1,3183596157=>1,3183580698=>1,3183580039=>1,3183575201=>1,3183574377=>1,3183576188=>1,3183578115=>1,3183578870=>1,3183718524=>1,3183719175=>1,3183807733=>1,3183806127=>1,3183807772=>1,3183807863=>1,3183808098=>1,3183807882=>1,3183805510=>1,3183805354=>1,3183791185=>1,3183790925=>1,3183798958=>1,3183800207=>1,3183804607=>1,3183804451=>1,3183808155=>1,3183809542=>1,3183813938=>1,3183813282=>1,3183814151=>1,3183814870=>1,3183815198=>1,3183814995=>1,3183812978=>1,3183811773=>1,3183810304=>1,3183810295=>1,3183810366=>1,3183810569=>1,3183811742=>1,3183790368=>1,3183775375=>1,3183744547=>1,3183744261=>1,3183744606=>1,3183744934=>1,3183752603=>1,3183744997=>1,3183744035=>1,3183739104=>1,3183726263=>1,3183725821=>1,3183727665=>1,3183732882=>1,3183738907=>1,3183733962=>1,3183752754=>1,3183752972=>1,3183765030=>1,3183758500=>1,3183765465=>1,3183768108=>1,3183774485=>1,3183774161=>1,3183755891=>1,3183755787=>1,3183753180=>1,3183753048=>1,3183753208=>1,3183754142=>1,3183755497=>1,3168147202=>1,3168005945=>1,3155473454=>1,3155430334=>1,3155561724=>1,3155605603=>1,3155671591=>1,3155648715=>1,3155381490=>1,3155271589=>1,3154177028=>1,3154145427=>1,3154272822=>1,3154552123=>1,3155177676=>1,3155122940=>1,3155726630=>1,3155745623=>1,3156226983=>1,3156222702=>1,3156248512=>1,3156263459=>1,3156413620=>1,3156274309=>1,3156217242=>1,3155930918=>1,3155777928=>1,3155760902=>1,3155789898=>1,3155823404=>1,3155925321=>1,3155899441=>1,3154040989=>1,3153984264=>1,3153952846=>1,3153950649=>1,3153952872=>1,3153953038=>1,3153953347=>1,3153953199=>1,3153949413=>1,3153934450=>1,3153932742=>1,3153927864=>1,3153932775=>1,3153933348=>1,3153933837=>1,3153933439=>1,3153953413=>1,3153953434=>1,3153983458=>1,3153964204=>1,3153983588=>1,3153983607=>1,3153984159=>1,3153983612=>1,3153963642=>1,3153963421=>1,3153957000=>1,3153953472=>1,3153959037=>1,3153959776=>1,3153963135=>1,3156415769=>1,3156494365=>1,3158175799=>1,3158086386=>1,3158373760=>1,3158436370=>1,3158631824=>1,3158625917=>1,3157732870=>1,3157647979=>1,3157610535=>1,3157602416=>1,3157612742=>1,3157619390=>1,3157622764=>1,3157620870=>1,3158637144=>1,3158944916=>1,3160239694=>1,3160146640=>1,3160245715=>1,3160265245=>1,3160266059=>1,3160265280=>1,3159847577=>1,3159389056=>1,3159058467=>1,3159058466=>1,3159116050=>1,3159124970=>1,3159282131=>1,3157596483=>1,3157594022=>1,3156765645=>1,3156763461=>1,3156766098=>1,3156771023=>1,3156771062=>1,3156771056=>1,3156757619=>1,3156754058=>1,3156513566=>1,3156500455=>1,3156748659=>1,3156750923=>1,3156753650=>1,3156751336=>1,3156773975=>1,3156777458=>1,3156924499=>1,3156801593=>1,3156933899=>1,3156934191=>1,3157584618=>1,3156966164=>1,3156798423=>1,3156796194=>1,3156780573=>1,3156778874=>1,3156783621=>1,3156783946=>1,3156790789=>1,3153927035=>1,3153926669=>1,3153409904=>1,3153409802=>1,3153410081=>1,3153412206=>1,3153416328=>1,3153416220=>1,3153404686=>1,3153398951=>1,3153393897=>1,3153393745=>1,3153394494=>1,3153394578=>1,3153395558=>1,3153394615=>1,3153416990=>1,3153417018=>1,3153483639=>1,3153473348=>1,3153485670=>1,3153487176=>1,3153488297=>1,3153487924=>1,3153465892=>1,3153464406=>1,3153424382=>1,3153423579=>1,3153436393=>1,3153439963=>1,3153454379=>1,3153451142=>1,3153393185=>1,3153392229=>1,3153335107=>1,3153333916=>1,3153344458=>1,3153353899=>1,3153363596=>1,3153358435=>1,3153333902=>1,3153331099=>1,3153321348=>1,3153320990=>1,3153327700=>1,3153328053=>1,3153330541=>1,3153330421=>1,3153363849=>1,3153365137=>1,3153381496=>1,3153380882=>1,3153382112=>1,3153391218=>1,3153391397=>1,3153391305=>1,3153380831=>1,3153380222=>1,3153367202=>1,3153366093=>1,3153370020=>1,3153372225=>1,3153380185=>1,3153492308=>1,3153492990=>1,3153900131=>1,3153899950=>1,3153901589=>1,3153901611=>1,3153901755=>1,3153901639=>1,3153893452=>1,3153892343=>1,3153871090=>1,3153868969=>1,3153871148=>1,3153871956=>1,3153873194=>1,3153872626=>1,3153901972=>1,3153902031=>1,3153923151=>1,3153923095=>1,3153923448=>1,3153923497=>1,3153923577=>1,3153923538=>1,3153912829=>1,3153903048=>1,3153902821=>1,3153902695=>1,3153902835=>1,3153902893=>1,3153902940=>1,3153867291=>1,3153866902=>1,3153553099=>1,3153551916=>1,3153555974=>1,3153559360=>1,3153567128=>1,3153564813=>1,3153550484=>1,3153537387=>1,3153501403=>1,3153493235=>1,3153502065=>1,3153503914=>1,3153522037=>1,3153512819=>1,3153572037=>1,3153575664=>1,3153856096=>1,3153856089=>1,3153856120=>1,3153856270=>1,3153859225=>1,3153857209=>1,3153855985=>1,3153854811=>1,3153581892=>1,3153575689=>1,3153582009=>1,3153854703=>1,3153854767=>1,3160328228=>1,3160431920=>1,3165004991=>1,3165001941=>1,3165008443=>1,3165010650=>1,3165013158=>1,3165012967=>1,3165001505=>1,3165001123=>1,3164999459=>1,3164997784=>1,3164999771=>1,3165000003=>1,3165001016=>1,3165000040=>1,3165013547=>1,3165015117=>1,3165027284=>1,3165026874=>1,3165027799=>1,3165028192=>1,3165035148=>1,3165028399=>1,3165026007=>1,3165024453=>1,3165016217=>1,3165015158=>1,3165018017=>1,3165018046=>1,3165023729=>1,3165022621=>1,3164997253=>1,3164997126=>1,3164945195=>1,3164936717=>1,3164950456=>1,3164954218=>1,3164966295=>1,3164961780=>1,3164931650=>1,3164930219=>1,3164127890=>1,3164106684=>1,3164129604=>1,3164755468=>1,3164755589=>1,3164755573=>1,3164967325=>1,3164969726=>1,3164990482=>1,3164989480=>1,3164990775=>1,3164991960=>1,3164996717=>1,3164996174=>1,3164987085=>1,3164984732=>1,3164979907=>1,3164970579=>1,3164981144=>1,3164981839=>1,3164982389=>1,3165035766=>1,3165036132=>1,3166769172=>1,3166756940=>1,3166785356=>1,3166802949=>1,3166879955=>1,3166830978=>1,3166726784=>1,3166725392=>1,3166642558=>1,3166638401=>1,3166702921=>1,3166706569=>1,3166725218=>1,3166724976=>1,3166893750=>1,3166894351=>1,3167827073=>1,3167827063=>1,3167850625=>1,3167851555=>1,3153320971=>1,3168005908=>1,3167827053=>1,3167826210=>1,3166902618=>1,3166897733=>1,3166922871=>1,3166934767=>1,3166940565=>1,3166638314=>1,3166586918=>1,3165057839=>1,3165057218=>1,3165058090=>1,3165058424=>1,3165058521=>1,3165058455=>1,3165055926=>1,3165053551=>1,3165041208=>1,3165036188=>1,3165041820=>1,3165042299=>1,3165051855=>1,3165049050=>1,3165058666=>1,3165079008=>1,3166002517=>1,3165728822=>1,3166352666=>1,3166405123=>1,3166421067=>1,3166405172=>1,3165568472=>1,3165541884=>1,3165133312=>1,3165132051=>1,3165135450=>1,3165147779=>1,3165541364=>1,3163514794=>1,3163507670=>1,3161231656=>1,3161226710=>1,3161241332=>1,3161249261=>1,3161467853=>1,3161372699=>1,3161226595=>1,3161038196=>1,3160851214=>1,3160812182=>1,3160858993=>1,3160935141=>1,3161022302=>1,3161010747=>1,3161472150=>1,3161548648=>1,3161905644=>1,3161895566=>1,3161954156=>1,3162038496=>1,3162039245=>1,3162038847=>1,3161886690=>1,3161857643=>1,3161552709=>1,3161551185=>1,3161553907=>1,3161554533=>1,3161623663=>1,3161554572=>1,3160759024=>1,3160656675=>1,3160619835=>1,3160594939=>1,3160620614=>1,3160620979=>1,3160625703=>1,3160625606=>1,3160552764=>1,3160551782=>1,3160460657=>1,3160453062=>1,3160541905=>1,3160542474=>1,3160542895=>1,3160542561=>1,3160625790=>1,3160625928=>1,3160628818=>1,3160628575=>1,3160654229=>1,3160654533=>1,3160655192=>1,3160655027=>1,3160628136=>1,3160627668=>1,3160626240=>1,3160626056=>1,3160626657=>1,3160626692=>1,3160626713=>1,3162039859=>1,3162039886=>1,3162900034=>1,3162899804=>1,3162901358=>1,3162903028=>1,3163067672=>1,3162917843=>1,3162698508=>1,3162698507=>1,3162588121=>1,3162583453=>1,3162589458=>1,3162592763=>1,3162636258=>1,3162627460=>1,3163078305=>1,3163160998=>1,3163191840=>1,3163189308=>1,3163436101=>1,3163485936=>1,3163502000=>1,3163488279=>1,3163183532=>1,3163183146=>1,3163164965=>1,3163162929=>1,3163176271=>1,3163181713=>1,3163183121=>1,3162581364=>1,3162580858=>1,3162042661=>1,3162041894=>1,3162042668=>1,3162042835=>1,3162043904=>1,3162043168=>1,3162041771=>1,3162041579=>1,3162040134=>1,3162040065=>1,3162040263=>1,3162040388=>1,3162040858=>1,3162040523=>1,3162044996=>1,3162045304=>1,3162320005=>1,3162264122=>1,3162393721=>1,3162394390=>1,3162397385=>1,3162395035=>1,3162234246=>1,3162113441=>1,3162045735=>1,3162045313=>1,3162046434=>1,3162046444=>1,3162072838=>1,3168082348=>1,);?>
1
+ <?php return array(2193189248=>2193189375,2208368537=>1,2208368533=>1,2208368543=>1,2208368544=>1,2208368550=>1,2208368547=>1,2208368530=>1,2208368527=>1,2208368507=>1,2208368506=>1,2208368517=>1,2208368521=>1,2208368524=>1,2208368553=>1,2208368555=>1,2208368595=>1,2208368594=>1,2208368596=>1,2208368598=>1,2208368605=>1,2208368599=>1,2208368591=>1,2208368584=>1,2208368559=>1,2208368557=>1,2208368564=>1,2208368570=>1,2208368579=>1,2208368577=>1,2208368494=>1,2208368490=>1,2208368403=>1,2208368396=>1,2208368407=>1,2208368416=>1,2208368424=>1,2208368421=>1,2208368393=>1,2208368388=>1,2208368374=>1,2208368369=>1,2208368378=>1,2208368381=>1,2208368387=>1,2208368386=>1,2208368430=>1,2208368432=>1,2208368472=>1,2208368469=>1,2208368482=>1,2208368485=>1,2208368616=>1,2208368488=>1,2208368467=>1,2208368464=>1,2208368443=>1,2208368436=>1,2208368451=>1,2208368455=>1,2208368461=>1,2208368492=>1,2208368617=>1,2212342064=>1,2212340336=>1,2212342078=>1,2212342228=>1,2212342232=>1,2212342229=>1,2212332487=>1,2212332048=>1,2212317048=>1,2212316994=>1,2212317107=>1,2212317428=>1,2212332015=>1,2212328315=>1,2212342258=>1,2212342320=>1,2212342508=>1,2212342504=>1,2212342537=>1,2212342540=>1,2212342649=>1,2212342616=>1,2212342486=>1,2212342462=>1,2212342324=>1,2212342323=>1,2212342325=>1,2212342343=>1,2212342416=>1,2212342346=>1,2212316921=>1,2212316898=>1,2208405593=>1,2208376524=>1,2208409507=>1,2208412211=>1,2208431190=>1,2208419157=>1,2208372201=>1,2208372143=>1,2208368632=>1,2208368619=>1,2208368634=>1,2208368635=>1,2208368638=>1,2208368637=>1,2208432022=>1,2209096751=>1,2212316530=>1,2212311210=>1,2212316559=>1,2212316694=>1,2212316798=>1,2212316718=>1,2212310002=>1,2212304445=>1,2210146493=>1,2210146492=>1,2210357984=>1,2211949782=>1,2212269440=>1,2208368366=>1,2208368362=>1,2208368041=>1,2208368040=>1,2208368042=>1,2208368048=>1,2208368051=>1,2208368050=>1,2208368032=>1,2208368029=>1,2208368002=>1,2208368000=>1,2208368005=>1,2208368008=>1,2208368025=>1,2208368013=>1,2208368053=>1,2208368056=>1,2208368092=>1,2208368084=>1,2208368095=>1,2208368101=>1,2208368107=>1,2208368105=>1,2208368079=>1,2208368075=>1,2208368059=>1,2208368058=>1,2208368061=>1,2208368062=>1,2208368069=>1,2208368065=>1,2208367999=>1,2208367996=>1,2208367910=>1,2208367900=>1,2208367911=>1,2208367915=>1,2208367925=>1,2208367920=>1,2208367892=>1,2208367890=>1,2208367864=>1,2208367854=>1,2208367871=>1,2208367874=>1,2208367886=>1,2208367883=>1,2208367928=>1,2208367930=>1,2208367975=>1,2208367971=>1,2208367985=>1,2208367991=>1,2208367994=>1,2208367993=>1,2208367969=>1,2208367962=>1,2208367942=>1,2208367932=>1,2208367948=>1,2208367952=>1,2208367961=>1,2208368109=>1,2208368110=>1,2208368284=>1,2208368283=>1,2208368291=>1,2208368294=>1,2208368313=>1,2208368307=>1,2208368280=>1,2208368273=>1,2208368258=>1,2208368257=>1,2208368262=>1,2208368268=>1,2208368272=>1,2208368271=>1,2208368315=>1,2208368325=>1,2208368351=>1,2208368350=>1,2208368353=>1,2208368354=>1,2208368359=>1,2208368357=>1,2208368349=>1,2208368343=>1,2208368328=>1,2208368327=>1,2208368329=>1,2208368332=>1,2208368337=>1,2208368256=>1,2208368249=>1,2208368152=>1,2208368150=>1,2208368155=>1,2208368165=>1,2208368184=>1,2208368170=>1,2208368138=>1,2208368132=>1,2208368122=>1,2208368113=>1,2208368123=>1,2208368126=>1,2208368131=>1,2208368130=>1,2208368187=>1,2208368190=>1,2208368231=>1,2208368220=>1,2208368233=>1,2208368234=>1,2208368248=>1,2208368235=>1,2208368218=>1,2208368215=>1,2208368196=>1,2208368192=>1,2208368197=>1,2208368204=>1,2208368206=>1,2212342655=>1,2212342668=>1,2251417983=>1,2250453921=>1,2254130831=>1,2254302397=>1,2254663848=>1,2254455057=>1,2250412928=>1,2250407205=>1,2248153634=>1,2247264368=>1,2248174570=>1,2248377248=>1,2249437549=>1,2248381226=>1,2254837370=>1,2254882917=>1,2256093188=>1,2255955079=>1,2256713003=>1,2256713009=>1,2259246298=>1,2256713172=>1,2255954167=>1,2255954128=>1,2255946660=>1,2255946498=>1,2255947200=>1,2255948067=>1,2255952577=>1,2255951934=>1,2239921823=>1,2239921776=>1,2231344456=>1,2231344434=>1,2231347650=>1,2231358678=>1,2231364120=>1,2231364064=>1,2231344330=>1,2231344238=>1,2231324575=>1,2231324543=>1,2231324622=>1,2231324646=>1,2231341078=>1,2231339868=>1,2231364156=>1,2231364257=>1,2232557552=>1,2232557551=>1,2237532348=>1,2239912292=>1,2239920933=>1,2239919410=>1,2232557547=>1,2232557301=>1,2231364542=>1,2231364497=>1,2231364544=>1,2232553795=>1,2232557180=>1,2259246299=>1,2259246302=>1,2302357721=>1,2297690230=>1,2304969481=>1,2306235338=>1,2306247986=>1,2306247750=>1,2297686583=>1,2297681545=>1,2297671613=>1,2297671610=>1,2297671828=>1,2297674661=>1,2297680180=>1,2297677307=>1,2306248431=>1,2306248670=>1,2309277822=>1,2307379102=>1,2309292399=>1,2309954868=>1,2311917069=>1,2309960683=>1,2307368673=>1,2307328233=>1,2306260581=>1,2306260572=>1,2306268336=>1,2306268934=>1,2306304095=>1,2297671032=>1,2297670329=>1,2264508432=>1,2264504966=>1,2264870514=>1,2264923743=>1,2266459811=>1,2266453041=>1,2264501231=>1,2264481131=>1,2261046911=>1,2261017779=>1,2261780091=>1,2262968042=>1,2264481116=>1,2262975517=>1,2266460713=>1,2266464555=>1,2297653844=>1,2297652870=>1,2297654020=>1,2297655870=>1,2297664179=>1,2297660433=>1,2297651766=>1,2297651724=>1,2281705689=>1,2281701524=>1,2292763033=>1,2297643105=>1,2297644743=>1,2231324533=>1,2231324495=>1,2212358036=>1,2212358035=>1,2212358053=>1,2212358056=>1,2212358058=>1,2212358057=>1,2212358029=>1,2212358025=>1,2212357863=>1,2212357841=>1,2212357872=>1,2212357876=>1,2212358019=>1,2212357985=>1,2212358060=>1,2212363634=>1,2214547074=>1,2214547062=>1,2214547197=>1,2214547270=>1,2214547333=>1,2214547331=>1,2214547018=>1,2214538904=>1,2214003447=>1,2212363667=>1,2214531323=>1,2214531786=>1,2214531819=>1,2214531806=>1,2212357839=>1,2212357837=>1,2212342740=>1,2212342736=>1,2212342758=>1,2212342764=>1,2212342776=>1,2212342775=>1,2212342735=>1,2212342731=>1,2212342676=>1,2208367841=>1,2212342687=>1,2212342698=>1,2212342714=>1,2212342711=>1,2212346851=>1,2212346874=>1,2212355561=>1,2212348367=>1,2212355596=>1,2212357829=>1,2212357834=>1,2212357831=>1,2212348365=>1,2212348353=>1,2212348195=>1,2212348178=>1,2212348196=>1,2212348206=>1,2212348299=>1,2214547335=>1,2214560804=>1,2231312264=>1,2231312254=>1,2231312265=>1,2231312273=>1,2231319335=>1,2231316719=>1,2231312246=>1,2231312245=>1,2231311075=>1,2231311034=>1,2231311474=>1,2231311483=>1,2231312023=>1,2231312012=>1,2231319336=>1,2231319415=>1,2231324332=>1,2231324331=>1,2231324349=>1,2231324354=>1,2231324384=>1,2231324356=>1,2231324325=>1,2231324270=>1,2231324193=>1,2231324166=>1,2231324202=>1,2231324227=>1,2231324241=>1,2231310477=>1,2231310448=>1,2214575912=>1,2214571071=>1,2214579250=>1,2214579387=>1,2214579500=>1,2214579451=>1,2214566530=>1,2214566399=>1,2214560916=>1,2214560868=>1,2214560924=>1,2214560975=>1,2214561354=>1,2214561351=>1,2214579541=>1,2214579676=>1,2228762114=>1,2228468710=>1,2229704273=>1,2230808666=>1,2230908894=>1,2230858530=>1,2228468614=>1,2224488706=>1,2214580013=>1,2214579849=>1,2214580141=>1,2218958106=>1,2224248073=>1,2212342659=>1,2208367827=>1,2196147642=>1,2195826769=>1,2197141449=>1,2197752511=>1,2197773033=>1,2197768356=>1,2194909459=>1,2194886094=>1,2193706219=>1,2193705070=>1,2193706625=>1,2193706629=>1,2194870108=>1,2194411079=>1,2197830722=>1,2197838979=>1,2197844166=>1,2197844128=>1,2197844180=>1,2197844256=>1,2197851182=>1,2197844282=>1,2197839527=>1,2197839362=>1,2197839038=>1,2197839017=>1,2197839054=>1,2197839201=>1,2197839349=>1,2197839222=>1,2193703323=>1,2193690554=>1,2182072947=>1,2181059123=>1,2182740105=>1,2185211262=>1,2187236451=>1,2185998886=>1,2181046195=>1,2181046180=>1,2175864886=>1,2175617127=>1,2176511989=>1,2177022220=>1,2180087696=>1,2179507175=>1,2189734270=>1,2190806559=>1,2193188914=>1,2193116022=>1,2193196298=>1,2193196299=>1,2193226316=>1,2193226308=>1,2193103125=>1,2192855290=>1,2190859389=>1,2190855019=>1,2192840678=>1,2192844950=>1,2192850838=>1,2197856888=>1,2197857070=>1,2202539162=>1,2202539073=>1,2202539347=>1,2202539983=>1,2202544368=>1,2202544302=>1,2202539022=>1,2197879727=>1,2197868998=>1,2197868806=>1,2197871839=>1,2197873722=>1,2197874107=>1,2197873895=>1,2202544406=>1,2202544618=>1,2202561502=>1,2202561448=>1,2202561503=>1,2202564168=>1,2202564241=>1,2202564201=>1,2202561438=>1,2202561353=>1,2202554881=>1,2202546168=>1,2202558678=>1,2202560963=>1,2202561285=>1,2197865222=>1,2197865093=>1,2197861985=>1,2197861926=>1,2197862060=>1,2197862087=>1,2197862295=>1,2197862140=>1,2197861909=>1,2197861892=>1,2197861608=>1,2197858388=>1,2197861634=>1,2197861722=>1,2197861832=>1,2197861752=>1,2197862298=>1,2197862375=>1,2197864875=>1,2197864849=>1,2197864902=>1,2197864961=>1,2197865078=>1,2197864982=>1,2197864848=>1,2197864839=>1,2197864753=>1,2197864205=>1,2197864784=>1,2197864794=>1,2197864813=>1,2175615844=>1,2172649173=>1,2160547365=>1,2160547237=>1,2160547569=>1,2160547739=>1,2160548562=>1,2160548028=>1,2160546985=>1,2160546096=>1,2160542703=>1,2160542593=>1,2160543210=>1,2160543235=>1,2160545208=>1,2160543898=>1,2160548711=>1,2160549033=>1,2160554941=>1,2160554783=>1,2160555473=>1,2160556194=>1,2160557138=>1,2160556648=>1,2160554738=>1,2160554454=>1,2160549758=>1,2160549380=>1,2160550932=>1,2160553929=>1,2160553974=>1,2160553969=>1,2160541872=>1,2160539599=>1,2152408310=>1,2152386517=>1,2152678996=>1,2152681968=>1,2154718089=>1,2154718084=>1,2152384188=>1,2152353883=>1,2152291645=>1,2152291631=>1,2152291747=>1,2152291821=>1,2152331030=>1,2152298233=>1,2154882064=>1,2154979610=>1,2160537195=>1,2160536046=>1,2160538631=>1,2160539417=>1,2160539468=>1,2160539429=>1,2160534582=>1,2160534277=>1,2156055643=>1,2155817004=>1,2156872481=>1,2157547901=>1,2158202389=>1,2160557471=>1,2160557735=>1,2160586468=>1,2160585788=>1,2160586945=>1,2160587982=>1,2160589066=>1,2160588137=>1,2160585468=>1,2160585235=>1,2160583370=>1,2160583146=>1,2160583478=>1,2160583741=>1,2160585102=>1,2160584647=>1,2160589427=>1,2160590021=>1,2165741215=>1,2165672990=>1,2168457428=>1,2170823274=>1,2170837917=>1,2170837337=>1,2165655395=>1,2162121811=>1,2160902922=>1,2160863082=>1,2160905349=>1,2161115881=>1,2161247201=>1,2160582744=>1,2160579965=>1,2160563349=>1,2160563007=>1,2160563732=>1,2160563754=>1,2160564162=>1,2160563858=>1,2160561120=>1,2160560846=>1,2160558719=>1,2160558515=>1,2160559016=>1,2160559111=>1,2160560118=>1,2160559514=>1,2160565925=>1,2160566121=>1,2160575760=>1,2160575088=>1,2160576376=>1,2160577385=>1,2160578928=>1,2160578452=>1,2160574378=>1,2160573163=>1,2160568846=>1,2160568170=>1,2160570103=>1,2160571236=>1,2160571493=>1,2202568903=>1,2202576707=>1,2204932818=>1,2204932812=>1,2204932819=>1,2204932821=>1,2204932826=>1,2204932822=>1,2204932810=>1,2204932809=>1,2204932785=>1,2204932771=>1,2204932787=>1,2204932790=>1,2204932803=>1,2204932791=>1,2204932828=>1,2204932831=>1,2204932859=>1,2204932856=>1,2204933129=>1,2204934949=>1,2204939767=>1,2204935292=>1,2204932855=>1,2204932854=>1,2204932837=>1,2204932836=>1,2204932839=>1,2204932844=>1,2204932851=>1,2204932847=>1,2204932606=>1,2204932604=>1,2204932563=>1,2204932559=>1,2204932564=>1,2204932565=>1,2204932570=>1,2204932569=>1,2204932555=>1,2204932552=>1,2204932539=>1,2204932536=>1,2204932542=>1,2204932543=>1,2204932547=>1,2204932546=>1,2204932571=>1,2204932573=>1,2204932593=>1,2204932592=>1,2204932597=>1,2204932598=>1,2204932602=>1,2204932601=>1,2204932590=>1,2204932589=>1,2204932579=>1,2204932576=>1,2204932580=>1,2204932581=>1,2204932586=>1,2204940031=>1,2204940183=>1,2208367763=>1,2208367758=>1,2208367764=>1,2208367767=>1,2208367769=>1,2208367768=>1,2208367756=>1,2208367747=>1,2208367730=>1,2208367728=>1,2208367735=>1,2208367740=>1,2208367746=>1,2208367744=>1,2208367770=>1,2208367786=>1,2208367816=>1,2208367815=>1,2208367819=>1,2208367822=>1,2152269637=>1,2208367824=>1,2208367813=>1,2208367812=>1,2208367788=>1,2208367787=>1,2208367789=>1,2208367806=>1,2208367808=>1,2208367727=>1,2208367718=>1,2208367630=>1,2208367627=>1,2208367638=>1,2208367645=>1,2208367652=>1,2208367651=>1,2208367625=>1,2208367619=>1,2204950426=>1,2204950306=>1,2206371426=>1,2207991154=>1,2208367618=>1,2208367617=>1,2208367653=>1,2208367658=>1,2208367681=>1,2208367680=>1,2208367685=>1,2208367690=>1,2208367709=>1,2208367704=>1,2208367678=>1,2208367677=>1,2208367663=>1,2208367660=>1,2208367665=>1,2208367669=>1,2208367672=>1,2204932534=>1,2204932522=>1,2204424773=>1,2204424770=>1,2204424776=>1,2204424780=>1,2204424789=>1,2204424781=>1,2204424767=>1,2204424756=>1,2204424705=>1,2204418019=>1,2204424748=>1,2204424749=>1,2204424753=>1,2204424751=>1,2204424793=>1,2204424796=>1,2204424827=>1,2204424825=>1,2204424831=>1,2204424844=>1,2204424852=>1,2204424847=>1,2204424823=>1,2204424821=>1,2204424810=>1,2204424797=>1,2204424817=>1,2204424818=>1,2204424820=>1,2204424819=>1,2204417577=>1,2204411302=>1,2204383838=>1,2204380837=>1,2204393199=>1,2204396347=>1,2204399848=>1,2204399757=>1,2204380799=>1,2204380691=>1,2202576842=>1,2202576761=>1,2202585582=>1,2204373813=>1,2204378792=>1,2204377348=>1,2204399958=>1,2204399993=>1,2204408204=>1,2204407941=>1,2204411159=>1,2204411189=>1,2204411232=>1,2204411204=>1,2204407857=>1,2204407796=>1,2204400082=>1,2204399996=>1,2204400487=>1,2204407701=>1,2204407795=>1,2204424860=>1,2204424876=>1,2204932426=>1,2204932424=>1,2204932437=>1,2204932439=>1,2204932444=>1,2204932441=>1,2204932419=>1,2204932417=>1,2204928914=>1,2204928506=>1,2204932396=>1,2204932408=>1,2204932411=>1,2204932409=>1,2204932448=>1,2204932451=>1,2204932500=>1,2204932492=>1,2204932503=>1,2204932506=>1,2204932515=>1,2204932507=>1,2204932491=>1,2204932489=>1,2204932474=>1,2204932473=>1,2204932478=>1,2204932485=>1,2204932487=>1,2204911731=>1,2204907522=>1,2204425167=>1,2204424943=>1,2204429378=>1,2204430226=>1,2204430565=>1,2204430552=>1,2204424938=>1,2204424936=>1,2204424891=>1,2204424884=>1,2204424894=>1,2204424898=>1,2204424932=>1,2204424913=>1,2204430634=>1,2204430664=>1,2204433951=>1,2204433813=>1,2204434018=>1,2204891664=>1,2204895692=>1,2204895628=>1,2204433512=>1,2204433450=>1,2204430715=>1,2204430699=>1,2204430839=>1,2204431198=>1,2204432760=>1,2208367838=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-32.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3185224087=>1,3185224086=>1,3185224098=>1,3185224099=>1,3185224107=>1,3185224102=>1,3185224081=>1,3185224080=>1,3185223991=>1,3185223964=>1,3185224023=>1,3185224038=>1,3185224065=>1,3185224062=>1,3185224109=>1,3185224111=>1,3185224976=>1,3185224972=>1,3185224988=>1,3185225005=>1,3185225065=>1,3185225008=>1,3185224935=>1,3185224860=>1,3185224129=>1,3185224113=>1,3185224131=>1,3185224726=>1,3185224854=>1,3185224833=>1,3185223904=>1,3185223885=>1,3185222803=>1,3185222800=>1,3185222833=>1,3185222862=>1,3185222874=>1,3185222863=>1,3185222799=>1,3185222782=>1,3185222665=>1,3185222408=>1,3185222676=>1,3185222694=>1,3185222749=>1,3185222698=>1,3185222875=>1,3185222898=>1,3185223460=>1,3185223438=>1,3185223717=>1,3185223745=>1,3185223873=>1,3185223801=>1,3185223433=>1,3185223427=>1,3185222934=>1,3185222903=>1,3185222955=>1,3185222959=>1,3185222967=>1,3185225077=>1,3185225104=>1,3185232184=>1,3185232165=>1,3185232195=>1,3185232223=>1,3185232286=>1,3185232273=>1,3185232098=>1,3185232042=>1,3185231898=>1,3185231295=>1,3185231904=>1,3185231961=>1,3185232012=>1,3185232005=>1,3185232364=>1,3185232898=>1,3185233071=>1,3185233032=>1,3185233091=>1,3185233102=>1,3185233153=>1,3185233115=>1,3185233030=>1,3185233008=>1,3185232939=>1,3185232934=>1,3185232957=>1,3185232978=>1,3185233000=>1,3185232982=>1,3185231210=>1,3185231049=>1,3185228442=>1,3185225889=>1,3185229336=>1,3185229403=>1,3185229534=>1,3185229501=>1,3185225184=>1,3185225181=>1,3185225138=>1,3185225119=>1,3185225146=>1,3185225154=>1,3185225167=>1,3185225165=>1,3185229570=>1,3185229589=>1,3185229747=>1,3185229739=>1,3185229774=>1,3185229808=>1,3185230981=>1,3185229820=>1,3185229721=>1,3185229708=>1,3185229645=>1,3185229613=>1,3185229660=>1,3185229676=>1,3185229694=>1,3185222322=>1,3185221283=>1,3185213149=>1,3185213148=>1,3185213212=>1,3185213234=>1,3185213269=>1,3185213263=>1,3185213128=>1,3185213104=>1,3185212977=>1,3185212932=>1,3185212994=>1,3185213026=>1,3185213065=>1,3185213054=>1,3185213286=>1,3185213400=>1,3185216665=>1,3185216488=>1,3185216972=>1,3185217048=>1,3185217111=>1,3185217084=>1,3185216467=>1,3185216446=>1,3185213437=>1,3185213429=>1,3185216034=>1,3185216194=>1,3185216353=>1,3185216295=>1,3185212890=>1,3185212851=>1,3185212429=>1,3185211900=>1,3185212432=>1,3185212458=>1,3185212479=>1,3185212470=>1,3185211873=>1,3185211855=>1,3185211714=>1,3185211706=>1,3185211742=>1,3185211810=>1,3185211828=>1,3185211824=>1,3185212536=>1,3185212552=>1,3185212736=>1,3185212716=>1,3185212752=>1,3185212792=>1,3185212837=>1,3185212815=>1,3185212700=>1,3185212681=>1,3185212585=>1,3185212570=>1,3185212587=>1,3185212632=>1,3185212674=>1,3185217117=>1,3185217135=>1,3185217990=>1,3185217919=>1,3185218020=>1,3185218566=>1,3185218660=>1,3185218567=>1,3185217908=>1,3185217853=>1,3185217773=>1,3185217765=>1,3185217787=>1,3185217813=>1,3185217850=>1,3185217847=>1,3185218709=>1,3185218755=>1,3185219023=>1,3185218998=>1,3185219299=>1,3185219560=>1,3185221102=>1,3185220783=>1,3185218980=>1,3185218910=>1,3185218768=>1,3185218765=>1,3185218848=>1,3185218884=>1,3185218909=>1,3185217762=>1,3185217742=>1,3185217229=>1,3185217228=>1,3185217235=>1,3185217250=>1,3185217303=>1,3185217256=>1,3185217223=>1,3185217205=>1,3185217144=>1,3185217142=>1,3185217151=>1,3185217154=>1,3185217203=>1,3185217166=>1,3185217318=>1,3185217358=>1,3185217679=>1,3185217654=>1,3185217688=>1,3185217702=>1,3185217741=>1,3185217724=>1,3185217634=>1,3185217632=>1,3185217577=>1,3185217363=>1,3185217579=>1,3185217601=>1,3185217618=>1,3185233169=>1,3185233234=>1,3185242021=>1,3185241960=>1,3185242024=>1,3185242053=>1,3185242183=>1,3185242072=>1,3185241939=>1,3185241936=>1,3185241762=>1,3185241744=>1,3185241826=>1,3185241885=>1,3185241915=>1,3185241891=>1,3185242212=>1,3185242219=>1,3185242453=>1,3185242391=>1,3185242455=>1,3185242458=>1,3185242506=>1,3185242497=>1,3185242384=>1,3185242380=>1,3185242237=>1,3185242232=>1,3185242254=>1,3185242269=>1,3185242345=>1,3185242297=>1,3185241741=>1,3185241630=>1,3185240059=>1,3185240049=>1,3185241126=>1,3185241129=>1,3185241228=>1,3185241198=>1,3185240040=>1,3185240008=>1,3185239752=>1,3185239749=>1,3185239809=>1,3185239866=>1,3185239923=>1,3185239904=>1,3185241235=>1,3185241276=>1,3185241568=>1,3185241561=>1,3185241579=>1,3185241586=>1,3185241628=>1,3185241618=>1,3185241517=>1,3185241451=>1,3185241325=>1,3185241297=>1,3185241351=>1,3185241399=>1,3185241414=>1,3185242550=>1,3185242552=>1,3185243301=>1,3185243295=>1,3185243302=>1,3185243308=>1,3185243317=>1,3185243311=>1,3185243289=>1,3185243288=>1,3185243281=>1,3185243276=>1,3185243283=>1,3185243284=>1,3185243287=>1,3185243286=>1,3185243319=>1,3185243332=>1,3185244480=>1,3185244474=>1,3185244483=>1,3185244486=>1,3185244505=>1,3185244493=>1,3185244471=>1,3185244468=>1,3185243361=>1,3185243355=>1,3185243365=>1,3185243366=>1,3185244442=>1,3185243268=>1,3185243235=>1,3185242788=>1,3185242783=>1,3185242815=>1,3185242861=>1,3185242894=>1,3185242876=>1,3185242731=>1,3185242693=>1,3185242591=>1,3185242588=>1,3185242600=>1,3185242608=>1,3185242691=>1,3185242677=>1,3185242938=>1,3185242971=>1,3185243133=>1,3185243109=>1,3185243144=>1,3185243146=>1,3185243210=>1,3185243209=>1,3185243107=>1,3185243090=>1,3185243011=>1,3185243009=>1,3185243040=>1,3185243060=>1,3185243062=>1,3185239731=>1,3185239701=>1,3185235528=>1,3185235500=>1,3185235547=>1,3185235565=>1,3185235593=>1,3185235591=>1,3185235490=>1,3185235469=>1,3185233903=>1,3185233879=>1,3185234156=>1,3185234344=>1,3185234500=>1,3185234444=>1,3185235604=>1,3185235637=>1,3185235890=>1,3185235844=>1,3185235898=>1,3185235904=>1,3185236998=>1,3185235948=>1,3185235838=>1,3185235836=>1,3185235678=>1,3185235675=>1,3185235780=>1,3185235813=>1,3185235832=>1,3185235823=>1,3185233831=>1,3185233810=>1,3185233469=>1,3185233467=>1,3185233479=>1,3185233481=>1,3185233525=>1,3185233500=>1,3185233460=>1,3185233457=>1,3185233376=>1,3185233259=>1,3185233389=>1,3185233404=>1,3185233410=>1,3185233408=>1,3185233572=>1,3185233575=>1,3185233740=>1,3185233738=>1,3185233757=>1,3185233758=>1,3185233804=>1,3185233798=>1,3185233716=>1,3185233707=>1,3185233627=>1,3185233592=>1,3185233648=>1,3185233654=>1,3185233702=>1,3185237002=>1,3185237026=>1,3185237830=>1,3185237819=>1,3185237838=>1,3185237854=>1,3185237874=>1,3185237862=>1,3185237797=>1,3185237787=>1,3185237679=>1,3185237673=>1,3185237695=>1,3185237748=>1,3185237772=>1,3185237749=>1,3185237878=>1,3185237914=>1,3185239581=>1,3185239564=>1,3185239644=>1,3185239663=>1,3185239678=>1,3185239671=>1,3185238825=>1,3185238819=>1,3185237980=>1,3185237956=>1,3185237994=>1,3185238541=>1,3185238658=>1,3185237665=>1,3185237658=>1,3185237359=>1,3185237323=>1,3185237377=>1,3185237387=>1,3185237424=>1,3185237392=>1,3185237301=>1,3185237284=>1,3185237088=>1,3185237035=>1,3185237114=>1,3185237134=>1,3185237220=>1,3185237185=>1,3185237425=>1,3185237446=>1,3185237580=>1,3185237548=>1,3185237617=>1,3185237618=>1,3185237650=>1,3185237634=>1,3185237535=>1,3185237529=>1,3185237477=>1,3185237452=>1,3185237484=>1,3185237505=>1,3185237520=>1,3185211630=>1,3185211601=>1,3185192025=>1,3185192010=>1,3185192040=>1,3185192064=>1,3185192119=>1,3185192100=>1,3185191963=>1,3185191906=>1,3185191808=>1,3185191761=>1,3185191846=>1,3185191861=>1,3185191882=>1,3185191867=>1,3185192127=>1,3185192157=>1,3185192514=>1,3185192403=>1,3185192545=>1,3185192554=>1,3185192562=>1,3185192556=>1,3185192400=>1,3185192382=>1,3185192200=>1,3185192175=>1,3185192218=>1,3185192225=>1,3185192340=>1,3185192287=>1,3185191740=>1,3185191736=>1,3185191392=>1,3185191386=>1,3185191393=>1,3185191414=>1,3185191445=>1,3185191420=>1,3185191363=>1,3185191347=>1,3185191291=>1,3185191284=>1,3185191297=>1,3185191309=>1,3185191318=>1,3185191315=>1,3185191459=>1,3185191461=>1,3185191593=>1,3185191586=>1,3185191600=>1,3185191612=>1,3185191665=>1,3185191651=>1,3185191568=>1,3185191558=>1,3185191470=>1,3185191468=>1,3185191488=>1,3185191542=>1,3185191548=>1,3185192587=>1,3185192601=>1,3185196123=>1,3185196076=>1,3185196147=>1,3185196201=>1,3185196219=>1,3185196213=>1,3185196040=>1,3185193595=>1,3185193474=>1,3185193336=>1,3185193476=>1,3185193537=>1,3185193561=>1,3185193550=>1,3185196220=>1,3185196300=>1,3185196489=>1,3185196468=>1,3185196514=>1,3185196516=>1,3185196568=>1,3185196520=>1,3185196447=>1,3185196444=>1,3185196352=>1,3185196318=>1,3185196390=>1,3185196436=>1,3185196442=>1,3185193309=>1,3185193299=>1,3185192812=>1,3185192756=>1,3185192836=>1,3185192869=>1,3185192898=>1,3185192882=>1,3185192748=>1,3185192746=>1,3185192636=>1,3185192613=>1,3185192688=>1,3185192691=>1,3185192737=>1,3185192719=>1,3185192911=>1,3185192917=>1,3185193097=>1,3185193089=>1,3185193162=>1,3185193191=>1,3185193202=>1,3185193199=>1,3185193041=>1,3185193019=>1,3185192931=>1,3185192922=>1,3185192940=>1,3185192978=>1,3185193013=>1,3185191282=>1,3185191276=>1,3184970953=>1,3184968018=>1,3184973011=>1,3184975227=>1,3184993263=>1,3184985094=>1,3184967927=>1,3184967862=>1,3184962026=>1,3184961549=>1,3184962271=>1,3184962325=>1,3184967795=>1,3184967684=>1,3184994399=>1,3184994568=>1,3185015697=>1,3185015409=>1,3185015847=>1,3185016068=>1,3185028586=>1,3185016225=>1,3185015137=>1,3185014582=>1,3184996080=>1,3184995706=>1,3185005561=>1,3185007310=>1,3185014309=>1,3185007522=>1,3184960894=>1,3184959130=>1,3184938640=>1,3184938022=>1,3184940379=>1,3184946329=>1,3184953504=>1,3184950836=>1,3184933445=>1,3184930887=>1,3184929595=>1,3184929591=>1,3184929904=>1,3184930389=>1,3184930479=>1,3184930416=>1,3184955991=>1,3184956549=>1,3184958607=>1,3184958561=>1,3184958742=>1,3184958767=>1,3184959033=>1,3184958853=>1,3184958557=>1,3184958458=>1,3184957104=>1,3184956942=>1,3184957395=>1,3184957863=>1,3184958143=>1,3185029465=>1,3185031285=>1,3185191042=>1,3185190996=>1,3185191065=>1,3185191090=>1,3185191124=>1,3185191110=>1,3185190988=>1,3185190960=>1,3185189853=>1,3185189739=>1,3185189867=>1,3185189994=>1,3185190640=>1,3185190373=>1,3185191128=>1,3185191134=>1,3185191233=>1,3185191221=>1,3185191247=>1,3185191249=>1,3185191270=>1,3185191254=>1,3185191206=>1,3185191191=>1,3185191172=>1,3185191150=>1,3185191173=>1,3185191177=>1,3185191189=>1,3185189508=>1,3185189277=>1,3185037109=>1,3185034879=>1,3185037240=>1,3185038887=>1,3185047275=>1,3185038932=>1,3185034766=>1,3185034204=>1,3185031453=>1,3185031415=>1,3185031457=>1,3185033494=>1,3185033716=>1,3185033548=>1,3185180950=>1,3185180993=>1,3185184138=>1,3185184133=>1,3185184262=>1,3185184362=>1,3185188913=>1,3185188866=>1,3185184099=>1,3185184098=>1,3185182992=>1,3185182924=>1,3185183034=>1,3185183059=>1,3185183236=>1,3185196574=>1,3185196579=>1,3185207472=>1,3185207433=>1,3185207503=>1,3185207671=>1,3185207784=>1,3185207697=>1,3185207417=>1,3185207376=>1,3185206505=>1,3185206492=>1,3185206523=>1,3185207312=>1,3185207364=>1,3185207331=>1,3185207820=>1,3185207838=>1,3185208592=>1,3185208579=>1,3185208615=>1,3185208616=>1,3185208660=>1,3185208628=>1,3185208533=>1,3185208358=>1,3185207874=>1,3185207871=>1,3185207905=>1,3185207934=>1,3185208052=>1,3185207983=>1,3185206483=>1,3185206449=>1,3185205801=>1,3185205766=>1,3185205856=>1,3185205865=>1,3185205898=>1,3185205879=>1,3185205750=>1,3185205703=>1,3185205564=>1,3185205562=>1,3185205591=>1,3185205648=>1,3185205694=>1,3185205661=>1,3185205937=>1,3185205942=>1,3185206305=>1,3185206293=>1,3185206330=>1,3185206339=>1,3185206447=>1,3185206434=>1,3185206288=>1,3185205991=>1,3185205966=>1,3185205949=>1,3185205978=>1,3185205981=>1,3185205990=>1,3185208682=>1,3185208721=>1,3185211234=>1,3185211159=>1,3185211236=>1,3185211250=>1,3185211276=>1,3185211255=>1,3185211138=>1,3185211096=>1,3185210853=>1,3185210766=>1,3185210932=>1,3185211063=>1,3185211091=>1,3185211067=>1,3185211303=>1,3185211315=>1,3185211523=>1,3185211495=>1,3185211529=>1,3185211540=>1,3185211558=>1,3185211552=>1,3185211485=>1,3185211442=>1,3185211358=>1,3185211357=>1,3185211372=>1,3185211404=>1,3185211429=>1,3185210757=>1,3185210740=>1,3185208804=>1,3185208801=>1,3185208808=>1,3185208811=>1,3185208823=>1,3185208820=>1,3185208800=>1,3185208789=>1,3185208745=>1,3185208744=>1,3185208759=>1,3185208772=>1,3185208786=>1,3185208781=>1,3185209080=>1,3185210243=>1,3185210674=>1,3185210670=>1,3185210683=>1,3185210690=>1,3185210739=>1,3185210733=>1,3185210629=>1,3185210588=>1,3185210383=>1,3185210376=>1,3185210454=>1,3185210508=>1,3185210531=>1,3185205556=>1,3185205546=>1,3185198023=>1,3185197973=>1,3185198131=>1,3185198172=>1,3185198242=>1,3185198208=>1,3185197722=>1,3185197701=>1,3185197578=>1,3185197528=>1,3185197593=>1,3185197603=>1,3185197678=>1,3185197669=>1,3185198289=>1,3185198301=>1,3185198533=>1,3185198528=>1,3185198535=>1,3185198569=>1,3185199130=>1,3185198573=>1,3185198506=>1,3185198476=>1,3185198367=>1,3185198302=>1,3185198385=>1,3185198394=>1,3185198403=>1,3185198399=>1,3185197449=>1,3185197363=>1,3185196885=>1,3185196817=>1,3185196918=>1,3185196936=>1,3185196947=>1,3185196946=>1,3185196730=>1,3185196675=>1,3185196589=>1,3185196582=>1,3185196595=>1,3185196615=>1,3185196672=>1,3185196657=>1,3185196981=>1,3185196993=>1,3185197219=>1,3185197197=>1,3185197228=>1,3185197238=>1,3185197318=>1,3185197293=>1,3185197071=>1,3185197053=>1,3185197027=>1,3185197014=>1,3185197034=>1,3185197038=>1,3185197044=>1,3185199306=>1,3185199352=>1,3185202392=>1,3185201316=>1,3185202439=>1,3185202726=>1,3185205256=>1,3185202806=>1,3185201109=>1,3185201082=>1,3185200902=>1,3185200734=>1,3185200910=>1,3185200917=>1,3185200978=>1,3185200935=>1,3185205259=>1,3185205286=>1,3185205431=>1,3185205429=>1,3185205438=>1,3185205448=>1,3185205532=>1,3185205505=>1,3185205414=>1,3185205397=>1,3185205298=>1,3185205297=>1,3185205343=>1,3185205351=>1,3185205384=>1,3185200672=>1,3185200653=>1,3185200345=>1,3185200341=>1,3185200354=>1,3185200375=>1,3185200408=>1,3185200390=>1,3185200285=>1,3185200222=>1,3185199960=>1,3185199908=>1,3185200004=>1,3185200195=>1,3185200218=>1,3185200214=>1,3185200410=>1,3185200459=>1,3185200593=>1,3185200584=>1,3185200615=>1,3185200617=>1,3185200624=>1,3185200621=>1,3185200572=>1,3185200537=>1,3185200485=>1,3185200473=>1,3185200498=>1,3185200512=>1,3185200513=>1,3184929450=>1,);?>
1
+ <?php return array(2323054342=>1,2323047872=>1,2323054347=>1,2323054349=>1,2323193741=>1,2323193708=>1,2323045468=>1,2323045409=>1,2323041886=>1,2323041884=>1,2323042255=>1,2323042264=>1,2323042280=>1,2323042269=>1,2323200038=>1,2323200334=>1,2323208925=>1,2323208912=>1,2323221104=>1,2323232140=>1,2323232801=>1,2323232221=>1,2323202468=>1,2323202424=>1,2323200609=>1,2323200599=>1,2323200718=>1,2323202283=>1,2323202394=>1,2323202387=>1,2323041730=>1,2323041728=>1,2323038159=>1,2323037970=>1,2323041539=>1,2323041550=>1,2323041558=>1,2323041555=>1,2323037913=>1,2323037838=>1,2323037309=>1,2323037261=>1,2323037319=>1,2323037538=>1,2323037806=>1,2323037557=>1,2323041560=>1,2323041563=>1,2323041715=>1,2323041714=>1,2323041719=>1,2323041722=>1,2323041724=>1,2323041723=>1,2323041700=>1,2323041665=>1,2323041640=>1,2323041627=>1,2323041647=>1,2323041653=>1,2323041654=>1,2323232806=>1,2323232815=>1,2323295088=>1,2323295084=>1,2323295098=>1,2323295099=>1,2323295119=>1,2323295114=>1,2323295072=>1,2323295068=>1,2323295032=>1,2323295027=>1,2323295034=>1,2323295037=>1,2323295065=>1,2323295053=>1,2323295126=>1,2323295135=>1,2323295204=>1,2323295203=>1,2323295206=>1,2323295209=>1,2323295219=>1,2323295217=>1,2323295180=>1,2323295168=>1,2323295139=>1,2323295137=>1,2323295148=>1,2323295153=>1,2323295166=>1,2323295162=>1,2323295021=>1,2323295015=>1,2323260560=>1,2323260547=>1,2323260566=>1,2323260571=>1,2323260590=>1,2323260589=>1,2323260546=>1,2323256274=>1,2323252332=>1,2323232826=>1,2323253276=>1,2323253302=>1,2323255319=>1,2323253819=>1,2323260591=>1,2323260599=>1,2323294977=>1,2323294834=>1,2323294994=>1,2323294999=>1,2323295009=>1,2323295002=>1,2323286057=>1,2323270700=>1,2323263251=>1,2323263246=>1,2323264296=>1,2323270685=>1,2323270695=>1,2323032241=>1,2323016982=>1,2322949735=>1,2322949731=>1,2322949738=>1,2322949745=>1,2322949748=>1,2322949746=>1,2322949726=>1,2322949725=>1,2322949716=>1,2322949702=>1,2322949718=>1,2322949720=>1,2322949722=>1,2322949721=>1,2322949750=>1,2322949754=>1,2322949780=>1,2322949775=>1,2322949781=>1,2322949782=>1,2322949788=>1,2322949784=>1,2322949773=>1,2322949770=>1,2322949763=>1,2322949756=>1,2322949765=>1,2322949767=>1,2322949769=>1,2322949768=>1,2322949701=>1,2322949699=>1,2321801162=>1,2321800326=>1,2321808022=>1,2321808031=>1,2322945048=>1,2322942937=>1,2321794478=>1,2321794394=>1,2321756591=>1,2321756589=>1,2321756644=>1,2321756650=>1,2321760831=>1,2321760517=>1,2322945094=>1,2322945187=>1,2322949685=>1,2322949684=>1,2322949689=>1,2322949692=>1,2322949697=>1,2322949696=>1,2322949676=>1,2322949671=>1,2322949647=>1,2322949638=>1,2322949649=>1,2322949654=>1,2322949660=>1,2322949789=>1,2322949792=>1,2322949871=>1,2322949870=>1,2322949873=>1,2322949875=>1,2322949878=>1,2322949877=>1,2322949868=>1,2322949867=>1,2322949857=>1,2322949854=>1,2322949862=>1,2322949863=>1,2322949865=>1,2322949864=>1,2322949880=>1,2322949882=>1,2323012832=>1,2323012419=>1,2323013154=>1,2323014715=>1,2323016981=>1,2323016979=>1,2323008618=>1,2322998440=>1,2322949885=>1,2322949884=>1,2322954561=>1,2322955260=>1,2322972184=>1,2322949852=>1,2322949848=>1,2322949812=>1,2322949811=>1,2322949815=>1,2322949816=>1,2322949819=>1,2322949817=>1,2322949810=>1,2322949807=>1,2322949800=>1,2322949797=>1,2322949802=>1,2322949803=>1,2322949805=>1,2322949804=>1,2322949822=>1,2322949823=>1,2322949838=>1,2322949837=>1,2322949842=>1,2322949843=>1,2322949847=>1,2322949845=>1,2322949835=>1,2322949831=>1,2322949825=>1,2322949824=>1,2322949826=>1,2322949829=>1,2322949830=>1,2323295226=>1,2323303592=>1,2327469938=>1,2327469936=>1,2327469942=>1,2327469943=>1,2327469947=>1,2327469944=>1,2327469935=>1,2327469934=>1,2327469914=>1,2327469913=>1,2327469915=>1,2327469921=>1,2327469930=>1,2327469924=>1,2327469950=>1,2327469957=>1,2327469974=>1,2327469970=>1,2327469977=>1,2327469978=>1,2327469983=>1,2327469979=>1,2327469969=>1,2327469968=>1,2327469961=>1,2327469959=>1,2327469962=>1,2327469963=>1,2327469966=>1,2327469964=>1,2327469911=>1,2327469910=>1,2327469752=>1,2327469749=>1,2327469764=>1,2327469765=>1,2327469771=>1,2327469770=>1,2327469744=>1,2327469738=>1,2327469689=>1,2327469678=>1,2327469692=>1,2327469698=>1,2327469729=>1,2327469706=>1,2327469775=>1,2327469788=>1,2327469863=>1,2327469860=>1,2327469880=>1,2327469883=>1,2327469909=>1,2327469904=>1,2327469857=>1,2327469855=>1,2327469805=>1,2327469793=>1,2327469808=>1,2327469815=>1,2327469854=>1,2327469986=>1,2327470005=>1,2327494844=>1,2327494838=>1,2327494851=>1,2327494862=>1,2327494878=>1,2327494869=>1,2327494825=>1,2327494803=>1,2327494718=>1,2327491037=>1,2327494748=>1,2327494764=>1,2327494800=>1,2327494766=>1,2327494886=>1,2327494893=>1,2327494976=>1,2327494962=>1,2327495059=>1,2327495072=>1,2327495104=>1,2327495073=>1,2327494960=>1,2327494959=>1,2327494905=>1,2327494896=>1,2327494907=>1,2327494919=>1,2327494927=>1,2327490306=>1,2327490302=>1,2327470030=>1,2327470029=>1,2327470032=>1,2327470033=>1,2327470037=>1,2327470034=>1,2327470028=>1,2327470025=>1,2327470007=>1,2327470006=>1,2327470008=>1,2327470017=>1,2327470023=>1,2327470020=>1,2327470040=>1,2327470045=>1,2327472539=>1,2327472357=>1,2327472569=>1,2327472630=>1,2327479953=>1,2327472948=>1,2327472183=>1,2327470073=>1,2327470050=>1,2327470049=>1,2327470055=>1,2327470063=>1,2327470064=>1,2327469656=>1,2327469655=>1,2327469176=>1,2327469167=>1,2327469184=>1,2327469185=>1,2327469192=>1,2327469190=>1,2327469160=>1,2327469158=>1,2327469120=>1,2327469115=>1,2327469121=>1,2327469136=>1,2327469141=>1,2327469137=>1,2327469193=>1,2327469200=>1,2327469343=>1,2327469342=>1,2327469359=>1,2327469362=>1,2327469369=>1,2327469364=>1,2327469305=>1,2327469297=>1,2327469217=>1,2327469207=>1,2327469218=>1,2327469219=>1,2327469231=>1,2327469228=>1,2327469102=>1,2327469092=>1,2327393167=>1,2327393141=>1,2327395597=>1,2327396343=>1,2327417978=>1,2327412391=>1,2327392718=>1,2327392531=>1,2323313442=>1,2323312911=>1,2323650014=>1,2327384414=>1,2327384938=>1,2327384566=>1,2327424745=>1,2327424761=>1,2327465408=>1,2327465272=>1,2327465447=>1,2327465448=>1,2327469067=>1,2327465720=>1,2327458850=>1,2327457357=>1,2327457044=>1,2327440753=>1,2327457086=>1,2327457131=>1,2327457289=>1,2327469371=>1,2327469380=>1,2327469540=>1,2327469538=>1,2327469542=>1,2327469543=>1,2327469551=>1,2327469549=>1,2327469535=>1,2327469530=>1,2327469506=>1,2327469497=>1,2327469507=>1,2327469512=>1,2327469525=>1,2327469523=>1,2327469554=>1,2327469557=>1,2327469617=>1,2327469613=>1,2327469624=>1,2327469629=>1,2327469640=>1,2327469637=>1,2327469609=>1,2327469602=>1,2327469579=>1,2327469559=>1,2327469582=>1,2327469583=>1,2327469584=>1,2327469492=>1,2327469491=>1,2327469418=>1,2327469416=>1,2327469422=>1,2327469425=>1,2327469443=>1,2327469431=>1,2327469415=>1,2327469403=>1,2327469386=>1,2327469383=>1,2327469388=>1,2327469392=>1,2327469402=>1,2327469400=>1,2327469446=>1,2327469447=>1,2327469476=>1,2327469471=>1,2327469477=>1,2327469478=>1,2327469484=>1,2327469482=>1,2327469469=>1,2327469468=>1,2327469454=>1,2327469452=>1,2327469457=>1,2327469458=>1,2327469459=>1,2321756544=>1,2321748662=>1,2317651000=>1,2317650988=>1,2317651006=>1,2317651013=>1,2317651032=>1,2317651031=>1,2317650983=>1,2317650975=>1,2317647858=>1,2317647848=>1,2317647864=>1,2317648063=>1,2317648463=>1,2317648104=>1,2317651038=>1,2317651081=>1,2317651174=>1,2317651159=>1,2317651183=>1,2317651186=>1,2317651209=>1,2317651197=>1,2317651149=>1,2317651141=>1,2317651095=>1,2317651085=>1,2317651111=>1,2317651115=>1,2317651138=>1,2317651116=>1,2317647846=>1,2317647840=>1,2317630894=>1,2317630866=>1,2317631288=>1,2317631314=>1,2317633352=>1,2317633309=>1,2317630766=>1,2317630509=>1,2315316278=>1,2315316185=>1,2315320266=>1,2315320889=>1,2317630479=>1,2317622021=>1,2317633372=>1,2317633381=>1,2317646551=>1,2317646235=>1,2317646725=>1,2317646726=>1,2317647821=>1,2317646735=>1,2317646228=>1,2317646109=>1,2317633399=>1,2317633398=>1,2317633400=>1,2317633407=>1,2317646104=>1,2317651222=>1,2317651228=>1,2317651670=>1,2317651668=>1,2317651672=>1,2317651678=>1,2317651683=>1,2317651680=>1,2317651660=>1,2317651640=>1,2317651604=>1,2317651602=>1,2317651605=>1,2317651619=>1,2317651635=>1,2317651622=>1,2317651690=>1,2317651693=>1,2317651764=>1,2317651737=>1,2317651781=>1,2317651783=>1,2317651787=>1,2317651784=>1,2317651719=>1,2317651714=>1,2317651699=>1,2317651695=>1,2317651700=>1,2317651706=>1,2317651708=>1,2317651598=>1,2317651584=>1,2317651340=>1,2317651336=>1,2317651341=>1,2317651356=>1,2317651371=>1,2317651370=>1,2317651296=>1,2317651286=>1,2317651247=>1,2317651230=>1,2317651249=>1,2317651256=>1,2317651261=>1,2317651258=>1,2317651385=>1,2317651408=>1,2317651524=>1,2317651521=>1,2317651528=>1,2317651552=>1,2317651561=>1,2317651555=>1,2317651480=>1,2317651473=>1,2317651430=>1,2317651429=>1,2317651446=>1,2317651447=>1,2317651469=>1,2315316177=>1,2315316149=>1,2315307107=>1,2315307082=>1,2315307217=>1,2315307230=>1,2315307325=>1,2315307231=>1,2315307081=>1,2315307068=>1,2315298659=>1,2315292401=>1,2315299177=>1,2315304908=>1,2315307041=>1,2315305518=>1,2315307341=>1,2315307461=>1,2315308228=>1,2315308227=>1,2315308242=>1,2315308247=>1,2315309834=>1,2315309830=>1,2315308222=>1,2315308021=>1,2315307903=>1,2315307606=>1,2315307932=>1,2315307946=>1,2315308000=>1,2315307972=>1,2315292109=>1,2315289540=>1,2315262194=>1,2315261424=>1,2315262342=>1,2315262467=>1,2315262597=>1,2315262564=>1,2315261419=>1,2315261406=>1,2315261290=>1,2315261274=>1,2315261301=>1,2315261306=>1,2315261405=>1,2315261401=>1,2315262598=>1,2315262644=>1,2315278694=>1,2315278623=>1,2315289519=>1,2315289521=>1,2315289536=>1,2315289531=>1,2315278607=>1,2315278384=>1,2315262697=>1,2315262651=>1,2315272523=>1,2315278032=>1,2315278045=>1,2315309839=>1,2315309841=>1,2315310017=>1,2315310014=>1,2315310018=>1,2315310019=>1,2315310039=>1,2315310034=>1,2315310010=>1,2315310004=>1,2315309984=>1,2315309983=>1,2315309989=>1,2315309990=>1,2315309997=>1,2315309992=>1,2315310041=>1,2315310042=>1,2315310078=>1,2315310076=>1,2315310079=>1,2315314226=>1,2315316146=>1,2315315985=>1,2315310074=>1,2315310063=>1,2315310053=>1,2315310044=>1,2315310055=>1,2315310057=>1,2315310061=>1,2315309982=>1,2315309980=>1,2315309903=>1,2315309897=>1,2315309911=>1,2315309917=>1,2315309930=>1,2315309927=>1,2315309883=>1,2315309877=>1,2315309846=>1,2315309842=>1,2315309855=>1,2315309858=>1,2315309871=>1,2315309859=>1,2315309935=>1,2315309939=>1,2315309965=>1,2315309963=>1,2315309968=>1,2315309974=>1,2315309977=>1,2315309975=>1,2315309959=>1,2315309954=>1,2315309944=>1,2315309941=>1,2315309946=>1,2315309948=>1,2315309953=>1,2317651807=>1,2317651810=>1,2321435564=>1,2321435526=>1,2321435580=>1,2321435587=>1,2321435599=>1,2321435591=>1,2321435508=>1,2321435502=>1,2321435449=>1,2321435428=>1,2321435456=>1,2321435464=>1,2321435487=>1,2321435482=>1,2321435602=>1,2321435626=>1,2321450415=>1,2321450167=>1,2321450498=>1,2321450611=>1,2321456073=>1,2321451918=>1,2321445708=>1,2321445706=>1,2321437653=>1,2321435635=>1,2321438475=>1,2321440741=>1,2321445704=>1,2321441407=>1,2321435396=>1,2321435390=>1,2321435153=>1,2321435125=>1,2321435170=>1,2321435189=>1,2321435199=>1,2321435197=>1,2321435100=>1,2321435099=>1,2321434928=>1,2321433595=>1,2321434954=>1,2321434971=>1,2321435084=>1,2321435038=>1,2321435237=>1,2321435242=>1,2321435339=>1,2321435323=>1,2321435340=>1,2321435344=>1,2321435380=>1,2321435374=>1,2321435313=>1,2321435306=>1,2321435249=>1,2321435246=>1,2321435263=>1,2321435281=>1,2321435296=>1,2321457226=>1,2321457715=>1,2321634529=>1,2321632237=>1,2321637030=>1,2321647843=>1,2321661918=>1,2321650108=>1,2321631929=>1,2321631881=>1,2321620571=>1,2321620197=>1,2321620585=>1,2321620596=>1,2321631797=>1,2321626928=>1,2321671576=>1,2321671732=>1,2321675937=>1,2321675930=>1,2321676223=>1,2321748185=>1,2321748642=>1,2321748468=>1,2321675908=>1,2321673233=>1,2321672024=>1,2321671794=>1,2321673218=>1,2321673229=>1,2321673230=>1,2321620195=>1,2321620125=>1,2321461474=>1,2321461427=>1,2321468954=>1,2321468965=>1,2321469213=>1,2321469117=>1,2321461328=>1,2321458164=>1,2321457800=>1,2321457767=>1,2321457847=>1,2321457872=>1,2321458119=>1,2321457886=>1,2321469228=>1,2321613173=>1,2321615607=>1,2321615482=>1,2321615680=>1,2321615810=>1,2321619271=>1,2321619137=>1,2321615464=>1,2321615357=>1,2321614924=>1,2321614919=>1,2321615128=>1,2321615239=>1,2321615291=>1,2321426931=>1,2321426876=>1,2319127570=>1,2319127567=>1,2319127595=>1,2319127610=>1,2319127632=>1,2319127626=>1,2319127561=>1,2317674290=>1,2317664069=>1,2317664014=>1,2317664533=>1,2317664659=>1,2317667629=>1,2317665218=>1,2319127644=>1,2319127748=>1,2319127962=>1,2319127935=>1,2319128041=>1,2319128043=>1,2319128047=>1,2319128046=>1,2319127932=>1,2319127920=>1,2319127799=>1,2319127760=>1,2319127863=>1,2319127894=>1,2319127898=>1,2319127896=>1,2317663897=>1,2317663782=>1,2317651931=>1,2317651917=>1,2317651946=>1,2317651949=>1,2317658390=>1,2317658295=>1,2317651904=>1,2317651895=>1,2317651843=>1,2317651820=>1,2317651849=>1,2317651850=>1,2317651888=>1,2317651854=>1,2317658447=>1,2317658495=>1,2317661863=>1,2317660677=>1,2317662877=>1,2317663063=>1,2317663556=>1,2317663442=>1,2317660459=>1,2317660403=>1,2317658893=>1,2317658665=>1,2317658900=>1,2317660261=>1,2317660331=>1,2319128062=>1,2319128082=>1,2319177827=>1,2319177812=>1,2321417346=>1,2321417494=>1,2321418006=>1,2321417531=>1,2319177530=>1,2319176438=>1,2319146079=>1,2319146048=>1,2319162848=>1,2319163288=>1,2319166467=>1,2319166466=>1,2321418017=>1,2321418019=>1,2321418059=>1,2321418053=>1,2321418080=>1,2321421473=>1,2321426739=>1,2321426582=>1,2321418052=>1,2321418042=>1,2321418026=>1,2321418020=>1,2321418027=>1,2321418032=>1,2321418041=>1,2319140454=>1,2319133582=>1,2319128233=>1,2319128223=>1,2319128247=>1,2319128299=>1,2319128324=>1,2319128303=>1,2319128215=>1,2319128201=>1,2319128120=>1,2319128113=>1,2319128135=>1,2319128137=>1,2319128200=>1,2319128171=>1,2319128331=>1,2319128342=>1,2319128524=>1,2319128475=>1,2319128535=>1,2319128538=>1,2319130661=>1,2319128539=>1,2319128458=>1,2319128435=>1,2319128395=>1,2319128352=>1,2319128402=>1,2319128403=>1,2319128434=>1,2311945251=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-33.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3185279819=>1,3185279803=>1,3185279825=>1,3185279827=>1,3185279924=>1,3185279898=>1,3185279790=>1,3185279769=>1,3185279718=>1,3185279614=>1,3185279727=>1,3185279747=>1,3185279767=>1,3185279760=>1,3185279925=>1,3185279953=>1,3185280421=>1,3185280409=>1,3185280433=>1,3185280463=>1,3185280547=>1,3185280502=>1,3185280258=>1,3185280218=>1,3185279989=>1,3185279955=>1,3185279995=>1,3185280052=>1,3185280153=>1,3185280139=>1,3185279482=>1,3185279469=>1,3185275881=>1,3185275878=>1,3185275889=>1,3185278990=>1,3185279014=>1,3185279006=>1,3185275863=>1,3185275862=>1,3185275703=>1,3185275683=>1,3185275705=>1,3185275766=>1,3185275807=>1,3185275767=>1,3185279038=>1,3185279082=>1,3185279286=>1,3185279274=>1,3185279302=>1,3185279307=>1,3185279422=>1,3185279314=>1,3185279260=>1,3185279226=>1,3185279121=>1,3185279096=>1,3185279145=>1,3185279161=>1,3185279215=>1,3185280583=>1,3185280615=>1,3185285155=>1,3185285144=>1,3185285158=>1,3185285190=>1,3185285238=>1,3185285203=>1,3185285136=>1,3185285126=>1,3185283661=>1,3185283639=>1,3185283676=>1,3185283690=>1,3185284047=>1,3185284036=>1,3185285266=>1,3185285276=>1,3185285483=>1,3185285445=>1,3185285558=>1,3185286448=>1,3185286829=>1,3185286750=>1,3185285442=>1,3185285385=>1,3185285312=>1,3185285310=>1,3185285332=>1,3185285337=>1,3185285355=>1,3185285338=>1,3185282742=>1,3185282652=>1,3185281154=>1,3185281142=>1,3185281179=>1,3185281180=>1,3185281237=>1,3185281231=>1,3185281141=>1,3185281140=>1,3185281048=>1,3185281029=>1,3185281053=>1,3185281110=>1,3185281132=>1,3185281119=>1,3185281257=>1,3185281544=>1,3185282335=>1,3185281788=>1,3185282478=>1,3185282580=>1,3185282637=>1,3185282583=>1,3185281753=>1,3185281689=>1,3185281608=>1,3185281587=>1,3185281638=>1,3185281654=>1,3185281674=>1,3185275641=>1,3185275618=>1,3185272497=>1,3185272493=>1,3185272501=>1,3185272503=>1,3185272539=>1,3185272506=>1,3185272482=>1,3185272477=>1,3185272440=>1,3185272417=>1,3185272452=>1,3185272459=>1,3185272470=>1,3185272465=>1,3185272543=>1,3185272552=>1,3185273131=>1,3185273092=>1,3185273160=>1,3185273185=>1,3185273242=>1,3185273229=>1,3185273085=>1,3185273049=>1,3185272613=>1,3185272573=>1,3185272857=>1,3185272886=>1,3185273004=>1,3185272969=>1,3185272407=>1,3185272405=>1,3185272070=>1,3185272069=>1,3185272095=>1,3185272170=>1,3185272176=>1,3185272173=>1,3185272068=>1,3185272062=>1,3185271918=>1,3185271904=>1,3185271994=>1,3185272040=>1,3185272053=>1,3185272047=>1,3185272187=>1,3185272189=>1,3185272368=>1,3185272365=>1,3185272388=>1,3185272390=>1,3185272402=>1,3185272392=>1,3185272363=>1,3185272333=>1,3185272272=>1,3185272230=>1,3185272297=>1,3185272320=>1,3185272329=>1,3185273251=>1,3185273253=>1,3185275084=>1,3185275065=>1,3185275086=>1,3185275090=>1,3185275110=>1,3185275098=>1,3185275038=>1,3185275033=>1,3185274982=>1,3185274961=>1,3185274987=>1,3185274990=>1,3185275018=>1,3185275005=>1,3185275158=>1,3185275159=>1,3185275383=>1,3185275362=>1,3185275419=>1,3185275510=>1,3185275608=>1,3185275549=>1,3185275332=>1,3185275306=>1,3185275192=>1,3185275161=>1,3185275284=>1,3185275291=>1,3185275299=>1,3185274958=>1,3185274951=>1,3185273701=>1,3185273616=>1,3185273728=>1,3185273782=>1,3185273887=>1,3185273821=>1,3185273580=>1,3185273547=>1,3185273283=>1,3185273281=>1,3185273317=>1,3185273333=>1,3185273379=>1,3185273357=>1,3185273897=>1,3185273902=>1,3185274480=>1,3185274461=>1,3185274597=>1,3185274612=>1,3185274912=>1,3185274898=>1,3185274406=>1,3185274403=>1,3185273983=>1,3185273916=>1,3185274054=>1,3185274058=>1,3185274375=>1,3185286849=>1,3185286850=>1,3185292069=>1,3185292048=>1,3185292078=>1,3185292100=>1,3185292118=>1,3185292111=>1,3185292013=>1,3185291908=>1,3185291477=>1,3185291468=>1,3185291790=>1,3185291808=>1,3185291904=>1,3185291853=>1,3185292126=>1,3185292142=>1,3185292349=>1,3185292345=>1,3185292364=>1,3185292406=>1,3185292509=>1,3185292442=>1,3185292300=>1,3185292298=>1,3185292181=>1,3185292156=>1,3185292193=>1,3185292235=>1,3185292253=>1,3185292250=>1,3185291397=>1,3185291370=>1,3185290509=>1,3185290476=>1,3185290513=>1,3185290531=>1,3185290557=>1,3185290536=>1,3185290446=>1,3185290441=>1,3185290307=>1,3185290244=>1,3185290317=>1,3185290324=>1,3185290429=>1,3185290367=>1,3185290566=>1,3185290607=>1,3185291087=>1,3185290975=>1,3185291118=>1,3185291137=>1,3185291340=>1,3185291148=>1,3185290924=>1,3185290923=>1,3185290666=>1,3185290659=>1,3185290739=>1,3185290873=>1,3185290884=>1,3185292545=>1,3185292562=>1,3185294330=>1,3185294310=>1,3185294340=>1,3185294358=>1,3185294388=>1,3185294359=>1,3185294245=>1,3185294238=>1,3185294097=>1,3185293998=>1,3185294163=>1,3185294176=>1,3185294232=>1,3185294208=>1,3185294402=>1,3185294455=>1,3185294584=>1,3185294572=>1,3185294595=>1,3185294602=>1,3185294635=>1,3185294610=>1,3185294569=>1,3185294558=>1,3185294472=>1,3185294470=>1,3185294484=>1,3185294502=>1,3185294530=>1,3185293990=>1,3185293857=>1,3185292781=>1,3185292766=>1,3185292786=>1,3185292796=>1,3185293405=>1,3185293342=>1,3185292751=>1,3185292744=>1,3185292625=>1,3185292615=>1,3185292659=>1,3185292696=>1,3185292736=>1,3185292718=>1,3185293420=>1,3185293489=>1,3185293809=>1,3185293744=>1,3185293814=>1,3185293830=>1,3185293855=>1,3185293848=>1,3185293697=>1,3185293696=>1,3185293555=>1,3185293539=>1,3185293635=>1,3185293666=>1,3185293674=>1,3185290194=>1,3185290168=>1,3185287762=>1,3185287756=>1,3185287775=>1,3185287776=>1,3185287875=>1,3185287821=>1,3185287750=>1,3185287749=>1,3185287661=>1,3185287587=>1,3185287663=>1,3185287714=>1,3185287740=>1,3185287725=>1,3185287881=>1,3185287924=>1,3185288112=>1,3185288080=>1,3185288149=>1,3185288175=>1,3185288221=>1,3185288199=>1,3185288052=>1,3185288040=>1,3185287931=>1,3185287926=>1,3185287960=>1,3185287995=>1,3185288029=>1,3185288014=>1,3185287580=>1,3185287565=>1,3185287092=>1,3185286981=>1,3185287127=>1,3185287166=>1,3185287200=>1,3185287179=>1,3185286974=>1,3185286971=>1,3185286904=>1,3185286866=>1,3185286906=>1,3185286907=>1,3185286955=>1,3185286945=>1,3185287239=>1,3185287254=>1,3185287402=>1,3185287396=>1,3185287420=>1,3185287447=>1,3185287534=>1,3185287517=>1,3185287384=>1,3185287381=>1,3185287284=>1,3185287282=>1,3185287286=>1,3185287339=>1,3185287361=>1,3185288238=>1,3185288248=>1,3185289439=>1,3185289396=>1,3185289458=>1,3185289523=>1,3185289634=>1,3185289583=>1,3185289387=>1,3185289376=>1,3185289262=>1,3185289199=>1,3185289270=>1,3185289303=>1,3185289355=>1,3185289306=>1,3185289665=>1,3185289736=>1,3185290003=>1,3185289951=>1,3185290006=>1,3185290055=>1,3185290162=>1,3185290144=>1,3185289914=>1,3185289904=>1,3185289832=>1,3185289787=>1,3185289838=>1,3185289844=>1,3185289893=>1,3185289172=>1,3185289163=>1,3185288569=>1,3185288545=>1,3185288579=>1,3185288587=>1,3185288616=>1,3185288607=>1,3185288543=>1,3185288535=>1,3185288398=>1,3185288250=>1,3185288472=>1,3185288476=>1,3185288483=>1,3185288481=>1,3185288644=>1,3185288657=>1,3185289124=>1,3185289057=>1,3185289127=>1,3185289133=>1,3185289155=>1,3185289151=>1,3185289031=>1,3185289016=>1,3185288817=>1,3185288737=>1,3185288883=>1,3185288922=>1,3185288923=>1,3185271886=>1,3185271860=>1,3185265121=>1,3185265098=>1,3185265133=>1,3185265153=>1,3185265220=>1,3185265202=>1,3185265093=>1,3185265033=>1,3185264850=>1,3185264841=>1,3185264851=>1,3185264865=>1,3185265019=>1,3185265016=>1,3185265247=>1,3185265406=>1,3185265847=>1,3185265694=>1,3185265874=>1,3185265904=>1,3185266019=>1,3185265910=>1,3185265670=>1,3185265642=>1,3185265438=>1,3185265435=>1,3185265535=>1,3185265603=>1,3185265631=>1,3185265612=>1,3185264784=>1,3185264757=>1,3185260255=>1,3185260249=>1,3185260257=>1,3185260269=>1,3185260336=>1,3185260326=>1,3185260225=>1,3185260192=>1,3185260084=>1,3185260040=>1,3185260122=>1,3185260135=>1,3185260180=>1,3185260171=>1,3185260363=>1,3185260391=>1,3185262810=>1,3185261176=>1,3185263072=>1,3185264390=>1,3185264731=>1,3185264703=>1,3185261031=>1,3185260681=>1,3185260453=>1,3185260447=>1,3185260461=>1,3185260499=>1,3185260504=>1,3185266051=>1,3185266057=>1,3185267833=>1,3185267817=>1,3185267841=>1,3185267866=>1,3185267874=>1,3185267872=>1,3185267815=>1,3185267800=>1,3185267691=>1,3185267685=>1,3185267733=>1,3185267761=>1,3185267785=>1,3185267783=>1,3185267878=>1,3185267884=>1,3185267932=>1,3185267928=>1,3185267943=>1,3185267968=>1,3185267987=>1,3185267986=>1,3185267927=>1,3185267923=>1,3185267893=>1,3185267887=>1,3185267896=>1,3185267908=>1,3185267922=>1,3185267683=>1,3185267671=>1,3185266788=>1,3185266768=>1,3185266815=>1,3185266833=>1,3185266859=>1,3185266858=>1,3185266740=>1,3185266648=>1,3185266234=>1,3185266216=>1,3185266474=>1,3185266557=>1,3185266643=>1,3185266569=>1,3185266923=>1,3185267008=>1,3185267553=>1,3185267550=>1,3185267560=>1,3185267655=>1,3185267667=>1,3185267662=>1,3185267400=>1,3185267241=>1,3185267050=>1,3185267011=>1,3185267085=>1,3185267091=>1,3185267102=>1,3185260014=>1,3185259864=>1,3185247843=>1,3185247826=>1,3185247846=>1,3185247861=>1,3185247879=>1,3185247867=>1,3185247798=>1,3185247769=>1,3185247669=>1,3185247635=>1,3185247690=>1,3185247714=>1,3185247762=>1,3185247727=>1,3185247925=>1,3185247939=>1,3185250978=>1,3185250955=>1,3185251000=>1,3185251001=>1,3185251018=>1,3185251007=>1,3185250896=>1,3185250891=>1,3185247997=>1,3185247991=>1,3185250622=>1,3185250705=>1,3185250876=>1,3185250857=>1,3185247621=>1,3185247619=>1,3185245830=>1,3185245731=>1,3185245836=>1,3185245874=>1,3185245897=>1,3185245875=>1,3185244667=>1,3185244660=>1,3185244556=>1,3185244534=>1,3185244588=>1,3185244596=>1,3185244659=>1,3185244598=>1,3185245929=>1,3185245988=>1,3185246113=>1,3185246103=>1,3185246278=>1,3185247492=>1,3185247541=>1,3185247508=>1,3185246091=>1,3185246083=>1,3185246029=>1,3185245989=>1,3185246031=>1,3185246049=>1,3185246071=>1,3185251023=>1,3185251032=>1,3185258976=>1,3185258954=>1,3185258980=>1,3185259002=>1,3185259529=>1,3185259528=>1,3185258952=>1,3185258935=>1,3185258874=>1,3185258844=>1,3185258875=>1,3185258889=>1,3185258911=>1,3185258897=>1,3185259531=>1,3185259534=>1,3185259760=>1,3185259739=>1,3185259817=>1,3185259831=>1,3185259854=>1,3185259832=>1,3185259727=>1,3185259722=>1,3185259586=>1,3185259561=>1,3185259630=>1,3185259640=>1,3185259665=>1,3185258838=>1,3185258832=>1,3185251306=>1,3185251285=>1,3185256663=>1,3185257025=>1,3185257184=>1,3185257174=>1,3185251261=>1,3185251226=>1,3185251152=>1,3185251097=>1,3185251153=>1,3185251166=>1,3185251191=>1,3185251171=>1,3185257245=>1,3185257322=>1,3185258752=>1,3185258721=>1,3185258760=>1,3185258784=>1,3185258811=>1,3185258790=>1,3185258697=>1,3185258671=>1,3185258416=>1,3185257347=>1,3185258547=>1,3185258574=>1,3185258603=>1,3185267994=>1,3185268002=>1,3185270391=>1,3185270383=>1,3185270402=>1,3185270409=>1,3185270421=>1,3185270415=>1,3185270381=>1,3185270379=>1,3185270355=>1,3185270341=>1,3185270359=>1,3185270363=>1,3185270371=>1,3185270368=>1,3185270427=>1,3185270431=>1,3185270940=>1,3185270913=>1,3185270958=>1,3185270959=>1,3185270974=>1,3185270965=>1,3185270890=>1,3185270839=>1,3185270446=>1,3185270436=>1,3185270460=>1,3185270461=>1,3185270631=>1,3185270463=>1,3185270330=>1,3185270323=>1,3185270171=>1,3185270161=>1,3185270184=>1,3185270198=>1,3185270209=>1,3185270202=>1,3185270158=>1,3185270154=>1,3185270130=>1,3185270125=>1,3185270134=>1,3185270140=>1,3185270152=>1,3185270143=>1,3185270220=>1,3185270232=>1,3185270305=>1,3185270298=>1,3185270309=>1,3185270317=>1,3185270320=>1,3185270319=>1,3185270293=>1,3185270284=>1,3185270242=>1,3185270235=>1,3185270245=>1,3185270256=>1,3185270262=>1,3185271061=>1,3185271067=>1,3185271525=>1,3185271523=>1,3185271528=>1,3185271533=>1,3185271542=>1,3185271534=>1,3185271519=>1,3185271516=>1,3185271503=>1,3185271498=>1,3185271508=>1,3185271510=>1,3185271514=>1,3185271513=>1,3185271546=>1,3185271549=>1,3185271643=>1,3185271595=>1,3185271745=>1,3185271835=>1,3185271859=>1,3185271852=>1,3185271591=>1,3185271582=>1,3185271559=>1,3185271552=>1,3185271567=>1,3185271574=>1,3185271577=>1,3185271496=>1,3185271493=>1,3185271314=>1,3185271208=>1,3185271316=>1,3185271328=>1,3185271349=>1,3185271329=>1,3185271178=>1,3185271143=>1,3185271073=>1,3185271072=>1,3185271098=>1,3185271100=>1,3185271108=>1,3185271102=>1,3185271356=>1,3185271357=>1,3185271468=>1,3185271435=>1,3185271470=>1,3185271480=>1,3185271490=>1,3185271487=>1,3185271431=>1,3185271406=>1,3185271370=>1,3185271367=>1,3185271378=>1,3185271382=>1,3185271391=>1,3185270119=>1,3185270107=>1,3185268356=>1,3185268348=>1,3185268388=>1,3185268393=>1,3185268396=>1,3185268395=>1,3185268343=>1,3185268331=>1,3185268282=>1,3185268279=>1,3185268291=>1,3185268293=>1,3185268327=>1,3185268325=>1,3185268401=>1,3185268436=>1,3185268700=>1,3185268684=>1,3185268768=>1,3185268796=>1,3185268887=>1,3185268798=>1,3185268617=>1,3185268576=>1,3185268451=>1,3185268442=>1,3185268471=>1,3185268513=>1,3185268574=>1,3185268551=>1,3185268262=>1,3185268257=>1,3185268073=>1,3185268067=>1,3185268084=>1,3185268101=>1,3185268105=>1,3185268103=>1,3185268061=>1,3185268054=>1,3185268011=>1,3185268004=>1,3185268039=>1,3185268043=>1,3185268050=>1,3185268045=>1,3185268106=>1,3185268117=>1,3185268194=>1,3185268191=>1,3185268219=>1,3185268220=>1,3185268232=>1,3185268226=>1,3185268183=>1,3185268172=>1,3185268123=>1,3185268118=>1,3185268133=>1,3185268136=>1,3185268138=>1,3185268897=>1,3185268990=>1,3185269954=>1,3185269938=>1,3185269960=>1,3185269965=>1,3185269978=>1,3185269974=>1,3185269930=>1,3185269917=>1,3185269822=>1,3185269806=>1,3185269854=>1,3185269860=>1,3185269911=>1,3185269873=>1,3185269980=>1,3185269985=>1,3185270071=>1,3185270067=>1,3185270093=>1,3185270094=>1,3185270101=>1,3185270097=>1,3185270064=>1,3185270061=>1,3185269997=>1,3185269987=>1,3185270001=>1,3185270018=>1,3185270019=>1,3185269803=>1,3185269799=>1,3185269131=>1,3185269128=>1,3185269134=>1,3185269176=>1,3185269183=>1,3185269178=>1,3185269120=>1,3185269117=>1,3185269065=>1,3185269044=>1,3185269083=>1,3185269095=>1,3185269114=>1,3185269106=>1,3185269336=>1,3185269406=>1,3185269758=>1,3185269747=>1,3185269768=>1,3185269783=>1,3185269796=>1,3185269785=>1,3185269742=>1,3185269714=>1,3185269482=>1,3185269419=>1,3185269573=>1,3185269673=>1,3185269696=>1,3185244533=>1,);?>
1
+ <?php return array(2479585280=>2479585535,2421498434=>1,2420959290=>1,2420964837=>1,2425032706=>1,2425081984=>1,2425042583=>1,2420957941=>1,2420953981=>1,2420947242=>1,2420946285=>1,2420950824=>1,2420951398=>1,2420953980=>1,2420953979=>1,2427209739=>1,2427209767=>1,2449477688=>1,2449471276=>1,2449481872=>1,2449484665=>1,2449492038=>1,2449484670=>1,2449411877=>1,2447114255=>1,2427209787=>1,2427209777=>1,2427209792=>1,2427210696=>1,2441423236=>1,2427238508=>1,2420944845=>1,2420944059=>1,2420912677=>1,2420910507=>1,2420913533=>1,2420915496=>1,2420917801=>1,2420916290=>1,2420910386=>1,2420910201=>1,2420903569=>1,2420902756=>1,2420906671=>1,2420907370=>1,2420910026=>1,2420907687=>1,2420918668=>1,2420920388=>1,2420929961=>1,2420928597=>1,2420931117=>1,2420931118=>1,2420941661=>1,2420940424=>1,2420928103=>1,2420927882=>1,2420924240=>1,2420923271=>1,2420924250=>1,2420924423=>1,2420925497=>1,2449492640=>1,2449492909=>1,2477767567=>1,2472265626=>1,2482750943=>1,2482989674=>1,2487937149=>1,2482990362=>1,2468371601=>1,2466248770=>1,2461646277=>1,2461645210=>1,2462179417=>1,2462642017=>1,2466205510=>1,2466200036=>1,2489830313=>1,2493729032=>1,2499072334=>1,2499057526=>1,2499087227=>1,2499479947=>1,2499490378=>1,2499482673=>1,2498463650=>1,2498332715=>1,2493752754=>1,2493729136=>1,2497657133=>1,2497945880=>1,2497962238=>1,2461645200=>1,2461643111=>1,2452941899=>1,2452937708=>1,2454153339=>1,2454931411=>1,2457034820=>1,2457020705=>1,2452934837=>1,2452929026=>1,2450801806=>1,2449493253=>1,2450801888=>1,2452889714=>1,2452904193=>1,2452890771=>1,2457047439=>1,2457053264=>1,2461631471=>1,2461630534=>1,2461632299=>1,2461633548=>1,2461641377=>1,2461636315=>1,2461610465=>1,2461605850=>1,2457366314=>1,2457057393=>1,2459189900=>1,2460412687=>1,2461605847=>1,2416080468=>1,2415916222=>1,2415853891=>1,2415454939=>1,2415853894=>1,2415853911=>1,2415853917=>1,2415853914=>1,2412836334=>1,2412836261=>1,2412828603=>1,2412828533=>1,2412832790=>1,2412835938=>1,2412836254=>1,2412835958=>1,2415853933=>1,2415853944=>1,2415854439=>1,2415854206=>1,2415854446=>1,2415854454=>1,2415854471=>1,2415854468=>1,2415854172=>1,2415854142=>1,2415854064=>1,2415854060=>1,2415854095=>1,2415854108=>1,2415854128=>1,2415854110=>1,2412828499=>1,2412828490=>1,2412803103=>1,2412791216=>1,2412803295=>1,2412803519=>1,2412804330=>1,2412804187=>1,2412791172=>1,2412784285=>1,2412781399=>1,2412781392=>1,2412781440=>1,2412781468=>1,2412783870=>1,2412783736=>1,2412809319=>1,2412809321=>1,2412809914=>1,2412809912=>1,2412809955=>1,2412809965=>1,2412823871=>1,2412809971=>1,2412809899=>1,2412809727=>1,2412809538=>1,2412809485=>1,2412809593=>1,2412809639=>1,2412809672=>1,2415854476=>1,2415854485=>1,2415890747=>1,2415890729=>1,2415890776=>1,2415890785=>1,2415890810=>1,2415890798=>1,2415890722=>1,2415890660=>1,2415882982=>1,2415882961=>1,2415882999=>1,2415890466=>1,2415890650=>1,2415890633=>1,2415892149=>1,2415892152=>1,2415892209=>1,2415892203=>1,2415892212=>1,2415892216=>1,2415895935=>1,2415892223=>1,2415892197=>1,2415892183=>1,2415892163=>1,2415892154=>1,2415892170=>1,2415892172=>1,2415892175=>1,2415882902=>1,2415882827=>1,2415854582=>1,2415854581=>1,2415854586=>1,2415871311=>1,2415871947=>1,2415871622=>1,2415854576=>1,2415854575=>1,2415854504=>1,2415854496=>1,2415854508=>1,2415854530=>1,2415854574=>1,2415854531=>1,2415871973=>1,2415871983=>1,2415882757=>1,2415882648=>1,2415882800=>1,2415882804=>1,2415882818=>1,2415882815=>1,2415882592=>1,2415882476=>1,2415878350=>1,2415871996=>1,2415882259=>1,2415882350=>1,2415882448=>1,2499491830=>1,2499495012=>1,2538662511=>1,2538653819=>1,2538663986=>1,2538666066=>1,2546787664=>1,2539959090=>1,2538653120=>1,2538652605=>1,2538644627=>1,2538640281=>1,2538645056=>1,2538645057=>1,2538647534=>1,2538645058=>1,2548060322=>1,2548548344=>1,2548842457=>1,2548832241=>1,2548881987=>1,2548882031=>1,2548883161=>1,2548882732=>1,2548829845=>1,2548829310=>1,2548827842=>1,2548827758=>1,2548827846=>1,2548828081=>1,2548829260=>1,2548829042=>1,2538637843=>1,2538635276=>1,2533471872=>1,2533412706=>1,2533480629=>1,2535018853=>1,2535988780=>1,2535429775=>1,2532468978=>1,2532468954=>1,2527424336=>1,2527139314=>1,2528874226=>1,2529630137=>1,2532468950=>1,2532468941=>1,2536331069=>1,2537173800=>1,2538613351=>1,2538613222=>1,2538613908=>1,2538628216=>1,2538632116=>1,2538630278=>1,2538613093=>1,2538612385=>1,2538610707=>1,2537679967=>1,2538611602=>1,2538612113=>1,2538612239=>1,2548888320=>1,2548888839=>1,2549891133=>1,2549697696=>1,2549891246=>1,2549891379=>1,2549891623=>1,2549891615=>1,2549694465=>1,2549643556=>1,2548944868=>1,2548944859=>1,2548944874=>1,2548944875=>1,2549530232=>1,2549082986=>1,2549891657=>1,2549891726=>1,2549892486=>1,2549892288=>1,2549892496=>1,2549892660=>1,2549892986=>1,2549892697=>1,2549892137=>1,2549892134=>1,2549891780=>1,2549891739=>1,2549892073=>1,2549892119=>1,2549892123=>1,2548944855=>1,2548944852=>1,2548918463=>1,2548901679=>1,2548919014=>1,2548920584=>1,2548936148=>1,2548936147=>1,2548901575=>1,2548901551=>1,2548889031=>1,2548888891=>1,2548889314=>1,2548901462=>1,2548901545=>1,2548901491=>1,2548936281=>1,2548936330=>1,2548944793=>1,2548944790=>1,2548944800=>1,2548944838=>1,2548944849=>1,2548944843=>1,2548944786=>1,2548944719=>1,2548944649=>1,2548940337=>1,2548944670=>1,2548944709=>1,2548944711=>1,2527139263=>1,2527139179=>1,2504497880=>1,2504485085=>1,2505789742=>1,2505789744=>1,2505790419=>1,2505790049=>1,2503912908=>1,2503906345=>1,2503478852=>1,2503478851=>1,2503486488=>1,2503486597=>1,2503873678=>1,2503486920=>1,2505790431=>1,2505794154=>1,2509938604=>1,2509938519=>1,2511105135=>1,2511106662=>1,2511140088=>1,2511124246=>1,2509938404=>1,2509938298=>1,2509914337=>1,2508457405=>1,2509914461=>1,2509936656=>1,2509938000=>1,2509936847=>1,2503478850=>1,2503478849=>1,2499530532=>1,2499530374=>1,2499532341=>1,2499534243=>1,2499537479=>1,2499535630=>1,2499526939=>1,2499526373=>1,2499500164=>1,2499499208=>1,2499500304=>1,2499503272=>1,2499510428=>1,2499506662=>1,2499540331=>1,2499540375=>1,2500985426=>1,2500674284=>1,2500987782=>1,2502036510=>1,2503478698=>1,2503478297=>1,2500647806=>1,2500395035=>1,2499542757=>1,2499541098=>1,2499542876=>1,2500035826=>1,2500038468=>1,2513046652=>1,2513048031=>1,2523615435=>1,2523615433=>1,2523615436=>1,2523615437=>1,2523632952=>1,2523624555=>1,2523615432=>1,2523615431=>1,2516542354=>1,2516524775=>1,2516545469=>1,2516567073=>1,2523615426=>1,2523263843=>1,2523633253=>1,2523633254=>1,2525051052=>1,2525049763=>1,2525099039=>1,2525099053=>1,2526085463=>1,2525677826=>1,2525037634=>1,2525037586=>1,2523644158=>1,2523644153=>1,2523644243=>1,2523644273=>1,2523644276=>1,2516524485=>1,2516523996=>1,2513068704=>1,2513068014=>1,2513068705=>1,2513084485=>1,2513090006=>1,2513086234=>1,2513066601=>1,2513061031=>1,2513054396=>1,2513052264=>1,2513055669=>1,2513056042=>1,2513058702=>1,2513056070=>1,2513095736=>1,2513104474=>1,2513620259=>1,2513609956=>1,2513623593=>1,2513624368=>1,2513630477=>1,2513625755=>1,2513107427=>1,2513107225=>1,2513105288=>1,2513104774=>1,2513107008=>1,2513107100=>1,2513107136=>1,2412781373=>1,2412781366=>1,2331976002=>1,2331975973=>1,2331976061=>1,2331976063=>1,2331976091=>1,2331976073=>1,2331975968=>1,2331975961=>1,2331975917=>1,2331975913=>1,2331975930=>1,2331975952=>1,2331975959=>1,2331975958=>1,2331976096=>1,2331976097=>1,2331976188=>1,2331976182=>1,2331976268=>1,2331976392=>1,2331976490=>1,2331976471=>1,2331976177=>1,2331976159=>1,2331976129=>1,2331976103=>1,2331976150=>1,2331976152=>1,2331976155=>1,2331976154=>1,2331975909=>1,2331975903=>1,2331975801=>1,2331975799=>1,2331975804=>1,2331975805=>1,2331975812=>1,2331975809=>1,2331975796=>1,2331975795=>1,2331975762=>1,2331975761=>1,2331975764=>1,2331975770=>1,2331975793=>1,2331975777=>1,2331975813=>1,2331975821=>1,2331975880=>1,2331975866=>1,2331975884=>1,2331975887=>1,2331975902=>1,2331975892=>1,2331975860=>1,2331975856=>1,2331975825=>1,2331975823=>1,2331975838=>1,2331975839=>1,2331975851=>1,2331976491=>1,2331976672=>1,2332003308=>1,2332002775=>1,2332004211=>1,2332011972=>1,2332012491=>1,2332012164=>1,2332002772=>1,2332002750=>1,2331984812=>1,2331984793=>1,2331984826=>1,2331984865=>1,2331989002=>1,2331984867=>1,2332013230=>1,2332015120=>1,2332021055=>1,2332017508=>1,2332021094=>1,2332021129=>1,2332021336=>1,2332021237=>1,2332017489=>1,2332015354=>1,2332015202=>1,2332015149=>1,2332015232=>1,2332015233=>1,2332015294=>1,2331984777=>1,2331984774=>1,2331980682=>1,2331980655=>1,2331983875=>1,2331983878=>1,2331984077=>1,2331983918=>1,2331980622=>1,2331980614=>1,2331979546=>1,2331979307=>1,2331979580=>1,2331979590=>1,2331980597=>1,2331979737=>1,2331984085=>1,2331984101=>1,2331984508=>1,2331984409=>1,2331984558=>1,2331984623=>1,2331984732=>1,2331984691=>1,2331984396=>1,2331984337=>1,2331984231=>1,2331984162=>1,2331984236=>1,2331984276=>1,2331984308=>1,2331975757=>1,2331975756=>1,2328643662=>1,2328643650=>1,2328643711=>1,2328643727=>1,2328643783=>1,2328643731=>1,2328643649=>1,2328643631=>1,2328636889=>1,2328636883=>1,2328636899=>1,2328643584=>1,2328643623=>1,2328643600=>1,2328643791=>1,2328643805=>1,2328643959=>1,2328643956=>1,2328643963=>1,2328643970=>1,2328644035=>1,2328643972=>1,2328643946=>1,2328643902=>1,2328643863=>1,2328643857=>1,2328643883=>1,2328643887=>1,2328643898=>1,2328643891=>1,2328636757=>1,2328634982=>1,2327495311=>1,2327495299=>1,2327495324=>1,2327495331=>1,2327495351=>1,2327495333=>1,2327495294=>1,2327495260=>1,2327495122=>1,2327495121=>1,2327495151=>1,2327495172=>1,2327495217=>1,2327495213=>1,2327495360=>1,2327495367=>1,2328439546=>1,2328438531=>1,2328439598=>1,2328440733=>1,2328631917=>1,2328448307=>1,2328435202=>1,2328429858=>1,2327495401=>1,2327495393=>1,2327495659=>1,2328428644=>1,2328428653=>1,2328644036=>1,2328644059=>1,2329653742=>1,2329653730=>1,2329653744=>1,2329653848=>1,2329653912=>1,2329653859=>1,2329643244=>1,2329643241=>1,2329638658=>1,2329633190=>1,2329638902=>1,2329643118=>1,2329643187=>1,2329643120=>1,2329653921=>1,2329653934=>1,2331972777=>1,2331969042=>1,2331975746=>1,2331975747=>1,2331975752=>1,2331975749=>1,2329660286=>1,2329660190=>1,2329653948=>1,2329653937=>1,2329653965=>1,2329654066=>1,2329654149=>1,2329633170=>1,2329623425=>1,2328648147=>1,2328648144=>1,2328648153=>1,2328648158=>1,2328648170=>1,2328648163=>1,2328648139=>1,2328648134=>1,2328646108=>1,2328644086=>1,2328648074=>1,2328648084=>1,2328648101=>1,2328648099=>1,2328654506=>1,2328654512=>1,2328674467=>1,2328662308=>1,2328675177=>1,2328675321=>1,2329621291=>1,2329619341=>1,2328661735=>1,2328661557=>1,2328654525=>1,2328654520=>1,2328657422=>1,2328661350=>1,2328661353=>1,2332023961=>1,2332030192=>1,2399144074=>1,2399105304=>1,2399144151=>1,2399144180=>1,2399163738=>1,2399144189=>1,2399015198=>1,2396612920=>1,2392658213=>1,2389299268=>1,2392927537=>1,2393104259=>1,2395325091=>1,2395312771=>1,2399171697=>1,2399172117=>1,2399198871=>1,2399178250=>1,2408122126=>1,2408153110=>1,2408154523=>1,2408153164=>1,2399174632=>1,2399174630=>1,2399172180=>1,2399172132=>1,2399174062=>1,2399174066=>1,2399174467=>1,2399174182=>1,2389288541=>1,2389246843=>1,2382341674=>1,2382341478=>1,2382341774=>1,2382341782=>1,2382347681=>1,2382341821=>1,2382340519=>1,2382340518=>1,2378474618=>1,2378474205=>1,2378474893=>1,2380223865=>1,2381312976=>1,2381290738=>1,2382365424=>1,2382367417=>1,2382683100=>1,2382681943=>1,2384106570=>1,2385945706=>1,2385951410=>1,2385948850=>1,2382681420=>1,2382681369=>1,2382389679=>1,2382368161=>1,2382455187=>1,2382635204=>1,2382677404=>1,2408160870=>1,2408160917=>1,2412774756=>1,2412443129=>1,2412774776=>1,2412774918=>1,2412780049=>1,2412775067=>1,2412438775=>1,2412438083=>1,2412435306=>1,2412435284=>1,2412435317=>1,2412435380=>1,2412435429=>1,2412435422=>1,2412780053=>1,2412780063=>1,2412781198=>1,2412781184=>1,2412781208=>1,2412781252=>1,2412781326=>1,2412781291=>1,2412781087=>1,2412780802=>1,2412780124=>1,2412780086=>1,2412780351=>1,2412780379=>1,2412780471=>1,2412435239=>1,2412435193=>1,2412410944=>1,2412396024=>1,2412412578=>1,2412412737=>1,2412412793=>1,2412412744=>1,2412396020=>1,2412396012=>1,2412393763=>1,2408161035=>1,2412393805=>1,2412395898=>1,2412395994=>1,2412395944=>1,2412424250=>1,2412426646=>1,2412434923=>1,2412434918=>1,2412434941=>1,2412435056=>1,2412435167=>1,2412435077=>1,2412434902=>1,2412434877=>1,2412434595=>1,2412428293=>1,2412434739=>1,2412434791=>1,2412434831=>1,2378473183=>1,2378472679=>1,2342688017=>1,2342687780=>1,2342688272=>1,2342688488=>1,2342689838=>1,2342688598=>1,2342687244=>1,2342686875=>1,2342683326=>1,2342665516=>1,2342683385=>1,2342686235=>1,2342686750=>1,2342686612=>1,2342700798=>1,2342705627=>1,2344924570=>1,2344922666=>1,2344927935=>1,2344928330=>1,2345804986=>1,2344930464=>1,2344891797=>1,2344891368=>1,2344469268=>1,2342706349=>1,2344712114=>1,2344715817=>1,2344879168=>1,2344879115=>1,2342661248=>1,2342659203=>1,2333219107=>1,2332954027=>1,2335963148=>1,2335964239=>1,2340494176=>1,2340490561=>1,2332040210=>1,2332040178=>1,2332030349=>1,2332030254=>1,2332030705=>1,2332030858=>1,2332039026=>1,2332038204=>1,2340495052=>1,2340498361=>1,2342653550=>1,2342652911=>1,2342654661=>1,2342654735=>1,2342656127=>1,2342655217=>1,2342652688=>1,2342652488=>1,2340611144=>1,2340517803=>1,2342650477=>1,2342651688=>1,2342652293=>1,2346261192=>1,2346500924=>1,2370207208=>1,2369167288=>1,2371219938=>1,2372214888=>1,2372271707=>1,2372271428=>1,2367609115=>1,2366924569=>1,2365593074=>1,2364532452=>1,2365634550=>1,2365773581=>1,2366906692=>1,2366906691=>1,2372485946=>1,2372503592=>1,2378455485=>1,2378444306=>1,2378455977=>1,2378457425=>1,2378465606=>1,2378458154=>1,2374667728=>1,2374634628=>1,2372510190=>1,2372504921=>1,2372510448=>1,2372510919=>1,2372512227=>1,2362418674=>1,2362401906=>1,2348758542=>1,2348758270=>1,2348760578=>1,2348760579=>1,2348761110=>1,2348760580=>1,2348758269=>1,2348755330=>1,2347033580=>1,2346893081=>1,2348753866=>1,2348754835=>1,2348755146=>1,2348755074=>1,2348793777=>1,2348794013=>1,2357378782=>1,2357364484=>1,2357759274=>1,2360655584=>1,2362332740=>1,2361449099=>1,2357189551=>1,2356430950=>1,2356360549=>1,2356301799=>1,2356360700=>1,2356395453=>1,2356395464=>1,2327495115=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-34.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3190257866=>1,3190257404=>1,3190258110=>1,3190258191=>1,3190259260=>1,3190258893=>1,3190257275=>1,3190256580=>1,3190255066=>1,3190255027=>1,3190255531=>1,3190255882=>1,3190255952=>1,3190255920=>1,3190259437=>1,3190259532=>1,3190285396=>1,3190267717=>1,3190286664=>1,3190287929=>1,3190289150=>1,3190289122=>1,3190267021=>1,3190266120=>1,3190261068=>1,3190259842=>1,3190263347=>1,3190263610=>1,3190264516=>1,3190263612=>1,3190254211=>1,3190253825=>1,3190244652=>1,3190244067=>1,3190245269=>1,3190245349=>1,3190246331=>1,3190245704=>1,3190243626=>1,3190236468=>1,3190213797=>1,3190210392=>1,3190218256=>1,3190231431=>1,3190233831=>1,3190233552=>1,3190246392=>1,3190247003=>1,3190251398=>1,3190251069=>1,3190252648=>1,3190253158=>1,3190253642=>1,3190253333=>1,3190250606=>1,3190250453=>1,3190247407=>1,3190247241=>1,3190247588=>1,3190248581=>1,3190248924=>1,3190291271=>1,3190297392=>1,3192419868=>1,3192411739=>1,3192422108=>1,3192422610=>1,3192423632=>1,3192422999=>1,3192411001=>1,3192397648=>1,3192394022=>1,3192391148=>1,3192394405=>1,3192394565=>1,3192397515=>1,3192395883=>1,3192424411=>1,3192424882=>1,3192428867=>1,3192427895=>1,3192429407=>1,3192439361=>1,3192451020=>1,3192447959=>1,3192427869=>1,3192427814=>1,3192426186=>1,3192425639=>1,3192426245=>1,3192426861=>1,3192427487=>1,3192427099=>1,3192390798=>1,3192390091=>1,3191125978=>1,3191125389=>1,3191126490=>1,3191127166=>1,3191227609=>1,3191221452=>1,3191123788=>1,3190534887=>1,3190434732=>1,3190318827=>1,3190439311=>1,3190478743=>1,3190507629=>1,3190501207=>1,3191227701=>1,3191227801=>1,3191835719=>1,3191832964=>1,3191839498=>1,3191840226=>1,3192002503=>1,3191844596=>1,3191804195=>1,3191619213=>1,3191238815=>1,3191228108=>1,3191466142=>1,3191616150=>1,3191619067=>1,3190209700=>1,3190209543=>1,3190117757=>1,3190116583=>1,3190120398=>1,3190120437=>1,3190120972=>1,3190120595=>1,3190116063=>1,3190115669=>1,3190108785=>1,3190108655=>1,3190109665=>1,3190110993=>1,3190111561=>1,3190111472=>1,3190121134=>1,3190121870=>1,3190124482=>1,3190123880=>1,3190124502=>1,3190124890=>1,3190126740=>1,3190125559=>1,3190123818=>1,3190122843=>1,3190122002=>1,3190121959=>1,3190122107=>1,3190122131=>1,3190122810=>1,3190122459=>1,3190108615=>1,3190108589=>1,3190079138=>1,3190079071=>1,3190080364=>1,3190080528=>1,3190082075=>1,3190081949=>1,3190078555=>1,3190078391=>1,3190072204=>1,3190071403=>1,3190075847=>1,3190076894=>1,3190078010=>1,3190077408=>1,3190082470=>1,3190087142=>1,3190105386=>1,3190105181=>1,3190105469=>1,3190105879=>1,3190108299=>1,3190107631=>1,3190105066=>1,3190104107=>1,3190098879=>1,3190087602=>1,3190102337=>1,3190102406=>1,3190102815=>1,3190127556=>1,3190127910=>1,3190185839=>1,3190185798=>1,3190189300=>1,3190189579=>1,3190194221=>1,3190192150=>1,3190185563=>1,3190184098=>1,3190179675=>1,3190179451=>1,3190181798=>1,3190182187=>1,3190183659=>1,3190182851=>1,3190195061=>1,3190196849=>1,3190207354=>1,3190207068=>1,3190208651=>1,3190208871=>1,3190209326=>1,3190208995=>1,3190206924=>1,3190206414=>1,3190203689=>1,3190200887=>1,3190204557=>1,3190205572=>1,3190206057=>1,3190179418=>1,3190179265=>1,3190140881=>1,3190138189=>1,3190141552=>1,3190145196=>1,3190149424=>1,3190149068=>1,3190138180=>1,3190133124=>1,3190130642=>1,3190128460=>1,3190130831=>1,3190131457=>1,3190132398=>1,3190131667=>1,3190149543=>1,3190153440=>1,3190172148=>1,3190171388=>1,3190174273=>1,3190175601=>1,3190178709=>1,3190178052=>1,3190168098=>1,3190165104=>1,3190155114=>1,3190154649=>1,3190155770=>1,3190163161=>1,3190163225=>1,3192451361=>1,3192464198=>1,3192723414=>1,3192723236=>1,3192724542=>1,3192726546=>1,3192730740=>1,3192730387=>1,3192723030=>1,3192721455=>1,3192643833=>1,3192643798=>1,3192643909=>1,3192644360=>1,3192718969=>1,3192650940=>1,3192731051=>1,3192731928=>1,3192756899=>1,3192756427=>1,3192757230=>1,3192757703=>1,3192758540=>1,3192758276=>1,3192752365=>1,3192752214=>1,3192733176=>1,3192732197=>1,3192741642=>1,3192743716=>1,3192751777=>1,3192751712=>1,3192638273=>1,3192632838=>1,3192603744=>1,3192602588=>1,3192604625=>1,3192605866=>1,3192607377=>1,3192606742=>1,3192602150=>1,3192602138=>1,3192601067=>1,3192600935=>1,3192601668=>1,3192601696=>1,3192601838=>1,3192601702=>1,3192607952=>1,3192612632=>1,3192629620=>1,3192628960=>1,3192629963=>1,3192630755=>1,3192632202=>1,3192631822=>1,3192628662=>1,3192628146=>1,3192614873=>1,3192614714=>1,3192619511=>1,3192624108=>1,3192627985=>1,3192758650=>1,3192758721=>1,3192782514=>1,3192782211=>1,3192783096=>1,3192784218=>1,3192784766=>1,3192784369=>1,3192782116=>1,3192780638=>1,3192777096=>1,3192776267=>1,3192777573=>1,3192778323=>1,3192780599=>1,3192779153=>1,3192786364=>1,3192786774=>1,3192794483=>1,3192793566=>1,3192796069=>1,3192796130=>1,3192798432=>1,3192798123=>1,3192793204=>1,3192790749=>1,3192787975=>1,3192787416=>1,3192788913=>1,3192789832=>1,3192789906=>1,3192774444=>1,3192774246=>1,3192767312=>1,3192765054=>1,3192767520=>1,3192767899=>1,3192768807=>1,3192768148=>1,3192764483=>1,3192764330=>1,3192760066=>1,3192759667=>1,3192760283=>1,3192762638=>1,3192763959=>1,3192763384=>1,3192769403=>1,3192769824=>1,3192772860=>1,3192772326=>1,3192772979=>1,3192773011=>1,3192773720=>1,3192773605=>1,3192772024=>1,3192771881=>1,3192770965=>1,3192770279=>1,3192771078=>1,3192771211=>1,3192771288=>1,3192600870=>1,3192600512=>1,3192494629=>1,3192494495=>1,3192494840=>1,3192495124=>1,3192495668=>1,3192495301=>1,3192494271=>1,3192494096=>1,3192491521=>1,3192491497=>1,3192491674=>1,3192491686=>1,3192492892=>1,3192491794=>1,3192498994=>1,3192499006=>1,3192518642=>1,3192517559=>1,3192524162=>1,3192524440=>1,3192533567=>1,3192531718=>1,3192517386=>1,3192517164=>1,3192513739=>1,3192499041=>1,3192513801=>1,3192514176=>1,3192515304=>1,3192514656=>1,3192491030=>1,3192490830=>1,3192483522=>1,3192482673=>1,3192483901=>1,3192483958=>1,3192485077=>1,3192484704=>1,3192481885=>1,3192480420=>1,3192474760=>1,3192466723=>1,3192478997=>1,3192479268=>1,3192480364=>1,3192480039=>1,3192485147=>1,3192485256=>1,3192489917=>1,3192489888=>1,3192490158=>1,3192490266=>1,3192490529=>1,3192490447=>1,3192489227=>1,3192489064=>1,3192487998=>1,3192487953=>1,3192488517=>1,3192488538=>1,3192488898=>1,3192533620=>1,3192540619=>1,3192569945=>1,3192569433=>1,3192570174=>1,3192570330=>1,3192571260=>1,3192570859=>1,3192569415=>1,3192569387=>1,3192567810=>1,3192567743=>1,3192567853=>1,3192568202=>1,3192568857=>1,3192568766=>1,3192572590=>1,3192575089=>1,3192595827=>1,3192595774=>1,3192597636=>1,3192598750=>1,3192599441=>1,3192599110=>1,3192594728=>1,3192583401=>1,3192579016=>1,3192575359=>1,3192580873=>1,3192581262=>1,3192583275=>1,3192567352=>1,3192567141=>1,3192561962=>1,3192561953=>1,3192561979=>1,3192562010=>1,3192562206=>1,3192562122=>1,3192561754=>1,3192561742=>1,3192542590=>1,3192541812=>1,3192544130=>1,3192544820=>1,3192549552=>1,3192544853=>1,3192562312=>1,3192562596=>1,3192566214=>1,3192565971=>1,3192566262=>1,3192566471=>1,3192567009=>1,3192567000=>1,3192565791=>1,3192565459=>1,3192562932=>1,3192562781=>1,3192563520=>1,3192564133=>1,3192564796=>1,3190071319=>1,3190071172=>1,3185300395=>1,3185300371=>1,3185300409=>1,3185300428=>1,3185300445=>1,3185300442=>1,3185300353=>1,3185300352=>1,3185300251=>1,3185300225=>1,3185300293=>1,3185300320=>1,3185300348=>1,3185300340=>1,3185300497=>1,3185300498=>1,3185302687=>1,3185302666=>1,3185302762=>1,3185302847=>1,3185302887=>1,3185302869=>1,3185302663=>1,3185302658=>1,3185300581=>1,3185300578=>1,3185300590=>1,3185300621=>1,3185302627=>1,3185302597=>1,3185300175=>1,3185300118=>1,3185299818=>1,3185299791=>1,3185299825=>1,3185299864=>1,3185299882=>1,3185299873=>1,3185299786=>1,3185299770=>1,3185299636=>1,3185299624=>1,3185299649=>1,3185299683=>1,3185299764=>1,3185299759=>1,3185299889=>1,3185299890=>1,3185299998=>1,3185299993=>1,3185299999=>1,3185300007=>1,3185300100=>1,3185300086=>1,3185299986=>1,3185299968=>1,3185299912=>1,3185299903=>1,3185299930=>1,3185299943=>1,3185299954=>1,3185302932=>1,3185302941=>1,3185304790=>1,3185304780=>1,3185304806=>1,3185304816=>1,3185304847=>1,3185304833=>1,3185304777=>1,3185304762=>1,3185304694=>1,3185304670=>1,3185304712=>1,3185304720=>1,3185304746=>1,3185304723=>1,3185304879=>1,3185304907=>1,3185307146=>1,3185307139=>1,3185307162=>1,3185307277=>1,3185307306=>1,3185307304=>1,3185305382=>1,3185305260=>1,3185305016=>1,3185304985=>1,3185305090=>1,3185305246=>1,3185305249=>1,3185304652=>1,3185304631=>1,3185303033=>1,3185303023=>1,3185303607=>1,3185303637=>1,3185303683=>1,3185303664=>1,3185303022=>1,3185302999=>1,3185302952=>1,3185302944=>1,3185302956=>1,3185302969=>1,3185302984=>1,3185302972=>1,3185303686=>1,3185303688=>1,3185304288=>1,3185304262=>1,3185304302=>1,3185304311=>1,3185304592=>1,3185304582=>1,3185304247=>1,3185304229=>1,3185304100=>1,3185304069=>1,3185304141=>1,3185304171=>1,3185304226=>1,3185299597=>1,3185299553=>1,3185295261=>1,3185295253=>1,3185295278=>1,3185295288=>1,3185295332=>1,3185295307=>1,3185295231=>1,3185295226=>1,3185295155=>1,3185295154=>1,3185295159=>1,3185295196=>1,3185295222=>1,3185295211=>1,3185295339=>1,3185295343=>1,3185295723=>1,3185295679=>1,3185295730=>1,3185295747=>1,3185295819=>1,3185295765=>1,3185295655=>1,3185295645=>1,3185295385=>1,3185295378=>1,3185295502=>1,3185295534=>1,3185295612=>1,3185295603=>1,3185295144=>1,3185295141=>1,3185294823=>1,3185294775=>1,3185294838=>1,3185294848=>1,3185294898=>1,3185294862=>1,3185294734=>1,3185294722=>1,3185294641=>1,3185294640=>1,3185294664=>1,3185294677=>1,3185294721=>1,3185294693=>1,3185294919=>1,3185294926=>1,3185295083=>1,3185295069=>1,3185295099=>1,3185295119=>1,3185295134=>1,3185295126=>1,3185295045=>1,3185295004=>1,3185294933=>1,3185294928=>1,3185294939=>1,3185294992=>1,3185294995=>1,3185295897=>1,3185296440=>1,3185298151=>1,3185298146=>1,3185298174=>1,3185298435=>1,3185298483=>1,3185298453=>1,3185298124=>1,3185298102=>1,3185297399=>1,3185297391=>1,3185297826=>1,3185297910=>1,3185298066=>1,3185297998=>1,3185298558=>1,3185298570=>1,3185299484=>1,3185298927=>1,3185299494=>1,3185299498=>1,3185299544=>1,3185299515=>1,3185298884=>1,3185298756=>1,3185298670=>1,3185298625=>1,3185298702=>1,3185298720=>1,3185298751=>1,3185297367=>1,3185297358=>1,3185296782=>1,3185296764=>1,3185296814=>1,3185296834=>1,3185296881=>1,3185296855=>1,3185296715=>1,3185296704=>1,3185296606=>1,3185296522=>1,3185296675=>1,3185296677=>1,3185296699=>1,3185296684=>1,3185296962=>1,3185296991=>1,3185297206=>1,3185297194=>1,3185297245=>1,3185297250=>1,3185297296=>1,3185297275=>1,3185297170=>1,3185297167=>1,3185297031=>1,3185297002=>1,3185297059=>1,3185297122=>1,3185297133=>1,3185307387=>1,3185307441=>1,3187221560=>1,3187218450=>1,3187225365=>1,3187671598=>1,3187679506=>1,3187674066=>1,3186375089=>1,3185440597=>1,3185432369=>1,3185432304=>1,3185435365=>1,3185438024=>1,3185440589=>1,3185440347=>1,3187686390=>1,3187771750=>1,3188075897=>1,3188073980=>1,3188118183=>1,3188121224=>1,3188123540=>1,3188122141=>1,3188071877=>1,3188038734=>1,3187888675=>1,3187772397=>1,3187934299=>1,3187941042=>1,3188013209=>1,3187943730=>1,3185431483=>1,3185430471=>1,3185397145=>1,3185378004=>1,3185398773=>1,3185399224=>1,3185402179=>1,3185402013=>1,3185377950=>1,3185377903=>1,3185377214=>1,3185376987=>1,3185377238=>1,3185377320=>1,3185377651=>1,3185377386=>1,3185409043=>1,3185412310=>1,3185428611=>1,3185428600=>1,3185429338=>1,3185429342=>1,3185429832=>1,3185429343=>1,3185428590=>1,3185428533=>1,3185416876=>1,3185412588=>1,3185416890=>1,3185426463=>1,3185426530=>1,3188125081=>1,3188137690=>1,3190051317=>1,3190050299=>1,3190051646=>1,3190051748=>1,3190054871=>1,3190054243=>1,3190050162=>1,3190048093=>1,3189658360=>1,3189577463=>1,3189668361=>1,3189678319=>1,3190043386=>1,3189687112=>1,3190056906=>1,3190058974=>1,3190069072=>1,3190068638=>1,3190069143=>1,3190069692=>1,3190069976=>1,3190069860=>1,3190068045=>1,3190067947=>1,3190062350=>1,3190060245=>1,3190063351=>1,3190063815=>1,3190067694=>1,3189070803=>1,3189068899=>1,3188328600=>1,3188328498=>1,3188328624=>1,3188425939=>1,3188433832=>1,3188433373=>1,3188275951=>1,3188275725=>1,3188158480=>1,3188137692=>1,3188158482=>1,3188184594=>1,3188261769=>1,3188237861=>1,3188434436=>1,3188449758=>1,3188710966=>1,3188710962=>1,3188776501=>1,3188852307=>1,3189068765=>1,3189067819=>1,3188705112=>1,3188703352=>1,3188464662=>1,3188457834=>1,3188471658=>1,3188494348=>1,3188632260=>1,3185376903=>1,3185376699=>1,3185309079=>1,3185309050=>1,3185309128=>1,3185309175=>1,3185310060=>1,3185309890=>1,3185309010=>1,3185308992=>1,3185308701=>1,3185308623=>1,3185308825=>1,3185308827=>1,3185308915=>1,3185308898=>1,3185310750=>1,3185310789=>1,3185311251=>1,3185311121=>1,3185311267=>1,3185311313=>1,3185311335=>1,3185311315=>1,3185311117=>1,3185311058=>1,3185310877=>1,3185310813=>1,3185310905=>1,3185310980=>1,3185311054=>1,3185311039=>1,3185308612=>1,3185308602=>1,3185308019=>1,3185308011=>1,3185308034=>1,3185308065=>1,3185308074=>1,3185308072=>1,3185308009=>1,3185307962=>1,3185307592=>1,3185307468=>1,3185307604=>1,3185307635=>1,3185307958=>1,3185307943=>1,3185308090=>1,3185308124=>1,3185308408=>1,3185308353=>1,3185308420=>1,3185308456=>1,3185308600=>1,3185308462=>1,3185308284=>1,3185308281=>1,3185308129=>1,3185308127=>1,3185308183=>1,3185308231=>1,3185308273=>1,3185311338=>1,3185311347=>1,3185325712=>1,3185325585=>1,3185325849=>1,3185325924=>1,3185326200=>1,3185325973=>1,3185325465=>1,3185325169=>1,3185323648=>1,3185323016=>1,3185323660=>1,3185323834=>1,3185325148=>1,3185325129=>1,3185326588=>1,3185330320=>1,3185375352=>1,3185375292=>1,3185375402=>1,3185375432=>1,3185375746=>1,3185375610=>1,3185375286=>1,3185371749=>1,3185360463=>1,3185359714=>1,3185371000=>1,3185371131=>1,3185371246=>1,3185321889=>1,3185321787=>1,3185311537=>1,3185311536=>1,3185311541=>1,3185311551=>1,3185311605=>1,3185311575=>1,3185311528=>1,3185311527=>1,3185311375=>1,3185311369=>1,3185311380=>1,3185311465=>1,3185311503=>1,3185311489=>1,3185311630=>1,3185311641=>1,3185320905=>1,3185320770=>1,3185321097=>1,3185321284=>1,3185321783=>1,3185321463=>1,3185320080=>1,3185318962=>1,3185311734=>1,3185311683=>1,3185316936=>1,3185317518=>1,3185317795=>1,3185294639=>1,);?>
1
+ <?php return array(2551858464=>2551858471,2745992900=>1,2745992743=>1,2745993132=>1,2745993317=>1,2745993646=>1,2745993613=>1,2745992484=>1,2745992370=>1,2745992140=>1,2745992024=>1,2745992176=>1,2745992257=>1,2745992270=>1,2745993750=>1,2745993863=>1,2760121497=>1,2759035617=>1,2760121501=>1,2760125731=>1,2760130822=>1,2760128893=>1,2758028114=>1,2752473083=>1,2746008117=>1,2745994300=>1,2746306308=>1,2746306309=>1,2752471909=>1,2752461834=>1,2745991494=>1,2745991491=>1,2738207285=>1,2738207282=>1,2738207622=>1,2738207723=>1,2742915574=>1,2738212635=>1,2738198326=>1,2738198324=>1,2736650252=>1,2736326184=>1,2737600328=>1,2737798968=>1,2737806466=>1,2737803550=>1,2742939278=>1,2744030196=>1,2745964918=>1,2745964671=>1,2745965189=>1,2745965374=>1,2745991474=>1,2745991436=>1,2745964548=>1,2745963872=>1,2745960222=>1,2745097579=>1,2745960387=>1,2745960388=>1,2745962205=>1,2745961852=>1,2760134063=>1,2760137437=>1,2789106163=>1,2789106161=>1,2789106164=>1,2789106165=>1,2789609230=>1,2789111140=>1,2789106160=>1,2789106159=>1,2785000763=>1,2784996918=>1,2789101893=>1,2789102286=>1,2789106158=>1,2789105944=>1,2789658370=>1,2790142623=>1,2792310043=>1,2792309605=>1,2792310062=>1,2792312928=>1,2792328146=>1,2792323236=>1,2792304812=>1,2792294248=>1,2790168349=>1,2790158408=>1,2790397384=>1,2790524727=>1,2791729937=>1,2784990643=>1,2784980207=>1,2774668739=>1,2774665739=>1,2777301536=>1,2777301751=>1,2777317357=>1,2777305138=>1,2765582100=>1,2760173026=>1,2760171403=>1,2760141791=>1,2760172217=>1,2760172218=>1,2760172220=>1,2760172219=>1,2777388457=>1,2777796644=>1,2784963806=>1,2784959988=>1,2784971702=>1,2784971704=>1,2784973497=>1,2784973474=>1,2784959894=>1,2784123521=>1,2777796751=>1,2777796731=>1,2777796834=>1,2777796941=>1,2783326579=>1,2736132393=>1,2736022488=>1,2734015894=>1,2734015882=>1,2734016022=>1,2734016060=>1,2734016286=>1,2734016075=>1,2734015590=>1,2734009076=>1,2733969852=>1,2733969798=>1,2733971263=>1,2733977106=>1,2733981618=>1,2733981350=>1,2734016342=>1,2734016344=>1,2734114823=>1,2734099476=>1,2734114843=>1,2734115015=>1,2734115017=>1,2734115016=>1,2734081500=>1,2734052389=>1,2734016448=>1,2734016403=>1,2734016451=>1,2734016474=>1,2734037537=>1,2734036804=>1,2733969797=>1,2733969768=>1,2733876317=>1,2733875650=>1,2733883662=>1,2733884539=>1,2733887451=>1,2733887061=>1,2733873493=>1,2733872869=>1,2733866229=>1,2733863621=>1,2733867698=>1,2733868732=>1,2733872796=>1,2733870887=>1,2733888398=>1,2733891064=>1,2733908649=>1,2733907186=>1,2733935000=>1,2733935548=>1,2733953679=>1,2733953636=>1,2733906524=>1,2733906441=>1,2733896812=>1,2733893025=>1,2733896945=>1,2733906390=>1,2733906425=>1,2734115018=>1,2734115028=>1,2734410341=>1,2734410299=>1,2734410348=>1,2734410393=>1,2734410455=>1,2734410412=>1,2734410182=>1,2734410154=>1,2734401370=>1,2734401354=>1,2734409748=>1,2734409838=>1,2734409908=>1,2734409896=>1,2734410533=>1,2734410676=>1,2734650565=>1,2734650564=>1,2734668284=>1,2735598571=>1,2793545615=>1,2735821771=>1,2734545094=>1,2734517649=>1,2734461281=>1,2734456997=>1,2734476350=>1,2734481463=>1,2734481928=>1,2734400531=>1,2734346082=>1,2734164612=>1,2734164454=>1,2734164742=>1,2734164912=>1,2734198369=>1,2734197984=>1,2734115278=>1,2734115276=>1,2734115032=>1,2734115029=>1,2734115033=>1,2734115146=>1,2734115273=>1,2734115267=>1,2734198375=>1,2734198390=>1,2734223494=>1,2734204731=>1,2734223880=>1,2734260268=>1,2734288756=>1,2734266277=>1,2734204174=>1,2734203975=>1,2734198434=>1,2734198408=>1,2734198688=>1,2734202931=>1,2734203953=>1,2736132392=>1,2800709210=>1,2818633162=>1,2818633154=>1,2818633212=>1,2819249423=>1,2822579772=>1,2822578539=>1,2818633106=>1,2818633104=>1,2818591676=>1,2818591663=>1,2818591695=>1,2818591698=>1,2818633095=>1,2818627823=>1,2822593333=>1,2822593512=>1,2825485887=>1,2825485223=>1,2828466959=>1,2829538887=>1,2829538941=>1,2829538915=>1,2825484668=>1,2825372666=>1,2822706195=>1,2822691288=>1,2822707374=>1,2822753297=>1,2824706698=>1,2824481553=>1,2818591650=>1,2818591611=>1,2818240197=>1,2818240185=>1,2818240201=>1,2818240202=>1,2818240234=>1,2818240204=>1,2818240181=>1,2818240172=>1,2818239836=>1,2818226749=>1,2818239849=>1,2818239856=>1,2818240157=>1,2818239989=>1,2818591261=>1,2818591299=>1,2818591518=>1,2818591490=>1,2818591565=>1,2818591572=>1,2818591580=>1,2818591576=>1,2818591481=>1,2818591470=>1,2818591410=>1,2818591404=>1,2818591455=>1,2818591456=>1,2818591458=>1,2829538955=>1,2829538974=>1,2829540568=>1,2829539507=>1,2829540580=>1,2829550597=>1,2829550670=>1,2829550654=>1,2829539503=>1,2829539501=>1,2829539435=>1,2829539425=>1,2829539437=>1,2829539441=>1,2829539453=>1,2829539449=>1,2829550683=>1,2829550689=>1,2829550796=>1,2829550785=>1,2829550799=>1,2829550808=>1,2829550837=>1,2829550818=>1,2829550757=>1,2829550754=>1,2829550694=>1,2829550692=>1,2829550697=>1,2829550725=>1,2829550733=>1,2829539423=>1,2829539421=>1,2829539101=>1,2829539089=>1,2829539113=>1,2829539119=>1,2829539137=>1,2829539135=>1,2829539083=>1,2829539081=>1,2829539022=>1,2829538978=>1,2829539027=>1,2829539051=>1,2829539077=>1,2829539067=>1,2829539159=>1,2829539171=>1,2829539357=>1,2829539353=>1,2829539401=>1,2829539409=>1,2829539417=>1,2829539413=>1,2829539335=>1,2829539333=>1,2829539189=>1,2829539183=>1,2829539209=>1,2829539215=>1,2829539226=>1,2818226569=>1,2818222059=>1,2809306105=>1,2809306089=>1,2809308926=>1,2809313375=>1,2809323526=>1,2809316338=>1,2809305994=>1,2809305365=>1,2809290788=>1,2809289789=>1,2809292563=>1,2809295152=>1,2809305188=>1,2809295238=>1,2809325160=>1,2809326988=>1,2818135423=>1,2818135388=>1,2818135547=>1,2818135972=>1,2818181294=>1,2818152193=>1,2818135313=>1,2815340956=>1,2811163363=>1,2809328998=>1,2812322243=>1,2812338022=>1,2815312817=>1,2812338023=>1,2809289778=>1,2809285827=>1,2807590235=>1,2807590210=>1,2807590246=>1,2807590296=>1,2807590371=>1,2807590368=>1,2807582945=>1,2807574174=>1,2807571272=>1,2733861611=>1,2807571649=>1,2807572651=>1,2807572930=>1,2807572712=>1,2807590383=>1,2807591676=>1,2809283133=>1,2809277736=>1,2809283332=>1,2809283571=>1,2809284612=>1,2809284541=>1,2809275164=>1,2809273717=>1,2809267110=>1,2809266927=>1,2809268134=>1,2809268564=>1,2809273714=>1,2818181318=>1,2818181440=>1,2818191289=>1,2818191270=>1,2818191315=>1,2818191341=>1,2818191355=>1,2818191353=>1,2818191261=>1,2818191253=>1,2818191167=>1,2818191115=>1,2818191169=>1,2818191174=>1,2818191251=>1,2818191217=>1,2818194485=>1,2818194528=>1,2818198476=>1,2818198468=>1,2818219552=>1,2818219553=>1,2818221987=>1,2818219557=>1,2818198405=>1,2818198333=>1,2818195100=>1,2818194898=>1,2818195431=>1,2818198070=>1,2818198075=>1,2818191095=>1,2818191010=>1,2818182131=>1,2818182099=>1,2818190614=>1,2818190628=>1,2818190679=>1,2818190667=>1,2818182060=>1,2818181910=>1,2818181592=>1,2818181469=>1,2818181628=>1,2818181685=>1,2818181901=>1,2818181804=>1,2818190687=>1,2818190714=>1,2818190827=>1,2818190824=>1,2818190850=>1,2818190922=>1,2818190981=>1,2818190940=>1,2818190821=>1,2818190809=>1,2818190726=>1,2818190715=>1,2818190739=>1,2818190759=>1,2818190776=>1,2794220912=>1,2733860782=>1,2592030201=>1,2592030050=>1,2592032003=>1,2592049669=>1,2600736784=>1,2600731871=>1,2592029799=>1,2592029788=>1,2591504430=>1,2591503605=>1,2591504450=>1,2591527875=>1,2591527883=>1,2591527879=>1,2600737112=>1,2600738753=>1,2606691870=>1,2606691847=>1,2606892293=>1,2606892294=>1,2609186577=>1,2607136305=>1,2606666440=>1,2606665746=>1,2600744601=>1,2600738795=>1,2600745130=>1,2600745979=>1,2600773210=>1,2600756617=>1,2591486729=>1,2591486725=>1,2588486821=>1,2588486817=>1,2588486837=>1,2588486913=>1,2588487162=>1,2588486970=>1,2588486805=>1,2588486762=>1,2588486661=>1,2588484903=>1,2588486665=>1,2588486689=>1,2588486761=>1,2588486757=>1,2588487246=>1,2588488781=>1,2588533342=>1,2588533039=>1,2588533343=>1,2588533347=>1,2588533371=>1,2588533354=>1,2588532235=>1,2588531849=>1,2588508554=>1,2588489034=>1,2588522237=>1,2588525075=>1,2588529730=>1,2609186607=>1,2609194722=>1,2654644893=>1,2654644803=>1,2654644895=>1,2654645455=>1,2655330698=>1,2655325152=>1,2654644802=>1,2654644763=>1,2645888066=>1,2644588865=>1,2653842078=>1,2654066569=>1,2654644742=>1,2654644738=>1,2655330844=>1,2655330845=>1,2655355056=>1,2655350870=>1,2655356627=>1,2655360481=>1,2655366369=>1,2655365520=>1,2655349213=>1,2655348605=>1,2655334422=>1,2655330846=>1,2655334477=>1,2655341391=>1,2655348432=>1,2642058338=>1,2642048493=>1,2630188821=>1,2624465800=>1,2630233741=>1,2630257792=>1,2630315013=>1,2630296423=>1,2620979939=>1,2619547241=>1,2615580026=>1,2614064550=>1,2617169821=>1,2617177690=>1,2617177763=>1,2617177733=>1,2630320355=>1,2630426624=>1,2635704872=>1,2635688979=>1,2635705639=>1,2635718907=>1,2642047956=>1,2642047543=>1,2634532184=>1,2634520702=>1,2630824675=>1,2630822418=>1,2631026740=>1,2634494732=>1,2634495348=>1,2588482808=>1,2588482772=>1,2560631723=>1,2557509645=>1,2563539114=>1,2563657322=>1,2565287304=>1,2565287298=>1,2553043558=>1,2553043557=>1,2549901963=>1,2549898732=>1,2550723613=>1,2551848598=>1,2551858463=>1,2551858462=>1,2565511044=>1,2566519951=>1,2574789257=>1,2573586579=>1,2574853542=>1,2574918516=>1,2574921914=>1,2574918548=>1,2573543049=>1,2572975977=>1,2568208323=>1,2566946991=>1,2569333122=>1,2572954714=>1,2572975635=>1,2572954783=>1,2549898685=>1,2549898676=>1,2549897816=>1,2549897786=>1,2549897834=>1,2549897878=>1,2549898027=>1,2549897902=>1,2549897764=>1,2549897210=>1,2549894661=>1,2549894175=>1,2549894905=>1,2549895012=>1,2549896064=>1,2549895656=>1,2549898028=>1,2549898153=>1,2549898567=>1,2549898561=>1,2549898575=>1,2549898633=>1,2549898641=>1,2549898636=>1,2549898551=>1,2549898541=>1,2549898288=>1,2549898252=>1,2549898309=>1,2549898400=>1,2549898521=>1,2575226291=>1,2575302173=>1,2588300414=>1,2588299978=>1,2588300815=>1,2588300818=>1,2588301030=>1,2588300900=>1,2588299954=>1,2588299873=>1,2588299812=>1,2588299809=>1,2588299814=>1,2588299841=>1,2588299851=>1,2588299846=>1,2588301320=>1,2588339366=>1,2588476494=>1,2588476492=>1,2588476888=>1,2588476956=>1,2588477053=>1,2588477007=>1,2588476471=>1,2588460354=>1,2588342215=>1,2588342210=>1,2588422261=>1,2588422379=>1,2588460334=>1,2588299801=>1,2588299799=>1,2583725710=>1,2583725167=>1,2583726173=>1,2583726227=>1,2583727890=>1,2583727888=>1,2583724758=>1,2583694570=>1,2576704251=>1,2575302451=>1,2576875437=>1,2580456037=>1,2583693468=>1,2581220337=>1,2583727896=>1,2586030049=>1,2588079713=>1,2588003460=>1,2588080991=>1,2588265682=>1,2588299792=>1,2588299781=>1,2587953001=>1,2587952218=>1,2587939310=>1,2587594572=>1,2587940609=>1,2587940619=>1,2587940862=>1,2655371484=>1,2655371812=>1,2731807848=>1,2731794821=>1,2731808085=>1,2731808089=>1,2731826949=>1,2731818229=>1,2731794665=>1,2731792650=>1,2731781654=>1,2731781508=>1,2731781675=>1,2731781678=>1,2731792624=>1,2731792395=>1,2731838134=>1,2731844082=>1,2731926139=>1,2731926022=>1,2731926219=>1,2731926596=>1,2731926876=>1,2731926598=>1,2731876982=>1,2731873796=>1,2731853338=>1,2731852871=>1,2731853397=>1,2731853427=>1,2731868403=>1,2731860315=>1,2731781506=>1,2731774229=>1,2720466249=>1,2719069793=>1,2720543467=>1,2722651818=>1,2722664258=>1,2722663695=>1,2719044378=>1,2714377973=>1,2704646248=>1,2704636056=>1,2708755425=>1,2710280381=>1,2714376505=>1,2714375156=>1,2722665081=>1,2722668683=>1,2731691034=>1,2731541655=>1,2731722258=>1,2731740958=>1,2731768412=>1,2731768408=>1,2731306175=>1,2730949508=>1,2726237979=>1,2722678445=>1,2727397847=>1,2730553217=>1,2730672985=>1,2731927407=>1,2731927435=>1,2733846611=>1,2733844641=>1,2733846651=>1,2733848533=>1,2733850908=>1,2733848870=>1,2733844261=>1,2733838430=>1,2733105337=>1,2732658071=>1,2733491443=>1,2733836449=>1,2733837376=>1,2733836530=>1,2733852824=>1,2733853552=>1,2733858688=>1,2733857627=>1,2733858846=>1,2733859656=>1,2549893973=>1,2733860065=>1,2733857355=>1,2733857318=>1,2733853935=>1,2733853644=>1,2733855151=>1,2733855304=>1,2733855630=>1,2732565855=>1,2732546291=>1,2732262493=>1,2732257149=>1,2732263086=>1,2732298930=>1,2732340588=>1,2732328980=>1,2732245636=>1,2732245555=>1,2732119309=>1,2731930398=>1,2732122143=>1,2732138853=>1,2732245421=>1,2732139375=>1,2732341199=>1,2732382514=>1,2732501634=>1,2732501150=>1,2732501706=>1,2732501712=>1,2732536004=>1,2732501795=>1,2732494182=>1,2732461283=>1,2732390118=>1,2732382829=>1,2732395760=>1,2732444390=>1,2732460034=>1,2702588871=>1,2701841352=>1,2677323165=>1,2677323079=>1,2677324410=>1,2680881494=>1,2680883910=>1,2680881668=>1,2677299524=>1,2677294777=>1,2667566258=>1,2667513586=>1,2667566889=>1,2668118781=>1,2675368530=>1,2668151598=>1,2680883980=>1,2680884305=>1,2680891130=>1,2680889493=>1,2680893102=>1,2680893230=>1,2680899393=>1,2680899341=>1,2680888069=>1,2680887701=>1,2680885481=>1,2680885128=>1,2680885607=>1,2680885859=>1,2680886835=>1,2680886736=>1,2667512563=>1,2665376009=>1,2655375241=>1,2655374962=>1,2655375320=>1,2655375491=>1,2655376216=>1,2655375896=>1,2655374911=>1,2655374839=>1,2655373068=>1,2655372209=>1,2655373797=>1,2655374372=>1,2655374796=>1,2655374780=>1,2655376650=>1,26553770