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

Version Description

Improvements - Improved proxy detection feature

Download this release

Release Info

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

Code changes from version 3.0.10 to 3.0.11

Files changed (42) hide show
  1. engine/GoodByeCaptchaAdmin.php +25 -7
  2. engine/admin/pages/GdbcBaseAdminPage.php +5 -5
  3. engine/modules/email-notifications/GdbcEmailNotificationsAdminModule.php +1 -1
  4. engine/modules/email-notifications/templates/notification-admin-logged-in.php +1 -1
  5. engine/modules/proxy-headers/partials/admin-settings.php +3 -1
  6. engine/modules/wordpress/GdbcWordPressPublicModule.php +1 -1
  7. goodbye-captcha.php +3 -2
  8. includes/vendor/MchHttp/MchGdbcTrustedIPRanges.php +31 -20
  9. includes/vendor/MchHttp/MchGdbcUnTrustedIPRanges.php +529 -1372
  10. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-0.php +1 -1
  11. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-1.php +1 -1
  12. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-10.php +1 -1
  13. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-11.php +1 -1
  14. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-12.php +1 -1
  15. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-13.php +1 -1
  16. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-14.php +1 -1
  17. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-15.php +1 -1
  18. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-16.php +1 -1
  19. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-17.php +1 -1
  20. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-18.php +1 -1
  21. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-19.php +1 -1
  22. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-2.php +1 -1
  23. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-20.php +1 -1
  24. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-21.php +1 -1
  25. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-22.php +1 -1
  26. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-23.php +1 -1
  27. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-24.php +1 -1
  28. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-25.php +1 -1
  29. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-26.php +1 -1
  30. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-27.php +1 -1
  31. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-28.php +1 -1
  32. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-29.php +1 -1
  33. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-3.php +1 -1
  34. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-30.php +1 -1
  35. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-31.php +1 -1
  36. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-32.php +1 -1
  37. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-33.php +1 -1
  38. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-34.php +1 -1
  39. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-35.php +1 -1
  40. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-36.php +1 -1
  41. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-37.php +1 -1
  42. includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-38.php +1 -1
engine/GoodByeCaptchaAdmin.php CHANGED
@@ -102,12 +102,30 @@ final class GoodByeCaptchaAdmin extends MchGdbcBaseAdminPlugin
102
 
103
  }
104
 
105
-
106
  if(MchGdbcHttpRequest::isThroughProxy() && !MchGdbcHttpRequest::getDetectedProxyServiceId())
107
  {
108
- $trustedProxyHeaders = GdbcProxyHeadersAdminModule::getInstance()->getOption(GdbcProxyHeadersAdminModule::PROXY_HEADERS_IP);
109
- if(empty($trustedProxyHeaders))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  {
 
111
  $settingsPageUrl = GdbcBaseAdminPage::getPageUrlByName('Settings');
112
  if(null === $settingsPageUrl)
113
  $settingsPageUrl = 'Settings';
@@ -118,15 +136,15 @@ final class GoodByeCaptchaAdmin extends MchGdbcBaseAdminPlugin
118
  $noticeMessage = '<p><b>';
119
  $noticeMessage .= __("WPBruiser has detected that your web site is behind a web proxy server! Please go to $settingsPageUrl and register detected proxy header!", GoodByeCaptcha::PLUGIN_SLUG);
120
  $noticeMessage .= '</b></p>';
121
-
122
  $adminNotice->setMessage($noticeMessage);
123
  $adminNotice->setIsDismissible(true);
124
-
125
  self::$adminNoticesList[] = $adminNotice;
126
-
127
  }
128
  }
129
-
130
  }
131
 
132
  public function renderPluginActiveAdminPage()
102
 
103
  }
104
 
105
+
106
  if(MchGdbcHttpRequest::isThroughProxy() && !MchGdbcHttpRequest::getDetectedProxyServiceId())
107
  {
108
+ $trustedProxyHeaders = (array)GdbcProxyHeadersAdminModule::getInstance()->getOption(GdbcProxyHeadersAdminModule::PROXY_HEADERS_IP);
109
+
110
+ $detectedIpProxyHeaders = (array)MchGdbcHttpRequest::getDetectedProxyHeaders();
111
+ foreach($detectedIpProxyHeaders as $index => $header)
112
+ {
113
+ $proxyReportedIp = MchGdbcHttpRequest::getClientIpAddressFromProxyHeader($header);
114
+ if(empty($proxyReportedIp) || $proxyReportedIp === GdbcIPUtils::getClientIpAddress()) {
115
+ unset($detectedIpProxyHeaders[$index]);
116
+ continue;
117
+ }
118
+
119
+ if(in_array($header, $trustedProxyHeaders)){
120
+ unset($detectedIpProxyHeaders[$index]);
121
+ continue;
122
+ }
123
+ }
124
+
125
+
126
+ if(!empty($detectedIpProxyHeaders) && empty($trustedProxyHeaders))
127
  {
128
+
129
  $settingsPageUrl = GdbcBaseAdminPage::getPageUrlByName('Settings');
130
  if(null === $settingsPageUrl)
131
  $settingsPageUrl = 'Settings';
136
  $noticeMessage = '<p><b>';
137
  $noticeMessage .= __("WPBruiser has detected that your web site is behind a web proxy server! Please go to $settingsPageUrl and register detected proxy header!", GoodByeCaptcha::PLUGIN_SLUG);
138
  $noticeMessage .= '</b></p>';
139
+
140
  $adminNotice->setMessage($noticeMessage);
141
  $adminNotice->setIsDismissible(true);
142
+
143
  self::$adminNoticesList[] = $adminNotice;
144
+
145
  }
146
  }
147
+
148
  }
149
 
150
  public function renderPluginActiveAdminPage()
engine/admin/pages/GdbcBaseAdminPage.php CHANGED
@@ -362,11 +362,11 @@ abstract class GdbcBaseAdminPage extends MchGdbcBaseAdminPage
362
 
363
  );
364
 
365
- // foreach($arrPremiumExtensions as $index => $arrExtensionInfo)
366
- // {
367
- // if(GdbcModulesController::isModuleIncludedInProBundle($arrExtensionInfo['module']))
368
- // unset($arrPremiumExtensions[$index]);
369
- // }
370
 
371
  if( !$forRightSide ) {
372
  return $arrPremiumExtensions;
362
 
363
  );
364
 
365
+ foreach($arrPremiumExtensions as $index => $arrExtensionInfo)
366
+ {
367
+ if(GdbcModulesController::isModuleIncludedInProBundle($arrExtensionInfo['module']))
368
+ unset($arrPremiumExtensions[$index]);
369
+ }
370
 
371
  if( !$forRightSide ) {
372
  return $arrPremiumExtensions;
engine/modules/email-notifications/GdbcEmailNotificationsAdminModule.php CHANGED
@@ -47,7 +47,7 @@ class GdbcEmailNotificationsAdminModule extends GdbcBaseAdminModule
47
  self::OPTION_ADMIN_LOGGED_IN_DETECTED => array(
48
  'Value' => true,
49
  'LabelText' => __('An Administrator Signs In', GoodByeCaptcha::PLUGIN_SLUG),
50
- 'Description' => __('A notification email will be sent when an user with administrator capabilities signs in', GoodByeCaptcha::PLUGIN_SLUG),
51
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
52
  ),
53
 
47
  self::OPTION_ADMIN_LOGGED_IN_DETECTED => array(
48
  'Value' => true,
49
  'LabelText' => __('An Administrator Signs In', GoodByeCaptcha::PLUGIN_SLUG),
50
+ 'Description' => __('A notification email will be sent when a user with administrator capabilities signs in', GoodByeCaptcha::PLUGIN_SLUG),
51
  'InputType' => MchGdbcHtmlUtils::FORM_ELEMENT_INPUT_CHECKBOX
52
  ),
53
 
engine/modules/email-notifications/templates/notification-admin-logged-in.php CHANGED
@@ -1,5 +1,5 @@
1
  <p>Hi {admin-full-name},</p>
2
- <p>On {date-time}, an user with Administrator Capabilities signed in on your {current-site-link} website.</p>
3
 
4
 
5
  <table width="100%" cellpadding = "0" cellspacing="0" style="border:1px solid #ddd; background-color: transparent; border-spacing:0; border-collapse: collapse">
1
  <p>Hi {admin-full-name},</p>
2
+ <p>On {date-time}, a user with Administrator Capabilities signed in on your {current-site-link} website.</p>
3
 
4
 
5
  <table width="100%" cellpadding = "0" cellspacing="0" style="border:1px solid #ddd; background-color: transparent; border-spacing:0; border-collapse: collapse">
engine/modules/proxy-headers/partials/admin-settings.php CHANGED
@@ -196,9 +196,11 @@ foreach($detectedIpProxyHeaders as $index => $header)
196
  foreach($detectedIpProxyHeaders as $index => $proxyHeader)
197
  {
198
 
199
- if(in_array($proxyHeader, (array)GdbcProxyHeadersAdminModule::getInstance()->getOption(GdbcProxyHeadersAdminModule::PROXY_HEADERS_IP)))
200
  continue;
201
 
 
 
202
 
203
  if(MchGdbcHttpRequest::getClientIpAddressFromProxyHeader($proxyHeader) == GdbcIPUtils::getClientIpAddress())
204
  continue;
196
  foreach($detectedIpProxyHeaders as $index => $proxyHeader)
197
  {
198
 
199
+ if(!empty($detectedProxyService))
200
  continue;
201
 
202
+ if(in_array($proxyHeader, (array)GdbcProxyHeadersAdminModule::getInstance()->getOption(GdbcProxyHeadersAdminModule::PROXY_HEADERS_IP)))
203
+ continue;
204
 
205
  if(MchGdbcHttpRequest::getClientIpAddressFromProxyHeader($proxyHeader) == GdbcIPUtils::getClientIpAddress())
206
  continue;
engine/modules/wordpress/GdbcWordPressPublicModule.php CHANGED
@@ -59,7 +59,7 @@ class GdbcWordPressPublicModule extends GdbcBasePublicModule
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
  {
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'), -10);
63
 
64
  if(function_exists('wp_get_comment_fields_max_lengths')) // Available since WordPress 4.5
65
  {
goodbye-captcha.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: WPBruiser
11
  * Plugin URI: http://www.wpbruiser.com
12
  * Description: An extremely powerful anti-spam plugin that blocks spambots without annoying captcha images.
13
- * Version: 3.0.10
14
  * Author: Mihai Chelaru
15
  * Author URI: http://www.wpbruiser.com
16
  * Text Domain: wp-bruiser
@@ -18,11 +18,12 @@
18
  */
19
 
20
 
 
21
  if(!class_exists('GoodByeCaptcha', false))
22
  {
23
  class GoodByeCaptcha
24
  {
25
- CONST PLUGIN_VERSION = '3.0.10';
26
  CONST PLUGIN_SLUG = 'wp-bruiser';
27
  CONST PLUGIN_NAME = 'WPBruiser';
28
  CONST PLUGIN_SITE_URL = 'http://www.wpbruiser.com';
10
  * Plugin Name: WPBruiser
11
  * Plugin URI: http://www.wpbruiser.com
12
  * Description: An extremely powerful anti-spam plugin that blocks spambots without annoying captcha images.
13
+ * Version: 3.0.11
14
  * Author: Mihai Chelaru
15
  * Author URI: http://www.wpbruiser.com
16
  * Text Domain: wp-bruiser
18
  */
19
 
20
 
21
+
22
  if(!class_exists('GoodByeCaptcha', false))
23
  {
24
  class GoodByeCaptcha
25
  {
26
+ CONST PLUGIN_VERSION = '3.0.11';
27
  CONST PLUGIN_SLUG = 'wp-bruiser';
28
  CONST PLUGIN_NAME = 'WPBruiser';
29
  CONST PLUGIN_SITE_URL = 'http://www.wpbruiser.com';
includes/vendor/MchHttp/MchGdbcTrustedIPRanges.php CHANGED
@@ -6,88 +6,98 @@ final class MchGdbcTrustedIPRanges
6
  {
7
  public static function isIPInCloudFlareRanges($ipAddress, $ipVersion)
8
  {
9
-
10
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
11
  ?
12
  self::isIPInRanges($ipAddress, $ipVersion, array(1729491968=>1729492991,1729546240=>1729547263,1730085888=>1730086911,1745879040=>1746927615,1822605312=>1822621695,2197833728=>2197834751,2372222976=>2372239359,2728263680=>2728394751,2889875456=>2890399743,2918526976=>2918531071,3161612288=>3161616383,3193827328=>3193831423,3320508416=>3320509439,3324608512=>3324641279,3340468224=>3340470271,))
13
  :
14
  self::isIPInRanges($ipAddress, $ipVersion, array('2400:cb00::/32'=>1,'2405:8100::/32'=>1,'2405:b500::/32'=>1,'2606:4700::/32'=>1,'2803:f800::/32'=>1,));
15
-
16
  }
17
-
18
-
19
  public static function isIPInRackSpaceRanges($ipAddress, $ipVersion)
20
  {
 
21
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
22
  ?
23
  self::isIPInRanges($ipAddress, $ipVersion, array(179828736=>179828991,179829248=>179830271,180076032=>180076543,180092416=>180092671,180220928=>180221951,180222976=>180223231,180223488=>180223999,180289024=>180289535,))
24
  :
25
  self::isIPInRanges($ipAddress, $ipVersion, array());
26
-
27
  }
28
-
29
  public static function isIPInIncapsulaRanges($ipAddress, $ipVersion)
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
-
37
  }
38
-
39
-
40
  public static function isIPInAmazonCloudFrontRanges($ipAddress, $ipVersion)
41
  {
 
42
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
43
  ?
44
  self::isIPInRanges($ipAddress, $ipVersion, array(877920256=>878051327,917897216=>917962751,918552576=>918618111,921042944=>921108479,921665536=>921690111,921731072=>921747455,3438715904=>3438717951,3438718464=>3438723071,3455827968=>3455836159,3455842560=>3455844095,3632865280=>3632873471,))
45
  :
46
  self::isIPInRanges($ipAddress, $ipVersion, array());
47
-
48
  }
49
-
50
  public static function isIPInAmazonEC2Ranges($ipAddress, $ipVersion)
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
-
58
  }
59
-
60
  public static function isIPInAutomatticRanges($ipAddress, $ipVersion)
61
  {
 
62
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
63
  ?
64
  self::isIPInRanges($ipAddress, $ipVersion, array(1076022784=>1076023039,1116156032=>1116156159,1117464064=>1117464319,1169094784=>1169094911,1279981696=>1279981823,1279983104=>1279983231,1279983360=>1279983487,3221241856=>3221258239,3333780480=>3333781503,3485885696=>3485885823,3485888512=>3485889023,3507426560=>3507426815,3633828160=>3633828223,3633828352=>3633828479,))
65
  :
66
  self::isIPInRanges($ipAddress, $ipVersion, array('2620:115:c000::/44'=>1,));
67
-
68
  }
69
-
70
  public static function isIPInSucuriCloudProxyRanges($ipAddress, $ipVersion)
71
  {
 
72
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
73
  ?
74
  self::isIPInRanges($ipAddress, $ipVersion, array(1123600384=>1123601407,3109938176=>3109939199,3227026944=>3227027455,3229415680=>3229415935,))
75
  :
76
  self::isIPInRanges($ipAddress, $ipVersion, array('2a02:fe80::/29'=>1,));
77
-
78
  }
79
-
 
 
 
 
 
80
  private static function isIPInRanges($ipAddress, $ipVersion, $arrIPs)
81
  {
82
  if( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
83
  {
84
- $ipNumber = MchGdbcIPUtils::ipAddressToNumber($ipAddress, $ipVersion, true);
85
 
86
  if( isset($arrIPs[$ipNumber]) )
87
  return true;
88
 
89
  foreach($arrIPs as $minIpNumber => $maxIpNumber)
90
  {
 
91
  if( $ipNumber < $minIpNumber ) // the array is already sorted by key
92
  return false;
93
 
@@ -108,5 +118,6 @@ final class MchGdbcTrustedIPRanges
108
 
109
  return false;
110
  }
111
-
 
112
  }
6
  {
7
  public static function isIPInCloudFlareRanges($ipAddress, $ipVersion)
8
  {
9
+
10
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
11
  ?
12
  self::isIPInRanges($ipAddress, $ipVersion, array(1729491968=>1729492991,1729546240=>1729547263,1730085888=>1730086911,1745879040=>1746927615,1822605312=>1822621695,2197833728=>2197834751,2372222976=>2372239359,2728263680=>2728394751,2889875456=>2890399743,2918526976=>2918531071,3161612288=>3161616383,3193827328=>3193831423,3320508416=>3320509439,3324608512=>3324641279,3340468224=>3340470271,))
13
  :
14
  self::isIPInRanges($ipAddress, $ipVersion, array('2400:cb00::/32'=>1,'2405:8100::/32'=>1,'2405:b500::/32'=>1,'2606:4700::/32'=>1,'2803:f800::/32'=>1,));
15
+
16
  }
17
+
 
18
  public static function isIPInRackSpaceRanges($ipAddress, $ipVersion)
19
  {
20
+
21
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
22
  ?
23
  self::isIPInRanges($ipAddress, $ipVersion, array(179828736=>179828991,179829248=>179830271,180076032=>180076543,180092416=>180092671,180220928=>180221951,180222976=>180223231,180223488=>180223999,180289024=>180289535,))
24
  :
25
  self::isIPInRanges($ipAddress, $ipVersion, array());
26
+
27
  }
28
+
29
  public static function isIPInIncapsulaRanges($ipAddress, $ipVersion)
30
  {
31
+
32
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
33
  ?
34
  self::isIPInRanges($ipAddress, $ipVersion, array(759185408=>759186431,1729951744=>1729952767,1805286912=>1805287167,2508081152=>2508083199,3104537600=>3104538623,3236315136=>3236331519,3331268608=>3331276799,3344138240=>3344140287,))
35
  :
36
  self::isIPInRanges($ipAddress, $ipVersion, array('2a02:e980::/29'=>1,));
37
+
38
  }
39
+
 
40
  public static function isIPInAmazonCloudFrontRanges($ipAddress, $ipVersion)
41
  {
42
+
43
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
44
  ?
45
  self::isIPInRanges($ipAddress, $ipVersion, array(877920256=>878051327,917897216=>917962751,918552576=>918618111,921042944=>921108479,921665536=>921690111,921731072=>921747455,3438715904=>3438717951,3438718464=>3438723071,3455827968=>3455836159,3455842560=>3455844095,3632865280=>3632873471,))
46
  :
47
  self::isIPInRanges($ipAddress, $ipVersion, array());
48
+
49
  }
50
+
51
  public static function isIPInAmazonEC2Ranges($ipAddress, $ipVersion)
52
  {
53
+
54
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
55
  ?
56
+ 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=>878704895,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,))
57
  :
58
  self::isIPInRanges($ipAddress, $ipVersion, array());
59
+
60
  }
61
+
62
  public static function isIPInAutomatticRanges($ipAddress, $ipVersion)
63
  {
64
+
65
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
66
  ?
67
  self::isIPInRanges($ipAddress, $ipVersion, array(1076022784=>1076023039,1116156032=>1116156159,1117464064=>1117464319,1169094784=>1169094911,1279981696=>1279981823,1279983104=>1279983231,1279983360=>1279983487,3221241856=>3221258239,3333780480=>3333781503,3485885696=>3485885823,3485888512=>3485889023,3507426560=>3507426815,3633828160=>3633828223,3633828352=>3633828479,))
68
  :
69
  self::isIPInRanges($ipAddress, $ipVersion, array('2620:115:c000::/44'=>1,));
70
+
71
  }
72
+
73
  public static function isIPInSucuriCloudProxyRanges($ipAddress, $ipVersion)
74
  {
75
+
76
  return ( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
77
  ?
78
  self::isIPInRanges($ipAddress, $ipVersion, array(1123600384=>1123601407,3109938176=>3109939199,3227026944=>3227027455,3229415680=>3229415935,))
79
  :
80
  self::isIPInRanges($ipAddress, $ipVersion, array('2a02:fe80::/29'=>1,));
81
+
82
  }
83
+
84
+ public static function isIPInTrustedRanges($ipAddress, $ipVersion)
85
+ {
86
+ return self::isIPInCloudFlareRanges($ipAddress, $ipVersion) || self::isIPInRackSpaceRanges($ipAddress, $ipVersion) || self::isIPInIncapsulaRanges($ipAddress, $ipVersion) || self::isIPInAmazonCloudFrontRanges($ipAddress, $ipVersion) || self::isIPInAmazonEC2Ranges($ipAddress, $ipVersion) || self::isIPInAutomatticRanges($ipAddress, $ipVersion) || self::isIPInSucuriCloudProxyRanges($ipAddress, $ipVersion) ;
87
+ }
88
+
89
  private static function isIPInRanges($ipAddress, $ipVersion, $arrIPs)
90
  {
91
  if( $ipVersion === MchGdbcIPUtils::IP_VERSION_4 )
92
  {
93
+ $ipNumber = (float)MchGdbcIPUtils::ipAddressToNumber($ipAddress, $ipVersion, false);
94
 
95
  if( isset($arrIPs[$ipNumber]) )
96
  return true;
97
 
98
  foreach($arrIPs as $minIpNumber => $maxIpNumber)
99
  {
100
+ $minIpNumber < 0 ? $minIpNumber += 4294967296 : null;
101
  if( $ipNumber < $minIpNumber ) // the array is already sorted by key
102
  return false;
103
 
118
 
119
  return false;
120
  }
121
+
122
+
123
  }
includes/vendor/MchHttp/MchGdbcUnTrustedIPRanges.php CHANGED
@@ -7,1574 +7,909 @@ class MchGdbcUnTrustedIPRanges
7
 
8
  if( $ipVersion !== MchGdbcIPUtils::IP_VERSION_4 ) return false;
9
 
10
- $ipNumber = MchGdbcIPUtils::ipAddressToNumber($ipAddress, $ipVersion, true);
11
 
12
  if( $ipNumber < 16815956 )
13
  return false;
14
 
15
- if( (16815956 <= $ipNumber) && ($ipNumber <= 84519908) ){
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){
19
- if( 1 === $maxIpValue ) break;
20
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
21
- return true;
22
- }
23
- return false;
24
  }
25
 
26
- if( $ipNumber < 84520213 )
27
  return false;
28
 
29
- if( (84520213 <= $ipNumber) && ($ipNumber <= 96748572) ){
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){
33
- if( 1 === $maxIpValue ) break;
34
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
35
- return true;
36
- }
37
- return false;
38
  }
39
 
40
- if( $ipNumber < 96749186 )
41
  return false;
42
 
43
- if( (96749186 <= $ipNumber) && ($ipNumber <= 237869658) ){
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){
47
- if( 1 === $maxIpValue ) break;
48
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
49
- return true;
50
- }
51
- return false;
52
  }
53
 
54
- if( $ipNumber < 237871127 )
55
  return false;
56
 
57
- if( (237871127 <= $ipNumber) && ($ipNumber <= 259968819) ){
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 < 259971422 )
69
  return false;
70
 
71
- if( (259971422 <= $ipNumber) && ($ipNumber <= 406275062) ){
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){
75
- if( 1 === $maxIpValue ) break;
76
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
77
- return true;
78
- }
79
- return false;
80
  }
81
 
82
- if( $ipNumber < 406282032 )
83
  return false;
84
 
85
- if( (406282032 <= $ipNumber) && ($ipNumber <= 523648771) ){
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){
89
- if( 1 === $maxIpValue ) break;
90
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
91
- return true;
92
- }
93
- return false;
94
  }
95
 
96
- if( $ipNumber < 523768085 )
97
  return false;
98
 
99
- if( (523768085 <= $ipNumber) && ($ipNumber <= 623821333) ){
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){
103
- if( 1 === $maxIpValue ) break;
104
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
105
- return true;
106
- }
107
- return false;
108
  }
109
 
110
- if( $ipNumber < 623821873 )
111
  return false;
112
 
113
- if( (623821873 <= $ipNumber) && ($ipNumber <= 666124882) ){
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){
117
- if( 1 === $maxIpValue ) break;
118
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
119
- return true;
120
- }
121
- return false;
122
  }
123
 
124
- if( $ipNumber < 666124885 )
125
  return false;
126
 
127
- if( (666124885 <= $ipNumber) && ($ipNumber <= 703153173) ){
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){
131
- if( 1 === $maxIpValue ) break;
132
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
133
- return true;
134
- }
135
- return false;
136
  }
137
 
138
- if( $ipNumber < 703164773 )
139
  return false;
140
 
141
- if( (703164773 <= $ipNumber) && ($ipNumber <= 757271490) ){
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){
145
- if( 1 === $maxIpValue ) break;
146
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
147
- return true;
148
- }
149
- return false;
150
  }
151
 
152
- if( $ipNumber < 757271793 )
153
  return false;
154
 
155
- if( (757271793 <= $ipNumber) && ($ipNumber <= 778696627) ){
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){
159
- if( 1 === $maxIpValue ) break;
160
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
161
- return true;
162
- }
163
- return false;
164
  }
165
 
166
- if( $ipNumber < 778697334 )
167
  return false;
168
 
169
- if( (778697334 <= $ipNumber) && ($ipNumber <= 786744522) ){
170
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-11.php';
171
- if( isset($a[$ipNumber]) ) return true;
172
- foreach($a as $minIpValue => $maxIpValue){
173
- if( 1 === $maxIpValue ) break;
174
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
175
- return true;
176
- }
177
- return false;
178
  }
179
 
180
- if( $ipNumber < 786744716 )
181
  return false;
182
 
183
- if( (786744716 <= $ipNumber) && ($ipNumber <= 842609105) ){
184
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-12.php';
185
- if( isset($a[$ipNumber]) ) return true;
186
- foreach($a as $minIpValue => $maxIpValue){
187
- if( 1 === $maxIpValue ) break;
188
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
189
- return true;
190
- }
191
- return false;
192
  }
193
 
194
- if( $ipNumber < 842610231 )
195
  return false;
196
 
197
- if( (842610231 <= $ipNumber) && ($ipNumber <= 916007046) ){
198
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-13.php'; return isset($a[$ipNumber]);
199
  }
200
 
201
- if( $ipNumber < 916011294 )
202
  return false;
203
 
204
- if( (916011294 <= $ipNumber) && ($ipNumber <= 982993659) ){
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;
209
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
210
- return true;
211
- }
212
- return false;
213
  }
214
 
215
- if( $ipNumber < 983023269 )
216
  return false;
217
 
218
- if( (983023269 <= $ipNumber) && ($ipNumber <= 990351849) ){
219
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-15.php'; return isset($a[$ipNumber]);
220
  }
221
 
222
- if( $ipNumber < 990352548 )
223
  return false;
224
 
225
- if( (990352548 <= $ipNumber) && ($ipNumber <= 997442696) ){
226
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-16.php'; return isset($a[$ipNumber]);
227
  }
228
 
229
- if( $ipNumber < 997443399 )
230
  return false;
231
 
232
- if( (997443399 <= $ipNumber) && ($ipNumber <= 1017977509) ){
233
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-17.php';
234
- if( isset($a[$ipNumber]) ) return true;
235
- foreach($a as $minIpValue => $maxIpValue){
236
- if( 1 === $maxIpValue ) break;
237
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
238
- return true;
239
- }
240
- return false;
241
  }
242
 
243
- if( $ipNumber < 1017977517 )
244
  return false;
245
 
246
- if( (1017977517 <= $ipNumber) && ($ipNumber <= 1025984682) ){
247
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-18.php';
248
- if( isset($a[$ipNumber]) ) return true;
249
- foreach($a as $minIpValue => $maxIpValue){
250
- if( 1 === $maxIpValue ) break;
251
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
252
- return true;
253
- }
254
- return false;
255
  }
256
 
257
- if( $ipNumber < 1025988256 )
258
  return false;
259
 
260
- if( (1025988256 <= $ipNumber) && ($ipNumber <= 1033072147) ){
261
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-19.php';
262
- if( isset($a[$ipNumber]) ) return true;
263
- foreach($a as $minIpValue => $maxIpValue){
264
- if( 1 === $maxIpValue ) break;
265
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
266
- return true;
267
- }
268
- return false;
269
  }
270
 
271
- if( $ipNumber < 1033072149 )
272
  return false;
273
 
274
- if( (1033072149 <= $ipNumber) && ($ipNumber <= 1035452420) ){
275
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-20.php'; return isset($a[$ipNumber]);
276
  }
277
 
278
- if( $ipNumber < 1035456266 )
279
  return false;
280
 
281
- if( (1035456266 <= $ipNumber) && ($ipNumber <= 1049436605) ){
282
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-21.php';
283
- if( isset($a[$ipNumber]) ) return true;
284
- foreach($a as $minIpValue => $maxIpValue){
285
- if( 1 === $maxIpValue ) break;
286
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
287
- return true;
288
- }
289
- return false;
290
  }
291
 
292
- if( $ipNumber < 1049436641 )
293
  return false;
294
 
295
- if( (1049436641 <= $ipNumber) && ($ipNumber <= 1069582388) ){
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){
299
- if( 1 === $maxIpValue ) break;
300
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
301
- return true;
302
- }
303
- return false;
304
  }
305
 
306
- if( $ipNumber < 1069650365 )
307
  return false;
308
 
309
- if( (1069650365 <= $ipNumber) && ($ipNumber <= 1086521363) ){
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){
313
- if( 1 === $maxIpValue ) break;
314
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
315
- return true;
316
- }
317
- return false;
318
  }
319
 
320
- if( $ipNumber < 1086589674 )
321
  return false;
322
 
323
- if( (1086589674 <= $ipNumber) && ($ipNumber <= 1121674340) ){
324
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-24.php'; return isset($a[$ipNumber]);
325
  }
326
 
327
- if( $ipNumber < 1121674418 )
328
  return false;
329
 
330
- if( (1121674418 <= $ipNumber) && ($ipNumber <= 1158434228) ){
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;
335
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
336
- return true;
337
- }
338
- return false;
339
  }
340
 
341
- if( $ipNumber < 1158434247 )
342
  return false;
343
 
344
- if( (1158434247 <= $ipNumber) && ($ipNumber <= 1180214022) ){
345
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-26.php';
346
- if( isset($a[$ipNumber]) ) return true;
347
- foreach($a as $minIpValue => $maxIpValue){
348
- if( 1 === $maxIpValue ) break;
349
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
350
- return true;
351
- }
352
- return false;
353
  }
354
 
355
- if( $ipNumber < 1180219717 )
356
  return false;
357
 
358
- if( (1180219717 <= $ipNumber) && ($ipNumber <= 1245157938) ){
359
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-27.php';
360
- if( isset($a[$ipNumber]) ) return true;
361
- foreach($a as $minIpValue => $maxIpValue){
362
- if( 1 === $maxIpValue ) break;
363
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
364
- return true;
365
- }
366
- return false;
367
  }
368
 
369
- if( $ipNumber < 1245163266 )
370
  return false;
371
 
372
- if( (1245163266 <= $ipNumber) && ($ipNumber <= 1276428407) ){
373
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-28.php'; return isset($a[$ipNumber]);
374
  }
375
 
376
- if( $ipNumber < 1276438937 )
377
  return false;
378
 
379
- if( (1276438937 <= $ipNumber) && ($ipNumber <= 1310791669) ){
380
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-29.php'; return isset($a[$ipNumber]);
381
  }
382
 
383
- if( $ipNumber < 1310798964 )
384
  return false;
385
 
386
- if( (1310798964 <= $ipNumber) && ($ipNumber <= 1327041665) ){
387
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-30.php'; return isset($a[$ipNumber]);
388
  }
389
 
390
- if( $ipNumber < 1327065976 )
391
  return false;
392
 
393
- if( (1327065976 <= $ipNumber) && ($ipNumber <= 1347567746) ){
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;
398
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
399
- return true;
400
- }
401
- return false;
402
  }
403
 
404
- if( $ipNumber < 1347567748 )
405
  return false;
406
 
407
- if( (1347567748 <= $ipNumber) && ($ipNumber <= 1368678712) ){
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;
412
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
413
- return true;
414
- }
415
- return false;
416
  }
417
 
418
- if( $ipNumber < 1368720336 )
419
  return false;
420
 
421
- if( (1368720336 <= $ipNumber) && ($ipNumber <= 1386596262) ){
422
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-33.php'; return isset($a[$ipNumber]);
423
  }
424
 
425
- if( $ipNumber < 1386596321 )
426
  return false;
427
 
428
- if( (1386596321 <= $ipNumber) && ($ipNumber <= 1408173222) ){
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;
433
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
434
- return true;
435
- }
436
- return false;
437
  }
438
 
439
- if( $ipNumber < 1408174898 )
440
  return false;
441
 
442
- if( (1408174898 <= $ipNumber) && ($ipNumber <= 1430126043) ){
443
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-35.php'; return isset($a[$ipNumber]);
444
  }
445
 
446
- if( $ipNumber < 1430128653 )
447
  return false;
448
 
449
- if( (1430128653 <= $ipNumber) && ($ipNumber <= 1440147496) ){
450
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-36.php';
451
- if( isset($a[$ipNumber]) ) return true;
452
- foreach($a as $minIpValue => $maxIpValue){
453
- if( 1 === $maxIpValue ) break;
454
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
455
- return true;
456
- }
457
- return false;
458
  }
459
 
460
- if( $ipNumber < 1440147686 )
461
  return false;
462
 
463
- if( (1440147686 <= $ipNumber) && ($ipNumber <= 1466629033) ){
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;
468
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
469
- return true;
470
- }
471
- return false;
472
  }
473
 
474
- if( $ipNumber < 1466629148 )
475
  return false;
476
 
477
- if( (1466629148 <= $ipNumber) && ($ipNumber <= 1488859022) ){
478
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-38.php'; return isset($a[$ipNumber]);
479
  }
480
 
481
- if( $ipNumber < 1488859026 )
482
  return false;
483
 
484
- if( (1488859026 <= $ipNumber) && ($ipNumber <= 1495874650) ){
485
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-39.php'; return isset($a[$ipNumber]);
486
  }
487
 
488
- if( $ipNumber < 1495874798 )
489
  return false;
490
 
491
- if( (1495874798 <= $ipNumber) && ($ipNumber <= 1521522375) ){
492
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-40.php'; return isset($a[$ipNumber]);
493
  }
494
 
495
- if( $ipNumber < 1521522941 )
496
  return false;
497
 
498
- if( (1521522941 <= $ipNumber) && ($ipNumber <= 1540379716) ){
499
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-41.php';
500
- if( isset($a[$ipNumber]) ) return true;
501
- foreach($a as $minIpValue => $maxIpValue){
502
- if( 1 === $maxIpValue ) break;
503
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
504
- return true;
505
- }
506
- return false;
507
  }
508
 
509
- if( $ipNumber < 1540390194 )
510
  return false;
511
 
512
- if( (1540390194 <= $ipNumber) && ($ipNumber <= 1551023887) ){
513
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-42.php';
514
- if( isset($a[$ipNumber]) ) return true;
515
- foreach($a as $minIpValue => $maxIpValue){
516
- if( 1 === $maxIpValue ) break;
517
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
518
- return true;
519
- }
520
- return false;
521
  }
522
 
523
- if( $ipNumber < 1551050248 )
524
  return false;
525
 
526
- if( (1551050248 <= $ipNumber) && ($ipNumber <= 1572343171) ){
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;
531
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
532
- return true;
533
- }
534
- return false;
535
  }
536
 
537
- if( $ipNumber < 1572348039 )
538
  return false;
539
 
540
- if( (1572348039 <= $ipNumber) && ($ipNumber <= 1587301824) ){
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;
545
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
546
- return true;
547
- }
548
- return false;
549
  }
550
 
551
- if( $ipNumber < 1587312297 )
552
  return false;
553
 
554
- if( (1587312297 <= $ipNumber) && ($ipNumber <= 1602358187) ){
555
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-45.php'; return isset($a[$ipNumber]);
556
  }
557
 
558
- if( $ipNumber < 1602358233 )
559
  return false;
560
 
561
- if( (1602358233 <= $ipNumber) && ($ipNumber <= 1618970493) ){
562
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-46.php';
563
- if( isset($a[$ipNumber]) ) return true;
564
- foreach($a as $minIpValue => $maxIpValue){
565
- if( 1 === $maxIpValue ) break;
566
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
567
- return true;
568
- }
569
- return false;
570
  }
571
 
572
- if( $ipNumber < 1618992934 )
573
  return false;
574
 
575
- if( (1618992934 <= $ipNumber) && ($ipNumber <= 1729091949) ){
576
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-47.php';
577
- if( isset($a[$ipNumber]) ) return true;
578
- foreach($a as $minIpValue => $maxIpValue){
579
- if( 1 === $maxIpValue ) break;
580
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
581
- return true;
582
- }
583
- return false;
584
  }
585
 
586
- if( $ipNumber < 1729092670 )
587
  return false;
588
 
589
- if( (1729092670 <= $ipNumber) && ($ipNumber <= 1753287051) ){
590
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-48.php';
591
- if( isset($a[$ipNumber]) ) return true;
592
- foreach($a as $minIpValue => $maxIpValue){
593
- if( 1 === $maxIpValue ) break;
594
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
595
- return true;
596
- }
597
- return false;
598
  }
599
 
600
- if( $ipNumber < 1753287055 )
601
  return false;
602
 
603
- if( (1753287055 <= $ipNumber) && ($ipNumber <= 1778559131) ){
604
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-49.php';
605
- if( isset($a[$ipNumber]) ) return true;
606
- foreach($a as $minIpValue => $maxIpValue){
607
- if( 1 === $maxIpValue ) break;
608
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
609
- return true;
610
- }
611
- return false;
612
  }
613
 
614
- if( $ipNumber < 1778559133 )
615
  return false;
616
 
617
- if( (1778559133 <= $ipNumber) && ($ipNumber <= 1815993284) ){
618
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-50.php'; return isset($a[$ipNumber]);
619
  }
620
 
621
- if( $ipNumber < 1815993340 )
622
  return false;
623
 
624
- if( (1815993340 <= $ipNumber) && ($ipNumber <= 1833615444) ){
625
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-51.php';
626
- if( isset($a[$ipNumber]) ) return true;
627
- foreach($a as $minIpValue => $maxIpValue){
628
- if( 1 === $maxIpValue ) break;
629
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
630
- return true;
631
- }
632
- return false;
633
  }
634
 
635
- if( $ipNumber < 1833615739 )
636
  return false;
637
 
638
- if( (1833615739 <= $ipNumber) && ($ipNumber <= 1839332186) ){
639
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-52.php'; return isset($a[$ipNumber]);
640
  }
641
 
642
- if( $ipNumber < 1839332210 )
643
  return false;
644
 
645
- if( (1839332210 <= $ipNumber) && ($ipNumber <= 1851085341) ){
646
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-53.php'; return isset($a[$ipNumber]);
647
  }
648
 
649
- if( $ipNumber < 1851092934 )
650
  return false;
651
 
652
- if( (1851092934 <= $ipNumber) && ($ipNumber <= 1880648008) ){
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;
657
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
658
- return true;
659
- }
660
- return false;
661
  }
662
 
663
- if( $ipNumber < 1880648017 )
664
  return false;
665
 
666
- if( (1880648017 <= $ipNumber) && ($ipNumber <= 1893225090) ){
667
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-55.php'; return isset($a[$ipNumber]);
668
  }
669
 
670
- if( $ipNumber < 1893225986 )
671
  return false;
672
 
673
- if( (1893225986 <= $ipNumber) && ($ipNumber <= 1906482256) ){
674
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-56.php'; return isset($a[$ipNumber]);
675
  }
676
 
677
- if( $ipNumber < 1906482262 )
678
  return false;
679
 
680
- if( (1906482262 <= $ipNumber) && ($ipNumber <= 1919761736) ){
681
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-57.php';
682
- if( isset($a[$ipNumber]) ) return true;
683
- foreach($a as $minIpValue => $maxIpValue){
684
- if( 1 === $maxIpValue ) break;
685
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
686
- return true;
687
- }
688
- return false;
689
  }
690
 
691
- if( $ipNumber < 1919767941 )
692
  return false;
693
 
694
- if( (1919767941 <= $ipNumber) && ($ipNumber <= 1937537639) ){
695
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-58.php';
696
- if( isset($a[$ipNumber]) ) return true;
697
- foreach($a as $minIpValue => $maxIpValue){
698
- if( 1 === $maxIpValue ) break;
699
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
700
- return true;
701
- }
702
- return false;
703
  }
704
 
705
- if( $ipNumber < 1937537821 )
706
  return false;
707
 
708
- if( (1937537821 <= $ipNumber) && ($ipNumber <= 1946861544) ){
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;
713
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
714
- return true;
715
- }
716
- return false;
717
  }
718
 
719
- if( $ipNumber < 1946861545 )
720
  return false;
721
 
722
- if( (1946861545 <= $ipNumber) && ($ipNumber <= 1964359450) ){
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;
727
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
728
- return true;
729
- }
730
- return false;
731
  }
732
 
733
- if( $ipNumber < 1964359454 )
734
  return false;
735
 
736
- if( (1964359454 <= $ipNumber) && ($ipNumber <= 1978931399) ){
737
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-61.php';
738
- if( isset($a[$ipNumber]) ) return true;
739
- foreach($a as $minIpValue => $maxIpValue){
740
- if( 1 === $maxIpValue ) break;
741
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
742
- return true;
743
- }
744
- return false;
745
  }
746
 
747
- if( $ipNumber < 1978931409 )
748
  return false;
749
 
750
- if( (1978931409 <= $ipNumber) && ($ipNumber <= 1984284354) ){
751
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-62.php'; return isset($a[$ipNumber]);
752
  }
753
 
754
- if( $ipNumber < 1984284388 )
755
  return false;
756
 
757
- if( (1984284388 <= $ipNumber) && ($ipNumber <= 1997144875) ){
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;
762
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
763
- return true;
764
- }
765
- return false;
766
  }
767
 
768
- if( $ipNumber < 1997145110 )
769
  return false;
770
 
771
- if( (1997145110 <= $ipNumber) && ($ipNumber <= 2009617040) ){
772
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-64.php';
773
- if( isset($a[$ipNumber]) ) return true;
774
- foreach($a as $minIpValue => $maxIpValue){
775
- if( 1 === $maxIpValue ) break;
776
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
777
- return true;
778
- }
779
- return false;
780
  }
781
 
782
- if( $ipNumber < 2009621961 )
783
  return false;
784
 
785
- if( (2009621961 <= $ipNumber) && ($ipNumber <= 2027062968) ){
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;
790
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
791
- return true;
792
- }
793
- return false;
794
  }
795
 
796
- if( $ipNumber < 2027070146 )
797
  return false;
798
 
799
- if( (2027070146 <= $ipNumber) && ($ipNumber <= 2039362682) ){
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;
804
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
805
- return true;
806
- }
807
- return false;
808
  }
809
 
810
- if( $ipNumber < 2039364973 )
811
  return false;
812
 
813
- if( (2039364973 <= $ipNumber) && ($ipNumber <= 2042458515) ){
814
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-67.php'; return isset($a[$ipNumber]);
815
  }
816
 
817
- if( $ipNumber < 2042458917 )
818
  return false;
819
 
820
- if( (2042458917 <= $ipNumber) && ($ipNumber <= 2057349273) ){
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;
825
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
826
- return true;
827
- }
828
- return false;
829
  }
830
 
831
- if( $ipNumber < 2057351654 )
832
  return false;
833
 
834
- if( (2057351654 <= $ipNumber) && ($ipNumber <= 2065633481) ){
835
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-69.php'; return isset($a[$ipNumber]);
836
  }
837
 
838
- if( $ipNumber < 2065635892 )
839
  return false;
840
 
841
- if( (2065635892 <= $ipNumber) && ($ipNumber <= 2085251330) ){
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;
846
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
847
- return true;
848
- }
849
- return false;
850
  }
851
 
852
- if( $ipNumber < 2085279002 )
853
  return false;
854
 
855
- if( (2085279002 <= $ipNumber) && ($ipNumber <= 2098483294) ){
856
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-71.php';
857
- if( isset($a[$ipNumber]) ) return true;
858
- foreach($a as $minIpValue => $maxIpValue){
859
- if( 1 === $maxIpValue ) break;
860
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
861
- return true;
862
- }
863
- return false;
864
  }
865
 
866
- if( $ipNumber < 2098529284 )
867
  return false;
868
 
869
- if( (2098529284 <= $ipNumber) && ($ipNumber <= 2111105073) ){
870
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-72.php';
871
- if( isset($a[$ipNumber]) ) return true;
872
- foreach($a as $minIpValue => $maxIpValue){
873
- if( 1 === $maxIpValue ) break;
874
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
875
- return true;
876
- }
877
- return false;
878
  }
879
 
880
- if( $ipNumber < 2111105076 )
881
  return false;
882
 
883
- if( (2111105076 <= $ipNumber) && ($ipNumber <= 2264900792) ){
884
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-73.php';
885
- if( isset($a[$ipNumber]) ) return true;
886
- foreach($a as $minIpValue => $maxIpValue){
887
- if( 1 === $maxIpValue ) break;
888
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
889
- return true;
890
- }
891
- return false;
892
  }
893
 
894
- if( $ipNumber < 2264900821 )
895
  return false;
896
 
897
- if( (2264900821 <= $ipNumber) && ($ipNumber <= 2382233599) ){
898
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-74.php';
899
- if( isset($a[$ipNumber]) ) return true;
900
- foreach($a as $minIpValue => $maxIpValue){
901
- if( 1 === $maxIpValue ) break;
902
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
903
- return true;
904
- }
905
- return false;
906
  }
907
 
908
- if( $ipNumber < 2382340343 )
909
  return false;
910
 
911
- if( (2382340343 <= $ipNumber) && ($ipNumber <= 2513604115) ){
912
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-75.php';
913
- if( isset($a[$ipNumber]) ) return true;
914
- foreach($a as $minIpValue => $maxIpValue){
915
- if( 1 === $maxIpValue ) break;
916
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
917
- return true;
918
- }
919
- return false;
920
  }
921
 
922
- if( $ipNumber < 2513604229 )
923
  return false;
924
 
925
- if( (2513604229 <= $ipNumber) && ($ipNumber <= 2655375905) ){
926
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-76.php';
927
- if( isset($a[$ipNumber]) ) return true;
928
- foreach($a as $minIpValue => $maxIpValue){
929
- if( 1 === $maxIpValue ) break;
930
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
931
- return true;
932
- }
933
- return false;
934
  }
935
 
936
- if( $ipNumber < 2655376135 )
937
  return false;
938
 
939
- if( (2655376135 <= $ipNumber) && ($ipNumber <= 2735622178) ){
940
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-77.php';
941
- if( isset($a[$ipNumber]) ) return true;
942
- foreach($a as $minIpValue => $maxIpValue){
943
- if( 1 === $maxIpValue ) break;
944
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
945
- return true;
946
- }
947
- return false;
948
  }
949
 
950
- if( $ipNumber < 2735638861 )
951
  return false;
952
 
953
- if( (2735638861 <= $ipNumber) && ($ipNumber <= 2869220216) ){
954
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-78.php';
955
- if( isset($a[$ipNumber]) ) return true;
956
- foreach($a as $minIpValue => $maxIpValue){
957
- if( 1 === $maxIpValue ) break;
958
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
959
- return true;
960
- }
961
- return false;
962
  }
963
 
964
- if( $ipNumber < 2869224702 )
965
  return false;
966
 
967
- if( (2869224702 <= $ipNumber) && ($ipNumber <= 2915794644) ){
968
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-79.php';
969
- if( isset($a[$ipNumber]) ) return true;
970
- foreach($a as $minIpValue => $maxIpValue){
971
- if( 1 === $maxIpValue ) break;
972
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
973
- return true;
974
- }
975
- return false;
976
  }
977
 
978
- if( $ipNumber < 2915805512 )
979
  return false;
980
 
981
- if( (2915805512 <= $ipNumber) && ($ipNumber <= 2938786925) ){
982
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-80.php';
983
- if( isset($a[$ipNumber]) ) return true;
984
- foreach($a as $minIpValue => $maxIpValue){
985
- if( 1 === $maxIpValue ) break;
986
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
987
- return true;
988
- }
989
- return false;
990
  }
991
 
992
- if( $ipNumber < 2938789005 )
993
  return false;
994
 
995
- if( (2938789005 <= $ipNumber) && ($ipNumber <= 2955200345) ){
996
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-81.php';
997
- if( isset($a[$ipNumber]) ) return true;
998
- foreach($a as $minIpValue => $maxIpValue){
999
- if( 1 === $maxIpValue ) break;
1000
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1001
- return true;
1002
- }
1003
- return false;
1004
  }
1005
 
1006
- if( $ipNumber < 2955221305 )
1007
  return false;
1008
 
1009
- if( (2955221305 <= $ipNumber) && ($ipNumber <= 2974244813) ){
1010
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-82.php';
1011
- if( isset($a[$ipNumber]) ) return true;
1012
- foreach($a as $minIpValue => $maxIpValue){
1013
- if( 1 === $maxIpValue ) break;
1014
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1015
- return true;
1016
- }
1017
- return false;
1018
  }
1019
 
1020
- if( $ipNumber < 2974268377 )
1021
  return false;
1022
 
1023
- if( (2974268377 <= $ipNumber) && ($ipNumber <= 2988526751) ){
1024
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-83.php';
1025
- if( isset($a[$ipNumber]) ) return true;
1026
- foreach($a as $minIpValue => $maxIpValue){
1027
- if( 1 === $maxIpValue ) break;
1028
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1029
- return true;
1030
- }
1031
- return false;
1032
  }
1033
 
1034
- if( $ipNumber < 2988527466 )
1035
  return false;
1036
 
1037
- if( (2988527466 <= $ipNumber) && ($ipNumber <= 3000539766) ){
1038
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-84.php';
1039
- if( isset($a[$ipNumber]) ) return true;
1040
- foreach($a as $minIpValue => $maxIpValue){
1041
- if( 1 === $maxIpValue ) break;
1042
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1043
- return true;
1044
- }
1045
- return false;
1046
  }
1047
 
1048
- if( $ipNumber < 3000545427 )
1049
  return false;
1050
 
1051
- if( (3000545427 <= $ipNumber) && ($ipNumber <= 3029775341) ){
1052
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-85.php';
1053
- if( isset($a[$ipNumber]) ) return true;
1054
- foreach($a as $minIpValue => $maxIpValue){
1055
- if( 1 === $maxIpValue ) break;
1056
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1057
- return true;
1058
- }
1059
- return false;
1060
  }
1061
 
1062
- if( $ipNumber < 3029777053 )
1063
  return false;
1064
 
1065
- if( (3029777053 <= $ipNumber) && ($ipNumber <= 3051512027) ){
1066
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-86.php';
1067
- if( isset($a[$ipNumber]) ) return true;
1068
- foreach($a as $minIpValue => $maxIpValue){
1069
- if( 1 === $maxIpValue ) break;
1070
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1071
- return true;
1072
- }
1073
- return false;
1074
  }
1075
 
1076
- if( $ipNumber < 3051512602 )
1077
  return false;
1078
 
1079
- if( (3051512602 <= $ipNumber) && ($ipNumber <= 3070479049) ){
1080
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-87.php'; return isset($a[$ipNumber]);
1081
  }
1082
 
1083
- if( $ipNumber < 3070480977 )
1084
  return false;
1085
 
1086
- if( (3070480977 <= $ipNumber) && ($ipNumber <= 3079867312) ){
1087
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-88.php'; return isset($a[$ipNumber]);
1088
  }
1089
 
1090
- if( $ipNumber < 3079867408 )
1091
  return false;
1092
 
1093
- if( (3079867408 <= $ipNumber) && ($ipNumber <= 3104129094) ){
1094
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-89.php';
1095
- if( isset($a[$ipNumber]) ) return true;
1096
- foreach($a as $minIpValue => $maxIpValue){
1097
- if( 1 === $maxIpValue ) break;
1098
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1099
- return true;
1100
- }
1101
- return false;
1102
- }
1103
-
1104
- if( $ipNumber < 3104137389 )
1105
- return false;
1106
-
1107
- if( (3104137389 <= $ipNumber) && ($ipNumber <= 3121188940) ){
1108
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-90.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 < 3121194019 )
1119
  return false;
1120
 
1121
- if( (3121194019 <= $ipNumber) && ($ipNumber <= 3127944078) ){
1122
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-91.php';
1123
- if( isset($a[$ipNumber]) ) return true;
1124
- foreach($a as $minIpValue => $maxIpValue){
1125
- if( 1 === $maxIpValue ) break;
1126
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1127
- return true;
1128
- }
1129
- return false;
1130
  }
1131
 
1132
- if( $ipNumber < 3127944211 )
1133
  return false;
1134
 
1135
- if( (3127944211 <= $ipNumber) && ($ipNumber <= 3139185762) ){
1136
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-92.php';
1137
- if( isset($a[$ipNumber]) ) return true;
1138
- foreach($a as $minIpValue => $maxIpValue){
1139
- if( 1 === $maxIpValue ) break;
1140
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1141
- return true;
1142
- }
1143
- return false;
1144
  }
1145
 
1146
- if( $ipNumber < 3139200245 )
1147
  return false;
1148
 
1149
- if( (3139200245 <= $ipNumber) && ($ipNumber <= 3149421444) ){
1150
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-93.php'; return isset($a[$ipNumber]);
1151
  }
1152
 
1153
- if( $ipNumber < 3149424475 )
1154
  return false;
1155
 
1156
- if( (3149424475 <= $ipNumber) && ($ipNumber <= 3162827876) ){
1157
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-94.php';
1158
- if( isset($a[$ipNumber]) ) return true;
1159
- foreach($a as $minIpValue => $maxIpValue){
1160
- if( 1 === $maxIpValue ) break;
1161
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1162
- return true;
1163
- }
1164
- return false;
1165
  }
1166
 
1167
- if( $ipNumber < 3162827877 )
1168
  return false;
1169
 
1170
- if( (3162827877 <= $ipNumber) && ($ipNumber <= 3172141072) ){
1171
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-95.php';
1172
- if( isset($a[$ipNumber]) ) return true;
1173
- foreach($a as $minIpValue => $maxIpValue){
1174
- if( 1 === $maxIpValue ) break;
1175
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1176
- return true;
1177
- }
1178
- return false;
1179
  }
1180
 
1181
- if( $ipNumber < 3172142006 )
1182
  return false;
1183
 
1184
- if( (3172142006 <= $ipNumber) && ($ipNumber <= 3183530436) ){
1185
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-96.php'; return isset($a[$ipNumber]);
1186
  }
1187
 
1188
- if( $ipNumber < 3183536055 )
1189
  return false;
1190
 
1191
- if( (3183536055 <= $ipNumber) && ($ipNumber <= 3191326874) ){
1192
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-97.php';
1193
- if( isset($a[$ipNumber]) ) return true;
1194
- foreach($a as $minIpValue => $maxIpValue){
1195
- if( 1 === $maxIpValue ) break;
1196
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1197
- return true;
1198
- }
1199
- return false;
1200
  }
1201
 
1202
- if( $ipNumber < 3191328358 )
1203
  return false;
1204
 
1205
- if( (3191328358 <= $ipNumber) && ($ipNumber <= 3197300733) ){
1206
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-98.php'; return isset($a[$ipNumber]);
1207
  }
1208
 
1209
- if( $ipNumber < 3197301816 )
1210
  return false;
1211
 
1212
- if( (3197301816 <= $ipNumber) && ($ipNumber <= 3203199938) ){
1213
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-99.php'; return isset($a[$ipNumber]);
1214
  }
1215
 
1216
- if( $ipNumber < 3203234599 )
1217
  return false;
1218
 
1219
- if( (3203234599 <= $ipNumber) && ($ipNumber <= 3227752661) ){
1220
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-100.php';
1221
- if( isset($a[$ipNumber]) ) return true;
1222
- foreach($a as $minIpValue => $maxIpValue){
1223
- if( 1 === $maxIpValue ) break;
1224
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1225
- return true;
1226
- }
1227
- return false;
1228
  }
1229
 
1230
- if( $ipNumber < 3227754541 )
1231
  return false;
1232
 
1233
- if( (3227754541 <= $ipNumber) && ($ipNumber <= 3244829183) ){
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;
1238
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1239
- return true;
1240
- }
1241
- return false;
1242
  }
1243
 
1244
- if( $ipNumber < 3244829065 )
1245
  return false;
1246
 
1247
- if( (3244829065 <= $ipNumber) && ($ipNumber <= 3268744872) ){
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;
1252
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1253
- return true;
1254
- }
1255
- return false;
1256
  }
1257
 
1258
- if( $ipNumber < 3268745621 )
1259
  return false;
1260
 
1261
- if( (3268745621 <= $ipNumber) && ($ipNumber <= 3286333038) ){
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;
1266
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1267
- return true;
1268
- }
1269
- return false;
1270
  }
1271
 
1272
- if( $ipNumber < 3286333249 )
1273
  return false;
1274
 
1275
- if( (3286333249 <= $ipNumber) && ($ipNumber <= 3323681460) ){
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;
1280
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1281
- return true;
1282
- }
1283
- return false;
1284
  }
1285
 
1286
- if( $ipNumber < 3323682728 )
1287
  return false;
1288
 
1289
- if( (3323682728 <= $ipNumber) && ($ipNumber <= 3346517204) ){
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;
1294
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1295
- return true;
1296
- }
1297
- return false;
1298
  }
1299
 
1300
- if( $ipNumber < 3346517356 )
1301
  return false;
1302
 
1303
- if( (3346517356 <= $ipNumber) && ($ipNumber <= 3360385146) ){
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;
1308
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1309
- return true;
1310
- }
1311
- return false;
1312
  }
1313
 
1314
- if( $ipNumber < 3360385241 )
1315
  return false;
1316
 
1317
- if( (3360385241 <= $ipNumber) && ($ipNumber <= 3371969923) ){
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;
1322
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1323
- return true;
1324
- }
1325
- return false;
1326
  }
1327
 
1328
- if( $ipNumber < 3371984815 )
1329
  return false;
1330
 
1331
- if( (3371984815 <= $ipNumber) && ($ipNumber <= 3384475630) ){
1332
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-108.php';
1333
- if( isset($a[$ipNumber]) ) return true;
1334
- foreach($a as $minIpValue => $maxIpValue){
1335
- if( 1 === $maxIpValue ) break;
1336
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1337
- return true;
1338
- }
1339
- return false;
1340
  }
1341
 
1342
- if( $ipNumber < 3384483171 )
1343
  return false;
1344
 
1345
- if( (3384483171 <= $ipNumber) && ($ipNumber <= 3393601702) ){
1346
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-109.php';
1347
- if( isset($a[$ipNumber]) ) return true;
1348
- foreach($a as $minIpValue => $maxIpValue){
1349
- if( 1 === $maxIpValue ) break;
1350
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1351
- return true;
1352
- }
1353
- return false;
1354
  }
1355
 
1356
- if( $ipNumber < 3393604525 )
1357
  return false;
1358
 
1359
- if( (3393604525 <= $ipNumber) && ($ipNumber <= 3398698482) ){
1360
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-110.php';
1361
- if( isset($a[$ipNumber]) ) return true;
1362
- foreach($a as $minIpValue => $maxIpValue){
1363
- if( 1 === $maxIpValue ) break;
1364
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1365
- return true;
1366
- }
1367
- return false;
1368
  }
1369
 
1370
- if( $ipNumber < 3398699875 )
1371
  return false;
1372
 
1373
- if( (3398699875 <= $ipNumber) && ($ipNumber <= 3413907117) ){
1374
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-111.php';
1375
- if( isset($a[$ipNumber]) ) return true;
1376
- foreach($a as $minIpValue => $maxIpValue){
1377
- if( 1 === $maxIpValue ) break;
1378
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1379
- return true;
1380
- }
1381
- return false;
1382
  }
1383
 
1384
- if( $ipNumber < 3413907370 )
1385
  return false;
1386
 
1387
- if( (3413907370 <= $ipNumber) && ($ipNumber <= 3423523477) ){
1388
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-112.php';
1389
- if( isset($a[$ipNumber]) ) return true;
1390
- foreach($a as $minIpValue => $maxIpValue){
1391
- if( 1 === $maxIpValue ) break;
1392
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1393
- return true;
1394
- }
1395
- return false;
1396
  }
1397
 
1398
- if( $ipNumber < 3423553554 )
1399
  return false;
1400
 
1401
- if( (3423553554 <= $ipNumber) && ($ipNumber <= 3494052108) ){
1402
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-113.php';
1403
- if( isset($a[$ipNumber]) ) return true;
1404
- foreach($a as $minIpValue => $maxIpValue){
1405
- if( 1 === $maxIpValue ) break;
1406
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1407
- return true;
1408
- }
1409
- return false;
1410
  }
1411
 
1412
- if( $ipNumber < 3494052109 )
1413
  return false;
1414
 
1415
- if( (3494052109 <= $ipNumber) && ($ipNumber <= 3522130458) ){
1416
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-114.php';
1417
- if( isset($a[$ipNumber]) ) return true;
1418
- foreach($a as $minIpValue => $maxIpValue){
1419
- if( 1 === $maxIpValue ) break;
1420
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1421
- return true;
1422
- }
1423
- return false;
1424
  }
1425
 
1426
- if( $ipNumber < 3522130511 )
1427
  return false;
1428
 
1429
- if( (3522130511 <= $ipNumber) && ($ipNumber <= 3537131266) ){
1430
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-115.php';
1431
- if( isset($a[$ipNumber]) ) return true;
1432
- foreach($a as $minIpValue => $maxIpValue){
1433
- if( 1 === $maxIpValue ) break;
1434
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1435
- return true;
1436
- }
1437
- return false;
1438
  }
1439
 
1440
- if( $ipNumber < 3537132212 )
1441
  return false;
1442
 
1443
- if( (3537132212 <= $ipNumber) && ($ipNumber <= 3549966444) ){
1444
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-116.php'; return isset($a[$ipNumber]);
1445
  }
1446
 
1447
- if( $ipNumber < 3549967410 )
1448
  return false;
1449
 
1450
- if( (3549967410 <= $ipNumber) && ($ipNumber <= 3562247817) ){
1451
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-117.php'; return isset($a[$ipNumber]);
1452
  }
1453
 
1454
- if( $ipNumber < 3562247875 )
1455
  return false;
1456
 
1457
- if( (3562247875 <= $ipNumber) && ($ipNumber <= 3577179046) ){
1458
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-118.php';
1459
- if( isset($a[$ipNumber]) ) return true;
1460
- foreach($a as $minIpValue => $maxIpValue){
1461
- if( 1 === $maxIpValue ) break;
1462
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1463
- return true;
1464
- }
1465
- return false;
1466
  }
1467
 
1468
- if( $ipNumber < 3577179049 )
1469
  return false;
1470
 
1471
- if( (3577179049 <= $ipNumber) && ($ipNumber <= 3628446014) ){
1472
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-119.php'; return isset($a[$ipNumber]);
1473
  }
1474
 
1475
- if( $ipNumber < 3628447176 )
1476
  return false;
1477
 
1478
- if( (3628447176 <= $ipNumber) && ($ipNumber <= 3648418218) ){
1479
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-120.php';
1480
- if( isset($a[$ipNumber]) ) return true;
1481
- foreach($a as $minIpValue => $maxIpValue){
1482
- if( 1 === $maxIpValue ) break;
1483
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1484
- return true;
1485
- }
1486
- return false;
1487
  }
1488
 
1489
- if( $ipNumber < 3648445643 )
1490
  return false;
1491
 
1492
- if( (3648445643 <= $ipNumber) && ($ipNumber <= 3660351642) ){
1493
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-121.php'; return isset($a[$ipNumber]);
1494
  }
1495
 
1496
- if( $ipNumber < 3660351646 )
1497
  return false;
1498
 
1499
- if( (3660351646 <= $ipNumber) && ($ipNumber <= 3670982468) ){
1500
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-122.php'; return isset($a[$ipNumber]);
1501
  }
1502
 
1503
- if( $ipNumber < 3670983134 )
1504
  return false;
1505
 
1506
- if( (3670983134 <= $ipNumber) && ($ipNumber <= 3690648177) ){
1507
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-123.php'; return isset($a[$ipNumber]);
1508
  }
1509
 
1510
- if( $ipNumber < 3690660956 )
1511
  return false;
1512
 
1513
- if( (3690660956 <= $ipNumber) && ($ipNumber <= 3707048085) ){
1514
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-124.php';
1515
- if( isset($a[$ipNumber]) ) return true;
1516
- foreach($a as $minIpValue => $maxIpValue){
1517
- if( 1 === $maxIpValue ) break;
1518
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1519
- return true;
1520
- }
1521
- return false;
1522
  }
1523
 
1524
- if( $ipNumber < 3707072476 )
1525
  return false;
1526
 
1527
- if( (3707072476 <= $ipNumber) && ($ipNumber <= 3722288626) ){
1528
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-125.php';
1529
- if( isset($a[$ipNumber]) ) return true;
1530
- foreach($a as $minIpValue => $maxIpValue){
1531
- if( 1 === $maxIpValue ) break;
1532
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1533
- return true;
1534
- }
1535
- return false;
1536
  }
1537
 
1538
- if( $ipNumber < 3722319983 )
1539
  return false;
1540
 
1541
- if( (3722319983 <= $ipNumber) && ($ipNumber <= 3732252930) ){
1542
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-126.php'; return isset($a[$ipNumber]);
1543
  }
1544
 
1545
- if( $ipNumber < 3732253072 )
1546
  return false;
1547
 
1548
- if( (3732253072 <= $ipNumber) && ($ipNumber <= 3736742415) ){
1549
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-127.php'; return isset($a[$ipNumber]);
1550
  }
1551
 
1552
- if( $ipNumber < 3736742416 )
1553
  return false;
1554
 
1555
- if( (3736742416 <= $ipNumber) && ($ipNumber <= 3741628357) ){
1556
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-128.php';
1557
- if( isset($a[$ipNumber]) ) return true;
1558
- foreach($a as $minIpValue => $maxIpValue){
1559
- if( 1 === $maxIpValue ) break;
1560
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1561
- return true;
1562
- }
1563
- return false;
1564
  }
1565
 
1566
- if( $ipNumber < 3741632759 )
1567
  return false;
1568
 
1569
- if( (3741632759 <= $ipNumber) && ($ipNumber <= 3758080110) ){
1570
- $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-129.php';
1571
- if( isset($a[$ipNumber]) ) return true;
1572
- foreach($a as $minIpValue => $maxIpValue){
1573
- if( 1 === $maxIpValue ) break;
1574
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1575
- return true;
1576
- }
1577
- return false;
1578
  }
1579
 
1580
  return false;
@@ -1585,499 +920,321 @@ class MchGdbcUnTrustedIPRanges
1585
 
1586
  if( $ipVersion !== MchGdbcIPUtils::IP_VERSION_4 ) return false;
1587
 
1588
- $ipNumber = MchGdbcIPUtils::ipAddressToNumber($ipAddress, $ipVersion, true);
1589
-
1590
- if( $ipNumber < 16820335 )
1591
- return false;
1592
-
1593
- if( (16820335 <= $ipNumber) && ($ipNumber <= 391378989) ){
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){
1597
- if( 1 === $maxIpValue ) break;
1598
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1599
- return true;
1600
- }
1601
- return false;
1602
- }
1603
 
1604
- if( $ipNumber < 391644090 )
1605
  return false;
1606
 
1607
- if( (391644090 <= $ipNumber) && ($ipNumber <= 609455140) ){
1608
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-1.php';
1609
- if( isset($a[$ipNumber]) ) return true;
1610
- foreach($a as $minIpValue => $maxIpValue){
1611
- if( 1 === $maxIpValue ) break;
1612
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1613
- return true;
1614
- }
1615
- return false;
1616
  }
1617
 
1618
- if( $ipNumber < 609462850 )
1619
  return false;
1620
 
1621
- if( (609462850 <= $ipNumber) && ($ipNumber <= 690796634) ){
1622
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-2.php';
1623
- if( isset($a[$ipNumber]) ) return true;
1624
- foreach($a as $minIpValue => $maxIpValue){
1625
- if( 1 === $maxIpValue ) break;
1626
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1627
- return true;
1628
- }
1629
- return false;
1630
  }
1631
 
1632
- if( $ipNumber < 690797122 )
1633
  return false;
1634
 
1635
- if( (690797122 <= $ipNumber) && ($ipNumber <= 771792836) ){
1636
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-3.php'; return isset($a[$ipNumber]);
1637
  }
1638
 
1639
- if( $ipNumber < 772014169 )
1640
  return false;
1641
 
1642
- if( (772014169 <= $ipNumber) && ($ipNumber <= 874652179) ){
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){
1646
- if( 1 === $maxIpValue ) break;
1647
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1648
- return true;
1649
- }
1650
- return false;
1651
  }
1652
 
1653
- if( $ipNumber < 874654047 )
1654
  return false;
1655
 
1656
- if( (874654047 <= $ipNumber) && ($ipNumber <= 973655074) ){
1657
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-5.php'; return isset($a[$ipNumber]);
1658
  }
1659
 
1660
- if( $ipNumber < 973655079 )
1661
  return false;
1662
 
1663
- if( (973655079 <= $ipNumber) && ($ipNumber <= 973808890) ){
1664
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-6.php'; return isset($a[$ipNumber]);
1665
  }
1666
 
1667
- if( $ipNumber < 973808892 )
1668
  return false;
1669
 
1670
- if( (973808892 <= $ipNumber) && ($ipNumber <= 984986765) ){
1671
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-7.php'; return isset($a[$ipNumber]);
1672
  }
1673
 
1674
- if( $ipNumber < 985105280 )
1675
  return false;
1676
 
1677
- if( (985105280 <= $ipNumber) && ($ipNumber <= 1029317294) ){
1678
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-8.php'; return isset($a[$ipNumber]);
1679
  }
1680
 
1681
- if( $ipNumber < 1029317307 )
1682
  return false;
1683
 
1684
- if( (1029317307 <= $ipNumber) && ($ipNumber <= 1029338822) ){
1685
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-9.php'; return isset($a[$ipNumber]);
1686
  }
1687
 
1688
- if( $ipNumber < 1029338829 )
1689
  return false;
1690
 
1691
- if( (1029338829 <= $ipNumber) && ($ipNumber <= 1123936657) ){
1692
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-10.php';
1693
- if( isset($a[$ipNumber]) ) return true;
1694
- foreach($a as $minIpValue => $maxIpValue){
1695
- if( 1 === $maxIpValue ) break;
1696
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1697
- return true;
1698
- }
1699
- return false;
1700
  }
1701
 
1702
- if( $ipNumber < 1123937044 )
1703
  return false;
1704
 
1705
- if( (1123937044 <= $ipNumber) && ($ipNumber <= 1220493536) ){
1706
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-11.php';
1707
- if( isset($a[$ipNumber]) ) return true;
1708
- foreach($a as $minIpValue => $maxIpValue){
1709
- if( 1 === $maxIpValue ) break;
1710
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1711
- return true;
1712
- }
1713
- return false;
1714
  }
1715
 
1716
- if( $ipNumber < 1220582194 )
1717
  return false;
1718
 
1719
- if( (1220582194 <= $ipNumber) && ($ipNumber <= 1311721083) ){
1720
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-12.php';
1721
- if( isset($a[$ipNumber]) ) return true;
1722
- foreach($a as $minIpValue => $maxIpValue){
1723
- if( 1 === $maxIpValue ) break;
1724
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1725
- return true;
1726
- }
1727
- return false;
1728
  }
1729
 
1730
- if( $ipNumber < 1311724228 )
1731
  return false;
1732
 
1733
- if( (1311724228 <= $ipNumber) && ($ipNumber <= 1375830422) ){
1734
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-13.php';
1735
- if( isset($a[$ipNumber]) ) return true;
1736
- foreach($a as $minIpValue => $maxIpValue){
1737
- if( 1 === $maxIpValue ) break;
1738
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1739
- return true;
1740
- }
1741
- return false;
1742
  }
1743
 
1744
- if( $ipNumber < 1375844784 )
1745
  return false;
1746
 
1747
- if( (1375844784 <= $ipNumber) && ($ipNumber <= 1440091089) ){
1748
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-14.php';
1749
- if( isset($a[$ipNumber]) ) return true;
1750
- foreach($a as $minIpValue => $maxIpValue){
1751
- if( 1 === $maxIpValue ) break;
1752
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1753
- return true;
1754
- }
1755
- return false;
1756
  }
1757
 
1758
- if( $ipNumber < 1440094140 )
1759
  return false;
1760
 
1761
- if( (1440094140 <= $ipNumber) && ($ipNumber <= 1527017488) ){
1762
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-15.php';
1763
- if( isset($a[$ipNumber]) ) return true;
1764
- foreach($a as $minIpValue => $maxIpValue){
1765
- if( 1 === $maxIpValue ) break;
1766
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1767
- return true;
1768
- }
1769
- return false;
1770
  }
1771
 
1772
- if( $ipNumber < 1527073883 )
1773
  return false;
1774
 
1775
- if( (1527073883 <= $ipNumber) && ($ipNumber <= 1578592152) ){
1776
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-16.php';
1777
- if( isset($a[$ipNumber]) ) return true;
1778
- foreach($a as $minIpValue => $maxIpValue){
1779
- if( 1 === $maxIpValue ) break;
1780
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1781
- return true;
1782
- }
1783
- return false;
1784
  }
1785
 
1786
- if( $ipNumber < 1578594366 )
1787
  return false;
1788
 
1789
- if( (1578594366 <= $ipNumber) && ($ipNumber <= 1678733829) ){
1790
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-17.php'; return isset($a[$ipNumber]);
1791
  }
1792
 
1793
- if( $ipNumber < 1678737511 )
1794
  return false;
1795
 
1796
- if( (1678737511 <= $ipNumber) && ($ipNumber <= 1758079414) ){
1797
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-18.php';
1798
- if( isset($a[$ipNumber]) ) return true;
1799
- foreach($a as $minIpValue => $maxIpValue){
1800
- if( 1 === $maxIpValue ) break;
1801
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1802
- return true;
1803
- }
1804
- return false;
1805
  }
1806
 
1807
- if( $ipNumber < 1758270779 )
1808
  return false;
1809
 
1810
- if( (1758270779 <= $ipNumber) && ($ipNumber <= 1850592745) ){
1811
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-19.php';
1812
- if( isset($a[$ipNumber]) ) return true;
1813
- foreach($a as $minIpValue => $maxIpValue){
1814
- if( 1 === $maxIpValue ) break;
1815
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1816
- return true;
1817
- }
1818
- return false;
1819
  }
1820
 
1821
- if( $ipNumber < 1850593510 )
1822
  return false;
1823
 
1824
- if( (1850593510 <= $ipNumber) && ($ipNumber <= 1931255068) ){
1825
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-20.php'; return isset($a[$ipNumber]);
1826
  }
1827
 
1828
- if( $ipNumber < 1931255591 )
1829
  return false;
1830
 
1831
- if( (1931255591 <= $ipNumber) && ($ipNumber <= 1986226524) ){
1832
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-21.php';
1833
- if( isset($a[$ipNumber]) ) return true;
1834
- foreach($a as $minIpValue => $maxIpValue){
1835
- if( 1 === $maxIpValue ) break;
1836
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1837
- return true;
1838
- }
1839
- return false;
1840
  }
1841
 
1842
- if( $ipNumber < 1986228879 )
1843
  return false;
1844
 
1845
- if( (1986228879 <= $ipNumber) && ($ipNumber <= 2061593123) ){
1846
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-22.php'; return isset($a[$ipNumber]);
1847
  }
1848
 
1849
- if( $ipNumber < 2061593124 )
1850
  return false;
1851
 
1852
- if( (2061593124 <= $ipNumber) && ($ipNumber <= 2088248420) ){
1853
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-23.php'; return isset($a[$ipNumber]);
1854
  }
1855
 
1856
- if( $ipNumber < 2088248424 )
1857
  return false;
1858
 
1859
- if( (2088248424 <= $ipNumber) && ($ipNumber <= 2088269908) ){
1860
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-24.php'; return isset($a[$ipNumber]);
1861
  }
1862
 
1863
- if( $ipNumber < 2088269925 )
1864
  return false;
1865
 
1866
- if( (2088269925 <= $ipNumber) && ($ipNumber <= 2088298813) ){
1867
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-25.php'; return isset($a[$ipNumber]);
1868
  }
1869
 
1870
- if( $ipNumber < 2088298819 )
1871
  return false;
1872
 
1873
- if( (2088298819 <= $ipNumber) && ($ipNumber <= 2088399159) ){
1874
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-26.php'; return isset($a[$ipNumber]);
1875
  }
1876
 
1877
- if( $ipNumber < 2088399160 )
1878
  return false;
1879
 
1880
- if( (2088399160 <= $ipNumber) && ($ipNumber <= 2088431009) ){
1881
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-27.php'; return isset($a[$ipNumber]);
1882
  }
1883
 
1884
- if( $ipNumber < 2088431081 )
1885
  return false;
1886
 
1887
- if( (2088431081 <= $ipNumber) && ($ipNumber <= 2315300139) ){
1888
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-28.php';
1889
- if( isset($a[$ipNumber]) ) return true;
1890
- foreach($a as $minIpValue => $maxIpValue){
1891
- if( 1 === $maxIpValue ) break;
1892
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1893
- return true;
1894
- }
1895
- return false;
1896
  }
1897
 
1898
- if( $ipNumber < 2315300145 )
1899
  return false;
1900
 
1901
- if( (2315300145 <= $ipNumber) && ($ipNumber <= 2617174975) ){
1902
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-29.php';
1903
- if( isset($a[$ipNumber]) ) return true;
1904
- foreach($a as $minIpValue => $maxIpValue){
1905
- if( 1 === $maxIpValue ) break;
1906
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1907
- return true;
1908
- }
1909
- return false;
1910
  }
1911
 
1912
- if( $ipNumber < 2617174999 )
1913
  return false;
1914
 
1915
- if( (2617174999 <= $ipNumber) && ($ipNumber <= 2875245488) ){
1916
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-30.php';
1917
- if( isset($a[$ipNumber]) ) return true;
1918
- foreach($a as $minIpValue => $maxIpValue){
1919
- if( 1 === $maxIpValue ) break;
1920
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1921
- return true;
1922
- }
1923
- return false;
1924
  }
1925
 
1926
- if( $ipNumber < 2875245491 )
1927
  return false;
1928
 
1929
- if( (2875245491 <= $ipNumber) && ($ipNumber <= 2875313042) ){
1930
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-31.php'; return isset($a[$ipNumber]);
1931
  }
1932
 
1933
- if( $ipNumber < 2875313075 )
1934
  return false;
1935
 
1936
- if( (2875313075 <= $ipNumber) && ($ipNumber <= 2959121050) ){
1937
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-32.php';
1938
- if( isset($a[$ipNumber]) ) return true;
1939
- foreach($a as $minIpValue => $maxIpValue){
1940
- if( 1 === $maxIpValue ) break;
1941
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1942
- return true;
1943
- }
1944
- return false;
1945
  }
1946
 
1947
- if( $ipNumber < 2959171609 )
1948
  return false;
1949
 
1950
- if( (2959171609 <= $ipNumber) && ($ipNumber <= 2988082284) ){
1951
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-33.php';
1952
- if( isset($a[$ipNumber]) ) return true;
1953
- foreach($a as $minIpValue => $maxIpValue){
1954
- if( 1 === $maxIpValue ) break;
1955
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1956
- return true;
1957
- }
1958
- return false;
1959
  }
1960
 
1961
- if( $ipNumber < 2988128695 )
1962
  return false;
1963
 
1964
- if( (2988128695 <= $ipNumber) && ($ipNumber <= 3037761637) ){
1965
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-34.php'; return isset($a[$ipNumber]);
1966
  }
1967
 
1968
- if( $ipNumber < 3037761653 )
1969
  return false;
1970
 
1971
- if( (3037761653 <= $ipNumber) && ($ipNumber <= 3108107845) ){
1972
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-35.php';
1973
- if( isset($a[$ipNumber]) ) return true;
1974
- foreach($a as $minIpValue => $maxIpValue){
1975
- if( 1 === $maxIpValue ) break;
1976
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1977
- return true;
1978
- }
1979
- return false;
1980
  }
1981
 
1982
- if( $ipNumber < 3108161546 )
1983
  return false;
1984
 
1985
- if( (3108161546 <= $ipNumber) && ($ipNumber <= 3147864415) ){
1986
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-36.php'; return isset($a[$ipNumber]);
1987
  }
1988
 
1989
- if( $ipNumber < 3147864529 )
1990
  return false;
1991
 
1992
- if( (3147864529 <= $ipNumber) && ($ipNumber <= 3190206928) ){
1993
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-37.php';
1994
- if( isset($a[$ipNumber]) ) return true;
1995
- foreach($a as $minIpValue => $maxIpValue){
1996
- if( 1 === $maxIpValue ) break;
1997
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1998
- return true;
1999
- }
2000
- return false;
2001
  }
2002
 
2003
- if( $ipNumber < 3190210143 )
2004
  return false;
2005
 
2006
- if( (3190210143 <= $ipNumber) && ($ipNumber <= 3244885866) ){
2007
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-38.php';
2008
- if( isset($a[$ipNumber]) ) return true;
2009
- foreach($a as $minIpValue => $maxIpValue){
2010
- if( 1 === $maxIpValue ) break;
2011
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
2012
- return true;
2013
- }
2014
- return false;
2015
  }
2016
 
2017
- if( $ipNumber < 3244885954 )
2018
  return false;
2019
 
2020
- if( (3244885954 <= $ipNumber) && ($ipNumber <= 3359028450) ){
2021
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-39.php';
2022
- if( isset($a[$ipNumber]) ) return true;
2023
- foreach($a as $minIpValue => $maxIpValue){
2024
- if( 1 === $maxIpValue ) break;
2025
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
2026
- return true;
2027
- }
2028
- return false;
2029
  }
2030
 
2031
- if( $ipNumber < 3359062738 )
2032
  return false;
2033
 
2034
- if( (3359062738 <= $ipNumber) && ($ipNumber <= 3411316044) ){
2035
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-40.php'; return isset($a[$ipNumber]);
2036
  }
2037
 
2038
- if( $ipNumber < 3411413278 )
2039
  return false;
2040
 
2041
- if( (3411413278 <= $ipNumber) && ($ipNumber <= 3567018174) ){
2042
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-41.php';
2043
- if( isset($a[$ipNumber]) ) return true;
2044
- foreach($a as $minIpValue => $maxIpValue){
2045
- if( 1 === $maxIpValue ) break;
2046
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
2047
- return true;
2048
- }
2049
- return false;
2050
  }
2051
 
2052
- if( $ipNumber < 3567048342 )
2053
  return false;
2054
 
2055
- if( (3567048342 <= $ipNumber) && ($ipNumber <= 3684543015) ){
2056
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-42.php';
2057
- if( isset($a[$ipNumber]) ) return true;
2058
- foreach($a as $minIpValue => $maxIpValue){
2059
- if( 1 === $maxIpValue ) break;
2060
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
2061
- return true;
2062
- }
2063
- return false;
2064
  }
2065
 
2066
- if( $ipNumber < 3684550675 )
2067
  return false;
2068
 
2069
- if( (3684550675 <= $ipNumber) && ($ipNumber <= 3758070700) ){
2070
- $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-43.php';
2071
- if( isset($a[$ipNumber]) ) return true;
2072
- foreach($a as $minIpValue => $maxIpValue){
2073
- if( 1 === $maxIpValue ) break;
2074
- if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
2075
- return true;
2076
- }
2077
- return false;
2078
  }
2079
 
2080
  return false;
2081
  }
2082
 
2083
- }
 
 
 
 
 
 
 
 
 
 
 
7
 
8
  if( $ipVersion !== MchGdbcIPUtils::IP_VERSION_4 ) return false;
9
 
10
+ $ipNumber = (float)MchGdbcIPUtils::ipAddressToNumber($ipAddress, $ipVersion, true);
11
 
12
  if( $ipNumber < 16815956 )
13
  return false;
14
 
15
+ if( (16815956 <= $ipNumber) && ($ipNumber <= 84516421) ){
16
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-0.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
17
  }
18
 
19
+ if( $ipNumber < 84519908 )
20
  return false;
21
 
22
+ if( (84519908 <= $ipNumber) && ($ipNumber <= 96755415) ){
23
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-1.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
24
  }
25
 
26
+ if( $ipNumber < 96755416 )
27
  return false;
28
 
29
+ if( (96755416 <= $ipNumber) && ($ipNumber <= 237872199) ){
30
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-2.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
31
  }
32
 
33
+ if( $ipNumber < 237872327 )
34
  return false;
35
 
36
+ if( (237872327 <= $ipNumber) && ($ipNumber <= 249516006) ){
37
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-3.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
38
  }
39
 
40
+ if( $ipNumber < 249523604 )
41
  return false;
42
 
43
+ if( (249523604 <= $ipNumber) && ($ipNumber <= 406241728) ){
44
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-4.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
45
  }
46
 
47
+ if( $ipNumber < 406251751 )
48
  return false;
49
 
50
+ if( (406251751 <= $ipNumber) && ($ipNumber <= 528564490) ){
51
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-5.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
52
  }
53
 
54
+ if( $ipNumber < 528565671 )
55
  return false;
56
 
57
+ if( (528565671 <= $ipNumber) && ($ipNumber <= 623923820) ){
58
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-6.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
59
  }
60
 
61
+ if( $ipNumber < 623924387 )
62
  return false;
63
 
64
+ if( (623924387 <= $ipNumber) && ($ipNumber <= 675951538) ){
65
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-7.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
66
  }
67
 
68
+ if( $ipNumber < 675970053 )
69
  return false;
70
 
71
+ if( (675970053 <= $ipNumber) && ($ipNumber <= 703283687) ){
72
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-8.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
73
  }
74
 
75
+ if( $ipNumber < 703298807 )
76
  return false;
77
 
78
+ if( (703298807 <= $ipNumber) && ($ipNumber <= 757305029) ){
79
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-9.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
80
  }
81
 
82
+ if( $ipNumber < 757305031 )
83
  return false;
84
 
85
+ if( (757305031 <= $ipNumber) && ($ipNumber <= 779517128) ){
86
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-10.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
87
  }
88
 
89
+ if( $ipNumber < 779520649 )
90
  return false;
91
 
92
+ if( (779520649 <= $ipNumber) && ($ipNumber <= 787243941) ){
93
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-11.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
94
  }
95
 
96
+ if( $ipNumber < 787248588 )
97
  return false;
98
 
99
+ if( (787248588 <= $ipNumber) && ($ipNumber <= 842933174) ){
100
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-12.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
101
  }
102
 
103
+ if( $ipNumber < 842934402 )
104
  return false;
105
 
106
+ if( (842934402 <= $ipNumber) && ($ipNumber <= 977225134) ){
107
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-13.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
108
  }
109
 
110
+ if( $ipNumber < 977225138 )
111
  return false;
112
 
113
+ if( (977225138 <= $ipNumber) && ($ipNumber <= 989241583) ){
114
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-14.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
115
  }
116
 
117
+ if( $ipNumber < 989248114 )
118
  return false;
119
 
120
+ if( (989248114 <= $ipNumber) && ($ipNumber <= 993618685) ){
121
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-15.php'; return (isset($a[$ipNumber]) );
122
  }
123
 
124
+ if( $ipNumber < 993624631 )
125
  return false;
126
 
127
+ if( (993624631 <= $ipNumber) && ($ipNumber <= 1010235438) ){
128
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-16.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
129
  }
130
 
131
+ if( $ipNumber < 1010235506 )
132
  return false;
133
 
134
+ if( (1010235506 <= $ipNumber) && ($ipNumber <= 1023935986) ){
135
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-17.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
136
  }
137
 
138
+ if( $ipNumber < 1023943560 )
139
  return false;
140
 
141
+ if( (1023943560 <= $ipNumber) && ($ipNumber <= 1032500079) ){
142
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-18.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
143
  }
144
 
145
+ if( $ipNumber < 1032500127 )
146
  return false;
147
 
148
+ if( (1032500127 <= $ipNumber) && ($ipNumber <= 1034745206) ){
149
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-19.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
150
  }
151
 
152
+ if( $ipNumber < 1034747736 )
153
  return false;
154
 
155
+ if( (1034747736 <= $ipNumber) && ($ipNumber <= 1045165259) ){
156
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-20.php'; return (isset($a[$ipNumber]) );
157
  }
158
 
159
+ if( $ipNumber < 1045165272 )
160
  return false;
161
 
162
+ if( (1045165272 <= $ipNumber) && ($ipNumber <= 1054179060) ){
163
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-21.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
164
  }
165
 
166
+ if( $ipNumber < 1054188546 )
167
  return false;
168
 
169
+ if( (1054188546 <= $ipNumber) && ($ipNumber <= 1078733845) ){
170
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-22.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
171
  }
172
 
173
+ if( $ipNumber < 1078733867 )
174
  return false;
175
 
176
+ if( (1078733867 <= $ipNumber) && ($ipNumber <= 1114926791) ){
177
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-23.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
178
  }
179
 
180
+ if( $ipNumber < 1114965847 )
181
  return false;
182
 
183
+ if( (1114965847 <= $ipNumber) && ($ipNumber <= 1145130860) ){
184
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-24.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
185
  }
186
 
187
+ if( $ipNumber < 1145131514 )
188
  return false;
189
 
190
+ if( (1145131514 <= $ipNumber) && ($ipNumber <= 1170355661) ){
191
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-25.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
192
  }
193
 
194
+ if( $ipNumber < 1170355687 )
195
  return false;
196
 
197
+ if( (1170355687 <= $ipNumber) && ($ipNumber <= 1218940292) ){
198
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-26.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
199
  }
200
 
201
+ if( $ipNumber < 1218940300 )
202
  return false;
203
 
204
+ if( (1218940300 <= $ipNumber) && ($ipNumber <= 1264785034) ){
205
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-27.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
206
  }
207
 
208
+ if( $ipNumber < 1264810485 )
209
  return false;
210
 
211
+ if( (1264810485 <= $ipNumber) && ($ipNumber <= 1306750979) ){
212
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-28.php'; return (isset($a[$ipNumber]) );
213
  }
214
 
215
+ if( $ipNumber < 1306990769 )
216
  return false;
217
 
218
+ if( (1306990769 <= $ipNumber) && ($ipNumber <= 1320857191) ){
219
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-29.php'; return (isset($a[$ipNumber]) );
220
  }
221
 
222
+ if( $ipNumber < 1320857290 )
223
  return false;
224
 
225
+ if( (1320857290 <= $ipNumber) && ($ipNumber <= 1343856820) ){
226
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-30.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
227
  }
228
 
229
+ if( $ipNumber < 1343868312 )
230
  return false;
231
 
232
+ if( (1343868312 <= $ipNumber) && ($ipNumber <= 1360662274) ){
233
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-31.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
234
  }
235
 
236
+ if( $ipNumber < 1360715417 )
237
  return false;
238
 
239
+ if( (1360715417 <= $ipNumber) && ($ipNumber <= 1384776054) ){
240
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-32.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
241
  }
242
 
243
+ if( $ipNumber < 1384780886 )
244
  return false;
245
 
246
+ if( (1384780886 <= $ipNumber) && ($ipNumber <= 1403671947) ){
247
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-33.php'; return (isset($a[$ipNumber]) );
248
  }
249
 
250
+ if( $ipNumber < 1403671988 )
251
  return false;
252
 
253
+ if( (1403671988 <= $ipNumber) && ($ipNumber <= 1427721836) ){
254
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-34.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
255
  }
256
 
257
+ if( $ipNumber < 1427725226 )
258
  return false;
259
 
260
+ if( (1427725226 <= $ipNumber) && ($ipNumber <= 1440097139) ){
261
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-35.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
262
  }
263
 
264
+ if( $ipNumber < 1440097398 )
265
  return false;
266
 
267
+ if( (1440097398 <= $ipNumber) && ($ipNumber <= 1466579533) ){
268
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-36.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
269
  }
270
 
271
+ if( $ipNumber < 1466579556 )
272
  return false;
273
 
274
+ if( (1466579556 <= $ipNumber) && ($ipNumber <= 1484089732) ){
275
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-37.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
276
  }
277
 
278
+ if( $ipNumber < 1484090651 )
279
  return false;
280
 
281
+ if( (1484090651 <= $ipNumber) && ($ipNumber <= 1492929568) ){
282
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-38.php'; return (isset($a[$ipNumber]) );
283
  }
284
 
285
+ if( $ipNumber < 1492930765 )
286
  return false;
287
 
288
+ if( (1492930765 <= $ipNumber) && ($ipNumber <= 1509466763) ){
289
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-39.php'; return (isset($a[$ipNumber]) );
290
  }
291
 
292
+ if( $ipNumber < 1509466790 )
293
  return false;
294
 
295
+ if( (1509466790 <= $ipNumber) && ($ipNumber <= 1539358102) ){
296
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-40.php'; return (isset($a[$ipNumber]) );
297
  }
298
 
299
+ if( $ipNumber < 1539359432 )
300
  return false;
301
 
302
+ if( (1539359432 <= $ipNumber) && ($ipNumber <= 1546680005) ){
303
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-41.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
304
  }
305
 
306
+ if( $ipNumber < 1546680132 )
307
  return false;
308
 
309
+ if( (1546680132 <= $ipNumber) && ($ipNumber <= 1570696786) ){
310
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-42.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
311
  }
312
 
313
+ if( $ipNumber < 1570698404 )
314
  return false;
315
 
316
+ if( (1570698404 <= $ipNumber) && ($ipNumber <= 1583756695) ){
317
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-43.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
318
  }
319
 
320
+ if( $ipNumber < 1583756725 )
321
  return false;
322
 
323
+ if( (1583756725 <= $ipNumber) && ($ipNumber <= 1598347056) ){
324
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-44.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
325
  }
326
 
327
+ if( $ipNumber < 1598353493 )
328
  return false;
329
 
330
+ if( (1598353493 <= $ipNumber) && ($ipNumber <= 1608749058) ){
331
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-45.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
332
  }
333
 
334
+ if( $ipNumber < 1608754755 )
335
  return false;
336
 
337
+ if( (1608754755 <= $ipNumber) && ($ipNumber <= 1707651878) ){
338
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-46.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
339
  }
340
 
341
+ if( $ipNumber < 1707652446 )
342
  return false;
343
 
344
+ if( (1707652446 <= $ipNumber) && ($ipNumber <= 1743893391) ){
345
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-47.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
346
  }
347
 
348
+ if( $ipNumber < 1743893397 )
349
  return false;
350
 
351
+ if( (1743893397 <= $ipNumber) && ($ipNumber <= 1760322495) ){
352
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-48.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
353
  }
354
 
355
+ if( $ipNumber < 1760328738 )
356
  return false;
357
 
358
+ if( (1760328738 <= $ipNumber) && ($ipNumber <= 1806537569) ){
359
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-49.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
360
  }
361
 
362
+ if( $ipNumber < 1806537605 )
363
  return false;
364
 
365
+ if( (1806537605 <= $ipNumber) && ($ipNumber <= 1832870789) ){
366
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-50.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
367
  }
368
 
369
+ if( $ipNumber < 1832870810 )
370
  return false;
371
 
372
+ if( (1832870810 <= $ipNumber) && ($ipNumber <= 1839322799) ){
373
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-51.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
374
  }
375
 
376
+ if( $ipNumber < 1839322821 )
377
  return false;
378
 
379
+ if( (1839322821 <= $ipNumber) && ($ipNumber <= 1850484620) ){
380
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-52.php'; return (isset($a[$ipNumber]) );
381
  }
382
 
383
+ if( $ipNumber < 1850486739 )
384
  return false;
385
 
386
+ if( (1850486739 <= $ipNumber) && ($ipNumber <= 1873172073) ){
387
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-53.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
388
  }
389
 
390
+ if( $ipNumber < 1873187626 )
391
  return false;
392
 
393
+ if( (1873187626 <= $ipNumber) && ($ipNumber <= 1890399768) ){
394
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-54.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
395
  }
396
 
397
+ if( $ipNumber < 1890403077 )
398
  return false;
399
 
400
+ if( (1890403077 <= $ipNumber) && ($ipNumber <= 1902934298) ){
401
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-55.php'; return (isset($a[$ipNumber]) );
402
  }
403
 
404
+ if( $ipNumber < 1902937862 )
405
  return false;
406
 
407
+ if( (1902937862 <= $ipNumber) && ($ipNumber <= 1915483543) ){
408
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-56.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
409
  }
410
 
411
+ if( $ipNumber < 1915518715 )
412
  return false;
413
 
414
+ if( (1915518715 <= $ipNumber) && ($ipNumber <= 1934491730) ){
415
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-57.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
416
  }
417
 
418
+ if( $ipNumber < 1934491738 )
419
  return false;
420
 
421
+ if( (1934491738 <= $ipNumber) && ($ipNumber <= 1945102180) ){
422
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-58.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
423
  }
424
 
425
+ if( $ipNumber < 1945102204 )
426
  return false;
427
 
428
+ if( (1945102204 <= $ipNumber) && ($ipNumber <= 1962909599) ){
429
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-59.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
430
  }
431
 
432
+ if( $ipNumber < 1962909623 )
433
  return false;
434
 
435
+ if( (1962909623 <= $ipNumber) && ($ipNumber <= 1975756348) ){
436
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-60.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
437
  }
438
 
439
+ if( $ipNumber < 1975758201 )
440
  return false;
441
 
442
+ if( (1975758201 <= $ipNumber) && ($ipNumber <= 1982070497) ){
443
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-61.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
444
  }
445
 
446
+ if( $ipNumber < 1982076098 )
447
  return false;
448
 
449
+ if( (1982076098 <= $ipNumber) && ($ipNumber <= 1992481365) ){
450
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-62.php'; return (isset($a[$ipNumber]) );
451
  }
452
 
453
+ if( $ipNumber < 1992484101 )
454
  return false;
455
 
456
+ if( (1992484101 <= $ipNumber) && ($ipNumber <= 2008811424) ){
457
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-63.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
458
  }
459
 
460
+ if( $ipNumber < 2008811425 )
461
  return false;
462
 
463
+ if( (2008811425 <= $ipNumber) && ($ipNumber <= 2020780580) ){
464
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-64.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
465
  }
466
 
467
+ if( $ipNumber < 2020960713 )
468
  return false;
469
 
470
+ if( (2020960713 <= $ipNumber) && ($ipNumber <= 2038571618) ){
471
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-65.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
472
  }
473
 
474
+ if( $ipNumber < 2038573246 )
475
  return false;
476
 
477
+ if( (2038573246 <= $ipNumber) && ($ipNumber <= 2041580605) ){
478
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-66.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
479
  }
480
 
481
+ if( $ipNumber < 2041584305 )
482
  return false;
483
 
484
+ if( (2041584305 <= $ipNumber) && ($ipNumber <= 2054758530) ){
485
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-67.php'; return (isset($a[$ipNumber]) );
486
  }
487
 
488
+ if( $ipNumber < 2054760035 )
489
  return false;
490
 
491
+ if( (2054760035 <= $ipNumber) && ($ipNumber <= 2062363530) ){
492
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-68.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
493
  }
494
 
495
+ if( $ipNumber < 2062363676 )
496
  return false;
497
 
498
+ if( (2062363676 <= $ipNumber) && ($ipNumber <= 2078812996) ){
499
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-69.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
500
  }
501
 
502
+ if( $ipNumber < 2078827085 )
503
  return false;
504
 
505
+ if( (2078827085 <= $ipNumber) && ($ipNumber <= 2093951485) ){
506
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-70.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
507
  }
508
 
509
+ if( $ipNumber < 2093952188 )
510
  return false;
511
 
512
+ if( (2093952188 <= $ipNumber) && ($ipNumber <= 2106267565) ){
513
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-71.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
514
  }
515
 
516
+ if( $ipNumber < 2106268344 )
517
  return false;
518
 
519
+ if( (2106268344 <= $ipNumber) && ($ipNumber <= 2224750591) ){
520
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-72.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
521
  }
522
 
523
+ if( $ipNumber < 2225093733 )
524
  return false;
525
 
526
+ if( (2225093733 <= $ipNumber) && ($ipNumber <= 2356634406) ){
527
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-73.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
528
  }
529
 
530
+ if( $ipNumber < 2356650775 )
531
  return false;
532
 
533
+ if( (2356650775 <= $ipNumber) && ($ipNumber <= 2472961268) ){
534
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-74.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
535
  }
536
 
537
+ if( $ipNumber < 2474049536 )
538
  return false;
539
 
540
+ if( (2474049536 <= $ipNumber) && ($ipNumber <= 2617152121) ){
541
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-75.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
542
  }
543
 
544
+ if( $ipNumber < 2617166633 )
545
  return false;
546
 
547
+ if( (2617166633 <= $ipNumber) && ($ipNumber <= 2732747209) ){
548
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-76.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
549
  }
550
 
551
+ if( $ipNumber < 2732793874 )
552
  return false;
553
 
554
+ if( (2732793874 <= $ipNumber) && ($ipNumber <= 2822752917) ){
555
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-77.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
556
  }
557
 
558
+ if( $ipNumber < 2822753348 )
559
  return false;
560
 
561
+ if( (2822753348 <= $ipNumber) && ($ipNumber <= 2913097697) ){
562
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-78.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
563
  }
564
 
565
+ if( $ipNumber < 2913117814 )
566
  return false;
567
 
568
+ if( (2913117814 <= $ipNumber) && ($ipNumber <= 2927981098) ){
569
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-79.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
570
  }
571
 
572
+ if( $ipNumber < 2927985218 )
573
  return false;
574
 
575
+ if( (2927985218 <= $ipNumber) && ($ipNumber <= 2953428323) ){
576
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-80.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
577
  }
578
 
579
+ if( $ipNumber < 2953428330 )
580
  return false;
581
 
582
+ if( (2953428330 <= $ipNumber) && ($ipNumber <= 2971120485) ){
583
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-81.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
584
  }
585
 
586
+ if( $ipNumber < 2971133079 )
587
  return false;
588
 
589
+ if( (2971133079 <= $ipNumber) && ($ipNumber <= 2987529079) ){
590
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-82.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
591
  }
592
 
593
+ if( $ipNumber < 2987529085 )
594
  return false;
595
 
596
+ if( (2987529085 <= $ipNumber) && ($ipNumber <= 2997173255) ){
597
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-83.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
598
  }
599
 
600
+ if( $ipNumber < 2997188432 )
601
  return false;
602
 
603
+ if( (2997188432 <= $ipNumber) && ($ipNumber <= 3025970710) ){
604
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-84.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
605
  }
606
 
607
+ if( $ipNumber < 3025971424 )
608
  return false;
609
 
610
+ if( (3025971424 <= $ipNumber) && ($ipNumber <= 3041436302) ){
611
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-85.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
612
  }
613
 
614
+ if( $ipNumber < 3041438924 )
615
  return false;
616
 
617
+ if( (3041438924 <= $ipNumber) && ($ipNumber <= 3063289307) ){
618
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-86.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
619
  }
620
 
621
+ if( $ipNumber < 3063291110 )
622
  return false;
623
 
624
+ if( (3063291110 <= $ipNumber) && ($ipNumber <= 3076941775) ){
625
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-87.php'; return (isset($a[$ipNumber]) );
626
  }
627
 
628
+ if( $ipNumber < 3076945382 )
629
  return false;
630
 
631
+ if( (3076945382 <= $ipNumber) && ($ipNumber <= 3098038841) ){
632
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-88.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
633
  }
634
 
635
+ if( $ipNumber < 3098039053 )
636
  return false;
637
 
638
+ if( (3098039053 <= $ipNumber) && ($ipNumber <= 3110803565) ){
639
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-89.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
640
  }
641
 
642
+ if( $ipNumber < 3110803568 )
643
  return false;
644
 
645
+ if( (3110803568 <= $ipNumber) && ($ipNumber <= 3126013222) ){
646
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-90.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
647
  }
648
 
649
+ if( $ipNumber < 3126037445 )
650
  return false;
651
 
652
+ if( (3126037445 <= $ipNumber) && ($ipNumber <= 3135988195) ){
653
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-91.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
654
  }
655
 
656
+ if( $ipNumber < 3135993918 )
657
  return false;
658
 
659
+ if( (3135993918 <= $ipNumber) && ($ipNumber <= 3147122207) ){
660
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-92.php'; return (isset($a[$ipNumber]) );
661
  }
662
 
663
+ if( $ipNumber < 3147123670 )
664
  return false;
665
 
666
+ if( (3147123670 <= $ipNumber) && ($ipNumber <= 3161854433) ){
667
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-93.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
668
  }
669
 
670
+ if( $ipNumber < 3161855011 )
671
  return false;
672
 
673
+ if( (3161855011 <= $ipNumber) && ($ipNumber <= 3170363135) ){
674
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-94.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
675
  }
676
 
677
+ if( $ipNumber < 3170363392 )
678
  return false;
679
 
680
+ if( (3170363392 <= $ipNumber) && ($ipNumber <= 3181590756) ){
681
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-95.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
682
  }
683
 
684
+ if( $ipNumber < 3181615838 )
685
  return false;
686
 
687
+ if( (3181615838 <= $ipNumber) && ($ipNumber <= 3189864027) ){
688
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-96.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
689
  }
690
 
691
+ if( $ipNumber < 3189867019 )
692
  return false;
693
 
694
+ if( (3189867019 <= $ipNumber) && ($ipNumber <= 3196806262) ){
695
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-97.php'; return (isset($a[$ipNumber]) );
696
  }
697
 
698
+ if( $ipNumber < 3196806746 )
699
  return false;
700
 
701
+ if( (3196806746 <= $ipNumber) && ($ipNumber <= 3201995107) ){
702
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-98.php'; return (isset($a[$ipNumber]) );
703
  }
704
 
705
+ if( $ipNumber < 3201996225 )
706
  return false;
707
 
708
+ if( (3201996225 <= $ipNumber) && ($ipNumber <= 3225798692) ){
709
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-99.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
710
  }
711
 
712
+ if( $ipNumber < 3225799734 )
713
  return false;
714
 
715
+ if( (3225799734 <= $ipNumber) && ($ipNumber <= 3239278512) ){
716
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-100.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
717
  }
718
 
719
+ if( $ipNumber < 3239295010 )
720
  return false;
721
 
722
+ if( (3239295010 <= $ipNumber) && ($ipNumber <= 3261479587) ){
723
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-101.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
724
  }
725
 
726
+ if( $ipNumber < 3261479620 )
727
  return false;
728
 
729
+ if( (3261479620 <= $ipNumber) && ($ipNumber <= 3283273814) ){
730
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-102.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
731
  }
732
 
733
+ if( $ipNumber < 3283277868 )
734
  return false;
735
 
736
+ if( (3283277868 <= $ipNumber) && ($ipNumber <= 3322767546) ){
737
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-103.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
738
  }
739
 
740
+ if( $ipNumber < 3322767547 )
741
  return false;
742
 
743
+ if( (3322767547 <= $ipNumber) && ($ipNumber <= 3341852745) ){
744
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-104.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
745
  }
746
 
747
+ if( $ipNumber < 3341853726 )
748
  return false;
749
 
750
+ if( (3341853726 <= $ipNumber) && ($ipNumber <= 3359011411) ){
751
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-105.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
752
  }
753
 
754
+ if( $ipNumber < 3359011475 )
755
  return false;
756
 
757
+ if( (3359011475 <= $ipNumber) && ($ipNumber <= 3368711778) ){
758
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-106.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
759
  }
760
 
761
+ if( $ipNumber < 3368734562 )
762
  return false;
763
 
764
+ if( (3368734562 <= $ipNumber) && ($ipNumber <= 3382940143) ){
765
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-107.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
766
  }
767
 
768
+ if( $ipNumber < 3382944917 )
769
  return false;
770
 
771
+ if( (3382944917 <= $ipNumber) && ($ipNumber <= 3392466293) ){
772
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-108.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
773
  }
774
 
775
+ if( $ipNumber < 3392467060 )
776
  return false;
777
 
778
+ if( (3392467060 <= $ipNumber) && ($ipNumber <= 3397614465) ){
779
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-109.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
780
  }
781
 
782
+ if( $ipNumber < 3397614602 )
783
  return false;
784
 
785
+ if( (3397614602 <= $ipNumber) && ($ipNumber <= 3413180726) ){
786
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-110.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
787
  }
788
 
789
+ if( $ipNumber < 3413181801 )
790
  return false;
791
 
792
+ if( (3413181801 <= $ipNumber) && ($ipNumber <= 3420586004) ){
793
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-111.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
794
  }
795
 
796
+ if( $ipNumber < 3420590346 )
797
  return false;
798
 
799
+ if( (3420590346 <= $ipNumber) && ($ipNumber <= 3486889724) ){
800
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-112.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
801
  }
802
 
803
+ if( $ipNumber < 3487048348 )
804
  return false;
805
 
806
+ if( (3487048348 <= $ipNumber) && ($ipNumber <= 3517718621) ){
807
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-113.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
808
  }
809
 
810
+ if( $ipNumber < 3517718741 )
811
  return false;
812
 
813
+ if( (3517718741 <= $ipNumber) && ($ipNumber <= 3535877233) ){
814
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-114.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
815
  }
816
 
817
+ if( $ipNumber < 3535878845 )
818
  return false;
819
 
820
+ if( (3535878845 <= $ipNumber) && ($ipNumber <= 3549446470) ){
821
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-115.php'; return (isset($a[$ipNumber]) );
822
  }
823
 
824
+ if( $ipNumber < 3549447242 )
825
  return false;
826
 
827
+ if( (3549447242 <= $ipNumber) && ($ipNumber <= 3561483534) ){
828
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-116.php'; return (isset($a[$ipNumber]) );
829
  }
830
 
831
+ if( $ipNumber < 3561483583 )
832
  return false;
833
 
834
+ if( (3561483583 <= $ipNumber) && ($ipNumber <= 3572198043) ){
835
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-117.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
836
  }
837
 
838
+ if( $ipNumber < 3572199392 )
839
  return false;
840
 
841
+ if( (3572199392 <= $ipNumber) && ($ipNumber <= 3623908136) ){
842
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-118.php'; return (isset($a[$ipNumber]) );
843
  }
844
 
845
+ if( $ipNumber < 3623919116 )
846
  return false;
847
 
848
+ if( (3623919116 <= $ipNumber) && ($ipNumber <= 3645247525) ){
849
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-119.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
850
  }
851
 
852
+ if( $ipNumber < 3645250715 )
853
  return false;
854
 
855
+ if( (3645250715 <= $ipNumber) && ($ipNumber <= 3659124859) ){
856
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-120.php'; return (isset($a[$ipNumber]) );
857
  }
858
 
859
+ if( $ipNumber < 3659124860 )
860
  return false;
861
 
862
+ if( (3659124860 <= $ipNumber) && ($ipNumber <= 3668323368) ){
863
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-121.php'; return (isset($a[$ipNumber]) );
864
  }
865
 
866
+ if( $ipNumber < 3668331897 )
867
  return false;
868
 
869
+ if( (3668331897 <= $ipNumber) && ($ipNumber <= 3685125051) ){
870
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-122.php'; return (isset($a[$ipNumber]) );
871
  }
872
 
873
+ if( $ipNumber < 3685136816 )
874
  return false;
875
 
876
+ if( (3685136816 <= $ipNumber) && ($ipNumber <= 3703428386) ){
877
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-123.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
878
  }
879
 
880
+ if( $ipNumber < 3703429634 )
881
  return false;
882
 
883
+ if( (3703429634 <= $ipNumber) && ($ipNumber <= 3719599365) ){
884
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-124.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
885
  }
886
 
887
+ if( $ipNumber < 3719599480 )
888
  return false;
889
 
890
+ if( (3719599480 <= $ipNumber) && ($ipNumber <= 3730859556) ){
891
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-125.php'; return (isset($a[$ipNumber]) );
892
  }
893
 
894
+ if( $ipNumber < 3730860678 )
895
  return false;
896
 
897
+ if( (3730860678 <= $ipNumber) && ($ipNumber <= 3736739410) ){
898
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-126.php'; return (isset($a[$ipNumber]) );
899
  }
900
 
901
+ if( $ipNumber < 3736739420 )
902
  return false;
903
 
904
+ if( (3736739420 <= $ipNumber) && ($ipNumber <= 3740309698) ){
905
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-127.php'; return (isset($a[$ipNumber]) );
 
 
 
 
 
 
 
906
  }
907
 
908
+ if( $ipNumber < 3740309702 )
909
  return false;
910
 
911
+ if( (3740309702 <= $ipNumber) && ($ipNumber <= 3758080110) ){
912
+ $a=include dirname(__FILE__) . '/bad-ip-lists/attackers-ips-128.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
913
  }
914
 
915
  return false;
920
 
921
  if( $ipVersion !== MchGdbcIPUtils::IP_VERSION_4 ) return false;
922
 
923
+ $ipNumber = (float)MchGdbcIPUtils::ipAddressToNumber($ipAddress, $ipVersion, true);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
924
 
925
+ if( $ipNumber < 16821645 )
926
  return false;
927
 
928
+ if( (16821645 <= $ipNumber) && ($ipNumber <= 391644090) ){
929
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-0.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
930
  }
931
 
932
+ if( $ipNumber < 391658042 )
933
  return false;
934
 
935
+ if( (391658042 <= $ipNumber) && ($ipNumber <= 609659443) ){
936
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-1.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
937
  }
938
 
939
+ if( $ipNumber < 609798131 )
940
  return false;
941
 
942
+ if( (609798131 <= $ipNumber) && ($ipNumber <= 692932675) ){
943
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-2.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
944
  }
945
 
946
+ if( $ipNumber < 692947122 )
947
  return false;
948
 
949
+ if( (692947122 <= $ipNumber) && ($ipNumber <= 774163015) ){
950
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-3.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
951
  }
952
 
953
+ if( $ipNumber < 774163016 )
954
  return false;
955
 
956
+ if( (774163016 <= $ipNumber) && ($ipNumber <= 973638951) ){
957
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-4.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
958
  }
959
 
960
+ if( $ipNumber < 973638959 )
961
  return false;
962
 
963
+ if( (973638959 <= $ipNumber) && ($ipNumber <= 973801464) ){
964
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-5.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
965
  }
966
 
967
+ if( $ipNumber < 973801477 )
968
  return false;
969
 
970
+ if( (973801477 <= $ipNumber) && ($ipNumber <= 973830160) ){
971
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-6.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
972
  }
973
 
974
+ if( $ipNumber < 973830226 )
975
  return false;
976
 
977
+ if( (973830226 <= $ipNumber) && ($ipNumber <= 1029309857) ){
978
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-7.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
979
  }
980
 
981
+ if( $ipNumber < 1029309882 )
982
  return false;
983
 
984
+ if( (1029309882 <= $ipNumber) && ($ipNumber <= 1029323077) ){
985
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-8.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
986
  }
987
 
988
+ if( $ipNumber < 1029323087 )
989
  return false;
990
 
991
+ if( (1029323087 <= $ipNumber) && ($ipNumber <= 1054003161) ){
992
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-9.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
993
  }
994
 
995
+ if( $ipNumber < 1054003245 )
996
  return false;
997
 
998
+ if( (1054003245 <= $ipNumber) && ($ipNumber <= 1156237854) ){
999
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-10.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1000
  }
1001
 
1002
+ if( $ipNumber < 1156237900 )
1003
  return false;
1004
 
1005
+ if( (1156237900 <= $ipNumber) && ($ipNumber <= 1266079398) ){
1006
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-11.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1007
  }
1008
 
1009
+ if( $ipNumber < 1266080583 )
1010
  return false;
1011
 
1012
+ if( (1266080583 <= $ipNumber) && ($ipNumber <= 1339019273) ){
1013
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-12.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1014
  }
1015
 
1016
+ if( $ipNumber < 1339094839 )
1017
  return false;
1018
 
1019
+ if( (1339094839 <= $ipNumber) && ($ipNumber <= 1401665733) ){
1020
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-13.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1021
  }
1022
 
1023
+ if( $ipNumber < 1401750068 )
1024
  return false;
1025
 
1026
+ if( (1401750068 <= $ipNumber) && ($ipNumber <= 1474259503) ){
1027
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-14.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1028
  }
1029
 
1030
+ if( $ipNumber < 1474351859 )
1031
  return false;
1032
 
1033
+ if( (1474351859 <= $ipNumber) && ($ipNumber <= 1541444897) ){
1034
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-15.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1035
  }
1036
 
1037
+ if( $ipNumber < 1541444909 )
1038
  return false;
1039
 
1040
+ if( (1541444909 <= $ipNumber) && ($ipNumber <= 1598501176) ){
1041
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-16.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1042
  }
1043
 
1044
+ if( $ipNumber < 1598503202 )
1045
  return false;
1046
 
1047
+ if( (1598503202 <= $ipNumber) && ($ipNumber <= 1731740860) ){
1048
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-17.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1049
  }
1050
 
1051
+ if( $ipNumber < 1731740865 )
1052
  return false;
1053
 
1054
+ if( (1731740865 <= $ipNumber) && ($ipNumber <= 1808274746) ){
1055
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-18.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1056
  }
1057
 
1058
+ if( $ipNumber < 1808478795 )
1059
  return false;
1060
 
1061
+ if( (1808478795 <= $ipNumber) && ($ipNumber <= 1896580555) ){
1062
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-19.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1063
  }
1064
 
1065
+ if( $ipNumber < 1896580556 )
1066
  return false;
1067
 
1068
+ if( (1896580556 <= $ipNumber) && ($ipNumber <= 1945683185) ){
1069
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-20.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1070
  }
1071
 
1072
+ if( $ipNumber < 1945695093 )
1073
  return false;
1074
 
1075
+ if( (1945695093 <= $ipNumber) && ($ipNumber <= 2017143738) ){
1076
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-21.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1077
  }
1078
 
1079
+ if( $ipNumber < 2017143792 )
1080
  return false;
1081
 
1082
+ if( (2017143792 <= $ipNumber) && ($ipNumber <= 2088239595) ){
1083
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-22.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1084
  }
1085
 
1086
+ if( $ipNumber < 2088239597 )
1087
  return false;
1088
 
1089
+ if( (2088239597 <= $ipNumber) && ($ipNumber <= 2088261577) ){
1090
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-23.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1091
  }
1092
 
1093
+ if( $ipNumber < 2088261578 )
1094
  return false;
1095
 
1096
+ if( (2088261578 <= $ipNumber) && ($ipNumber <= 2088287947) ){
1097
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-24.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1098
  }
1099
 
1100
+ if( $ipNumber < 2088287956 )
1101
  return false;
1102
 
1103
+ if( (2088287956 <= $ipNumber) && ($ipNumber <= 2088379650) ){
1104
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-25.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1105
  }
1106
 
1107
+ if( $ipNumber < 2088379661 )
1108
  return false;
1109
 
1110
+ if( (2088379661 <= $ipNumber) && ($ipNumber <= 2088421908) ){
1111
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-26.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1112
  }
1113
 
1114
+ if( $ipNumber < 2088421910 )
1115
  return false;
1116
 
1117
+ if( (2088421910 <= $ipNumber) && ($ipNumber <= 2160578478) ){
1118
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-27.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1119
  }
1120
 
1121
+ if( $ipNumber < 2160578909 )
1122
  return false;
1123
 
1124
+ if( (2160578909 <= $ipNumber) && ($ipNumber <= 2513623593) ){
1125
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-28.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1126
  }
1127
 
1128
+ if( $ipNumber < 2513624368 )
1129
  return false;
1130
 
1131
+ if( (2513624368 <= $ipNumber) && ($ipNumber <= 2875223805) ){
1132
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-29.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1133
  }
1134
 
1135
+ if( $ipNumber < 2875223815 )
1136
  return false;
1137
 
1138
+ if( (2875223815 <= $ipNumber) && ($ipNumber <= 2875306665) ){
1139
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-30.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1140
  }
1141
 
1142
+ if( $ipNumber < 2875306681 )
1143
  return false;
1144
 
1145
+ if( (2875306681 <= $ipNumber) && ($ipNumber <= 2946062914) ){
1146
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-31.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1147
  }
1148
 
1149
+ if( $ipNumber < 2946062975 )
1150
  return false;
1151
 
1152
+ if( (2946062975 <= $ipNumber) && ($ipNumber <= 2982983537) ){
1153
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-32.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1154
  }
1155
 
1156
+ if( $ipNumber < 2982983749 )
1157
  return false;
1158
 
1159
+ if( (2982983749 <= $ipNumber) && ($ipNumber <= 3036321097) ){
1160
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-33.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1161
  }
1162
 
1163
+ if( $ipNumber < 3036324642 )
1164
  return false;
1165
 
1166
+ if( (3036324642 <= $ipNumber) && ($ipNumber <= 3108079587) ){
1167
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-34.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1168
  }
1169
 
1170
+ if( $ipNumber < 3108096093 )
1171
  return false;
1172
 
1173
+ if( (3108096093 <= $ipNumber) && ($ipNumber <= 3156610265) ){
1174
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-35.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1175
  }
1176
 
1177
+ if( $ipNumber < 3156610273 )
1178
  return false;
1179
 
1180
+ if( (3156610273 <= $ipNumber) && ($ipNumber <= 3194779555) ){
1181
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-36.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1182
  }
1183
 
1184
+ if( $ipNumber < 3194804486 )
1185
  return false;
1186
 
1187
+ if( (3194804486 <= $ipNumber) && ($ipNumber <= 3281651149) ){
1188
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-37.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1189
  }
1190
 
1191
+ if( $ipNumber < 3281651320 )
1192
  return false;
1193
 
1194
+ if( (3281651320 <= $ipNumber) && ($ipNumber <= 3376303403) ){
1195
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-38.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1196
  }
1197
 
1198
+ if( $ipNumber < 3376509651 )
1199
  return false;
1200
 
1201
+ if( (3376509651 <= $ipNumber) && ($ipNumber <= 3494127283) ){
1202
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-39.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
1203
  }
1204
 
1205
+ if( $ipNumber < 3494132447 )
1206
  return false;
1207
 
1208
+ if( (3494132447 <= $ipNumber) && ($ipNumber <= 3631449609) ){
1209
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-40.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1210
  }
1211
 
1212
+ if( $ipNumber < 3631453025 )
1213
  return false;
1214
 
1215
+ if( (3631453025 <= $ipNumber) && ($ipNumber <= 3736624901) ){
1216
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-41.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1217
  }
1218
 
1219
+ if( $ipNumber < 3736703545 )
1220
  return false;
1221
 
1222
+ if( (3736703545 <= $ipNumber) && ($ipNumber <= 3758070700) ){
1223
+ $a=include dirname(__FILE__) . '/bad-ip-lists/anonymizers-ips-42.php'; return (isset($a[$ipNumber]) || self::isIPInRange($ipNumber, $a));
 
 
 
 
 
 
 
1224
  }
1225
 
1226
  return false;
1227
  }
1228
 
1229
+ private static function isIPInRange($ipNumber, $arrIPs)
1230
+ {
1231
+ foreach($arrIPs as $minIpValue => $maxIpValue){
1232
+ if( 1 === $maxIpValue ) break;
1233
+ $minIpValue < 0 ? $minIpValue += 4294967296 : null;
1234
+ if( ($minIpValue < $ipNumber) && ($ipNumber <= $maxIpValue) )
1235
+ return true;
1236
+ }
1237
+ return false;
1238
+
1239
+ }
1240
+ }
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-0.php CHANGED
@@ -1 +1 @@
1
- <?php return array(90614272=>90614527,87957504=>87965695,87954832=>87955455,87954432=>87954823,87951872=>87952383,87951064=>87951359,87951024=>87951055,87951000=>87951015,87950848=>87950991,87560192=>87560447,96317236=>1,96314781=>1,96317546=>1,96318372=>1,96320623=>1,96318871=>1,96314176=>1,96312782=>1,96311737=>1,96311437=>1,96311969=>1,96312780=>1,96312781=>1,96323427=>1,96362707=>1,96737990=>1,96736261=>1,96739152=>1,96740374=>1,96748194=>1,96747828=>1,96734771=>1,96734287=>1,96394815=>1,96362709=>1,96731285=>1,96731521=>1,96733846=>1,96311404=>1,96311386=>1,94878588=>1,96305422=>1,94873267=>1,94860253=>1,96305545=>1,94858132=>1,96127848=>1,94880371=>1,95374909=>1,95355871=>1,95414614=>1,95569502=>1,94886933=>1,95573438=>1,96305851=>1,96306255=>1,96748273=>1,96308854=>1,96308947=>1,96309020=>1,96309893=>1,96309599=>1,96308182=>1,96307353=>1,96306677=>1,94817514=>1,96306917=>1,96306983=>1,94763952=>1,95193978=>1,96753762=>1,99385022=>1,98877322=>1,99472371=>1,99584162=>1,100155764=>1,100154875=>1,98845112=>1,98831698=>1,97407436=>1,97014818=>1,97444273=>1,98340609=>1,98719315=>1,98538505=>1,100156861=>1,100176198=>1,100558192=>1,100549225=>1,100558521=>1,100613506=>1,134403592=>1,100618267=>1,100549131=>1,100245457=>1,100241828=>1,100188164=>1,100242841=>1,100244192=>1,100245446=>1,97011866=>1,97007656=>1,96779722=>1,96767754=>1,96779804=>1,96779805=>1,96792434=>1,96789409=>1,96755692=>1,96753786=>1,96749471=>1,96749336=>1,96750188=>1,96750295=>1,94762317=>1,96886342=>1,96960897=>1,96970703=>1,96966273=>1,96979942=>1,96980867=>1,96989301=>1,96981847=>1,96966013=>1,96964332=>1,96961212=>1,96961191=>1,96961985=>1,96964220=>1,96964291=>1,96748314=>1,94696060=>1,92776044=>1,92775905=>1,92778537=>1,92778559=>1,92779192=>1,92778617=>1,92775129=>1,92775004=>1,92773241=>1,92772495=>1,92773989=>1,92774254=>1,92774961=>1,92774272=>1,92779984=>1,92779989=>1,92783330=>1,92782279=>1,92784068=>1,92784397=>1,92785774=>1,92784398=>1,92782209=>1,92781261=>1,92780568=>1,92780514=>1,92780945=>1,92781091=>1,92781129=>1,92772418=>1,92770755=>1,90358532=>1,89673624=>1,90481488=>1,90498112=>1,90504601=>1,90504600=>1,89329764=>1,89091407=>1,89081961=>1,89081796=>1,89082357=>1,89083532=>1,89090583=>1,90531410=>1,90531654=>1,92740523=>1,92738853=>1,92750225=>1,92754719=>1,92762914=>1,92755223=>1,92734296=>1,92647623=>1,90728991=>1,90548286=>1,90729103=>1,90776651=>1,92404397=>1,92785784=>1,92785785=>1,94184994=>1,94184978=>1,94281648=>1,94320135=>1,94387728=>1,94334107=>1,94027426=>1,94008498=>1,93973106=>1,93973098=>1,93975929=>1,93980193=>1,93980339=>1,94387781=>1,94388050=>1,134427116=>1,94685949=>1,94699446=>1,94716476=>1,94743504=>1,94733858=>1,94435145=>1,94435132=>1,94394786=>1,94394226=>1,94432680=>1,94434845=>1,94435088=>1,93944600=>1,93943811=>1,93357149=>1,93307657=>1,93400742=>1,93487511=>1,93507421=>1,93506748=>1,93150696=>1,93132403=>1,92794711=>1,92785786=>1,92798499=>1,92981791=>1,93129046=>1,93515283=>1,93538533=>1,93771309=>1,93770247=>1,93771373=>1,93771575=>1,93943393=>1,93773193=>1,93768943=>1,93768880=>1,93714509=>1,93677963=>1,93714666=>1,93715036=>1,93766102=>1,94762128=>1,134509886=>1,244594052=>1,244592219=>1,244638306=>1,244947480=>1,245141305=>1,245010166=>1,244457563=>1,244457088=>1,244147773=>1,244141322=>1,244188193=>1,244404302=>1,244412664=>1,244412579=>1,245320541=>1,245858258=>1,248067510=>1,247951795=>1,248085132=>1,248085914=>1,248178225=>1,248159705=>1,247949993=>1,247911362=>1,247501291=>1,247181721=>1,247864259=>1,247876091=>1,247910885=>1,247910873=>1,244136136=>1,244122238=>1,242692178=>1,242692062=>1,242693294=>1,242693484=>1,242762301=>1,242693573=>1,242691099=>1,242690850=>1,242437862=>1,242437817=>1,242659277=>1,242662259=>1,242690526=>1,242690340=>1,242785430=>1,243072086=>1,244050910=>1,244046338=>1,244054524=>1,244055410=>1,244094750=>1,244093555=>1,244045239=>1,244045235=>1,243846950=>1,243168841=>1,243854468=>1,244021501=>1,244030642=>1,248193643=>1,248450137=>1,387717806=>1,387717402=>1,387717820=>1,387721342=>1,387721803=>1,387721529=>1,387716272=>1,387713553=>1,387457666=>1,387266181=>1,387471810=>1,387674162=>1,387712873=>1,387712786=>1,387729110=>1,387732455=>1,387798508=>1,387773712=>1,387798850=>1,391377111=>1,391378989=>1,391378539=>1,387773628=>1,387768751=>1,387733369=>1,387732962=>1,387737479=>1,387742502=>1,387758812=>1,387742859=>1,387262376=>1,318243157=>1,248935634=>1,248801954=>1,248936085=>1,248937485=>1,249178133=>1,249001857=>1,248741782=>1,248740806=>1,248461392=>1,248455931=>1,248500918=>1,248668081=>1,248739747=>1,248696645=>1,249182315=>1,249186081=>1,307363934=>1,264377992=>1,307364744=>1,307364804=>1,317653045=>1,313853221=>1,249445805=>1,249444646=>1,249191636=>1,249187646=>1,249217345=>1,249400038=>1,249410635=>1,242429298=>1,242418528=>1,201797545=>1,201618106=>1,201872496=>1,201872509=>1,201872638=>1,201872562=>1,137138332=>1,136935816=>1,136855398=>1,136854894=>1,136877895=>1,136886009=>1,136934189=>1,136933842=>1,201943134=>1,201943659=>1,210045382=>1,210000189=>1,210048454=>1,211356797=>1,211446331=>1,211356964=>1,205933835=>1,205847911=>1,202755400=>1,202191179=>1,202775560=>1,203708020=>1,204495436=>1,203747252=>1,136745173=>1,136745138=>1,135612617=>1,135523816=>1,135612749=>1,135742806=>1,135937349=>1,135863309=>1,135521584=>1,135478636=>1,135347908=>1,134805367=>1,135364158=>1,135364329=>1,135364569=>1,135364340=>1,135937350=>1,135937351=>1,136172078=>1,136093542=>1,136209997=>1,136246697=>1,136646364=>1,136502103=>1,136041448=>1,136041300=>1,136029482=>1,135952853=>1,136029703=>1,136040561=>1,136041150=>1,211446350=>1,211446835=>1,236752578=>1,236752289=>1,236752894=>1,237091124=>1,237419297=>1,237147509=>1,236722925=>1,236720772=>1,236282676=>1,236121188=>1,236406292=>1,236416258=>1,236719768=>1,236430666=>1,237419435=>1,238103074=>1,241573985=>1,241573891=>1,241579523=>1,241588701=>1,242342423=>1,241594822=>1,241568793=>1,241566274=>1,241198156=>1,239067212=>1,241206176=>1,241307117=>1,241332265=>1,241317166=>1,236121187=>1,236113757=>1,214676355=>1,213565765=>1,214890731=>1,215437818=>1,222386844=>1,215741770=>1,213359470=>1,213090779=>1,211851170=>1,211851132=>1,211906343=>1,212297010=>1,212394767=>1,212350516=>1,222548201=>1,222564998=>1,224166777=>1,224056917=>1,224178918=>1,224180077=>1,234957723=>1,224197029=>1,223350269=>1,223320968=>1,222796596=>1,222688679=>1,222915891=>1,223094913=>1,223117945=>1,89081518=>1,89052265=>1,29491015=>1,29476487=>1,29584499=>1,29584972=>1,29766423=>1,29694931=>1,29463663=>1,29447131=>1,29349233=>1,29302231=>1,29383474=>1,29435628=>1,29446876=>1,29446047=>1,29833067=>1,29834236=>1,30522548=>1,30522547=>1,30522550=>1,32463303=>1,33937993=>1,32797712=>1,30505527=>1,30400617=>1,29877608=>1,29857449=>1,30016657=>1,30359234=>1,30363563=>1,29104334=>1,29016066=>1,28555773=>1,28555769=>1,28556761=>1,28556925=>1,28558601=>1,28557865=>1,28555117=>1,28555101=>1,28553253=>1,28545689=>1,28554645=>1,28555035=>1,28555097=>1,28555094=>1,28558865=>1,28558885=>1,29012078=>1,28824060=>1,29012148=>1,29012177=>1,29012207=>1,29012199=>1,28803474=>1,28765440=>1,28560138=>1,28559634=>1,28696757=>1,28701746=>1,28753277=>1,36115862=>1,37583664=>1,40360457=>1,39775428=>1,40560471=>1,40778820=>1,40800902=>1,40784003=>1,39756082=>1,39683788=>1,39683741=>1,39683732=>1,39683750=>1,39683752=>1,39683781=>1,39683767=>1,40819503=>1,40846876=>1,43620735=>1,42704974=>1,43730704=>1,44425480=>1,45148257=>1,45146579=>1,42637334=>1,42495481=>1,42331633=>1,42208782=>1,42440239=>1,42462956=>1,42469688=>1,39683715=>1,39683712=>1,39517414=>1,39511452=>1,39568208=>1,39647576=>1,39675172=>1,39658035=>1,39503998=>1,39437396=>1,39061561=>1,37873513=>1,39113050=>1,39115685=>1,39310753=>1,39198582=>1,39683585=>1,39683614=>1,39683668=>1,39683657=>1,39683671=>1,39683684=>1,39683709=>1,39683704=>1,39683653=>1,39683646=>1,39683631=>1,39683616=>1,39683632=>1,39683639=>1,39683644=>1,28544946=>1,28366873=>1,20483460=>1,20444052=>1,20554450=>1,20625601=>1,20712800=>1,20709540=>1,19196484=>1,19193128=>1,18992491=>1,18898953=>1,18998942=>1,19004883=>1,19180442=>1,19047225=>1,20845819=>1,20908727=>1,27267438=>1,27266657=>1,27268774=>1,27272981=>1,27278642=>1,27273169=>1,27265732=>1,22872767=>1,21308513=>1,21276024=>1,21335135=>1,21346957=>1,22360478=>1,18797077=>1,18548923=>1,16840862=>1,16840486=>1,16840991=>1,16841301=>1,16841658=>1,16841587=>1,16840407=>1,16839989=>1,16839057=>1,16821645=>1,16839146=>1,16839255=>1,16839798=>1,16839410=>1,16842261=>1,16883120=>1,17410610=>1,17094589=>1,18138313=>1,18263315=>1,18523599=>1,18365436=>1,17080011=>1,17079479=>1,16887406=>1,16886560=>1,16889135=>1,16889161=>1,16891888=>1,27283970=>1,27307912=>1,28072903=>1,28067884=>1,28090521=>1,28097739=>1,28148296=>1,28148231=>1,28047383=>1,28021419=>1,27929091=>1,27906041=>1,27954119=>1,27985092=>1,27987364=>1,27986649=>1,28157185=>1,28157249=>1,28263555=>1,28262269=>1,28264658=>1,28288343=>1,28352495=>1,28308799=>1,28254563=>1,28254455=>1,28190841=>1,28157262=>1,28195549=>1,28195902=>1,28242142=>1,27905445=>1,27904772=>1,27472043=>1,27471581=>1,27472509=>1,27505631=>1,27508561=>1,27508197=>1,27468541=>1,27465316=>1,27396381=>1,27365849=>1,27406581=>1,27449872=>1,27462179=>1,27450758=>1,27511817=>1,27549100=>1,27854317=>1,27639083=>1,27865852=>1,27882811=>1,27904224=>1,27902972=>1,27632145=>1,27616636=>1,27551140=>1,27549997=>1,27560610=>1,27562183=>1,27562631=>1,45148274=>1,45149376=>1,86462873=>1,86462599=>1,86463168=>1,86463259=>1,86463705=>1,86463449=>1,86462492=>1,86462185=>1,86448284=>1,86444214=>1,86448287=>1,86461598=>1,86462053=>1,86461904=>1,86464206=>1,86464296=>1,86473824=>1,86471232=>1,86497550=>1,86497815=>1,86795710=>1,86497923=>1,86466446=>1,86466108=>1,86464566=>1,86464565=>1,86464892=>1,86465451=>1,86465735=>1,86245026=>1,86244343=>1,85167608=>1,84810277=>1,85172839=>1,85178405=>1,85192074=>1,85185095=>1,84713828=>1,84675388=>1,84553569=>1,84553443=>1,84553716=>1,84570205=>1,84651181=>1,84643757=>1,85378007=>1,85378706=>1,86161224=>1,86161181=>1,86161357=>1,86161362=>1,86243722=>1,86180535=>1,86161178=>1,86160451=>1,85413021=>1,85411426=>1,85562245=>1,85737045=>1,86155492=>1,86851681=>1,86854956=>1,87951061=>1,87951019=>1,87951062=>1,87951063=>1,87954826=>1,87954825=>1,87951018=>1,87951016=>1,87924981=>1,87924861=>1,87929699=>1,87950992=>1,87950995=>1,87950994=>1,87954827=>1,88031534=>1,16820335=>1,89050535=>1,89053538=>1,89079948=>1,89080340=>1,89080014=>1,89019293=>1,88944526=>1,88201473=>1,88053899=>1,88298267=>1,88522398=>1,88920924=>1,87893763=>1,87893287=>1,87265780=>1,87113031=>1,87278331=>1,87280881=>1,87284766=>1,87284344=>1,86863166=>1,86863037=>1,86860339=>1,86860159=>1,86860399=>1,86860822=>1,86862896=>1,86862648=>1,87363767=>1,87559177=>1,87590279=>1,87590163=>1,87615850=>1,87629923=>1,87892543=>1,87629933=>1,87559196=>1,87559194=>1,87559181=>1,87559178=>1,87559189=>1,87559191=>1,87559192=>1,84553230=>1,84553067=>1,49453135=>1,49453083=>1,49459296=>1,49461108=>1,49464319=>1,49463774=>1,49442480=>1,49436989=>1,49425431=>1,49423580=>1,49427674=>1,49432049=>1,49436074=>1,49435987=>1,49466121=>1,49469065=>1,84049994=>1,83974984=>1,84052599=>1,84053168=>1,84069809=>1,84065663=>1,83964554=>1,69156934=>1,49478398=>1,49471981=>1,49478579=>1,49638349=>1,49659376=>1,49423481=>1,49420772=>1,45716835=>1,45715606=>1,45879350=>1,47986056=>1,48359260=>1,48336262=>1,45703937=>1,45587202=>1,45351475=>1,45152375=>1,45355951=>1,45415462=>1,45565995=>1,45556156=>1,48428457=>1,48669950=>1,49307631=>1,49298838=>1,49316439=>1,49327403=>1,49350636=>1,49340422=>1,49296570=>1,49288058=>1,48746809=>1,48737978=>1,48929093=>1,49100062=>1,49224701=>1,84074862=>1,84076176=>1,84511746=>1,84509146=>1,84511986=>1,84512585=>1,84514148=>1,84513483=>1,84508858=>1,84508655=>1,84503640=>1,84503639=>1,84504300=>1,84505829=>1,84505961=>1,84505851=>1,84514801=>1,84515186=>1,84534123=>1,84530380=>1,84540906=>1,84552084=>1,84552890=>1,84552508=>1,84526523=>1,84525964=>1,84516317=>1,84515857=>1,84516427=>1,84519716=>1,84524852=>1,84502214=>1,84499348=>1,84471878=>1,84471877=>1,84477826=>1,84477948=>1,84482779=>1,84477961=>1,84471876=>1,84471875=>1,84079494=>1,84079372=>1,84120481=>1,84125233=>1,84465062=>1,84462626=>1,84484357=>1,84484381=>1,84496134=>1,84494907=>1,84496270=>1,84496282=>1,84497356=>1,84496681=>1,84491793=>1,84490889=>1,84486915=>1,84485619=>1,84486992=>1,84488788=>1,84489772=>1,89080993=>1,);?>
1
+ <?php return array(214406194=>214406195,135937350=>135937351,96779804=>96779805,96312780=>96312781,92785784=>92785785,90614272=>90614527,90504600=>90504601,87957504=>87965695,87954832=>87955455,87954826=>87954827,87954432=>87954823,87951872=>87952383,87951062=>87951359,87951024=>87951055,87951018=>87951019,87951000=>87951015,87950994=>87950995,87950848=>87950991,87560192=>87560447,84471876=>84471877,96311737=>1,100241828=>1,96311437=>1,96309599=>1,96309020=>1,96309893=>1,96311386=>1,96734287=>1,96311404=>1,96311969=>1,96731285=>1,96318372=>1,96317546=>1,96318871=>1,96320623=>1,96334811=>1,96323427=>1,96317236=>1,96314781=>1,100188164=>1,96731521=>1,96308947=>1,96733846=>1,96314176=>1,96312782=>1,96394815=>1,96306255=>1,94860253=>1,94858439=>1,94872298=>1,94873267=>1,94880371=>1,94878588=>1,94858132=>1,94817514=>1,94733858=>1,94696060=>1,94743504=>1,94762128=>1,94763952=>1,95193978=>1,95355871=>1,96306677=>1,96734771=>1,96306917=>1,96306983=>1,96308182=>1,96307353=>1,96305851=>1,96305545=>1,95569502=>1,95414614=>1,95573438=>1,96127848=>1,96305422=>1,96308854=>1,96748194=>1,96989301=>1,96984750=>1,97007656=>1,97011866=>1,97444273=>1,97407436=>1,96982980=>1,96981847=>1,96966273=>1,96966013=>1,96970703=>1,100178680=>1,96980867=>1,98340609=>1,98538505=>1,99675451=>1,99584162=>1,100154875=>1,100155764=>1,100156861=>1,99472371=>1,99385022=>1,98831698=>1,98719315=>1,98845112=>1,98872173=>1,98877322=>1,96964332=>1,96964220=>1,96748314=>1,96748273=>1,94685949=>1,96749336=>1,96749910=>1,96749471=>1,100176198=>1,96747828=>1,96739152=>1,96737990=>1,96740374=>1,96746877=>1,96746878=>1,96749912=>1,96750188=>1,96886342=>1,96792434=>1,96960897=>1,96961212=>1,96961985=>1,96789409=>1,96779722=>1,96753762=>1,96750295=>1,96753786=>1,96755692=>1,96767754=>1,96736261=>1,94320135=>1,92780514=>1,92779989=>1,92780568=>1,92780945=>1,92781129=>1,92781091=>1,92779984=>1,92779192=>1,92776044=>1,92775905=>1,92778537=>1,92778559=>1,92778617=>1,92781261=>1,92782209=>1,92793489=>1,92793488=>1,92793490=>1,92793491=>1,92793493=>1,92793492=>1,92785786=>1,92785774=>1,92783330=>1,92782279=>1,92784068=>1,92784397=>1,92784398=>1,92775129=>1,92775004=>1,90729103=>1,90728991=>1,90776651=>1,92404397=>1,92698217=>1,92647623=>1,90548286=>1,90531654=>1,90498112=>1,90358532=>1,90504601=>1,90512519=>1,90531410=>1,92734296=>1,92736632=>1,92773241=>1,92772495=>1,92773989=>1,92774254=>1,92774961=>1,92774272=>1,92772418=>1,92770755=>1,92740523=>1,92738853=>1,92750225=>1,92754719=>1,92755223=>1,92793494=>1,92793495=>1,93943393=>1,93907209=>1,93943811=>1,93944600=>1,93973106=>1,93973098=>1,93773193=>1,93771575=>1,93768943=>1,93768880=>1,93770767=>1,93771309=>1,93771373=>1,93975929=>1,93980193=>1,94392026=>1,94387781=>1,94394786=>1,94434845=>1,94435132=>1,94435088=>1,94387728=>1,100242841=>1,94008498=>1,93980409=>1,94027426=>1,94184978=>1,94184994=>1,93766102=>1,93715036=>1,92794711=>1,92793503=>1,92798499=>1,92897348=>1,93126736=>1,92995488=>1,92793502=>1,92793501=>1,92793497=>1,92793496=>1,92793498=>1,92793499=>1,92793500=>1,93129046=>1,93132403=>1,93530765=>1,93507421=>1,93538533=>1,93677963=>1,93714666=>1,93714509=>1,93506748=>1,93495692=>1,93357149=>1,93307657=>1,93400742=>1,93480697=>1,93487511=>1,94435145=>1,100245457=>1,244141322=>1,244136136=>1,244147773=>1,244188193=>1,244412664=>1,244412579=>1,244122238=>1,244094750=>1,244046338=>1,244045239=>1,244050910=>1,244054524=>1,244093555=>1,244055410=>1,244457088=>1,244457563=>1,247588842=>1,247501291=>1,247864259=>1,247876091=>1,247910885=>1,247910873=>1,247181721=>1,245320541=>1,244594052=>1,244592219=>1,244638306=>1,244947480=>1,245141305=>1,245010166=>1,244045235=>1,244030642=>1,242437862=>1,242437817=>1,242659277=>1,242662259=>1,242690850=>1,242690340=>1,242429298=>1,242418528=>1,241579523=>1,241573985=>1,241588701=>1,241594822=>1,242342423=>1,241801351=>1,242691099=>1,242691107=>1,243072086=>1,242785430=>1,243168841=>1,243846950=>1,244021501=>1,243854468=>1,242762301=>1,242762161=>1,242692627=>1,242692178=>1,242693294=>1,242693484=>1,242693573=>1,247911362=>1,247951795=>1,387716272=>1,387715355=>1,387716786=>1,387717402=>1,387721342=>1,387717820=>1,387713553=>1,387712873=>1,318243157=>1,317653045=>1,387457666=>1,387471810=>1,387712786=>1,387674162=>1,387721529=>1,387721803=>1,387798850=>1,387798508=>1,387968817=>1,391377111=>1,391644090=>1,391378989=>1,387773628=>1,387768751=>1,387733369=>1,387732962=>1,387737479=>1,387742502=>1,387758812=>1,387742859=>1,313853221=>1,307364804=>1,248668081=>1,248500918=>1,248696645=>1,248712171=>1,248740806=>1,248739747=>1,248457887=>1,248450137=>1,248085132=>1,248067510=>1,248085914=>1,248159705=>1,248193643=>1,248178225=>1,248801954=>1,248922563=>1,249410635=>1,249191761=>1,249444646=>1,249445805=>1,307364744=>1,264377992=>1,249187646=>1,249186081=>1,248936085=>1,248935634=>1,248937485=>1,249001857=>1,249182315=>1,241573891=>1,241568793=>1,136855398=>1,136854894=>1,136886009=>1,136933842=>1,136935816=>1,136934189=>1,136745173=>1,136745138=>1,136093542=>1,136041448=>1,136172078=>1,136246697=>1,136646364=>1,136502103=>1,137138332=>1,148914627=>1,202775560=>1,202755400=>1,203708020=>1,203747252=>1,205847911=>1,204495436=>1,201943659=>1,201943134=>1,201797545=>1,201618106=>1,201872496=>1,201872509=>1,201872638=>1,201872562=>1,136041300=>1,136041150=>1,100621650=>1,100621609=>1,134403592=>1,134427116=>1,134805367=>1,134509886=>1,100621523=>1,100618267=>1,100549131=>1,89673624=>1,100549225=>1,100558192=>1,100613506=>1,100558521=>1,135347908=>1,135364158=>1,135863309=>1,135612749=>1,135937349=>1,136029482=>1,136040561=>1,136029703=>1,135612617=>1,135523816=>1,135364340=>1,135364329=>1,135364569=>1,135478636=>1,135521584=>1,205933835=>1,210000189=>1,236113757=>1,235121345=>1,236121187=>1,236121188=>1,236416258=>1,236406292=>1,224197029=>1,224180077=>1,223350269=>1,223321858=>1,223664705=>1,224056917=>1,224178918=>1,224166777=>1,236719768=>1,236720772=>1,241198156=>1,239067212=>1,241206176=>1,241307117=>1,241566274=>1,241317166=>1,238103074=>1,237419435=>1,236752578=>1,236722925=>1,236752894=>1,237091124=>1,237419297=>1,237147509=>1,223320968=>1,223094913=>1,211851170=>1,211851132=>1,211851257=>1,211906343=>1,212394767=>1,212297010=>1,211851010=>1,211446350=>1,210048454=>1,210045382=>1,211356744=>1,211356797=>1,211446331=>1,211356964=>1,213090779=>1,213565765=>1,222564998=>1,222548201=>1,222688679=>1,222796596=>1,223046080=>1,222915891=>1,222548028=>1,222386844=>1,214890731=>1,214676355=>1,215437818=>1,215741770=>1,216223810=>1,100245446=>1,89080340=>1,29834236=>1,29833067=>1,29857449=>1,29877608=>1,30337439=>1,30016657=>1,29719720=>1,29694931=>1,29463663=>1,29447131=>1,29476487=>1,29491015=>1,29584972=>1,29584499=>1,30359234=>1,30363563=>1,35207249=>1,32797712=>1,35546277=>1,35945573=>1,37583664=>1,36115862=>1,32463303=>1,32405299=>1,30505527=>1,30400617=>1,30522547=>1,30522548=>1,30522550=>1,29446876=>1,29446047=>1,28557865=>1,28556925=>1,28558865=>1,28558885=>1,28560138=>1,28559634=>1,28556761=>1,28555773=>1,28555094=>1,28555035=>1,28555097=>1,28555101=>1,28555769=>1,28555117=>1,28696757=>1,28701746=>1,29104334=>1,29016066=>1,29302231=>1,29349233=>1,29435628=>1,29383474=>1,29012207=>1,29012199=>1,28765440=>1,28702221=>1,28803474=>1,28824060=>1,29012177=>1,39061561=>1,39061681=>1,39844120=>1,39756082=>1,40360457=>1,40560471=>1,40784003=>1,40778820=>1,39684812=>1,39683803=>1,39683752=>1,39683750=>1,39683767=>1,39683781=>1,39683788=>1,39683785=>1,40800902=>1,40819503=>1,42656917=>1,42637334=>1,42704974=>1,43620735=>1,45146579=>1,43730704=>1,42609505=>1,42495481=>1,42208782=>1,40846876=>1,42440239=>1,42462956=>1,42469688=>1,39683743=>1,39683732=>1,39658035=>1,39647857=>1,39674668=>1,39675172=>1,39683614=>1,39683585=>1,39627708=>1,39600956=>1,39115685=>1,39062425=>1,39310753=>1,39503998=>1,39546916=>1,39517414=>1,39683616=>1,39683626=>1,39683684=>1,39683678=>1,39683704=>1,39683709=>1,39683715=>1,39683712=>1,39683668=>1,39683657=>1,39683632=>1,39683631=>1,39683644=>1,39683646=>1,39683653=>1,28554645=>1,28553253=>1,20908727=>1,20898309=>1,21276024=>1,21308513=>1,21346957=>1,21335135=>1,20845819=>1,20712800=>1,20444052=>1,19196484=>1,20483460=>1,20554450=>1,20709540=>1,20625601=>1,22360478=>1,22872767=>1,27365849=>1,27365288=>1,27367438=>1,27396381=>1,27409185=>1,27406581=>1,27283970=>1,27278642=>1,27267438=>1,27266874=>1,27270783=>1,27272981=>1,27277598=>1,19180442=>1,19060962=>1,16887427=>1,16842261=>1,16889135=>1,16889161=>1,16908059=>1,16891888=>1,16841587=>1,16841545=>1,16839798=>1,16839146=>1,16839989=>1,16840804=>1,16840991=>1,16840862=>1,17079479=>1,17080011=>1,18797077=>1,18548923=>1,18898953=>1,18992491=>1,19047225=>1,18998942=>1,18523599=>1,18365436=>1,18233090=>1,18138313=>1,18242508=>1,18249438=>1,18263315=>1,27449872=>1,27450758=>1,28157262=>1,28157249=>1,28190841=>1,28190898=>1,28242142=>1,28195549=>1,28157185=>1,28116419=>1,28021419=>1,27987364=>1,28047383=>1,28072903=>1,28097739=>1,28090521=>1,28242696=>1,28242787=>1,28288343=>1,28285733=>1,28308799=>1,28366873=>1,28545689=>1,28544946=>1,28265153=>1,28264658=>1,28254455=>1,28243867=>1,28254563=>1,28262269=>1,28263555=>1,27986649=>1,27985092=>1,27549100=>1,27511817=>1,27549997=>1,27551140=>1,27562183=>1,27560610=>1,27508687=>1,27508561=>1,27472043=>1,27468541=>1,27472509=>1,27505631=>1,27508197=>1,27562631=>1,27616636=>1,27904224=>1,27902972=>1,27905445=>1,27906041=>1,27954119=>1,27929091=>1,27882811=>1,27865852=>1,27632145=>1,27631947=>1,27632887=>1,27639083=>1,27854317=>1,45148257=>1,45148274=>1,86463168=>1,86462873=>1,86463259=>1,86463449=>1,86464206=>1,86463705=>1,86462599=>1,86462492=>1,86448287=>1,86448284=>1,86461598=>1,86461904=>1,86462185=>1,86462053=>1,86464565=>1,86464566=>1,86497923=>1,86497550=>1,86498975=>1,86551052=>1,86757751=>1,86710884=>1,86473824=>1,86471232=>1,86465451=>1,86464892=>1,86465735=>1,86466108=>1,86466446=>1,86444214=>1,86245026=>1,85172839=>1,85167608=>1,85178405=>1,85185095=>1,85378007=>1,85192074=>1,84818961=>1,84810277=>1,84643757=>1,84570205=>1,84651181=>1,84693921=>1,84726654=>1,84713828=>1,85378706=>1,85411426=>1,86161357=>1,86161224=>1,86161362=>1,86180535=>1,86244343=>1,86243722=>1,86161181=>1,86161178=>1,85562245=>1,85413021=>1,85737045=>1,86155492=>1,86160451=>1,86795710=>1,86851681=>1,88298267=>1,88201473=>1,88522398=>1,88920924=>1,88944543=>1,88944526=>1,88053899=>1,87954825=>1,87924861=>1,87893763=>1,87924981=>1,87950992=>1,87951061=>1,87951016=>1,89015987=>1,89019293=>1,89081518=>1,89080993=>1,89081961=>1,89082357=>1,89091407=>1,89083532=>1,16821645=>1,89080014=>1,89050535=>1,89023761=>1,89052265=>1,89053538=>1,89055050=>1,87892543=>1,87684211=>1,87113031=>1,86863166=>1,87265780=>1,87278331=>1,87284344=>1,87280881=>1,86863037=>1,86862896=>1,86860159=>1,86854956=>1,86860339=>1,86860399=>1,86862648=>1,86860822=>1,87284766=>1,87292228=>1,87587295=>1,87559196=>1,87590163=>1,87590279=>1,87629933=>1,87629923=>1,87559192=>1,87559191=>1,87559177=>1,87363767=>1,87559178=>1,87559181=>1,87559189=>1,84553716=>1,84553569=>1,49461108=>1,49459296=>1,49462205=>1,49463774=>1,49466121=>1,49464319=>1,49453135=>1,49453083=>1,49435987=>1,49433745=>1,49436074=>1,49436989=>1,49443900=>1,49442480=>1,49466509=>1,49466762=>1,83974984=>1,83964554=>1,84049994=>1,84052599=>1,84069809=>1,84065663=>1,69156934=>1,49639913=>1,49471078=>1,49469065=>1,49478398=>1,49478579=>1,49637128=>1,49430491=>1,49425431=>1,45716835=>1,45703937=>1,45879350=>1,45879453=>1,48336262=>1,47865922=>1,45587202=>1,45565995=>1,45152375=>1,45149376=>1,45351475=>1,45355951=>1,45556156=>1,45415462=>1,48359260=>1,48428457=>1,49358425=>1,49357110=>1,49420772=>1,49422436=>1,49423580=>1,49423481=>1,49356343=>1,49305786=>1,48737978=>1,48669950=>1,48929093=>1,49100062=>1,49224701=>1,84074862=>1,84076176=>1,84512585=>1,84511986=>1,84513483=>1,84514148=>1,84515186=>1,84514801=>1,84511746=>1,84509146=>1,84504300=>1,84503640=>1,84505829=>1,84505851=>1,84508858=>1,84508655=>1,84515857=>1,84516427=>1,84552685=>1,84540906=>1,84552890=>1,84553163=>1,84553443=>1,84553230=>1,84535423=>1,84534123=>1,84524852=>1,84519716=>1,84525964=>1,84526523=>1,84530380=>1,84503639=>1,84502214=>1,84477826=>1,84471878=>1,84477948=>1,84477961=>1,84484357=>1,84482779=>1,84471875=>1,84467742=>1,84079494=>1,84079372=>1,84120481=>1,84125233=>1,84462626=>1,84484381=>1,84486915=>1,84496282=>1,84496270=>1,84496681=>1,84497356=>1,84501035=>1,84499348=>1,84496134=>1,84494907=>1,84488788=>1,84486992=>1,84489772=>1,84490889=>1,84491793=>1,89329764=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-1.php CHANGED
@@ -1 +1 @@
1
- <?php return array(392060424=>392060431,529706325=>1,529003286=>1,529708666=>1,529824166=>1,529824562=>1,529824548=>1,528880752=>1,528784520=>1,528680103=>1,528623661=>1,528684374=>1,528696140=>1,528743204=>1,529825110=>1,529825165=>1,530247687=>1,530139513=>1,530733568=>1,530733996=>1,530827835=>1,530825254=>1,530042611=>1,530041817=>1,529825175=>1,529825169=>1,529849167=>1,529849268=>1,529959010=>1,529849456=>1,528590414=>1,528577369=>1,522145329=>1,522144937=>1,522172503=>1,522177334=>1,522804807=>1,522725919=>1,522144693=>1,522144303=>1,521991398=>1,521971886=>1,522019290=>1,522056120=>1,522144222=>1,522144195=>1,522836964=>1,522856976=>1,523199391=>1,523199365=>1,523385318=>1,523398398=>1,524013943=>1,523507362=>1,523046965=>1,523040135=>1,522939507=>1,522916189=>1,522949220=>1,523000796=>1,523038035=>1,523035867=>1,531121012=>1,531134135=>1,532735161=>1,532729036=>1,532746999=>1,532777742=>1,532780387=>1,532780386=>1,532727789=>1,532726052=>1,532701847=>1,532377328=>1,532703362=>1,532703539=>1,532722426=>1,532716958=>1,533181826=>1,533184529=>1,533659747=>1,533502758=>1,533719327=>1,533726998=>1,533727779=>1,533727442=>1,533501820=>1,533501819=>1,533312663=>1,533184532=>1,533501773=>1,533501817=>1,533501818=>1,532367040=>1,532366885=>1,531340135=>1,531261773=>1,531340140=>1,531356007=>1,531374031=>1,531362867=>1,531255849=>1,531190721=>1,531155028=>1,531140791=>1,531162818=>1,531164396=>1,531187393=>1,531185874=>1,531431672=>1,531440006=>1,532224971=>1,532224769=>1,532225427=>1,532244499=>1,532320344=>1,532289951=>1,531954936=>1,531858474=>1,531448993=>1,531448886=>1,531450441=>1,531473558=>1,531668450=>1,521903317=>1,521767521=>1,465981316=>1,465882330=>1,466001673=>1,466092517=>1,466285816=>1,466110674=>1,465776279=>1,465758447=>1,465562181=>1,465520384=>1,465609168=>1,465640472=>1,465712339=>1,465711498=>1,466461625=>1,466654278=>1,467161526=>1,467141388=>1,467276034=>1,467300121=>1,467303599=>1,467303562=>1,467139438=>1,467139150=>1,466769926=>1,466669652=>1,466780749=>1,466780810=>1,467092629=>1,467017107=>1,465472383=>1,465311339=>1,461573194=>1,461572026=>1,461573482=>1,461574006=>1,461582212=>1,461574098=>1,461571796=>1,461564220=>1,461485502=>1,461290696=>1,461486057=>1,461495695=>1,461529539=>1,461528100=>1,461729168=>1,462168878=>1,463085383=>1,463084320=>1,465114446=>1,465116220=>1,465297057=>1,465296927=>1,462937311=>1,462937218=>1,462524777=>1,462507727=>1,462653034=>1,462655994=>1,462680146=>1,467332047=>1,467336214=>1,521322571=>1,521322529=>1,521322970=>1,521329441=>1,521329805=>1,521329555=>1,521316588=>1,521312617=>1,521171889=>1,521165805=>1,521222512=>1,521274212=>1,521312571=>1,521311154=>1,521356852=>1,521366456=>1,521390953=>1,521384001=>1,521686985=>1,521739576=>1,533735721=>1,521743415=>1,521371125=>1,521370526=>1,521369230=>1,521369022=>1,521369570=>1,521369738=>1,521369867=>1,521159119=>1,521093850=>1,469720262=>1,469687307=>1,520316197=>1,520329424=>1,520349829=>1,520329599=>1,469659076=>1,469643211=>1,467461794=>1,467425073=>1,467546383=>1,467563724=>1,467896428=>1,467856325=>1,520505057=>1,520599590=>1,520950734=>1,520950050=>1,521045287=>1,521045698=>1,521046226=>1,521045896=>1,520880011=>1,520665180=>1,520631534=>1,520626513=>1,520632453=>1,520632516=>1,520664797=>1,521768340=>1,533740980=>1,608998021=>1,608997413=>1,608999646=>1,608999657=>1,609002300=>1,609002128=>1,608985033=>1,608984106=>1,608965522=>1,608964868=>1,608968881=>1,608969784=>1,608971627=>1,608971489=>1,609002476=>1,609003060=>1,609049416=>1,609049285=>1,609064873=>1,609072700=>1,609125473=>1,609103793=>1,609048446=>1,609048093=>1,609005193=>1,609003071=>1,609019610=>1,609026696=>1,609040216=>1,609039607=>1,608964683=>1,608958718=>1,608793759=>1,608792702=>1,608798390=>1,608799200=>1,608831270=>1,608800820=>1,608790198=>1,608787530=>1,608775195=>1,608770170=>1,608775889=>1,608777651=>1,608786302=>1,608777938=>1,608838416=>1,608843133=>1,608929193=>1,608891522=>1,608931980=>1,608936734=>1,608949904=>1,608949711=>1,608887132=>1,608855582=>1,608843755=>1,608843586=>1,608848742=>1,608855406=>1,608855455=>1,609132551=>1,609133181=>1,609311460=>1,609304397=>1,609324772=>1,609325887=>1,609331131=>1,609328465=>1,609304074=>1,609303403=>1,609293862=>1,609292544=>1,609295048=>1,609297452=>1,609300197=>1,609298652=>1,609331705=>1,609340076=>1,609443843=>1,609431115=>1,609445813=>1,609446231=>1,609455140=>1,609453387=>1,609419458=>1,609418450=>1,609353545=>1,609340388=>1,609365607=>1,609378424=>1,609415544=>1,609291174=>1,609288910=>1,609195342=>1,609191170=>1,609198869=>1,609212022=>1,609219699=>1,609219306=>1,609168100=>1,609166755=>1,609138538=>1,609137495=>1,609141018=>1,609141074=>1,609161692=>1,609147979=>1,609219882=>1,609221918=>1,609258531=>1,609237994=>1,609261317=>1,609270231=>1,609287624=>1,609272767=>1,609237173=>1,609233038=>1,609228661=>1,609224806=>1,609228812=>1,609231351=>1,609231585=>1,608757446=>1,608757094=>1,607203024=>1,607180253=>1,607644068=>1,607644188=>1,607646524=>1,607644381=>1,607126839=>1,607058182=>1,606380639=>1,606241291=>1,606438930=>1,606616861=>1,607016317=>1,606971791=>1,608313786=>1,608313866=>1,608357131=>1,608356898=>1,608358122=>1,608364101=>1,608364275=>1,608364274=>1,608354438=>1,608338545=>1,608315802=>1,608315067=>1,608323721=>1,608326639=>1,608338250=>1,608330154=>1,606194724=>1,606145752=>1,533752505=>1,533751718=>1,533752534=>1,533757083=>1,533761400=>1,533761285=>1,533751496=>1,533749446=>1,533743533=>1,461288719=>1,533745098=>1,533745198=>1,533747727=>1,533745845=>1,533770871=>1,533801967=>1,534522601=>1,534513551=>1,534523142=>1,534607826=>1,606145121=>1,587235124=>1,534513096=>1,534513049=>1,533873046=>1,533804112=>1,533883431=>1,534180377=>1,534287170=>1,608369202=>1,608369203=>1,608721689=>1,608721140=>1,608722439=>1,608722615=>1,608723957=>1,608723887=>1,608720923=>1,608718161=>1,608712840=>1,608711368=>1,608714970=>1,608716601=>1,608717311=>1,608716772=>1,608728331=>1,608729105=>1,608742098=>1,608738784=>1,608743213=>1,608743339=>1,608756876=>1,608743933=>1,608738045=>1,608733124=>1,608730284=>1,608729553=>1,608730775=>1,608731143=>1,608732267=>1,608710089=>1,608706164=>1,608460327=>1,608458777=>1,608460615=>1,608462478=>1,608464666=>1,608464341=>1,608457418=>1,608457260=>1,608444179=>1,608369204=>1,608446149=>1,608447411=>1,608454365=>1,608448617=>1,608466806=>1,608467650=>1,608626177=>1,608576938=>1,608659558=>1,608666378=>1,608670443=>1,608667578=>1,608470955=>1,608470775=>1,608469374=>1,608467879=>1,608469660=>1,608470072=>1,608470574=>1,533740017=>1,461102465=>1,405533142=>1,405469112=>1,405550769=>1,405584584=>1,405656097=>1,405622770=>1,405467332=>1,405459554=>1,405453163=>1,405451160=>1,405453183=>1,405453192=>1,405457601=>1,405456210=>1,405696365=>1,405832874=>1,405935543=>1,405935541=>1,405966388=>1,406032878=>1,406034416=>1,406034231=>1,405934739=>1,405931749=>1,405834339=>1,405834303=>1,405843169=>1,405886713=>1,405931497=>1,405888886=>1,405445973=>1,405443598=>1,404425207=>1,404418838=>1,404506171=>1,404509688=>1,404917805=>1,404615521=>1,404409041=>1,404407299=>1,404011329=>1,403861007=>1,404049271=>1,404084148=>1,404258684=>1,404152159=>1,404948255=>1,404953227=>1,405001146=>1,404989637=>1,405173261=>1,405224389=>1,405439064=>1,405235010=>1,404983724=>1,404982625=>1,404972082=>1,404960277=>1,404981256=>1,404982560=>1,404982579=>1,406034983=>1,406037170=>1,409044822=>1,408996371=>1,409058950=>1,409245316=>1,409654446=>1,409458998=>1,408993838=>1,408989032=>1,408946196=>1,408836383=>1,408948824=>1,408949471=>1,408979590=>1,408975843=>1,409937922=>1,409979467=>1,410350689=>1,410105640=>1,410428279=>1,410513763=>1,410596991=>1,410583126=>1,410087444=>1,410020885=>1,409987724=>1,409983468=>1,409994888=>1,410011132=>1,410018230=>1,408809108=>1,408785270=>1,406205567=>1,406100576=>1,406217478=>1,406385209=>1,406550515=>1,406387016=>1,406098830=>1,406071792=>1,406040397=>1,406040359=>1,406044066=>1,406044227=>1,406052702=>1,406044321=>1,406698471=>1,406868189=>1,408492042=>1,408158860=>1,408517441=>1,408538584=>1,408776069=>1,408716469=>1,407606603=>1,407456338=>1,407082112=>1,406918769=>1,407341742=>1,407413924=>1,407419968=>1,403735613=>1,403702059=>1,392099064=>1,392099063=>1,392103875=>1,392104239=>1,392109258=>1,392104660=>1,392098462=>1,392063088=>1,392052644=>1,392039207=>1,392060421=>1,392060422=>1,392062357=>1,392060423=>1,392116012=>1,392120169=>1,392561589=>1,392390519=>1,392568781=>1,392575227=>1,392810803=>1,392601719=>1,392387900=>1,392251688=>1,392124940=>1,392124938=>1,392124941=>1,392124942=>1,392231632=>1,392130821=>1,392037838=>1,392037379=>1,391704236=>1,391702721=>1,391718706=>1,391746019=>1,391749162=>1,391746022=>1,391702720=>1,391702533=>1,391672187=>1,391658042=>1,391696496=>1,391697667=>1,391702010=>1,391697674=>1,391749163=>1,391759547=>1,391907612=>1,391907457=>1,391909605=>1,391910257=>1,391912050=>1,391910730=>1,391871612=>1,391865550=>1,391856651=>1,391766025=>1,391859131=>1,391864702=>1,391865398=>1,392811439=>1,392976140=>1,402639769=>1,402576360=>1,402719842=>1,402829240=>1,402923736=>1,402911218=>1,402565095=>1,402564830=>1,402443706=>1,402441940=>1,402480981=>1,402554918=>1,402564602=>1,402564484=>1,402951917=>1,403013580=>1,403246350=>1,403197102=>1,403291142=>1,403560421=>1,403696245=>1,403647857=>1,403174824=>1,403164637=>1,403072484=>1,403019773=>1,403080592=>1,403091038=>1,403096148=>1,402440998=>1,402404891=>1,401379255=>1,401379252=>1,401478117=>1,401528175=>1,401541776=>1,401540990=>1,401351442=>1,401350971=>1,400720815=>1,394133561=>1,400721028=>1,400736813=>1,401224460=>1,400799683=>1,401543897=>1,401544723=>1,401883320=>1,401883185=>1,401912994=>1,402056857=>1,402365352=>1,402345374=>1,401811806=>1,401691938=>1,401546167=>1,401546012=>1,401546722=>1,401568101=>1,401576317=>1,410599493=>1,410737806=>1,418546549=>1,418467159=>1,418603244=>1,418617366=>1,418735503=>1,418733976=>1,418447197=>1,418396308=>1,418221236=>1,418193935=>1,418225347=>1,418257730=>1,418349183=>1,418279155=>1,418795523=>1,418813413=>1,453557548=>1,453523767=>1,453574724=>1,453580429=>1,453760174=>1,453639591=>1,419241458=>1,419132117=>1,418995628=>1,418995578=>1,418997395=>1,419058165=>1,419114462=>1,419108311=>1,418184841=>1,418145121=>1,417820881=>1,417759386=>1,417822097=>1,417822158=>1,417822187=>1,417822166=>1,417757958=>1,417714515=>1,417341850=>1,417334623=>1,417342049=>1,417423453=>1,417663829=>1,417603834=>1,417822532=>1,417822556=>1,418047347=>1,418007908=>1,418136387=>1,418137143=>1,418141519=>1,418137262=>1,418006126=>1,418004560=>1,417847954=>1,417822995=>1,417853374=>1,417892508=>1,417944248=>1,453761278=>1,453843516=>1,459956186=>1,459945633=>1,460132106=>1,460267842=>1,460540786=>1,460342182=>1,459879898=>1,459879534=>1,456570811=>1,456570810=>1,456570819=>1,459547838=>1,459879331=>1,459879266=>1,460592313=>1,460603238=>1,461046178=>1,461046062=>1,461046185=>1,461047662=>1,391644090=>1,461047729=>1,460983341=>1,460877858=>1,460877360=>1,460874680=>1,460877835=>1,460877842=>1,460877851=>1,456570499=>1,456569890=>1,455708862=>1,455459596=>1,455772015=>1,455784445=>1,455887891=>1,455798699=>1,455409984=>1,455276042=>1,453948834=>1,453844051=>1,454091952=>1,454107514=>1,455150380=>1,454674866=>1,455888183=>1,455888213=>1,456012156=>1,456011860=>1,456267786=>1,456285947=>1,456567330=>1,456567302=>1,456010834=>1,456005021=>1,455888571=>1,455888253=>1,455889993=>1,455910632=>1,455931020=>1,417329412=>1,417116766=>1,412744723=>1,412744306=>1,412745267=>1,412782589=>1,413532546=>1,412884551=>1,412744292=>1,412744066=>1,412378312=>1,412367801=>1,412473303=>1,412554935=>1,412672469=>1,412578824=>1,413608829=>1,413612409=>1,414281844=>1,414240701=>1,414369226=>1,414370134=>1,414485079=>1,414474659=>1,413951044=>1,413901403=>1,413620364=>1,413617479=>1,413660704=>1,413857994=>1,413871607=>1,413863222=>1,412353088=>1,412135469=>1,411229558=>1,411181419=>1,411270066=>1,411527244=>1,411773105=>1,411769128=>1,410933944=>1,410904737=>1,410790198=>1,410775750=>1,410791754=>1,410800691=>1,410810202=>1,410804130=>1,411869527=>1,411888881=>1,412085036=>1,412083171=>1,412085055=>1,412085870=>1,412125682=>1,412088634=>1,412053816=>1,412053155=>1,411976588=>1,411972438=>1,411983855=>1,412034934=>1,412038507=>1,414546914=>1,414613478=>1,416703875=>1,416696076=>1,416710212=>1,416713523=>1,416717707=>1,416714265=>1,416691344=>1,416691235=>1,416603801=>1,416591036=>1,416654738=>1,416677326=>1,416681373=>1,416680615=>1,416723790=>1,416732678=>1,417040875=>1,417032936=>1,417051321=>1,417051343=>1,417062956=>1,417051390=>1,417022106=>1,417017379=>1,416736386=>1,416733830=>1,416904279=>1,416951784=>1,417017131=>1,416564161=>1,416491936=>1,415259487=>1,415254181=>1,415271657=>1,415272390=>1,415298058=>1,415295682=>1,415240206=>1,415237168=>1,414700751=>1,414630086=>1,414799515=>1,414870788=>1,415016163=>1,414913007=>1,415298746=>1,415300167=>1,416129928=>1,416122458=>1,416150618=>1,416216437=>1,416360153=>1,416317863=>1,416121160=>1,416109208=>1,415516084=>1,415332323=>1,415602193=>1,415649517=>1,415979933=>1,461288709=>1,);?>
1
+ <?php return array(608369202=>608369203,532780386=>532780387,456570810=>456570811,391749162=>391749163,391702720=>391702721,529825165=>1,528880752=>1,529825169=>1,529849167=>1,529825175=>1,529824562=>1,529824556=>1,529824042=>1,529708666=>1,529824166=>1,529849268=>1,529003286=>1,529706325=>1,530042611=>1,531121012=>1,530840103=>1,531134135=>1,531140791=>1,531162818=>1,531155028=>1,530827835=>1,530825254=>1,528784520=>1,530041817=>1,530139513=>1,530247687=>1,530740468=>1,530733568=>1,529849456=>1,528684374=>1,522916189=>1,522856976=>1,522949220=>1,523038035=>1,523040135=>1,523038196=>1,522836964=>1,522804807=>1,522172503=>1,522153091=>1,522177334=>1,522303765=>1,522725919=>1,522619197=>1,523046965=>1,523075141=>1,528577369=>1,528552529=>1,528590414=>1,528680103=>1,528696140=>1,531164396=>1,523942661=>1,523838715=>1,523398398=>1,523199365=>1,523474924=>1,523507362=>1,523815808=>1,523635174=>1,528743204=>1,531190721=>1,533362696=>1,533312663=>1,533435075=>1,533436514=>1,533719327=>1,533659747=>1,533184532=>1,533184529=>1,532729036=>1,532727789=>1,532735161=>1,532746999=>1,533181826=>1,532777742=>1,533726998=>1,533727442=>1,533749446=>1,533747727=>1,533751496=>1,533751718=>1,533757083=>1,533752534=>1,533745845=>1,533745198=>1,533740017=>1,533735721=>1,533740980=>1,533743533=>1,533745098=>1,532726052=>1,532722426=>1,531431672=>1,531374031=>1,531440006=>1,531448886=>1,531450441=>1,531448993=>1,531362867=>1,531340140=>1,522145329=>1,531187393=>1,531255849=>1,531261773=>1,531340135=>1,531668450=>1,531858474=>1,532701847=>1,532377328=>1,532703362=>1,532703539=>1,532716958=>1,532715293=>1,532366885=>1,532320344=>1,532224971=>1,532224769=>1,532225427=>1,532244499=>1,532289951=>1,531185874=>1,522144303=>1,467017107=>1,466780810=>1,467092629=>1,467139150=>1,467141388=>1,467139438=>1,466780749=>1,466769926=>1,466285816=>1,466110674=>1,466461625=>1,466484336=>1,466669652=>1,466654278=>1,467161526=>1,467276034=>1,467896428=>1,467856325=>1,469643211=>1,469659076=>1,469720262=>1,469687307=>1,467563724=>1,467546383=>1,467303599=>1,467303562=>1,467332047=>1,467336214=>1,467461794=>1,467425073=>1,466092517=>1,466001673=>1,462937218=>1,462680146=>1,462937311=>1,463084320=>1,465114446=>1,463085383=>1,462655994=>1,462653034=>1,461582212=>1,461574098=>1,461729168=>1,462168878=>1,462524777=>1,462507727=>1,465116220=>1,465297057=>1,465712339=>1,465711498=>1,465758447=>1,465776279=>1,465981316=>1,465882330=>1,465640472=>1,465609168=>1,465311339=>1,465297075=>1,465472383=>1,465520384=>1,465562181=>1,520316197=>1,520327613=>1,521369570=>1,521369022=>1,521369738=>1,521371125=>1,521390953=>1,521384001=>1,521366456=>1,521356852=>1,521322529=>1,521316588=>1,521322571=>1,521322970=>1,521329555=>1,521329441=>1,521686985=>1,521739576=>1,522056120=>1,522019290=>1,522144195=>1,522144222=>1,522144693=>1,533761285=>1,521991398=>1,521981091=>1,521767521=>1,521743415=>1,521768340=>1,521924408=>1,521971886=>1,521316417=>1,521311154=>1,520632453=>1,520631534=>1,520664797=>1,520665180=>1,520950050=>1,520880011=>1,520626513=>1,520599590=>1,520329424=>1,520329413=>1,520329599=>1,520349829=>1,520505057=>1,520494551=>1,520950734=>1,521045287=>1,521222512=>1,521197906=>1,521238707=>1,521274212=>1,521305891=>1,521274322=>1,521165805=>1,521161661=>1,521045896=>1,521045698=>1,521093850=>1,521145011=>1,521159119=>1,522144937=>1,533770871=>1,609049416=>1,609049285=>1,609064873=>1,609125473=>1,609133181=>1,609132551=>1,609048446=>1,609048373=>1,609019610=>1,609005193=>1,609026696=>1,609039607=>1,609048093=>1,609040216=>1,609137495=>1,609138538=>1,609219306=>1,609212022=>1,609219670=>1,609219699=>1,609224806=>1,609219882=>1,609198869=>1,609195342=>1,609141074=>1,609141018=>1,609147979=>1,609161692=>1,609195228=>1,609191170=>1,609003071=>1,609003060=>1,608936734=>1,608929193=>1,608949904=>1,608956561=>1,608968881=>1,608964868=>1,608891522=>1,608887132=>1,608848077=>1,608843755=>1,608848742=>1,608855406=>1,608855582=>1,608855455=>1,608969784=>1,608971489=>1,608999657=>1,608999646=>1,609001886=>1,609001949=>1,609002608=>1,609002128=>1,608998021=>1,608985033=>1,608971627=>1,608971608=>1,608974629=>1,608974722=>1,608984106=>1,609228812=>1,609231351=>1,609462850=>1,609461495=>1,609462901=>1,609476961=>1,609480223=>1,609478551=>1,609461326=>1,609454850=>1,609435057=>1,609432616=>1,609443843=>1,609445813=>1,609453387=>1,609446231=>1,609499937=>1,609507856=>1,609614660=>1,609613767=>1,609634660=>1,609639676=>1,609659443=>1,609645320=>1,609599801=>1,609598309=>1,609551580=>1,609517735=>1,609573539=>1,609597924=>1,609598275=>1,609431883=>1,609419458=>1,609292544=>1,609288910=>1,609295048=>1,609297452=>1,609300740=>1,609300197=>1,609272767=>1,609270231=>1,609233038=>1,609231585=>1,609237173=>1,609237994=>1,609261317=>1,609258531=>1,609303403=>1,609304074=>1,609340388=>1,609340076=>1,609353545=>1,609365607=>1,609418450=>1,609378424=>1,609331705=>1,609328465=>1,609311460=>1,609304397=>1,609318938=>1,609324772=>1,609325887=>1,608843586=>1,608843354=>1,608330154=>1,608326639=>1,608338250=>1,608338545=>1,608354436=>1,608338579=>1,608315802=>1,608315067=>1,607644188=>1,607644068=>1,607644381=>1,607646524=>1,608313866=>1,608313786=>1,608354438=>1,608356898=>1,608457284=>1,608457260=>1,608457418=>1,608459583=>1,608460327=>1,608460256=>1,608448617=>1,608447411=>1,608358122=>1,608357131=>1,608364101=>1,608369204=>1,608444179=>1,607235499=>1,607203024=>1,534513049=>1,534287170=>1,534513096=>1,534513551=>1,534523142=>1,534522601=>1,534180377=>1,533883431=>1,533775935=>1,461574006=>1,533801967=>1,533804112=>1,533873046=>1,533869207=>1,534607826=>1,587235124=>1,606971791=>1,606616861=>1,607016317=>1,607058182=>1,607180253=>1,607126839=>1,606438930=>1,606380639=>1,606145752=>1,606145121=>1,606194724=>1,606241291=>1,606328874=>1,608460615=>1,608462478=>1,608738784=>1,608738701=>1,608743213=>1,608743339=>1,608743933=>1,608743709=>1,608731143=>1,608730775=>1,608723957=>1,608722439=>1,608729012=>1,608729105=>1,608730284=>1,608729553=>1,608756876=>1,608757094=>1,608793759=>1,608790198=>1,608799200=>1,608800820=>1,608838416=>1,608837181=>1,608789450=>1,608788201=>1,608777651=>1,608757446=>1,608777938=>1,608786302=>1,608787530=>1,608721689=>1,608721140=>1,608470775=>1,608470574=>1,608470955=>1,608576938=>1,608626177=>1,608616210=>1,608470072=>1,608469660=>1,608464666=>1,608464341=>1,608466806=>1,608467650=>1,608469374=>1,608467879=>1,608659558=>1,608666378=>1,608717105=>1,608716772=>1,608717311=>1,608717334=>1,608720923=>1,608718161=>1,608716601=>1,608712840=>1,608670443=>1,608667578=>1,608706164=>1,608710089=>1,608711368=>1,533761400=>1,461572026=>1,405935541=>1,405934739=>1,406034231=>1,406034416=>1,406037170=>1,406034983=>1,405931749=>1,405931497=>1,405832874=>1,405696365=>1,405834303=>1,405834339=>1,405888886=>1,405843169=>1,406040359=>1,406040397=>1,406385209=>1,406217478=>1,406387016=>1,406550515=>1,406868189=>1,406698471=>1,406205567=>1,406100576=>1,406044227=>1,406044066=>1,406044321=>1,406052702=>1,406098830=>1,406071792=>1,405656097=>1,405622770=>1,404982625=>1,404982579=>1,404983724=>1,404989637=>1,405224389=>1,405001146=>1,404982560=>1,404981256=>1,404948255=>1,404917805=>1,404953227=>1,404960277=>1,404978630=>1,404972082=>1,405235010=>1,405439064=>1,405467332=>1,405459554=>1,405469112=>1,405533142=>1,405584584=>1,405550769=>1,405457601=>1,405456210=>1,405451160=>1,405445973=>1,405453163=>1,405453183=>1,405453192=>1,406918769=>1,407082112=>1,410087444=>1,410020885=>1,410105640=>1,410350689=>1,410513763=>1,410428279=>1,410018230=>1,410011132=>1,409937922=>1,409654446=>1,409979467=>1,409983468=>1,409994888=>1,409987724=>1,410583126=>1,410596991=>1,410864305=>1,410810202=>1,410904737=>1,410933944=>1,411229558=>1,411181419=>1,410804130=>1,410800691=>1,410737806=>1,410599493=>1,410775750=>1,410790198=>1,410791754=>1,409458998=>1,409422811=>1,408517441=>1,408492042=>1,408538584=>1,408716469=>1,408785270=>1,408776069=>1,408158860=>1,407606603=>1,407413924=>1,407341742=>1,407419968=>1,407456338=>1,407507963=>1,407507030=>1,408809108=>1,408836383=>1,408996371=>1,408993838=>1,409044822=>1,409058950=>1,409245316=>1,409188286=>1,408989032=>1,408982895=>1,408946196=>1,408927134=>1,408948824=>1,408949471=>1,408975843=>1,404615521=>1,404509688=>1,392130821=>1,392116012=>1,392231632=>1,392251688=>1,392390519=>1,392387900=>1,392109274=>1,392109258=>1,392099064=>1,392099063=>1,392103875=>1,392103883=>1,392104660=>1,392104239=>1,392561589=>1,392568781=>1,401224460=>1,400799683=>1,401350971=>1,401351442=>1,401379255=>1,401379252=>1,400721028=>1,400720815=>1,392601719=>1,392575227=>1,392810803=>1,392811367=>1,394133561=>1,392811439=>1,392098462=>1,392063088=>1,391746021=>1,391746019=>1,391746022=>1,391759547=>1,391856651=>1,391766025=>1,391718706=>1,391704236=>1,391696496=>1,391672187=>1,391697667=>1,391697674=>1,391702533=>1,391702010=>1,391859131=>1,391864702=>1,392037379=>1,391912050=>1,392037838=>1,392039207=>1,392062357=>1,392052644=>1,391910730=>1,391910257=>1,391871612=>1,391865398=>1,391907457=>1,391907612=>1,391909605=>1,401478117=>1,401528175=>1,403164637=>1,403096148=>1,403174824=>1,403197102=>1,403291142=>1,403246350=>1,403091038=>1,403080592=>1,402923736=>1,402911218=>1,402951917=>1,403013580=>1,403072484=>1,403019773=>1,403560421=>1,403647857=>1,404258684=>1,404152159=>1,404407299=>1,404418838=>1,404506171=>1,404425207=>1,404084148=>1,404049271=>1,403702059=>1,403696245=>1,403735613=>1,403861007=>1,404011329=>1,402829240=>1,402719842=>1,401691938=>1,401576317=>1,401883185=>1,401883320=>1,402056857=>1,401912994=>1,401568101=>1,401546722=>1,401541776=>1,401540990=>1,401543897=>1,401544723=>1,401546167=>1,401546012=>1,402345374=>1,402365352=>1,402564602=>1,402564484=>1,402564830=>1,402565095=>1,402638816=>1,402576360=>1,402554918=>1,402481433=>1,402440998=>1,402404891=>1,402441940=>1,402443706=>1,402480981=>1,411527244=>1,411557389=>1,418995578=>1,418900470=>1,418995628=>1,418997395=>1,419108311=>1,419058165=>1,418813413=>1,418795523=>1,418546549=>1,418467159=>1,418603244=>1,418617366=>1,418735503=>1,418733976=>1,419114462=>1,419132117=>1,453844051=>1,453843516=>1,453948834=>1,454091952=>1,454600029=>1,454107514=>1,453761278=>1,453760174=>1,453523767=>1,419241458=>1,453557548=>1,453574724=>1,453639591=>1,453580429=>1,418447197=>1,418424890=>1,417853374=>1,417847954=>1,417892508=>1,418004560=>1,418032482=>1,418007908=>1,417822995=>1,417822556=>1,417822097=>1,417820881=>1,417822158=>1,417822166=>1,417822532=>1,417822187=>1,418047347=>1,418136387=>1,418251973=>1,418225347=>1,418257730=>1,418279155=>1,418396308=>1,418349183=>1,418221236=>1,418193935=>1,418137262=>1,418137143=>1,418141519=>1,418145121=>1,418184841=>1,455150380=>1,455276042=>1,460877851=>1,460877842=>1,460877858=>1,460983341=>1,461046178=>1,461046062=>1,460877835=>1,460877360=>1,460270857=>1,460267842=>1,460540786=>1,460592313=>1,460874680=>1,460603238=>1,461046185=>1,461047662=>1,461528100=>1,461495695=>1,461529539=>1,461571796=>1,461573194=>1,391658042=>1,461486057=>1,461485502=>1,461102465=>1,461047729=>1,461288709=>1,461288719=>1,461290696=>1,460132106=>1,459956186=>1,455889993=>1,455888571=>1,455931020=>1,456005021=>1,456011860=>1,456010834=>1,455888253=>1,455888213=>1,455459596=>1,455409984=>1,455784445=>1,455798699=>1,455888183=>1,455887891=>1,456012156=>1,456267786=>1,459879331=>1,459879266=>1,459879534=>1,459879898=>1,459945633=>1,459944604=>1,459547838=>1,456570819=>1,456567302=>1,456285947=>1,456567330=>1,456569890=>1,456570499=>1,417759386=>1,417757958=>1,413951044=>1,413901403=>1,414240701=>1,414281844=>1,414370134=>1,414369226=>1,413871607=>1,413863222=>1,413136829=>1,412884551=>1,413532546=>1,413612409=>1,413857994=>1,413660704=>1,414474659=>1,414485079=>1,414913007=>1,414903886=>1,415016163=>1,415237168=>1,415254181=>1,415240206=>1,414870788=>1,414799515=>1,414546914=>1,414524402=>1,414630086=>1,414699526=>1,414700751=>1,412782589=>1,412745267=>1,412053816=>1,412053155=>1,412082595=>1,412085036=>1,412085870=>1,412085055=>1,412038507=>1,412034934=>1,411773105=>1,411769128=>1,411869527=>1,411886968=>1,411983855=>1,411972438=>1,412088634=>1,412125682=>1,412672469=>1,412578824=>1,412744066=>1,412744292=>1,412744723=>1,412744306=>1,412554935=>1,412473303=>1,412353088=>1,412278023=>1,412367801=>1,412378312=>1,412473113=>1,415259487=>1,415271657=>1,416951784=>1,416904279=>1,417017131=>1,417017379=>1,417022390=>1,417022106=>1,416740839=>1,416739713=>1,416717707=>1,416714265=>1,416732678=>1,416733830=>1,416736485=>1,416736386=>1,417032936=>1,417040875=>1,417342049=>1,417341850=>1,417423453=>1,417603834=>1,417714515=>1,417663829=>1,417334623=>1,417329412=>1,417051343=>1,417051321=>1,417051390=>1,417062956=>1,417116766=>1,416713523=>1,416710212=>1,415649517=>1,415602193=>1,415979933=>1,416095580=>1,416122458=>1,416109208=>1,415516084=>1,415415986=>1,415295682=>1,415272390=>1,415298058=>1,415300167=>1,415332323=>1,415300582=>1,416150618=>1,416216437=>1,416691235=>1,416681373=>1,416691344=>1,416696076=>1,416703875=>1,416700650=>1,416677326=>1,416603801=>1,416360153=>1,416343690=>1,416491936=>1,416564161=>1,416591036=>1,461573482=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-10.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1109848832=>1109849087,1089285440=>1089285455,1089282688=>1089282703,1044973568=>1044974079,1090432771=>1,1090449899=>1,1090490254=>1,1091682055=>1,1090323480=>1,1090449900=>1,1090152171=>1,1089286958=>1,1089441332=>1,1089850597=>1,1091807106=>1,1090194961=>1,1091807107=>1,1092381168=>1,1092218226=>1,1092493586=>1,1092529269=>1,1092603394=>1,1092596441=>1,1092217264=>1,1092216456=>1,1091807109=>1,1091807108=>1,1091809969=>1,1091810033=>1,1092214965=>1,1089164313=>1,1089088975=>1,1086116873=>1,1086114994=>1,1086127294=>1,1086600004=>1,1086600775=>1,1086600756=>1,1086112960=>1,1086096476=>1,1085963850=>1,1085899079=>1,1086040035=>1,1086040663=>1,1086096075=>1,1086040785=>1,1086600844=>1,1086601401=>1,1087292111=>1,1087103968=>1,1087331400=>1,1087600444=>1,1089065482=>1,1088957210=>1,1087087205=>1,1087086005=>1,1086936627=>1,1086936161=>1,1086936705=>1,1086936806=>1,1086965976=>1,1086937037=>1,1092754574=>1,1092900138=>1,1095391904=>1,1094533838=>1,1095400526=>1,1095750108=>1,1095751940=>1,1095751936=>1,1094507777=>1,1094507712=>1,1094490914=>1,1093959852=>1,1094490925=>1,1094491711=>1,1094499483=>1,1094497315=>1,1095752241=>1,1095995330=>1,1098042962=>1,1097975123=>1,1098278436=>1,1098595826=>1,1098787418=>1,1098780739=>1,1097841218=>1,1097836173=>1,1096842434=>1,1096228884=>1,1096931466=>1,1097753763=>1,1097822857=>1,1093847813=>1,1093827231=>1,1093750117=>1,1093733943=>1,1093751057=>1,1093771778=>1,1093776602=>1,1093772174=>1,1093730997=>1,1093615270=>1,1092902760=>1,1085876651=>1,1093102830=>1,1093103047=>1,1093168159=>1,1093103052=>1,1093777087=>1,1093785645=>1,1093813457=>1,1093813388=>1,1093816798=>1,1093816869=>1,1093826995=>1,1093817734=>1,1093813383=>1,1093807312=>1,1093786291=>1,1093785969=>1,1093796964=>1,1093802795=>1,1093802874=>1,1092756617=>1,1085874835=>1,1082296303=>1,1082296296=>1,1082296427=>1,1082296448=>1,1082297466=>1,1082297275=>1,1082296064=>1,1082295936=>1,1082294828=>1,1082294685=>1,1082295327=>1,1082295668=>1,1082295829=>1,1082295798=>1,1082297687=>1,1082298068=>1,1082301680=>1,1082301544=>1,1082302751=>1,1082302955=>1,1082303438=>1,1082303316=>1,1082301447=>1,1082300970=>1,1082298933=>1,1082298148=>1,1082299661=>1,1082300360=>1,1082300643=>1,1082300635=>1,1082291246=>1,1082291116=>1,1079696864=>1,1079685204=>1,1079707380=>1,1079722899=>1,1080499128=>1,1079771837=>1,1079685203=>1,1079661330=>1,1078932581=>1,1078932579=>1,1078932583=>1,1078946636=>1,1079370305=>1,1079350434=>1,1081026592=>1,1081029796=>1,1082137777=>1,1082088807=>1,1082137874=>1,1082138397=>1,1082285998=>1,1082233998=>1,1082086509=>1,1081876564=>1,1081144139=>1,1081031761=>1,1081144604=>1,1081155613=>1,1081836845=>1,1082303643=>1,1082304285=>1,1085506383=>1,1085083938=>1,1085509288=>1,1085509466=>1,1085512974=>1,1085510688=>1,1083435609=>1,1083354093=>1,1082913817=>1,1082877265=>1,1082957238=>1,1082957787=>1,1082982305=>1,1082979992=>1,1085514829=>1,1085515560=>1,1085823336=>1,1085807766=>1,1085860217=>1,1085869023=>1,1085871224=>1,1085870408=>1,1085520588=>1,1085519526=>1,1085517243=>1,1085517134=>1,1085517415=>1,1085517542=>1,1085517699=>1,1085517622=>1,1082785170=>1,1082784839=>1,1082308299=>1,1082307814=>1,1082309394=>1,1082309447=>1,1082402549=>1,1082309846=>1,1082307656=>1,1082307376=>1,1082304585=>1,1082304419=>1,1082305654=>1,1082306112=>1,1082306334=>1,1082306306=>1,1082704504=>1,1082704647=>1,1082784291=>1,1082783452=>1,1082784487=>1,1082784535=>1,1082784540=>1,1082784536=>1,1082783450=>1,1082782439=>1,1082761764=>1,1082706465=>1,1082766835=>1,1082781882=>1,1082781892=>1,1098859784=>1,1099023755=>1,1121005371=>1,1120956240=>1,1121131254=>1,1121243972=>1,1121374675=>1,1121324939=>1,1120922759=>1,1120884380=>1,1120768604=>1,1120761419=>1,1120786322=>1,1120863674=>1,1120881516=>1,1120869987=>1,1121396116=>1,1121399810=>1,1121711067=>1,1121710909=>1,1121712216=>1,1121712255=>1,1121730830=>1,1121712848=>1,1121704980=>1,1121699818=>1,1121591901=>1,1121422917=>1,1121651405=>1,1121699330=>1,1121699590=>1,1121699384=>1,1120479255=>1,1120400724=>1,1119255816=>1,1119255815=>1,1119495896=>1,1119528627=>1,1119534568=>1,1119532740=>1,1119243347=>1,1119142363=>1,1118800212=>1,1118786460=>1,1118800507=>1,1118821656=>1,1119135027=>1,1118822289=>1,1119544986=>1,1119545150=>1,1119823049=>1,1119787199=>1,1119862460=>1,1120070246=>1,1120340211=>1,1120199058=>1,1119720709=>1,1119627835=>1,1119546826=>1,1119545282=>1,1119550242=>1,1119561388=>1,1119570802=>1,1121735077=>1,1121735386=>1,1123911092=>1,1123593525=>1,1123911173=>1,1123911232=>1,1123911284=>1,1123911254=>1,1123437479=>1,1123318625=>1,1123133308=>1,1123131957=>1,1123136435=>1,1123137870=>1,1123275549=>1,1123139077=>1,1123911366=>1,1123911470=>1,1123932335=>1,1123927896=>1,1123932559=>1,1123936596=>1,1123936657=>1,1123936614=>1,1123927237=>1,1123917643=>1,1123912984=>1,1123912313=>1,1123913012=>1,1123913042=>1,1123913165=>1,1123131415=>1,1123108651=>1,1121762358=>1,1121762178=>1,1121762697=>1,1121763185=>1,1121903139=>1,1121763196=>1,1121762061=>1,1121761444=>1,1121735866=>1,1121735511=>1,1121736143=>1,1121736151=>1,1121761149=>1,1121760533=>1,1121952139=>1,1121952156=>1,1122840588=>1,1122700134=>1,1122840724=>1,1122912012=>1,1122975385=>1,1122974089=>1,1122681820=>1,1122251706=>1,1121952206=>1,1121952192=>1,1121953091=>1,1122248530=>1,1122248531=>1,1118598031=>1,1118593076=>1,1109513336=>1,1109240990=>1,1109607497=>1,1109607569=>1,1109631663=>1,1109607570=>1,1108972165=>1,1108890678=>1,1107787043=>1,1107786856=>1,1107787131=>1,1108047676=>1,1108864922=>1,1108522418=>1,1109741189=>1,1109795898=>1,1110685025=>1,1110684763=>1,1111139596=>1,1111454084=>1,1111804552=>1,1111589843=>1,1110166942=>1,1110022067=>1,1109799675=>1,1109799173=>1,1109813860=>1,1109815805=>1,1110003618=>1,1107251551=>1,1104904915=>1,1102413489=>1,1102412798=>1,1102455963=>1,1102461137=>1,1102462074=>1,1102461157=>1,1102412616=>1,1102411274=>1,1099024725=>1,1078932578=>1,1099028625=>1,1100894596=>1,1102409856=>1,1101475800=>1,1102462105=>1,1102462882=>1,1102566089=>1,1102551656=>1,1102622702=>1,1102647237=>1,1104561104=>1,1102883918=>1,1102545558=>1,1102482846=>1,1102470578=>1,1102468398=>1,1102471067=>1,1102482001=>1,1102482037=>1,1112307521=>1,1112322685=>1,1117702294=>1,1117696977=>1,1117702367=>1,1117703312=>1,1117703530=>1,1117703468=>1,1117455573=>1,1117378882=>1,1116187171=>1,1116145783=>1,1116187210=>1,1116187237=>1,1117025370=>1,1116187260=>1,1117703763=>1,1117705173=>1,1118215385=>1,1117944345=>1,1118418973=>1,1118538078=>1,1118571774=>1,1118571715=>1,1117710748=>1,1117710607=>1,1117710415=>1,1117705485=>1,1117710429=>1,1117710449=>1,1117710556=>1,1115921799=>1,1115900873=>1,1113647204=>1,1113229347=>1,1113651998=>1,1113652458=>1,1113716829=>1,1113713808=>1,1113220469=>1,1112995777=>1,1112777754=>1,1112322856=>1,1112885886=>1,1112900424=>1,1112927360=>1,1112914660=>1,1113716830=>1,1114049192=>1,1114892328=>1,1114856400=>1,1114894099=>1,1114926259=>1,1115698507=>1,1115084962=>1,1114852292=>1,1114586709=>1,1114539073=>1,1114078117=>1,1114560515=>1,1114571280=>1,1114571284=>1,1099010530=>1,1078918060=>1,1038512034=>1,1038509556=>1,1038512494=>1,1038512530=>1,1038527420=>1,1038526328=>1,1038509508=>1,1038509467=>1,1038365394=>1,1038365311=>1,1038366587=>1,1038400642=>1,1038509388=>1,1038411580=>1,1038530533=>1,1038533481=>1,1038755189=>1,1038679591=>1,1038755190=>1,1038843162=>1,1039645322=>1,1039103128=>1,1038667490=>1,1038598253=>1,1038533810=>1,1038533521=>1,1038533982=>1,1038534413=>1,1038583320=>1,1038566599=>1,1038365029=>1,1038364976=>1,1038055440=>1,1038054896=>1,1038055579=>1,1038056021=>1,1038057287=>1,1038056964=>1,1037847104=>1,1037780613=>1,1035943343=>1,1035869350=>1,1035975868=>1,1037591304=>1,1037709653=>1,1037594151=>1,1038068436=>1,1038128925=>1,1038325899=>1,1038318949=>1,1038325932=>1,1038362647=>1,1038363651=>1,1038362710=>1,1038317575=>1,1038313268=>1,1038141575=>1,1038141157=>1,1038142585=>1,1038144597=>1,1038292691=>1,1040453460=>1,1041236572=>1,1046910019=>1,1046375206=>1,1046910123=>1,1046910124=>1,1046959528=>1,1046914454=>1,1046298674=>1,1046245210=>1,1046133824=>1,1045705911=>1,1046133947=>1,1046133948=>1,1046245165=>1,1046234740=>1,1047274105=>1,1047274124=>1,1047898820=>1,1047879818=>1,1047954413=>1,1048196769=>1,1048937065=>1,1048208474=>1,1047651196=>1,1047650202=>1,1047331955=>1,1047274674=>1,1047337714=>1,1047648429=>1,1047648433=>1,1045620166=>1,1045481662=>1,1042650644=>1,1042417223=>1,1042693750=>1,1042698258=>1,1043060705=>1,1043058423=>1,1042390900=>1,1042292653=>1,1041239820=>1,1041238220=>1,1041240234=>1,1041578074=>1,1042069126=>1,1041698652=>1,1043162056=>1,1043192261=>1,1044966064=>1,1044763937=>1,1045165359=>1,1045167909=>1,1045474283=>1,1045216968=>1,1044474541=>1,1044154467=>1,1043220620=>1,1043200011=>1,1043358129=>1,1043380894=>1,1043964141=>1,1035729835=>1,1035583921=>1,1029411380=>1,1029411335=>1,1029411399=>1,1029411472=>1,1032198506=>1,1029568050=>1,1029411331=>1,1029408216=>1,1029408008=>1,1029387818=>1,1029408097=>1,1029408141=>1,1029408208=>1,1029408151=>1,1032200852=>1,1032201770=>1,1032343536=>1,1032313105=>1,1032343619=>1,1032352659=>1,1032499276=>1,1032497006=>1,1032313104=>1,1032313103=>1,1032313095=>1,1032313091=>1,1032313097=>1,1032313098=>1,1032313102=>1,1032313100=>1,1029339605=>1,1029339599=>1,1029339123=>1,1029339120=>1,1029339124=>1,1029339214=>1,1029339226=>1,1029339222=>1,1029339116=>1,1029339109=>1,1029338873=>1,1029338841=>1,1029338897=>1,1029338919=>1,1029339015=>1,1029339006=>1,1029339264=>1,1029339290=>1,1029339484=>1,1029339470=>1,1029339489=>1,1029339493=>1,1029339538=>1,1029339498=>1,1029339444=>1,1029339423=>1,1029339366=>1,1029339335=>1,1029339396=>1,1029339403=>1,1029339419=>1,1032499278=>1,1032656162=>1,1034138492=>1,1034115150=>1,1034142426=>1,1034181886=>1,1034303675=>1,1034303665=>1,1034107713=>1,1034104304=>1,1034100742=>1,1034084137=>1,1034100813=>1,1034101252=>1,1034102598=>1,1034102552=>1,1034332509=>1,1034364956=>1,1035169288=>1,1035108236=>1,1035516228=>1,1035519947=>1,1035569534=>1,1035553494=>1,1035073738=>1,1034992408=>1,1034816022=>1,1034449157=>1,1034816780=>1,1034935300=>1,1034935987=>1,1033959961=>1,1033950282=>1,1032968556=>1,1032968554=>1,1033062851=>1,1033263427=>1,1033465464=>1,1033441598=>1,1032954389=>1,1032897263=>1,1032698490=>1,1032698372=>1,1032813723=>1,1032822517=>1,1032897233=>1,1032864868=>1,1033488050=>1,1033488827=>1,1033809166=>1,1033796518=>1,1033812893=>1,1033917322=>1,1033950251=>1,1033948686=>1,1033779744=>1,1033750083=>1,1033499091=>1,1033496794=>1,1033570450=>1,1033659269=>1,1033749594=>1,1049232056=>1,1049232251=>1,1066341596=>1,1066326286=>1,1066342322=>1,1066343161=>1,1066677230=>1,1066343699=>1,1066324521=>1,1066324439=>1,1065827550=>1,1065827126=>1,1066263074=>1,1066311239=>1,1066318007=>1,1066311263=>1,1066957700=>1,1067053667=>1,1073055832=>1,1073053686=>1,1073099332=>1,1073100783=>1,1073102303=>1,1073102198=>1,1072665746=>1,1072405458=>1,1071596903=>1,1068472818=>1,1071596986=>1,1071606004=>1,1071607817=>1,1071606833=>1,1065791272=>1,1065790394=>1,1054643297=>1,1054643287=>1,1054654318=>1,1055419139=>1,1056019874=>1,1056005386=>1,1054620521=>1,1054619419=>1,1054357732=>1,1054213693=>1,1054440701=>1,1054445546=>1,1054564109=>1,1054551685=>1,1056019884=>1,1056170164=>1,1065779640=>1,1065714998=>1,1065780315=>1,1065780316=>1,1065786070=>1,1065782120=>1,1065370501=>1,1064236804=>1,1056274744=>1,1056253965=>1,1056548554=>1,1056803154=>1,1063842681=>1,1073218493=>1,1073419084=>1,1077414248=>1,1077413831=>1,1077415674=>1,1077416054=>1,1077419176=>1,1077417133=>1,1077277444=>1,1077274925=>1,1077253412=>1,1077251714=>1,1077255999=>1,1077256148=>1,1077272204=>1,1077270980=>1,1077710932=>1,1077710933=>1,1078726127=>1,1078622066=>1,1078837709=>1,1078848170=>1,1029338829=>1,1078892191=>1,1078520804=>1,1078487786=>1,1077864771=>1,1077853432=>1,1078116905=>1,1078399682=>1,1078433939=>1,1077251163=>1,1077245531=>1,1074921202=>1,1074878005=>1,1074941974=>1,1074968121=>1,1075014169=>1,1074980618=>1,1074780798=>1,1074748525=>1,1074558487=>1,1073487482=>1,1074558552=>1,1074588418=>1,1074634485=>1,1074588674=>1,1075014236=>1,1075064915=>1,1076168827=>1,1076026134=>1,1076171160=>1,1076171185=>1,1077233372=>1,1076332353=>1,1075945715=>1,1075838448=>1,1075202018=>1,1075079787=>1,1075380246=>1,1075470094=>1,1075515788=>1,1054106137=>1,1054102757=>1,1051879949=>1,1051878883=>1,1051895884=>1,1051903383=>1,1051912420=>1,1051907176=>1,1051862567=>1,1051783141=>1,1051724503=>1,1051691702=>1,1051725078=>1,1051728864=>1,1051741442=>1,1051739137=>1,1052130713=>1,1052201474=>1,1053414253=>1,1053414250=>1,1053414299=>1,1053416264=>1,1053416287=>1,1053416267=>1,1053414243=>1,1053411842=>1,1052938436=>1,1052922892=>1,1052945575=>1,1052978817=>1,1053208051=>1,1052984611=>1,1051564697=>1,1051198420=>1,1049904253=>1,1049904235=>1,1049952956=>1,1049955481=>1,1049958671=>1,1049955641=>1,1049602042=>1,1049595468=>1,1049437397=>1,1049232367=>1,1049437582=>1,1049439544=>1,1049442165=>1,1049441465=>1,1050049218=>1,1050160075=>1,1050906773=>1,1050562868=>1,1050929090=>1,1051011754=>1,1051150368=>1,1051077031=>1,1050561747=>1,1050559366=>1,1050193889=>1,1050193355=>1,1050398315=>1,1050490978=>1,1050496237=>1,1053416291=>1,1053417378=>1,1054000792=>1,1054000748=>1,1054002237=>1,1054002713=>1,1054003142=>1,1054002741=>1,1053998370=>1,1053994058=>1,1053983222=>1,1053982082=>1,1053983800=>1,1053985254=>1,1053993425=>1,1053985283=>1,1054003161=>1,1054003245=>1,1054014144=>1,1054013332=>1,1054015077=>1,1054015108=>1,1054099853=>1,1054099699=>1,1054012358=>1,1054012337=>1,1054010913=>1,1054006950=>1,1054011508=>1,1054011513=>1,1054012327=>1,1053981820=>1,1053981464=>1,1053959506=>1,1053959395=>1,1053959871=>1,1053967852=>1,1053968295=>1,1053968179=>1,1053959214=>1,1053959184=>1,1053417382=>1,1053417381=>1,1053421100=>1,1053421309=>1,1053656571=>1,1053624570=>1,1053968493=>1,1053969006=>1,1053977775=>1,1053977623=>1,1053977904=>1,1053977949=>1,1053981363=>1,1053979539=>1,1053977430=>1,1053976948=>1,1053969496=>1,1053969097=>1,1053970988=>1,1053973515=>1,1053976879=>1,1078932577=>1,);?>
1
+ <?php return array(1137113052=>1137113053,1130147300=>1130147301,1126931456=>1126931711,1125103360=>1125103487,1125040954=>1125040955,1122248530=>1122248531,1109848832=>1109849087,1091807106=>1091807109,1089285440=>1089285455,1089282688=>1089282703,1078932578=>1078932579,1077710932=>1077710933,1127498578=>1,1127593626=>1,1127513790=>1,1127066827=>1,1125458680=>1,1125619977=>1,1126209802=>1,1126919072=>1,1127722940=>1,1127898692=>1,1129284994=>1,1129284820=>1,1129303069=>1,1129491517=>1,1130147299=>1,1129263610=>1,1129203334=>1,1127875348=>1,1127731852=>1,1128054023=>1,1128154398=>1,1128225346=>1,1127722992=>1,1125052485=>1,1123939588=>1,1123939541=>1,1123939764=>1,1123939825=>1,1123940644=>1,1123940478=>1,1123937353=>1,1123937044=>1,1123932335=>1,1123927901=>1,1123936596=>1,1123936614=>1,1123936657=>1,1123987346=>1,1124071559=>1,1125042296=>1,1124837390=>1,1125046356=>1,1125049191=>1,1130147301=>1,1125051478=>1,1124777854=>1,1124515785=>1,1124198759=>1,1124171818=>1,1124203079=>1,1124205108=>1,1124450122=>1,1125052982=>1,1132853588=>1,1136048358=>1,1136019145=>1,1136111094=>1,1136404497=>1,1136488631=>1,1136448113=>1,1135729428=>1,1135564038=>1,1135272096=>1,1135154409=>1,1135292701=>1,1135350764=>1,1135554285=>1,1135504413=>1,1136498048=>1,1136846337=>1,1137048901=>1,1137048215=>1,1137048902=>1,1137070007=>1,1137149293=>1,1137113050=>1,1137044602=>1,1137044489=>1,1137008347=>1,1136846468=>1,1137018888=>1,1137019701=>1,1137043980=>1,1135037688=>1,1134844733=>1,1133869190=>1,1133863878=>1,1133869425=>1,1133874477=>1,1133875962=>1,1133875623=>1,1133858102=>1,1133852300=>1,1123927237=>1,1132656437=>1,1132868965=>1,1133812843=>1,1133846042=>1,1133843489=>1,1133877752=>1,1133882143=>1,1134736059=>1,1134562033=>1,1134757761=>1,1134830707=>1,1134833035=>1,1134830811=>1,1134486218=>1,1134432217=>1,1133897769=>1,1133890340=>1,1133898237=>1,1133903226=>1,1134430929=>1,1131572130=>1,1123913012=>1,1120761419=>1,1120479255=>1,1120768604=>1,1120786322=>1,1120869987=>1,1120863674=>1,1120400724=>1,1120199058=>1,1119720709=>1,1119646798=>1,1119787199=>1,1119823049=>1,1120070246=>1,1119862460=>1,1120881516=>1,1120884380=>1,1121399810=>1,1121396116=>1,1121422917=>1,1121591901=>1,1121699330=>1,1121651405=>1,1121374675=>1,1121324939=>1,1120923401=>1,1120922759=>1,1120956240=>1,1121005371=>1,1121243972=>1,1121131254=>1,1119627835=>1,1119570802=>1,1118786460=>1,1118598031=>1,1118800212=>1,1118800507=>1,1118822289=>1,1118821656=>1,1118593076=>1,1118571774=>1,1118215385=>1,1117944345=>1,1118418973=>1,1118531277=>1,1118571715=>1,1118538078=>1,1119135027=>1,1119142363=>1,1119545150=>1,1119544986=>1,1119545282=>1,1119546826=>1,1119561388=>1,1119550242=>1,1119534568=>1,1119532740=>1,1119255815=>1,1119243347=>1,1119255816=>1,1119495896=>1,1119528627=>1,1121699384=>1,1121699590=>1,1123131415=>1,1123108651=>1,1123131957=>1,1123133308=>1,1123137870=>1,1123136435=>1,1122975385=>1,1122974089=>1,1122700134=>1,1122681820=>1,1122840588=>1,1122840696=>1,1122912012=>1,1122840724=>1,1123139077=>1,1123275549=>1,1123911408=>1,1123911366=>1,1123912313=>1,1123912984=>1,1123913042=>1,1137149366=>1,1123911254=>1,1123911232=>1,1123437479=>1,1123318625=>1,1123593525=>1,1123911092=>1,1123911173=>1,1122251706=>1,1122248531=>1,1121735386=>1,1121735077=>1,1121735488=>1,1121735511=>1,1121736143=>1,1121735866=>1,1121730830=>1,1121712848=>1,1121704980=>1,1121699818=>1,1121710909=>1,1121711067=>1,1121712255=>1,1121712216=>1,1121736151=>1,1121760533=>1,1121952139=>1,1121903139=>1,1121952192=>1,1121952206=>1,1122247160=>1,1121953091=>1,1121763196=>1,1121763185=>1,1121761444=>1,1121761149=>1,1121762061=>1,1121762178=>1,1121762358=>1,1123913165=>1,1137162683=>1,1152666170=>1,1152666036=>1,1152666192=>1,1152666414=>1,1152666494=>1,1152666428=>1,1152665973=>1,1152663908=>1,1152657891=>1,1152655619=>1,1152658260=>1,1152659962=>1,1152660183=>1,1152660057=>1,1152666521=>1,1152666525=>1,1152673957=>1,1152673758=>1,1152674103=>1,1152674131=>1,1152675980=>1,1152675966=>1,1152673754=>1,1152673727=>1,1152666567=>1,1152666538=>1,1152666612=>1,1152668928=>1,1152673336=>1,1152670512=>1,1152655463=>1,1152654965=>1,1152647820=>1,1152647571=>1,1152648133=>1,1152649394=>1,1152650050=>1,1152649793=>1,1152647427=>1,1152308812=>1,1152074214=>1,1152024009=>1,1152182550=>1,1152224296=>1,1152278570=>1,1152236080=>1,1152650523=>1,1152650580=>1,1152653231=>1,1152653112=>1,1152653767=>1,1152654290=>1,1152654910=>1,1152654887=>1,1152651244=>1,1152651037=>1,1152650677=>1,1152650606=>1,1152650705=>1,1152650825=>1,1152651004=>1,1152676025=>1,1152677407=>1,1156224798=>1,1156224526=>1,1156230771=>1,1156230939=>1,1156231377=>1,1156231110=>1,1156224497=>1,1156223736=>1,1156035952=>1,1155912077=>1,1156045785=>1,1156084732=>1,1156221064=>1,1156220526=>1,1156231701=>1,1156232046=>1,1156237178=>1,1156236965=>1,1156237550=>1,1156237607=>1,1156237854=>1,1156237734=>1,1156236789=>1,1156236734=>1,1156236360=>1,1156236351=>1,1156236408=>1,1156236641=>1,1156236728=>1,1156236673=>1,1155865836=>1,1155805277=>1,1152938936=>1,1152855034=>1,1152961053=>1,1153136416=>1,1153280467=>1,1153199479=>1,1152677867=>1,1152677842=>1,1152677461=>1,1152677411=>1,1152677470=>1,1152677649=>1,1152677814=>1,1152677739=>1,1153345442=>1,1153447087=>1,1155650308=>1,1154207943=>1,1155729166=>1,1155736603=>1,1155805215=>1,1155737439=>1,1154052648=>1,1153930619=>1,1153515769=>1,1153515739=>1,1153517673=>1,1153634371=>1,1153870759=>1,1152022258=>1,1152021382=>1,1139555971=>1,1139417321=>1,1139764795=>1,1139829681=>1,1139847976=>1,1139833973=>1,1139272564=>1,1139208803=>1,1138672727=>1,1138612009=>1,1138856770=>1,1139001015=>1,1139167618=>1,1139011663=>1,1140087235=>1,1140238838=>1,1141036891=>1,1140995015=>1,1141434793=>1,1141494642=>1,1141772652=>1,1141716822=>1,1140837582=>1,1140680697=>1,1140300377=>1,1140277294=>1,1140323087=>1,1140427377=>1,1140662563=>1,1140448791=>1,1138611584=>1,1138611225=>1,1137934840=>1,1137850302=>1,1137935474=>1,1137935933=>1,1137941124=>1,1137938229=>1,1137704620=>1,1137562743=>1,1137254726=>1,1117711385=>1,1137382484=>1,1137477791=>1,1137523012=>1,1137489092=>1,1137942385=>1,1138140876=>1,1138468464=>1,1138302383=>1,1138469769=>1,1138484631=>1,1138602203=>1,1138591163=>1,1138302221=>1,1138253855=>1,1138158656=>1,1138150302=>1,1138159540=>1,1138201478=>1,1138229132=>1,1141819356=>1,1141858654=>1,1148037721=>1,1147942728=>1,1148051482=>1,1148148754=>1,1148303660=>1,1148240386=>1,1147922257=>1,1147881050=>1,1147189325=>1,1147166898=>1,1147256768=>1,1147309756=>1,1147723322=>1,1147572156=>1,1148532133=>1,1148964476=>1,1152008908=>1,1151909790=>1,1152017582=>1,1152018201=>1,1152018378=>1,1152018363=>1,1151888536=>1,1151789290=>1,1150290255=>1,1149700088=>1,1150592520=>1,1150594730=>1,1150788651=>1,1146412795=>1,1146283330=>1,1144933594=>1,1144058880=>1,1144970608=>1,1145131346=>1,1145215702=>1,1145214341=>1,1144018327=>1,1143503381=>1,1142983903=>1,1142950838=>1,1143137787=>1,1143363726=>1,1143429536=>1,1143422084=>1,1145262183=>1,1145262221=>1,1145439112=>1,1145423917=>1,1145462381=>1,1145515658=>1,1145547388=>1,1145547386=>1,1145383363=>1,1145265102=>1,1145263321=>1,1145263004=>1,1145263873=>1,1145263950=>1,1145264727=>1,1137159421=>1,1117710449=>1,1082137777=>1,1082088807=>1,1082137874=>1,1082138397=>1,1082285998=>1,1082233998=>1,1082086509=>1,1081876564=>1,1081044078=>1,1081031761=>1,1081144139=>1,1081144604=>1,1081836845=>1,1081155613=>1,1082291116=>1,1082291246=>1,1082296303=>1,1082296296=>1,1082296427=>1,1082296448=>1,1082297466=>1,1082297275=>1,1082296176=>1,1082296064=>1,1082294828=>1,1082294685=>1,1082295327=>1,1082295668=>1,1082295936=>1,1082295798=>1,1081029796=>1,1081026592=>1,1078726127=>1,1078725907=>1,1078837709=>1,1078845221=>1,1078892191=>1,1078848170=>1,1078622066=>1,1078520804=>1,1078399682=>1,1078262265=>1,1078431867=>1,1078431868=>1,1078487786=>1,1078433939=>1,1078918060=>1,1078932577=>1,1079685204=>1,1079685203=>1,1079707380=>1,1079722899=>1,1080499128=>1,1079784979=>1,1079661330=>1,1079370305=>1,1078932583=>1,1078932581=>1,1078946636=>1,1079350426=>1,1079350434=>1,1082297687=>1,1082298068=>1,1082784291=>1,1082783452=>1,1082784535=>1,1082784536=>1,1082784839=>1,1082784540=>1,1082783450=>1,1082782439=>1,1082766835=>1,1082761764=>1,1082780047=>1,1082781882=>1,1082782249=>1,1082781892=>1,1082785170=>1,1082877265=>1,1085506383=>1,1085083938=>1,1085509288=>1,1085510688=>1,1085514829=>1,1085512974=>1,1083435609=>1,1083354093=>1,1082957238=>1,1082913817=>1,1082957787=>1,1082979992=>1,1082982305=>1,1082706465=>1,1082704647=>1,1082301680=>1,1082301544=>1,1082302751=>1,1082302955=>1,1082303438=>1,1082303316=>1,1082301447=>1,1082300970=>1,1082298933=>1,1082298148=>1,1082299661=>1,1082300360=>1,1082300643=>1,1082300635=>1,1082303643=>1,1082304285=>1,1082308299=>1,1082307814=>1,1082309394=>1,1082309447=>1,1082704504=>1,1082309846=>1,1082307656=>1,1082307376=>1,1082304585=>1,1082304419=>1,1082305654=>1,1082306112=>1,1082306334=>1,1078116905=>1,1077864771=>1,1065779640=>1,1065714998=>1,1065780315=>1,1065780316=>1,1065782120=>1,1065781645=>1,1065370501=>1,1064236804=>1,1056253965=>1,1056170164=>1,1056274744=>1,1056548554=>1,1063842681=>1,1056803154=>1,1065786070=>1,1065790394=>1,1066324521=>1,1066324439=>1,1066341596=>1,1066342322=>1,1066343699=>1,1066343161=>1,1066318007=>1,1066311263=>1,1065827126=>1,1065791272=>1,1065827550=>1,1066263074=>1,1066311239=>1,1056019884=>1,1056019874=>1,1054015108=>1,1054015077=>1,1054099699=>1,1054099853=>1,1054213693=>1,1054102757=>1,1054014144=>1,1054013332=>1,1054010913=>1,1054006950=>1,1054011508=>1,1054012327=>1,1054012358=>1,1054012337=>1,1054357732=>1,1054440701=>1,1054654318=>1,1054643297=>1,1054909740=>1,1055419139=>1,1056005386=>1,1055601768=>1,1054643287=>1,1054620521=>1,1054551685=>1,1054445546=>1,1054564109=>1,1054586410=>1,1054619419=>1,1066677230=>1,1066957700=>1,1076168827=>1,1076026134=>1,1076171160=>1,1076171185=>1,1077233372=>1,1076332353=>1,1075945715=>1,1075838448=>1,1075064915=>1,1075014236=>1,1075079787=>1,1075202018=>1,1075515788=>1,1075470094=>1,1077251163=>1,1077251714=>1,1077416054=>1,1077415674=>1,1077417133=>1,1077419176=>1,1077853432=>1,1077781587=>1,1077413831=>1,1077277444=>1,1077255999=>1,1077253412=>1,1077256148=>1,1077270980=>1,1077274925=>1,1075014169=>1,1074980618=>1,1073055832=>1,1073053686=>1,1073099332=>1,1073099365=>1,1073102198=>1,1073100783=>1,1072665746=>1,1072405458=>1,1068472818=>1,1067339564=>1,1071596903=>1,1071596986=>1,1071607817=>1,1071606004=>1,1073102303=>1,1073218493=>1,1074780798=>1,1074748525=>1,1074857214=>1,1074921202=>1,1074968121=>1,1074941974=>1,1074634485=>1,1074588674=>1,1073487482=>1,1073419084=>1,1074558487=>1,1074558552=>1,1074588418=>1,1085515560=>1,1085517134=>1,1108864922=>1,1108522418=>1,1108890678=>1,1108972165=>1,1109240990=>1,1108972492=>1,1108063363=>1,1108047676=>1,1104904915=>1,1104561104=>1,1107251551=>1,1107786856=>1,1107787131=>1,1107787043=>1,1109513336=>1,1109607497=>1,1110003618=>1,1109815805=>1,1110022067=>1,1110166942=>1,1110684763=>1,1110233168=>1,1109813860=>1,1109799173=>1,1109607570=>1,1109607569=>1,1109631663=>1,1109741189=>1,1109795898=>1,1102883918=>1,1102763521=>1,1102413489=>1,1102412798=>1,1102455963=>1,1102456909=>1,1102461137=>1,1102457981=>1,1102412616=>1,1102411274=>1,1099023755=>1,1098859784=>1,1099028625=>1,1100894596=>1,1102409856=>1,1101475800=>1,1102461157=>1,1102462074=>1,1102545558=>1,1102482846=>1,1102551656=>1,1102566089=>1,1102647237=>1,1102622702=>1,1102482037=>1,1102482001=>1,1102462882=>1,1102462105=>1,1102468398=>1,1102470578=>1,1102471067=>1,1110685025=>1,1111139596=>1,1116187237=>1,1116187210=>1,1116187260=>1,1117025370=>1,1117455573=>1,1117378882=>1,1116187171=>1,1116145783=>1,1114926259=>1,1114894099=>1,1115084962=>1,1115698507=>1,1115921799=>1,1115900873=>1,1117696977=>1,1117702294=>1,1117710415=>1,1117705485=>1,1117710429=>1,1054003245=>1,1117710607=>1,1117710556=>1,1117705423=>1,1117705173=>1,1117703468=>1,1117703312=>1,1117703530=>1,1117703763=>1,1117704707=>1,1114892328=>1,1114856400=>1,1112885886=>1,1112777754=>1,1112900424=>1,1112914660=>1,1112995777=>1,1112927360=>1,1112322856=>1,1112322685=>1,1111454084=>1,1111323086=>1,1111542339=>1,1111589843=>1,1112307521=>1,1111804552=>1,1113220469=>1,1113229347=>1,1114560515=>1,1114539073=>1,1114571280=>1,1114571284=>1,1114852292=>1,1114586709=>1,1114049192=>1,1113716830=>1,1113651998=>1,1113647204=>1,1113652458=>1,1113713808=>1,1113716829=>1,1098787418=>1,1098780739=>1,1089088975=>1,1089065482=>1,1089139321=>1,1089164313=>1,1089441332=>1,1089286958=>1,1088957210=>1,1087600444=>1,1086965976=>1,1086936806=>1,1087086005=>1,1087087205=>1,1087331400=>1,1087103968=>1,1089850597=>1,1090152171=>1,1091807108=>1,1091807107=>1,1091807109=>1,1091810033=>1,1092216456=>1,1092214965=>1,1091682055=>1,1090490254=>1,1090323480=>1,1090194961=>1,1090432771=>1,1090449899=>1,1090449900=>1,1086936705=>1,1086936161=>1,1085869023=>1,1085860217=>1,1085871224=>1,1085874835=>1,1085899079=>1,1085876651=>1,1085823336=>1,1085519526=>1,1085517415=>1,1085517243=>1,1085517506=>1,1085517542=>1,1085517699=>1,1085517622=>1,1085963850=>1,1086040035=>1,1086600004=>1,1086127294=>1,1086600756=>1,1086600775=>1,1086601401=>1,1086600844=>1,1086116873=>1,1086114994=>1,1086040785=>1,1086040663=>1,1086096075=>1,1086096476=>1,1086112960=>1,1092217264=>1,1092218226=>1,1094499483=>1,1094497315=>1,1094507712=>1,1094507777=>1,1095391904=>1,1094533838=>1,1094491711=>1,1094490925=>1,1093817734=>1,1093816869=>1,1093826995=>1,1093827231=>1,1094490914=>1,1093847813=>1,1095750108=>1,1095751940=>1,1097841218=>1,1097838262=>1,1097975123=>1,1098042962=>1,1098595826=>1,1098278436=>1,1097836173=>1,1097822857=>1,1095995330=>1,1095752241=>1,1096228884=>1,1096931337=>1,1097753763=>1,1093816798=>1,1093813457=>1,1093103052=>1,1093103047=>1,1093168159=>1,1093615270=>1,1093733943=>1,1093730997=>1,1092902760=>1,1092894308=>1,1092493586=>1,1092381168=>1,1092596441=>1,1092603394=>1,1092756617=>1,1092754574=>1,1093750117=>1,1093751057=>1,1093802795=>1,1093796964=>1,1093802874=>1,1093807312=>1,1093813388=>1,1093813383=>1,1093786291=>1,1093785969=>1,1093772174=>1,1093771778=>1,1093776602=>1,1093777087=>1,1093785645=>1,1117710748=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-11.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1189672192=>1189672447,1158318848=>1158319103,1126931456=>1126931711,1125103360=>1125103487,1179616676=>1,1179521177=>1,1179226590=>1,1179628755=>1,1179638483=>1,1178787958=>1,1179834681=>1,1178385258=>1,1178020273=>1,1178529046=>1,1178561308=>1,1177813386=>1,1178577494=>1,1180227370=>1,1181768766=>1,1181751160=>1,1182136425=>1,1182136818=>1,1182236834=>1,1182172893=>1,1181621517=>1,1181478375=>1,1180307571=>1,1180266449=>1,1180458681=>1,1180481419=>1,1180819410=>1,1180664447=>1,1179983858=>1,1177347053=>1,1170847298=>1,1170653244=>1,1170933031=>1,1170956691=>1,1171171384=>1,1170997457=>1,1170562507=>1,1170515241=>1,1169348719=>1,1169342730=>1,1169349024=>1,1169353995=>1,1170448266=>1,1169525369=>1,1173600608=>1,1173786538=>1,1176600824=>1,1176600787=>1,1176827459=>1,1176903545=>1,1176990436=>1,1176966668=>1,1176575919=>1,1176514035=>1,1174239773=>1,1173857454=>1,1174270608=>1,1176028901=>1,1176488911=>1,1176256019=>1,1182412264=>1,1182540513=>1,1191870759=>1,1191830406=>1,1191917725=>1,1191923586=>1,1192062469=>1,1191958861=>1,1191792734=>1,1191728198=>1,1186826295=>1,1186699657=>1,1186858726=>1,1189376432=>1,1191709212=>1,1190665229=>1,1192107620=>1,1192234913=>1,1192477455=>1,1192477216=>1,1192477899=>1,1192478300=>1,1192482476=>1,1192479911=>1,1192477134=>1,1192476852=>1,1192467082=>1,1192465685=>1,1192467387=>1,1192467839=>1,1192467925=>1,1186464943=>1,1186381653=>1,1183027691=>1,1183027674=>1,1185041211=>1,1185078244=>1,1185218474=>1,1185203660=>1,1183027635=>1,1183027574=>1,1182542777=>1,1169321749=>1,1182543089=>1,1182555703=>1,1182589672=>1,1182571885=>1,1185218478=>1,1185354061=>1,1186002568=>1,1185659102=>1,1186062482=>1,1186289734=>1,1186375034=>1,1186317841=>1,1185624070=>1,1185489837=>1,1185369964=>1,1185361141=>1,1185372753=>1,1185410071=>1,1185486850=>1,1182540381=>1,1169314411=>1,1163748110=>1,1163696579=>1,1163755321=>1,1163840353=>1,1163841109=>1,1163841089=>1,1163565029=>1,1163560184=>1,1163486425=>1,1163222240=>1,1163486973=>1,1163525559=>1,1163559947=>1,1163559946=>1,1163842641=>1,1164974455=>1,1165979383=>1,1165928566=>1,1166032208=>1,1166074861=>1,1166292944=>1,1166290391=>1,1165499308=>1,1165404504=>1,1165147274=>1,1164986690=>1,1165165005=>1,1165191399=>1,1165330647=>1,1163150641=>1,1162948362=>1,1161758509=>1,1161753628=>1,1161785859=>1,1161831866=>1,1161834664=>1,1161834011=>1,1161735558=>1,1161732786=>1,1160947017=>1,1160921241=>1,1160951669=>1,1160994805=>1,1161512382=>1,1161284008=>1,1162241994=>1,1162414707=>1,1162456457=>1,1162434105=>1,1162456459=>1,1162458392=>1,1162707697=>1,1162555308=>1,1162432824=>1,1162424213=>1,1162422329=>1,1162422328=>1,1162422897=>1,1162423117=>1,1162423156=>1,1166313995=>1,1166818079=>1,1168548716=>1,1168548644=>1,1168549170=>1,1168549204=>1,1168550476=>1,1168549241=>1,1168547990=>1,1168446342=>1,1168431821=>1,1168431457=>1,1168432449=>1,1168432462=>1,1168446154=>1,1168432537=>1,1168550499=>1,1168550583=>1,1168867158=>1,1168866797=>1,1168938964=>1,1168954410=>1,1192483313=>1,1168958919=>1,1168864165=>1,1168700991=>1,1168550871=>1,1168550614=>1,1168550974=>1,1168551584=>1,1168668768=>1,1168431334=>1,1168431186=>1,1168272133=>1,1168208252=>1,1168280329=>1,1168319454=>1,1168334850=>1,1168332267=>1,1167258628=>1,1167198307=>1,1167028568=>1,1167009158=>1,1167045349=>1,1167066931=>1,1167142897=>1,1167104138=>1,1168334851=>1,1168335884=>1,1168429842=>1,1168429320=>1,1168430144=>1,1168430260=>1,1168430842=>1,1168430788=>1,1168428720=>1,1168428435=>1,1168426222=>1,1168425820=>1,1168426276=>1,1168426343=>1,1168426528=>1,1169319056=>1,1193841854=>1,1209289275=>1,1209244549=>1,1209321771=>1,1209321981=>1,1209541391=>1,1209521961=>1,1209244205=>1,1208924437=>1,1208880226=>1,1208877878=>1,1208922532=>1,1208922890=>1,1208924221=>1,1208923918=>1,1209563031=>1,1209677474=>1,1210311850=>1,1210311381=>1,1210313412=>1,1210314547=>1,1210752499=>1,1210322378=>1,1210205210=>1,1210115112=>1,1209716883=>1,1209699597=>1,1209785800=>1,1209790098=>1,1209836777=>1,1209797277=>1,1208770244=>1,1208769530=>1,1206390387=>1,1206348650=>1,1206570103=>1,1206716826=>1,1207259198=>1,1206830735=>1,1206246087=>1,1206011718=>1,1204467941=>1,1204273610=>1,1204488477=>1,1204633763=>1,1204936549=>1,1204721543=>1,1207259926=>1,1207480986=>1,1208639400=>1,1208634327=>1,1208719080=>1,1208764530=>1,1208767468=>1,1208767304=>1,1208305889=>1,1208135296=>1,1207732726=>1,1207731300=>1,1208019002=>1,1208038238=>1,1208040954=>1,1210760712=>1,1210874269=>1,1219426458=>1,1219405693=>1,1219426554=>1,1219443587=>1,1219459833=>1,1219458338=>1,1219365274=>1,1219287275=>1,1218741611=>1,1218741449=>1,1218755877=>1,1218776322=>1,1219282802=>1,1218776354=>1,1219469934=>1,1219473815=>1,1219954942=>1,1219833250=>1,1220007233=>1,1220258324=>1,1220493536=>1,1220493506=>1,1219833231=>1,1219727970=>1,1219652664=>1,1219478914=>1,1219666184=>1,1219668159=>1,1219668764=>1,1218413593=>1,1216567439=>1,1211066823=>1,1211066667=>1,1211109047=>1,1211155046=>1,1211155108=>1,1211155085=>1,1211059261=>1,1211059038=>1,1210973284=>1,1210875453=>1,1211014074=>1,1211042078=>1,1211058726=>1,1211058667=>1,1211155162=>1,1211155235=>1,1212595675=>1,1212382159=>1,1212674389=>1,1213040398=>1,1213915434=>1,1213497496=>1,1211628055=>1,1211466645=>1,1211312227=>1,1211155410=>1,1211366833=>1,1211386651=>1,1211462706=>1,1204247629=>1,1204155890=>1,1196675206=>1,1196477424=>1,1196777286=>1,1196777287=>1,1196817785=>1,1196777302=>1,1196432120=>1,1196384859=>1,1195958586=>1,1195956969=>1,1196049476=>1,1196054792=>1,1196246830=>1,1196226944=>1,1196823566=>1,1196923578=>1,1197421907=>1,1197418156=>1,1197667464=>1,1197712739=>1,1197726083=>1,1197722543=>1,1197313548=>1,1197309621=>1,1197101811=>1,1197084853=>1,1197122005=>1,1197161361=>1,1197279735=>1,1197231226=>1,1195620405=>1,1195383212=>1,1193985938=>1,1193984890=>1,1193999062=>1,1193999066=>1,1194024362=>1,1194014322=>1,1193969894=>1,1193876469=>1,1193856244=>1,1160771764=>1,1193857442=>1,1193862862=>1,1193867274=>1,1193863247=>1,1194031078=>1,1194058298=>1,1195061489=>1,1194940595=>1,1195106499=>1,1195317149=>1,1195381178=>1,1195352083=>1,1194304429=>1,1194281760=>1,1194142337=>1,1194059806=>1,1194262160=>1,1194277449=>1,1194280723=>1,1197967715=>1,1198547580=>1,1201875169=>1,1201838755=>1,1201897738=>1,1201909463=>1,1202517276=>1,1202034467=>1,1201693980=>1,1200041879=>1,1200041532=>1,1200041366=>1,1200041559=>1,1200041607=>1,1200041728=>1,1200041702=>1,1202601517=>1,1202776999=>1,1203823248=>1,1203785187=>1,1203896784=>1,1203959498=>1,1204035217=>1,1203963717=>1,1203762395=>1,1203736938=>1,1202843069=>1,1202841135=>1,1203202582=>1,1203315515=>1,1203488018=>1,1200041267=>1,1200041180=>1,1200038946=>1,1200038667=>1,1200039148=>1,1200039227=>1,1200039430=>1,1200039282=>1,1200038498=>1,1200038380=>1,1198960796=>1,1198569748=>1,1199208375=>1,1199293301=>1,1200037967=>1,1200037928=>1,1200039519=>1,1200039557=>1,1200040402=>1,1200040275=>1,1200040554=>1,1200040759=>1,1200041080=>1,1200041032=>1,1200040212=>1,1200040210=>1,1200039740=>1,1200039667=>1,1200039789=>1,1200039830=>1,1200040046=>1,1193068230=>1,1160747791=>1,1139272564=>1,1139208803=>1,1139417321=>1,1139764795=>1,1139833973=>1,1139829681=>1,1139167618=>1,1139011663=>1,1138611584=>1,1138611225=>1,1138612009=>1,1138672727=>1,1139001015=>1,1138856770=>1,1139847976=>1,1140087235=>1,1141036891=>1,1140995015=>1,1141232937=>1,1141434793=>1,1141583204=>1,1141494642=>1,1140837582=>1,1140680697=>1,1140300377=>1,1140238838=>1,1140323087=>1,1140427377=>1,1140662563=>1,1140448791=>1,1138602203=>1,1138591163=>1,1137766750=>1,1137766679=>1,1137850302=>1,1137934840=>1,1137937145=>1,1137935933=>1,1137704620=>1,1137562743=>1,1137254726=>1,1137162683=>1,1137382484=>1,1137477791=>1,1137523012=>1,1137489092=>1,1137938229=>1,1137941979=>1,1138302383=>1,1138302221=>1,1138468464=>1,1138469769=>1,1138499461=>1,1138484631=>1,1138229132=>1,1138201478=>1,1138140876=>1,1137942385=>1,1138150302=>1,1138158656=>1,1138159540=>1,1141716822=>1,1141772652=>1,1147572156=>1,1147309756=>1,1147723322=>1,1147881050=>1,1147942728=>1,1147922257=>1,1147256768=>1,1147189325=>1,1145547386=>1,1145547030=>1,1145547388=>1,1146283330=>1,1147166898=>1,1146412795=>1,1148037721=>1,1148148754=>1,1150788651=>1,1150594730=>1,1151789290=>1,1151888536=>1,1152008908=>1,1151909790=>1,1150592520=>1,1150290255=>1,1148303660=>1,1148240386=>1,1148532133=>1,1148964476=>1,1149700088=>1,1145515658=>1,1145439112=>1,1143503381=>1,1143429536=>1,1144018327=>1,1144058880=>1,1144933594=>1,1144598957=>1,1143422084=>1,1143363726=>1,1141858654=>1,1141819356=>1,1142950838=>1,1143009442=>1,1143362509=>1,1143137787=>1,1144970608=>1,1145214341=>1,1145264727=>1,1145263950=>1,1145265102=>1,1145265338=>1,1145423917=>1,1145383363=>1,1145263873=>1,1145263321=>1,1145262183=>1,1145215702=>1,1145262221=>1,1145262976=>1,1145263004=>1,1137159421=>1,1137149366=>1,1127722992=>1,1127722940=>1,1127731852=>1,1127875348=>1,1127898692=>1,1127875381=>1,1127593626=>1,1127513790=>1,1125458680=>1,1125052982=>1,1125619977=>1,1126209802=>1,1127066827=>1,1126919072=>1,1128054023=>1,1128154398=>1,1130147301=>1,1130147300=>1,1131572130=>1,1132656437=>1,1132868965=>1,1132853588=>1,1130147299=>1,1129491517=>1,1128225346=>1,1128222679=>1,1129203334=>1,1129263610=>1,1129284994=>1,1129284820=>1,1125052485=>1,1125051709=>1,1123942394=>1,1123942281=>1,1123987346=>1,1124071559=>1,1124171818=>1,1124166101=>1,1123942111=>1,1123940644=>1,1123939541=>1,1123937353=>1,1123939588=>1,1123939764=>1,1123940478=>1,1123939825=>1,1124173906=>1,1124198759=>1,1125040955=>1,1125040954=>1,1125042296=>1,1125046356=>1,1125051478=>1,1125049191=>1,1124837390=>1,1124777854=>1,1124204039=>1,1124203079=>1,1124205108=>1,1124457724=>1,1124515785=>1,1133812843=>1,1133846042=>1,1136488631=>1,1136448113=>1,1136498048=>1,1136846337=>1,1137008347=>1,1136846468=>1,1136404497=>1,1136111094=>1,1135554285=>1,1135504413=>1,1135564038=>1,1135729428=>1,1136048358=>1,1136019145=>1,1137018888=>1,1137019701=>1,1137070007=>1,1137053734=>1,1137113050=>1,1137113052=>1,1137149293=>1,1137113053=>1,1137048902=>1,1137048901=>1,1137043980=>1,1137030516=>1,1137044489=>1,1137044602=>1,1137048215=>1,1135350764=>1,1135292701=>1,1133877752=>1,1133875962=>1,1133882143=>1,1133890340=>1,1133898237=>1,1133897769=>1,1133875623=>1,1133874477=>1,1133858102=>1,1133852300=>1,1133863878=>1,1133868489=>1,1133869425=>1,1133869190=>1,1133903226=>1,1134430929=>1,1134844733=>1,1134833035=>1,1134980892=>1,1135037688=>1,1135272096=>1,1135093496=>1,1134830811=>1,1134830707=>1,1134486218=>1,1134432217=>1,1134562033=>1,1134736059=>1,1134757761=>1,1152017582=>1,1152018201=>1,1156486203=>1,1156315919=>1,1157968229=>1,1157969563=>1,1157970583=>1,1157970447=>1,1156273288=>1,1156249589=>1,1156246504=>1,1156246466=>1,1156249059=>1,1156249138=>1,1156249559=>1,1156249519=>1,1157971017=>1,1158005063=>1,1158268795=>1,1158268141=>1,1158269454=>1,1158270782=>1,1158471576=>1,1158410887=>1,1158268065=>1,1158267480=>1,1158006160=>1,1158005594=>1,1158056220=>1,1158115588=>1,1158267105=>1,1158115589=>1,1156246105=>1,1156241406=>1,1156236789=>1,1156236734=>1,1156236965=>1,1156237178=>1,1156237607=>1,1156237550=>1,1156236728=>1,1156236673=>1,1156232046=>1,1156231701=>1,1156236351=>1,1156236360=>1,1156236641=>1,1156236408=>1,1156237734=>1,1156237776=>1,1156240976=>1,1156240907=>1,1156241008=>1,1156241117=>1,1156241344=>1,1156241216=>1,1156240803=>1,1156240776=>1,1156237900=>1,1156237854=>1,1156238257=>1,1156238633=>1,1156240661=>1,1158558219=>1,1158558314=>1,1159649186=>1,1159649066=>1,1159652994=>1,1159653522=>1,1159658734=>1,1159657778=>1,1159647504=>1,1159646202=>1,1159486499=>1,1159486057=>1,1159548373=>1,1159643962=>1,1159645974=>1,1159645526=>1,1159829546=>1,1159868754=>1,1160734144=>1,1160730796=>1,1160739486=>1,1160747160=>1,1160748115=>1,1123937044=>1,1160729833=>1,1160729830=>1,1160196553=>1,1160004054=>1,1160368694=>1,1160650406=>1,1160706762=>1,1159483952=>1,1159480313=>1,1158607363=>1,1158602777=>1,1158607368=>1,1158607638=>1,1158607768=>1,1158607738=>1,1158597436=>1,1158596531=>1,1158566091=>1,1158565281=>1,1158568335=>1,1158575212=>1,1158596466=>1,1158578546=>1,1158608974=>1,1158736290=>1,1159411974=>1,1159410634=>1,1159412109=>1,1159413142=>1,1159416913=>1,1159413536=>1,1159410062=>1,1159231438=>1,1158968145=>1,1158867607=>1,1159031912=>1,1159229489=>1,1159230031=>1,1156231377=>1,1156231110=>1,1152659558=>1,1152658260=>1,1152659613=>1,1152659962=>1,1152660183=>1,1152660057=>1,1152657891=>1,1152655619=>1,1152654290=>1,1152653767=>1,1152654887=>1,1152654910=>1,1152655463=>1,1152654965=>1,1152660369=>1,1152663908=>1,1152666525=>1,1152666521=>1,1152666538=>1,1152666567=>1,1152668928=>1,1152666612=>1,1152666494=>1,1152666428=>1,1152666036=>1,1152665973=>1,1152666170=>1,1152666192=>1,1152666414=>1,1152653231=>1,1152653112=>1,1152278570=>1,1152236080=>1,1152308812=>1,1152615370=>1,1152647427=>1,1152620385=>1,1152224296=>1,1152182550=>1,1152018378=>1,1152018363=>1,1152021382=>1,1152022258=>1,1152074214=>1,1152024009=>1,1152647571=>1,1152647820=>1,1152650705=>1,1152650677=>1,1152650825=>1,1152651004=>1,1152651244=>1,1152651037=>1,1152650606=>1,1152650580=>1,1152649394=>1,1152648133=>1,1152649793=>1,1152650050=>1,1152650523=>1,1152670512=>1,1152673336=>1,1155736603=>1,1155729166=>1,1155737439=>1,1155805215=>1,1155865836=>1,1155805277=>1,1155650308=>1,1154207943=>1,1153831722=>1,1153634371=>1,1153870759=>1,1153930619=>1,1154071458=>1,1154052648=>1,1155912077=>1,1155957575=>1,1156224497=>1,1156224029=>1,1156224526=>1,1156224798=>1,1156230939=>1,1156230771=>1,1156223736=>1,1156221064=>1,1156045785=>1,1156035952=>1,1156084732=>1,1156220526=>1,1156220623=>1,1153517673=>1,1153517106=>1,1152677407=>1,1152676025=>1,1152677411=>1,1152677420=>1,1152677470=>1,1152677461=>1,1152675980=>1,1152675966=>1,1152673754=>1,1152673727=>1,1152673758=>1,1152673957=>1,1152674131=>1,1152674103=>1,1152677649=>1,1152677739=>1,1153345442=>1,1153280467=>1,1153383028=>1,1153447087=>1,1153515769=>1,1153515739=>1,1153199479=>1,1152961053=>1,1152677842=>1,1152677814=>1,1152677867=>1,1152855034=>1,1152938936=>1,1160770244=>1,);?>
1
+ <?php return array(1255358824=>1255358825,1254307992=>1254307993,1249091584=>1249092607,1249050624=>1249052671,1189672192=>1189672447,1179966724=>1179966725,1168334850=>1168334851,1163559946=>1163559947,1162422328=>1162422329,1158318848=>1158319103,1234536325=>1,1234562005=>1,1234691551=>1,1234751501=>1,1233441784=>1,1233460540=>1,1234333397=>1,1233511725=>1,1233591134=>1,1235049463=>1,1233804243=>1,1234317772=>1,1233255280=>1,1235882074=>1,1235817750=>1,1235934648=>1,1236256500=>1,1236439023=>1,1235537415=>1,1235497402=>1,1235313763=>1,1235405776=>1,1236442106=>1,1235458786=>1,1235211095=>1,1230619521=>1,1226648057=>1,1226479653=>1,1227091964=>1,1227098158=>1,1227192631=>1,1227133057=>1,1226444580=>1,1226432585=>1,1226154849=>1,1226055839=>1,1226318906=>1,1226370546=>1,1226379489=>1,1227367594=>1,1227695435=>1,1229729552=>1,1229161302=>1,1230417907=>1,1230607537=>1,1231290653=>1,1236585904=>1,1229104430=>1,1228295957=>1,1227753739=>1,1227734734=>1,1227880216=>1,1228114080=>1,1228157131=>1,1233192844=>1,1236818868=>1,1244804677=>1,1244081021=>1,1244893575=>1,1244894070=>1,1244895543=>1,1244894938=>1,1244014361=>1,1243994954=>1,1241366548=>1,1241192410=>1,1241379159=>1,1241752871=>1,1243988734=>1,1242282429=>1,1244896046=>1,1244896925=>1,1245727728=>1,1245693210=>1,1245777730=>1,1245829072=>1,1245909134=>1,1245839818=>1,1245639254=>1,1244901099=>1,1244897084=>1,1244896981=>1,1244898457=>1,1244898770=>1,1244899226=>1,1244899093=>1,1241157101=>1,1241152260=>1,1238143140=>1,1238032799=>1,1238163996=>1,1238265814=>1,1238606793=>1,1238427871=>1,1238020121=>1,1237912360=>1,1237058715=>1,1226007124=>1,1237194186=>1,1237676085=>1,1237846761=>1,1237726031=>1,1239128684=>1,1239293984=>1,1240580501=>1,1240446078=>1,1240596895=>1,1240882150=>1,1241106381=>1,1240889863=>1,1240170574=>1,1240068890=>1,1239397750=>1,1239321437=>1,1239571652=>1,1239646225=>1,1239892849=>1,1239713324=>1,1236607696=>1,1225600157=>1,1211155162=>1,1211155108=>1,1211155235=>1,1211155410=>1,1211366833=>1,1211312227=>1,1211155085=>1,1211155046=>1,1211058726=>1,1211058667=>1,1211059038=>1,1211059261=>1,1211066823=>1,1211066667=>1,1211386651=>1,1211462706=>1,1218413593=>1,1216567439=>1,1218741449=>1,1218741611=>1,1218776322=>1,1218755877=>1,1213915434=>1,1213497496=>1,1211628055=>1,1211466645=>1,1212382159=>1,1212595675=>1,1213040398=>1,1212674389=>1,1211042078=>1,1211014074=>1,1209677474=>1,1209563031=>1,1209699597=>1,1209716883=>1,1209790098=>1,1209785800=>1,1209541391=>1,1209521961=>1,1209244205=>1,1208924437=>1,1209244549=>1,1209289275=>1,1209321981=>1,1209321771=>1,1209797277=>1,1209836777=>1,1210760712=>1,1210752499=>1,1210870014=>1,1210874269=>1,1210973284=>1,1210875453=>1,1210322378=>1,1210314547=>1,1210205210=>1,1210115112=>1,1210311381=>1,1210311850=>1,1210313412=>1,1218776354=>1,1219282802=>1,1222420904=>1,1222353147=>1,1222599134=>1,1222694477=>1,1223084653=>1,1222781184=>1,1222282464=>1,1222175938=>1,1221188521=>1,1221181327=>1,1221448299=>1,1222044251=>1,1222112919=>1,1222091714=>1,1223154829=>1,1223217861=>1,1224940422=>1,1224593318=>1,1225205755=>1,1225307877=>1,1245947153=>1,1225527226=>1,1224592985=>1,1224563756=>1,1223590892=>1,1223420596=>1,1224390582=>1,1224477524=>1,1224528838=>1,1224478371=>1,1221147255=>1,1221095370=>1,1219469934=>1,1219459833=>1,1219473815=>1,1219478914=>1,1219666184=>1,1219652664=>1,1219458338=>1,1219443587=>1,1219365274=>1,1219287275=>1,1219369544=>1,1219405693=>1,1219426554=>1,1219426458=>1,1219668159=>1,1219668764=>1,1220582194=>1,1220520215=>1,1220642231=>1,1220728172=>1,1220871790=>1,1220855988=>1,1220493536=>1,1220493506=>1,1219833231=>1,1219727970=>1,1219833250=>1,1219954942=>1,1220007233=>1,1225785073=>1,1246431836=>1,1263313356=>1,1263286887=>1,1263313393=>1,1263313451=>1,1263322161=>1,1263318146=>1,1263279558=>1,1263274193=>1,1262898678=>1,1262787075=>1,1262934764=>1,1263065641=>1,1263102042=>1,1263086125=>1,1263323982=>1,1263324389=>1,1264683498=>1,1264675774=>1,1264751209=>1,1264752019=>1,1264754248=>1,1264753277=>1,1264137616=>1,1264048954=>1,1263575276=>1,1263336098=>1,1263630222=>1,1264041798=>1,1264046538=>1,1259005594=>1,1258398798=>1,1255212230=>1,1255202014=>1,1255342449=>1,1255346874=>1,1255534778=>1,1255531740=>1,1255188252=>1,1255171399=>1,1255141895=>1,1255141402=>1,1255143534=>1,1255143849=>1,1255165570=>1,1255144794=>1,1255535312=>1,1255580717=>1,1255867282=>1,1255860660=>1,1255935368=>1,1256024716=>1,1256051340=>1,1256034486=>1,1255859045=>1,1255837454=>1,1255581792=>1,1255580922=>1,1255582009=>1,1255811942=>1,1255826514=>1,1264754669=>1,1264760693=>1,1265491307=>1,1265490312=>1,1265512631=>1,1265542150=>1,1265547577=>1,1265546062=>1,1265488737=>1,1265486798=>1,1265484220=>1,1265481767=>1,1265484601=>1,1265484826=>1,1265486400=>1,1265485734=>1,1265547655=>1,1265548102=>1,1266056437=>1,1266055967=>1,1266063302=>1,1266074926=>1,1266079398=>1,1266075762=>1,1266052273=>1,1266038171=>1,1265592686=>1,1265557751=>1,1265637926=>1,1265643558=>1,1265865679=>1,1265479498=>1,1265478167=>1,1265214573=>1,1265199459=>1,1265225056=>1,1265234137=>1,1265334810=>1,1265308728=>1,1265199171=>1,1265196589=>1,1265092557=>1,1265087589=>1,1265097860=>1,1265185372=>1,1265192627=>1,1265191588=>1,1265344407=>1,1265367953=>1,1265412041=>1,1265411695=>1,1265416199=>1,1265453079=>1,1265465662=>1,1265453323=>1,1265401403=>1,1265400761=>1,1265368547=>1,1265368220=>1,1265374606=>1,1265384834=>1,1265400330=>1,1255140652=>1,1255140549=>1,1247248778=>1,1247156243=>1,1247274030=>1,1247363993=>1,1247392340=>1,1247377752=>1,1247137048=>1,1246982590=>1,1246948688=>1,1246948516=>1,1246948700=>1,1246949131=>1,1246952943=>1,1246949151=>1,1247476272=>1,1247483138=>1,1248209493=>1,1248025583=>1,1248222695=>1,1248930948=>1,1248963138=>1,1248963118=>1,1247861955=>1,1247790009=>1,1247484374=>1,1247484266=>1,1247485574=>1,1247642197=>1,1247677957=>1,1246948400=>1,1246948247=>1,1246481255=>1,1246478502=>1,1246487508=>1,1246487886=>1,1246596146=>1,1246524591=>1,1246476881=>1,1246469965=>1,1246181601=>1,1246085313=>1,1246197201=>1,1208924221=>1,1246460687=>1,1246444582=>1,1246629862=>1,1246649955=>1,1246945451=>1,1246925140=>1,1246945502=>1,1246946200=>1,1246947875=>1,1246946490=>1,1246890464=>1,1246855786=>1,1246662830=>1,1246650088=>1,1246671369=>1,1246681459=>1,1246729562=>1,1248963154=>1,1248963198=>1,1254183221=>1,1254170281=>1,1254235906=>1,1254252749=>1,1254299121=>1,1254257747=>1,1250848858=>1,1250839196=>1,1250625671=>1,1250598344=>1,1250632961=>1,1250642082=>1,1250789054=>1,1250676713=>1,1254324536=>1,1254382252=>1,1254588031=>1,1254584599=>1,1254834898=>1,1254879080=>1,1255139258=>1,1254921378=>1,1254582318=>1,1254566454=>1,1254556113=>1,1254399418=>1,1254560146=>1,1254562514=>1,1254563636=>1,1250533730=>1,1250460455=>1,1249410580=>1,1249376870=>1,1249411599=>1,1249490638=>1,1249579746=>1,1249523071=>1,1249338582=>1,1249163896=>1,1248963290=>1,1248963274=>1,1248963918=>1,1248964055=>1,1249131426=>1,1248964289=>1,1249580840=>1,1249653805=>1,1250098926=>1,1250069032=>1,1250167589=>1,1250186758=>1,1250349277=>1,1250194239=>1,1249984414=>1,1249983516=>1,1249654616=>1,1249653848=>1,1249772386=>1,1249869077=>1,1249931444=>1,1246062427=>1,1208880226=>1,1167045349=>1,1167028568=>1,1167066931=>1,1167104138=>1,1167142897=>1,1167124138=>1,1167009158=>1,1166818079=>1,1166290391=>1,1166074861=>1,1166292944=>1,1166313995=>1,1166524420=>1,1166376675=>1,1167198307=>1,1167258628=>1,1168426276=>1,1168426222=>1,1168426343=>1,1168426528=>1,1168428720=>1,1168428435=>1,1168425820=>1,1168335884=>1,1168208252=>1,1168123260=>1,1168272133=>1,1168280329=>1,1168332267=>1,1168319454=>1,1166032208=>1,1165979383=>1,1163486425=>1,1163222240=>1,1163525559=>1,1163559947=>1,1163565029=>1,1163560184=>1,1163150641=>1,1162948362=>1,1162434105=>1,1162432824=>1,1162456457=>1,1162456459=>1,1162707697=>1,1162458392=>1,1163696579=>1,1163748110=>1,1165191399=>1,1165165005=>1,1165330647=>1,1165404504=>1,1165928566=>1,1165499308=>1,1164986690=>1,1164974455=>1,1163840353=>1,1163755321=>1,1163841089=>1,1163841109=>1,1163842641=>1,1168429320=>1,1168429842=>1,1169349024=>1,1169348719=>1,1169353995=>1,1169525369=>1,1170515241=>1,1170448266=>1,1169342730=>1,1169319056=>1,1168867158=>1,1168866797=>1,1168938964=>1,1168954410=>1,1169315599=>1,1168958919=>1,1170518514=>1,1170562507=>1,1173757004=>1,1173689113=>1,1173786538=>1,1173857454=>1,1176028901=>1,1174239773=>1,1173600608=>1,1171171384=>1,1170847298=>1,1170653244=>1,1170933031=>1,1170956691=>1,1170997457=>1,1168864165=>1,1168700991=>1,1168432462=>1,1168432449=>1,1168432537=>1,1168446154=>1,1168547990=>1,1168446342=>1,1168431821=>1,1168431457=>1,1168430260=>1,1168430144=>1,1168430788=>1,1168430842=>1,1168431334=>1,1168431186=>1,1168548644=>1,1168548716=>1,1168550871=>1,1168550614=>1,1168550974=>1,1168551243=>1,1168668768=>1,1168551584=>1,1168550583=>1,1168550499=>1,1168549170=>1,1168548808=>1,1168549204=>1,1168549241=>1,1168550476=>1,1162424213=>1,1162423156=>1,1158269454=>1,1158268795=>1,1158270782=>1,1158471576=>1,1158558314=>1,1158558219=>1,1158268141=>1,1158268065=>1,1158006160=>1,1158005594=>1,1158056220=>1,1158267105=>1,1158268053=>1,1158267480=>1,1158565281=>1,1158566091=>1,1158607368=>1,1158607363=>1,1158607638=>1,1158607738=>1,1158608974=>1,1158607768=>1,1158602777=>1,1158597436=>1,1158575212=>1,1158568335=>1,1158578546=>1,1158596466=>1,1158596531=>1,1158005063=>1,1157971615=>1,1156241216=>1,1156241117=>1,1156241344=>1,1156241406=>1,1156246466=>1,1156246105=>1,1156241008=>1,1156240976=>1,1156238633=>1,1156238257=>1,1156238762=>1,1156240776=>1,1156240907=>1,1156240803=>1,1156246504=>1,1156249059=>1,1157968229=>1,1156486203=>1,1157969563=>1,1157970447=>1,1157971017=>1,1157970583=>1,1156315919=>1,1156273288=>1,1156249341=>1,1156249138=>1,1156249519=>1,1156249559=>1,1156249589=>1,1158736290=>1,1158867607=>1,1160749064=>1,1160748115=>1,1160749257=>1,1160770244=>1,1160921241=>1,1160771764=>1,1160747791=>1,1160747160=>1,1160729830=>1,1160706762=>1,1160729833=>1,1160730796=>1,1160739486=>1,1160734144=>1,1160947017=>1,1160951669=>1,1161834664=>1,1161834011=>1,1162241994=>1,1162414707=>1,1162423117=>1,1162422897=>1,1161785859=>1,1161758509=>1,1161284008=>1,1160994805=>1,1161512382=>1,1161732786=>1,1161735558=>1,1160650406=>1,1160368694=>1,1159412109=>1,1159411974=>1,1159413142=>1,1159413536=>1,1159480313=>1,1159416913=>1,1159410634=>1,1159410062=>1,1159031912=>1,1158968145=>1,1159147678=>1,1159229489=>1,1159231438=>1,1159230031=>1,1159486057=>1,1159486499=>1,1159658734=>1,1159657778=>1,1159829546=>1,1159868754=>1,1160196553=>1,1160004054=>1,1159652994=>1,1159649186=>1,1159645974=>1,1159645526=>1,1159646202=>1,1159647504=>1,1159649066=>1,1176488911=>1,1176575919=>1,1200039519=>1,1200039227=>1,1200039557=>1,1200039667=>1,1200039789=>1,1200039740=>1,1200038946=>1,1200038667=>1,1199379118=>1,1199293301=>1,1200037928=>1,1200037967=>1,1200038498=>1,1200038380=>1,1200039830=>1,1200040210=>1,1200041080=>1,1200041032=>1,1200041180=>1,1200041267=>1,1200041559=>1,1200041366=>1,1200041026=>1,1200040783=>1,1200040402=>1,1200040275=>1,1200040545=>1,1200040554=>1,1200040759=>1,1199289985=>1,1198569748=>1,1196384859=>1,1196246830=>1,1196432120=>1,1196477424=>1,1196817785=>1,1196777545=>1,1196226944=>1,1196054792=>1,1195383212=>1,1195381178=>1,1195620405=>1,1195956969=>1,1196049476=>1,1195958586=>1,1196823566=>1,1196923578=>1,1197418156=>1,1197313548=>1,1197421907=>1,1197722543=>1,1198547580=>1,1197726083=>1,1197309621=>1,1197279735=>1,1197101811=>1,1197084853=>1,1197122005=>1,1197161361=>1,1197231226=>1,1200041607=>1,1200041702=>1,1207259926=>1,1207259198=>1,1207731300=>1,1207732726=>1,1208038238=>1,1208019002=>1,1206830735=>1,1206716826=>1,1206011718=>1,1205834407=>1,1206246087=>1,1206348650=>1,1206570103=>1,1206390387=>1,1208040954=>1,1208135296=>1,1208770244=>1,1208769530=>1,1208877878=>1,1156237900=>1,1208922890=>1,1208922532=>1,1208767468=>1,1208767304=>1,1208639400=>1,1208305889=>1,1208667666=>1,1208719080=>1,1208764622=>1,1204721543=>1,1204661206=>1,1202776999=>1,1202601517=>1,1202843069=>1,1203202582=>1,1203315515=>1,1203272205=>1,1202517276=>1,1202034467=>1,1200041879=>1,1200041855=>1,1201838755=>1,1201875169=>1,1202030443=>1,1201909463=>1,1203488018=>1,1203736938=>1,1204247629=>1,1204155890=>1,1204273610=>1,1204467941=>1,1204633763=>1,1204488477=>1,1203963717=>1,1203959498=>1,1203762642=>1,1203762395=>1,1203785187=>1,1203823248=>1,1203896784=>1,1195317149=>1,1195106499=>1,1182548560=>1,1182543089=>1,1182555703=>1,1182571885=>1,1183027635=>1,1182589672=>1,1182542777=>1,1182540513=>1,1181839681=>1,1181751160=>1,1182136425=>1,1182136818=>1,1182412264=>1,1182172893=>1,1183027674=>1,1183027691=>1,1185372753=>1,1185369964=>1,1185486850=>1,1185489837=>1,1185659102=>1,1185624070=>1,1185361141=>1,1185354061=>1,1185078244=>1,1185041211=>1,1185203660=>1,1185218474=>1,1185218478=>1,1181478375=>1,1180819410=>1,1177954631=>1,1177813386=>1,1178020273=>1,1178385258=>1,1178561308=>1,1178529046=>1,1177347053=>1,1176990448=>1,1176600824=>1,1176600787=>1,1176827459=>1,1176903545=>1,1176990436=>1,1176966668=>1,1178577494=>1,1178787958=>1,1180266449=>1,1180227370=>1,1180307571=>1,1180458681=>1,1180664447=>1,1180481419=>1,1179983858=>1,1179966722=>1,1179431886=>1,1179226590=>1,1179521177=>1,1179638483=>1,1179834681=>1,1185744731=>1,1185746412=>1,1193867274=>1,1193863247=>1,1193876469=>1,1193969894=>1,1193985938=>1,1193984890=>1,1193862862=>1,1193857442=>1,1192482476=>1,1192479911=>1,1192483313=>1,1193068230=>1,1193856244=>1,1193841854=>1,1193999062=>1,1193999066=>1,1194280723=>1,1194277449=>1,1194281760=>1,1194304429=>1,1195061489=>1,1194940595=>1,1194262160=>1,1194142337=>1,1194024362=>1,1194014322=>1,1194031078=>1,1194058298=>1,1194059806=>1,1192478300=>1,1192477899=>1,1191709212=>1,1190665229=>1,1191728198=>1,1191792734=>1,1191870759=>1,1191830406=>1,1186858726=>1,1186828278=>1,1186289734=>1,1186062482=>1,1186317841=>1,1186375034=>1,1186826295=>1,1186699657=>1,1191917725=>1,1191923586=>1,1192467925=>1,1192467839=>1,1192476852=>1,1192477134=>1,1192477455=>1,1192477216=>1,1192467387=>1,1192467082=>1,1192062469=>1,1191958861=>1,1192107620=>1,1192234913=>1,1192465685=>1,1208923918=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-12.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1249091584=>1249092607,1249050624=>1249052671,1291855586=>1,1291563434=>1,1291923446=>1,1292010663=>1,1292204256=>1,1292014751=>1,1290387671=>1,1289375453=>1,1287590987=>1,1287590946=>1,1287591012=>1,1287591318=>1,1287639560=>1,1287591367=>1,1292316869=>1,1293201246=>1,1292582540=>1,1292579569=>1,1292584742=>1,1292586191=>1,1292703427=>1,1292668788=>1,1292576236=>1,1292575300=>1,1292322551=>1,1287578916=>1,1292322732=>1,1292562583=>1,1292563886=>1,1292704849=>1,1287210775=>1,1286296616=>1,1286285639=>1,1286566502=>1,1286593611=>1,1286798194=>1,1286784672=>1,1286175140=>1,1286170110=>1,1283310586=>1,1283285784=>1,1283330042=>1,1283433733=>1,1286068195=>1,1286035786=>1,1286802419=>1,1286805948=>1,1287008525=>1,1286863226=>1,1287018343=>1,1287027125=>1,1293211929=>1,1287164848=>1,1286857188=>1,1286851924=>1,1286823783=>1,1286821394=>1,1286836957=>1,1286838570=>1,1286840221=>1,1287497639=>1,1293243716=>1,1295205651=>1,1295194091=>1,1295205707=>1,1295206003=>1,1295206155=>1,1295206151=>1,1295193728=>1,1295193697=>1,1295192170=>1,1295188577=>1,1295192766=>1,1295192948=>1,1295193494=>1,1295193384=>1,1295206262=>1,1295213665=>1,1295547532=>1,1295530740=>1,1295551405=>1,1295562771=>1,1295579300=>1,1295569011=>1,1295376695=>1,1295373448=>1,1295214427=>1,1295213974=>1,1295219243=>1,1295328421=>1,1295369045=>1,1295178844=>1,1295163436=>1,1293368221=>1,1293357375=>1,1293929644=>1,1294305445=>1,1294326417=>1,1294306995=>1,1293354411=>1,1293341934=>1,1293246386=>1,1283282242=>1,1293251214=>1,1293251758=>1,1293321328=>1,1293254757=>1,1294374617=>1,1294557062=>1,1295010237=>1,1294968927=>1,1295010294=>1,1295048787=>1,1295116358=>1,1295064771=>1,1294945776=>1,1294936251=>1,1294576214=>1,1294557088=>1,1294700319=>1,1294721638=>1,1294893754=>1,1293232408=>1,1283279686=>1,1275787609=>1,1275787374=>1,1275787885=>1,1275788078=>1,1275788484=>1,1275788100=>1,1275787366=>1,1275787267=>1,1275754352=>1,1275741684=>1,1275754692=>1,1275764026=>1,1275785735=>1,1275785596=>1,1275826412=>1,1275911016=>1,1276029824=>1,1276022560=>1,1276031025=>1,1276031790=>1,1276032538=>1,1276031927=>1,1276019446=>1,1276017250=>1,1276012469=>1,1275999754=>1,1276014020=>1,1276014663=>1,1276016946=>1,1276016182=>1,1275740140=>1,1275740035=>1,1275725487=>1,1275721364=>1,1275725981=>1,1275726211=>1,1275729099=>1,1275728275=>1,1275700421=>1,1275647494=>1,1275644857=>1,1275633111=>1,1275646103=>1,1275646186=>1,1275646196=>1,1275646190=>1,1275729101=>1,1275729421=>1,1275738370=>1,1275732965=>1,1275739200=>1,1275739409=>1,1275739885=>1,1275739684=>1,1275732697=>1,1275732369=>1,1275730711=>1,1275730655=>1,1275730937=>1,1275732122=>1,1275732312=>1,1276033944=>1,1276034376=>1,1280255906=>1,1280252946=>1,1280286686=>1,1280690240=>1,1280883562=>1,1280692813=>1,1280179240=>1,1280171972=>1,1280013644=>1,1280002482=>1,1280113035=>1,1280166176=>1,1280171653=>1,1280166494=>1,1280991938=>1,1281048677=>1,1281993686=>1,1281962307=>1,1282554347=>1,1282583691=>1,1282950741=>1,1282815527=>1,1281779785=>1,1281766745=>1,1281212973=>1,1281209866=>1,1281232274=>1,1281258249=>1,1281591494=>1,1281270812=>1,1279974331=>1,1279942945=>1,1276465967=>1,1276407274=>1,1276480835=>1,1276636331=>1,1276862379=>1,1276824563=>1,1276225358=>1,1276148452=>1,1276034535=>1,1276034506=>1,1276034858=>1,1276034991=>1,1276128639=>1,1276043002=>1,1276965230=>1,1276979563=>1,1279910411=>1,1279902019=>1,1279914001=>1,1279914564=>1,1279916940=>1,1279914736=>1,1279897114=>1,1279852254=>1,1277161875=>1,1276989651=>1,1279434750=>1,1279836208=>1,1279850150=>1,1295612392=>1,1295657365=>1,1311068680=>1,1310993462=>1,1311139074=>1,1311158041=>1,1311204794=>1,1311204674=>1,1310972239=>1,1310970281=>1,1310696489=>1,1310671224=>1,1310855197=>1,1310883445=>1,1310964941=>1,1310932659=>1,1311204963=>1,1311226417=>1,1311410549=>1,1311389395=>1,1311411987=>1,1311414229=>1,1311435792=>1,1311430999=>1,1311361167=>1,1311339409=>1,1311243389=>1,1311228683=>1,1311289374=>1,1311290669=>1,1311302344=>1,1311302193=>1,1310515454=>1,1310487562=>1,1308299098=>1,1308130200=>1,1308304395=>1,1308355059=>1,1309192446=>1,1308366203=>1,1308122268=>1,1308112077=>1,1308079522=>1,1308079245=>1,1308079523=>1,1308079524=>1,1308079526=>1,1308079525=>1,1309238419=>1,1309369064=>1,1310252932=>1,1310214965=>1,1310286522=>1,1310418842=>1,1310465555=>1,1310422653=>1,1310192785=>1,1310133448=>1,1309973420=>1,1309931479=>1,1310090763=>1,1310119080=>1,1310125790=>1,1311449267=>1,1311455731=>1,1311694726=>1,1311694128=>1,1311697366=>1,1311698871=>1,1311701319=>1,1311700772=>1,1311693954=>1,1311693323=>1,1311685098=>1,1311684988=>1,1311686040=>1,1311687979=>1,1311691120=>1,1311689348=>1,1311701811=>1,1311704070=>1,1311715932=>1,1311715286=>1,1311718750=>1,1311718878=>1,1311721083=>1,1311719515=>1,1311715161=>1,1311714596=>1,1311712035=>1,1311707758=>1,1311712686=>1,1311713084=>1,1311713212=>1,1311679099=>1,1311679027=>1,1311650684=>1,1311649266=>1,1311651083=>1,1311651811=>1,1311654243=>1,1311654133=>1,1311648733=>1,1311648713=>1,1311574164=>1,1311464632=>1,1311641992=>1,1311643159=>1,1311647002=>1,1311647001=>1,1311658285=>1,1311658619=>1,1311673241=>1,1311670182=>1,1311673270=>1,1311673702=>1,1311676171=>1,1311676058=>1,1311669862=>1,1311666395=>1,1311661844=>1,1311660567=>1,1311663730=>1,1311664905=>1,1311665260=>1,1308028002=>1,1307968441=>1,1298547334=>1,1298425395=>1,1298608239=>1,1298682567=>1,1298776753=>1,1298776649=>1,1298222259=>1,1298130792=>1,1297949986=>1,1297740442=>1,1297992482=>1,1297992483=>1,1297992619=>1,1297992604=>1,1298777043=>1,1298976553=>1,1299523170=>1,1299516508=>1,1299544999=>1,1299720224=>1,1299770881=>1,1299767382=>1,1299483898=>1,1299482229=>1,1299022432=>1,1299017912=>1,1299055167=>1,1299090657=>1,1299462108=>1,1299169015=>1,1297729154=>1,1297591816=>1,1296311389=>1,1296241097=>1,1296360111=>1,1296449500=>1,1296652995=>1,1296602774=>1,1296231493=>1,1296183429=>1,1295665557=>1,1275621092=>1,1295667571=>1,1295668864=>1,1296174265=>1,1296101054=>1,1296656446=>1,1296656734=>1,1297468363=>1,1297420191=>1,1297481650=>1,1297552990=>1,1297576305=>1,1297573752=>1,1297215529=>1,1297213525=>1,1296803371=>1,1296729390=>1,1296813154=>1,1297059472=>1,1297180796=>1,1299861374=>1,1299871755=>1,1307097378=>1,1307062895=>1,1307097509=>1,1307118386=>1,1307241263=>1,1307176578=>1,1307062883=>1,1305147053=>1,1304180532=>1,1304140028=>1,1304186217=>1,1304946303=>1,1305103481=>1,1304960702=>1,1307284642=>1,1307284645=>1,1307750150=>1,1307711230=>1,1307797521=>1,1307797983=>1,1307942023=>1,1307930330=>1,1307710201=>1,1307637127=>1,1307375150=>1,1307370462=>1,1307461080=>1,1307464551=>1,1307627029=>1,1304135085=>1,1304101514=>1,1303356863=>1,1303351867=>1,1303371022=>1,1303374648=>1,1303407364=>1,1303399101=>1,1303296148=>1,1303293795=>1,1299911224=>1,1299893016=>1,1299928582=>1,1302405789=>1,1303045795=>1,1303010400=>1,1303431259=>1,1303583879=>1,1303755215=>1,1303721967=>1,1303756297=>1,1303825441=>1,1304053322=>1,1304052779=>1,1303685513=>1,1303681443=>1,1303650536=>1,1303626209=>1,1303656182=>1,1303661584=>1,1303663416=>1,1295628436=>1,1275596329=>1,1246181601=>1,1246085313=>1,1246197201=>1,1246431836=>1,1246444582=>1,1246433478=>1,1246062427=>1,1245947153=>1,1245693210=>1,1245639254=>1,1245727728=>1,1245777730=>1,1245909134=>1,1245829072=>1,1246460687=>1,1246469965=>1,1246644775=>1,1246644582=>1,1246649955=>1,1246650088=>1,1246681459=>1,1246671369=>1,1246629862=>1,1246596146=>1,1246478502=>1,1246476881=>1,1246481255=>1,1246487508=>1,1246524591=>1,1246487886=>1,1244901099=>1,1244899226=>1,1241152260=>1,1240889863=>1,1241157101=>1,1241192410=>1,1242282429=>1,1241752871=>1,1240882150=>1,1240596895=>1,1239892849=>1,1239877634=>1,1239897497=>1,1240068890=>1,1240580501=>1,1240446078=>1,1243988734=>1,1243994954=>1,1244896925=>1,1244896046=>1,1244896981=>1,1244897084=>1,1244899093=>1,1244898457=>1,1244895543=>1,1244894938=>1,1244081021=>1,1244014361=>1,1244804677=>1,1244893575=>1,1244894070=>1,1246729562=>1,1246855786=>1,1248963198=>1,1248963154=>1,1248963274=>1,1248963290=>1,1248964055=>1,1248963918=>1,1248963138=>1,1248963118=>1,1248049905=>1,1248025583=>1,1248071960=>1,1248209493=>1,1248930948=>1,1248222695=>1,1248964289=>1,1249163896=>1,1249580840=>1,1249579070=>1,1249594065=>1,1249653805=>1,1249654616=>1,1249653848=>1,1249523071=>1,1249490638=>1,1249338582=>1,1249203318=>1,1249376870=>1,1249410580=>1,1249411599=>1,1247861955=>1,1247790009=>1,1246948688=>1,1246948516=>1,1246948700=>1,1246949131=>1,1246950732=>1,1246949151=>1,1246948400=>1,1246948247=>1,1246945451=>1,1246890464=>1,1246945502=>1,1246946200=>1,1246947875=>1,1246946490=>1,1246982590=>1,1247137048=>1,1247484266=>1,1247483138=>1,1247484374=>1,1247485574=>1,1247677957=>1,1247642197=>1,1247476272=>1,1247459157=>1,1247248778=>1,1247156243=>1,1247274030=>1,1247363993=>1,1247392340=>1,1239713324=>1,1239709932=>1,1226055839=>1,1226007124=>1,1226154849=>1,1226318906=>1,1226370546=>1,1226353464=>1,1225785073=>1,1225600157=>1,1225205755=>1,1224940422=>1,1225307877=>1,1225467881=>1,1225527226=>1,1225503716=>1,1226379489=>1,1226432585=>1,1227367594=>1,1227192631=>1,1227695435=>1,1227698684=>1,1227753739=>1,1227734734=>1,1227133057=>1,1227098158=>1,1226505099=>1,1226479653=>1,1226648057=>1,1226834086=>1,1227091964=>1,1226852809=>1,1224740297=>1,1224563756=>1,1222044251=>1,1221448299=>1,1222091714=>1,1222112919=>1,1222282464=>1,1222175938=>1,1221188521=>1,1221181327=>1,1220728172=>1,1220642231=>1,1220855988=>1,1220871790=>1,1221147255=>1,1221095370=>1,1222315643=>1,1222353147=>1,1223590892=>1,1223420596=>1,1224390582=>1,1224477524=>1,1224528838=>1,1224478371=>1,1223217861=>1,1223154829=>1,1222599134=>1,1222420904=>1,1222694477=>1,1222781184=>1,1223084653=>1,1227880216=>1,1228114080=>1,1236607696=>1,1236585904=>1,1236798733=>1,1236818868=>1,1237194186=>1,1237058715=>1,1236442106=>1,1236439023=>1,1235817750=>1,1235537415=>1,1235861443=>1,1235882074=>1,1236256500=>1,1235934648=>1,1237676085=>1,1237726031=>1,1238606793=>1,1238427871=>1,1239128684=>1,1239321437=>1,1239571652=>1,1239397750=>1,1238265814=>1,1238163996=>1,1237912360=>1,1237846761=>1,1238020121=>1,1238032799=>1,1238143140=>1,1235497402=>1,1235458786=>1,1230619521=>1,1230607537=>1,1231290653=>1,1233192844=>1,1233441784=>1,1233255280=>1,1230417907=>1,1229729552=>1,1228295957=>1,1228157131=>1,1229104430=>1,1229161302=>1,1229456076=>1,1229330972=>1,1233460540=>1,1233511725=>1,1235049463=>1,1234751501=>1,1235211095=>1,1235313763=>1,1235414461=>1,1235398328=>1,1234691551=>1,1234562005=>1,1233626631=>1,1233591134=>1,1233804243=>1,1234333397=>1,1234536325=>1,1249772386=>1,1249869077=>1,1266075762=>1,1266074926=>1,1266079398=>1,1266081716=>1,1266151450=>1,1266082630=>1,1266056437=>1,1266055967=>1,1265865679=>1,1265643558=>1,1265972721=>1,1266038171=>1,1266052273=>1,1266046278=>1,1266154254=>1,1266599266=>1,1266640308=>1,1266640307=>1,1266640309=>1,1266640312=>1,1266640317=>1,1266640313=>1,1266640306=>1,1266640305=>1,1266618185=>1,1266615218=>1,1266620923=>1,1266638949=>1,1266640290=>1,1266640289=>1,1265637926=>1,1265592686=>1,1265462997=>1,1265453323=>1,1265478167=>1,1265479498=>1,1265484220=>1,1265481767=>1,1265453079=>1,1265416199=>1,1265400330=>1,1265374606=>1,1265400761=>1,1265401403=>1,1265412041=>1,1265411695=>1,1265484601=>1,1265484826=>1,1265546062=>1,1265542150=>1,1265547577=>1,1265547655=>1,1265557751=>1,1265548102=>1,1265512631=>1,1265491307=>1,1265486400=>1,1265485734=>1,1265486798=>1,1265488737=>1,1265490312=>1,1266701423=>1,1266734463=>1,1269826787=>1,1269452162=>1,1269897214=>1,1270197539=>1,1270378623=>1,1270374689=>1,1269096512=>1,1269071471=>1,1268174482=>1,1268173645=>1,1268241749=>1,1268501924=>1,1269071212=>1,1269070192=>1,1270428755=>1,1270466600=>1,1275595229=>1,1275595036=>1,1275595384=>1,1275595620=>1,1220582194=>1,1275595831=>1,1275593427=>1,1275593300=>1,1273425797=>1,1273228568=>1,1275165835=>1,1275329010=>1,1275593211=>1,1268120117=>1,1268086902=>1,1267081526=>1,1267078332=>1,1267084809=>1,1267094723=>1,1267111711=>1,1267103030=>1,1267064317=>1,1267051803=>1,1266874082=>1,1266836036=>1,1267008752=>1,1267017175=>1,1267030339=>1,1267023411=>1,1267147758=>1,1267170125=>1,1267546476=>1,1267546475=>1,1267634440=>1,1267982210=>1,1268062584=>1,1268031109=>1,1267546441=>1,1267496206=>1,1267199153=>1,1267195501=>1,1267333356=>1,1267336974=>1,1267355437=>1,1265368547=>1,1265368220=>1,1254834898=>1,1254588031=>1,1254879080=>1,1254921378=>1,1255140549=>1,1255139258=>1,1254584599=>1,1254582318=>1,1254556113=>1,1254399418=>1,1254560146=>1,1254562514=>1,1254566454=>1,1254563636=>1,1255140652=>1,1255141402=>1,1255202014=>1,1255196048=>1,1255212230=>1,1255323625=>1,1255346874=>1,1255342449=>1,1255188252=>1,1255171399=>1,1255143534=>1,1255141895=>1,1255143849=>1,1255144794=>1,1255165570=>1,1254382252=>1,1254324536=>1,1250460455=>1,1250349277=>1,1250533730=>1,1250598344=>1,1250632961=>1,1250625671=>1,1250194239=>1,1250186758=>1,1249983516=>1,1249931444=>1,1249984414=>1,1250069032=>1,1250167589=>1,1250098926=>1,1250642082=>1,1250676713=>1,1254252749=>1,1254235906=>1,1254257747=>1,1254299121=>1,1254307993=>1,1254307992=>1,1254183221=>1,1254170281=>1,1250789054=>1,1250788221=>1,1250839196=>1,1250848858=>1,1250863234=>1,1255358825=>1,1255531740=>1,1264753277=>1,1264752019=>1,1264754669=>1,1264760693=>1,1265087589=>1,1265080870=>1,1264683498=>1,1264051541=>1,1263630222=>1,1263575276=>1,1264041798=>1,1264046538=>1,1264048954=>1,1264048817=>1,1265092557=>1,1265097860=>1,1265234137=>1,1265225056=>1,1265308728=>1,1265334810=>1,1265367953=>1,1265344407=>1,1265214573=>1,1265199459=>1,1265191588=>1,1265185372=>1,1265192627=>1,1265196589=>1,1265199171=>1,1263336098=>1,1263324389=>1,1255860660=>1,1255859045=>1,1255887642=>1,1255935368=>1,1256034486=>1,1256024716=>1,1255837454=>1,1255826514=>1,1255580717=>1,1255534778=>1,1255580922=>1,1255581792=>1,1255811942=>1,1255582009=>1,1256051340=>1,1262787075=>1,1263313356=>1,1263286887=>1,1263313393=>1,1263313451=>1,1263322161=>1,1263318146=>1,1263279558=>1,1263274193=>1,1262898678=>1,1262807848=>1,1262934764=>1,1263065641=>1,1263102042=>1,1275618030=>1,);?>
1
+ <?php return array(1336844450=>1336844451,1336734388=>1336734389,1336734374=>1336734375,1336734364=>1336734365,1332027404=>1332027405,1332027398=>1332027399,1319149674=>1319149675,1317499468=>1317499469,1314802412=>1314802413,1308079522=>1308079525,1297992482=>1297992483,1266640312=>1266640313,1266640306=>1266640309,1315751942=>1,1315727407=>1,1315854097=>1,1315810535=>1,1315720534=>1,1315774048=>1,1315696693=>1,1315696649=>1,1315696597=>1,1313213158=>1,1315903286=>1,1315712626=>1,1315717742=>1,1315908677=>1,1317112092=>1,1316901266=>1,1312303126=>1,1317114377=>1,1317175402=>1,1312316669=>1,1312995622=>1,1313220822=>1,1313178595=>1,1316556075=>1,1313104507=>1,1316900405=>1,1315907668=>1,1315484485=>1,1314538418=>1,1314525157=>1,1314557400=>1,1314579428=>1,1314802413=>1,1313385550=>1,1314384795=>1,1314382635=>1,1314080398=>1,1314067294=>1,1314113893=>1,1314185730=>1,1314231175=>1,1314929634=>1,1315000674=>1,1315484103=>1,1315484033=>1,1315484300=>1,1315484350=>1,1313977235=>1,1317222534=>1,1315483967=>1,1315483707=>1,1315459194=>1,1315483922=>1,1315483930=>1,1313251356=>1,1315585017=>1,1317499793=>1,1320864096=>1,1320850044=>1,1320885182=>1,1320900362=>1,1320953470=>1,1320903166=>1,1320824415=>1,1320246608=>1,1319552629=>1,1319149753=>1,1319563802=>1,1319752281=>1,1320211085=>1,1320192892=>1,1320969023=>1,1320971513=>1,1321291640=>1,1321291309=>1,1321293315=>1,1321307140=>1,1321363184=>1,1321346333=>1,1321279715=>1,1321267531=>1,1321024152=>1,1320999434=>1,1321026014=>1,1321026016=>1,1321237652=>1,1319149671=>1,1319149652=>1,1317934037=>1,1317933835=>1,1317934039=>1,1317934050=>1,1317966221=>1,1317965558=>1,1317933675=>1,1317890482=>1,1317602586=>1,1317249589=>1,1317699647=>1,1317746841=>1,1317869106=>1,1317761576=>1,1317973830=>1,1318711469=>1,1319026634=>1,1319023758=>1,1319149574=>1,1319149584=>1,1319149651=>1,1319149599=>1,1319019122=>1,1318963555=>1,1318874759=>1,1318713633=>1,1318876652=>1,1318876916=>1,1318877128=>1,1317248297=>1,1312063290=>1,1311661844=>1,1311660567=>1,1311663730=>1,1311664905=>1,1311673241=>1,1311666395=>1,1311658619=>1,1311658285=>1,1311650684=>1,1311649266=>1,1311651083=>1,1311651811=>1,1311654243=>1,1311654133=>1,1311673270=>1,1311673702=>1,1311691120=>1,1311687979=>1,1311693323=>1,1311693954=>1,1311694726=>1,1311694128=>1,1311686040=>1,1311685098=>1,1311676171=>1,1311676058=>1,1311679027=>1,1311679099=>1,1311684988=>1,1311648733=>1,1311648713=>1,1311243389=>1,1311228683=>1,1311289374=>1,1311290669=>1,1311339409=>1,1311302344=>1,1311204963=>1,1311204794=>1,1310964952=>1,1310964941=>1,1310993462=>1,1311068680=>1,1311204674=>1,1311139074=>1,1311361167=>1,1311389395=>1,1311574164=>1,1311464632=>1,1311641992=>1,1311643159=>1,1311647002=>1,1311647001=>1,1311455731=>1,1311449267=>1,1311414229=>1,1311411987=>1,1311435792=>1,1311442221=>1,1311447963=>1,1311697366=>1,1311698871=>1,1311759038=>1,1311754677=>1,1311759687=>1,1311760603=>1,1311764304=>1,1311761771=>1,1311751050=>1,1311748170=>1,1311739603=>1,1311736148=>1,1311741102=>1,1311742891=>1,1311747739=>1,1311743610=>1,1311766051=>1,1311767010=>1,1312057719=>1,1312017927=>1,1312058604=>1,1321376345=>1,1312208175=>1,1312085666=>1,1311960800=>1,1311899324=>1,1311829834=>1,1311767196=>1,1311852817=>1,1311873460=>1,1311875734=>1,1311734874=>1,1311733910=>1,1311713212=>1,1311713084=>1,1311714596=>1,1311715161=>1,1311715932=>1,1311715286=>1,1311712686=>1,1311712035=>1,1311701319=>1,1311700772=>1,1311701811=>1,1311704070=>1,1311710532=>1,1311707758=>1,1311718750=>1,1311718878=>1,1311727393=>1,1311727048=>1,1311728328=>1,1311728580=>1,1311729053=>1,1311728802=>1,1311726860=>1,1311725266=>1,1311721083=>1,1311719515=>1,1311724228=>1,1311724324=>1,1311724642=>1,1312284469=>1,1322055432=>1,1336696594=>1,1336679629=>1,1336703097=>1,1336721696=>1,1336734341=>1,1336724516=>1,1336676882=>1,1336625615=>1,1335724197=>1,1335106251=>1,1335910048=>1,1336227879=>1,1336593082=>1,1336259827=>1,1336734342=>1,1336734347=>1,1336734418=>1,1336734411=>1,1336734422=>1,1336734430=>1,1336734437=>1,1336734435=>1,1336734407=>1,1336734404=>1,1336734356=>1,1336734354=>1,1336734366=>1,1336734373=>1,1336734377=>1,1335077516=>1,1334818012=>1,1334170123=>1,1334017920=>1,1334184458=>1,1334234298=>1,1334242039=>1,1334236045=>1,1333916456=>1,1333868822=>1,1333753207=>1,1333752398=>1,1333753208=>1,1333753212=>1,1333868703=>1,1333754658=>1,1334247203=>1,1334247368=>1,1334577314=>1,1334576514=>1,1334585613=>1,1334585717=>1,1334817787=>1,1334585718=>1,1334337903=>1,1334330973=>1,1334302854=>1,1334266662=>1,1334313359=>1,1334319278=>1,1334323938=>1,1336734438=>1,1336734443=>1,1338026860=>1,1338025090=>1,1338105625=>1,1338132564=>1,1338138183=>1,1338132968=>1,1338022413=>1,1337931242=>1,1337737666=>1,1337731630=>1,1337786931=>1,1337928357=>1,1337928866=>1,1337928651=>1,1338524169=>1,1338539091=>1,1338788908=>1,1338781870=>1,1338789846=>1,1338895480=>1,1339019273=>1,1338948439=>1,1338733741=>1,1338732071=>1,1338560444=>1,1338556560=>1,1338561397=>1,1338725609=>1,1338728282=>1,1337577536=>1,1337575918=>1,1337057234=>1,1337015869=>1,1337088094=>1,1337112357=>1,1337144425=>1,1337131314=>1,1336939140=>1,1336936694=>1,1336821496=>1,1336815732=>1,1336844456=>1,1336876134=>1,1336914144=>1,1336895644=>1,1337156163=>1,1337185652=>1,1337500107=>1,1337356274=>1,1337525509=>1,1337526384=>1,1337546162=>1,1337545759=>1,1337350415=>1,1337336971=>1,1337287763=>1,1337276881=>1,1337295660=>1,1337315445=>1,1337323586=>1,1333736975=>1,1333531949=>1,1327176162=>1,1326971322=>1,1327400174=>1,1327513201=>1,1327562521=>1,1327561503=>1,1326971137=>1,1326906352=>1,1326638865=>1,1326638820=>1,1326638877=>1,1326638881=>1,1326643837=>1,1326643777=>1,1327748209=>1,1327751742=>1,1327827941=>1,1327827905=>1,1327828100=>1,1327828133=>1,1328544411=>1,1327858442=>1,1327827893=>1,1327827842=>1,1327751907=>1,1327751898=>1,1327824148=>1,1327827750=>1,1327827835=>1,1326638652=>1,1326638618=>1,1323142258=>1,1322619478=>1,1323163450=>1,1323371645=>1,1323475040=>1,1323400118=>1,1322540304=>1,1322236946=>1,1321652608=>1,1321645261=>1,1321723990=>1,1310855197=>1,1322224004=>1,1322082203=>1,1323498104=>1,1323770556=>1,1325401861=>1,1324930905=>1,1326189972=>1,1326242137=>1,1326316510=>1,1326242174=>1,1324816984=>1,1324814206=>1,1324088157=>1,1323918743=>1,1324232999=>1,1324526339=>1,1324565810=>1,1328866577=>1,1328938957=>1,1332772724=>1,1332756935=>1,1332810424=>1,1332854794=>1,1332869105=>1,1332855939=>1,1332697184=>1,1332676329=>1,1332674933=>1,1332674875=>1,1332675220=>1,1332675562=>1,1332676113=>1,1332675715=>1,1332957848=>1,1332980529=>1,1333268522=>1,1333182104=>1,1333275027=>1,1333283038=>1,1333298491=>1,1333285303=>1,1333179401=>1,1333161306=>1,1333057711=>1,1333054158=>1,1333057853=>1,1333137335=>1,1333137824=>1,1332674835=>1,1332674709=>1,1331841321=>1,1331807049=>1,1331841368=>1,1331849490=>1,1331850297=>1,1331850074=>1,1330512881=>1,1330436486=>1,1329404462=>1,1329069298=>1,1329803146=>1,1329861190=>1,1329869312=>1,1331850544=>1,1331898005=>1,1332214944=>1,1332027406=>1,1332304575=>1,1332349020=>1,1332534298=>1,1332425696=>1,1332027402=>1,1332027400=>1,1331969871=>1,1331968671=>1,1332011018=>1,1332027395=>1,1332027397=>1,1321393206=>1,1310515454=>1,1279902019=>1,1279897114=>1,1279910411=>1,1279914001=>1,1279914736=>1,1279914564=>1,1279852254=>1,1279850150=>1,1276980313=>1,1276979563=>1,1276989651=>1,1277161875=>1,1279836208=>1,1279434750=>1,1279916940=>1,1279942945=>1,1280252946=>1,1280171972=>1,1280255906=>1,1280286686=>1,1280690240=>1,1280595708=>1,1280171653=>1,1280166494=>1,1280002482=>1,1279974331=>1,1280013644=>1,1280113035=>1,1280166176=>1,1280125670=>1,1276965230=>1,1276862379=>1,1276019446=>1,1276017250=>1,1276022560=>1,1276029824=>1,1276031790=>1,1276031025=>1,1276016946=>1,1276014663=>1,1275826412=>1,1275788484=>1,1275911016=>1,1275999754=>1,1276014020=>1,1276012469=>1,1276031927=>1,1276032538=>1,1276148452=>1,1276128639=>1,1276407274=>1,1276465967=>1,1276824563=>1,1276480835=>1,1276043002=>1,1276034991=>1,1276034376=>1,1276033944=>1,1276034506=>1,1276034535=>1,1276034858=>1,1280692813=>1,1280883562=>1,1286836957=>1,1286823783=>1,1286838570=>1,1286840221=>1,1286857188=>1,1286851924=>1,1286805948=>1,1286802419=>1,1286296616=>1,1286285639=>1,1286566502=>1,1286784672=>1,1286801389=>1,1286798194=>1,1286863226=>1,1287008525=>1,1287591367=>1,1287591318=>1,1287639560=>1,1289375453=>1,1291563434=>1,1290387671=>1,1287591012=>1,1287590987=>1,1287027125=>1,1287018343=>1,1287111086=>1,1287578916=>1,1287590946=>1,1286175140=>1,1286170110=>1,1281643434=>1,1281591494=>1,1281766745=>1,1281779785=>1,1281993686=>1,1281962307=>1,1281275913=>1,1281270812=>1,1281048677=>1,1280991938=>1,1281209866=>1,1281212973=>1,1281258249=>1,1281232274=>1,1282554347=>1,1282583691=>1,1283330042=>1,1283310586=>1,1283433733=>1,1286035786=>1,1286140074=>1,1286068195=>1,1283285784=>1,1283282242=>1,1282950741=>1,1282815527=>1,1283085848=>1,1283174045=>1,1283279686=>1,1275788100=>1,1275788078=>1,1267695900=>1,1267634440=>1,1267993666=>1,1268031109=>1,1268086902=>1,1268062584=>1,1267546476=>1,1267546475=>1,1267333356=>1,1267199153=>1,1267336974=>1,1267355437=>1,1267546441=>1,1267496206=>1,1268120117=>1,1268173645=>1,1269452162=>1,1269255077=>1,1269476438=>1,1269831389=>1,1270374689=>1,1269897214=>1,1269096512=>1,1269071471=>1,1268241749=>1,1268174482=>1,1268501924=>1,1268568634=>1,1269070192=>1,1267195501=>1,1267170125=>1,1266638949=>1,1266620923=>1,1266640289=>1,1266640290=>1,1266640317=>1,1266640305=>1,1266618185=>1,1266615218=>1,1266154254=>1,1266081716=>1,1266190264=>1,1266261723=>1,1266599266=>1,1266544106=>1,1266701423=>1,1266734463=>1,1267081526=>1,1267078332=>1,1267084809=>1,1267103030=>1,1267147758=>1,1267111711=>1,1267064317=>1,1267051803=>1,1267008752=>1,1266836036=>1,1267017175=>1,1267023411=>1,1267030339=>1,1270378623=>1,1270428755=>1,1275732965=>1,1275732697=>1,1275739106=>1,1275739200=>1,1275739885=>1,1275739409=>1,1275732369=>1,1275732312=>1,1275729421=>1,1275729101=>1,1275730655=>1,1275730711=>1,1275732122=>1,1275730937=>1,1275740035=>1,1275740140=>1,1275787267=>1,1275786623=>1,1275787366=>1,1275787374=>1,1275787885=>1,1275787609=>1,1275785735=>1,1275785596=>1,1275749631=>1,1275741684=>1,1275754352=>1,1275754692=>1,1275764026=>1,1275729099=>1,1275729033=>1,1275595229=>1,1275595036=>1,1275595384=>1,1275595620=>1,1275596329=>1,1275595831=>1,1275594783=>1,1275593427=>1,1273228568=>1,1270466600=>1,1275165835=>1,1275329010=>1,1275593300=>1,1275593211=>1,1275621092=>1,1275633111=>1,1275700421=>1,1275649385=>1,1275721364=>1,1275725487=>1,1275728275=>1,1275725981=>1,1275647494=>1,1275646196=>1,1275644857=>1,1275644613=>1,1275646103=>1,1275646186=>1,1275646190=>1,1291858667=>1,1292010663=>1,1303374648=>1,1303371022=>1,1303505821=>1,1303577615=>1,1303597105=>1,1303597055=>1,1303356863=>1,1303351867=>1,1302405789=>1,1301569601=>1,1303010400=>1,1303045795=>1,1303296148=>1,1303293795=>1,1303598923=>1,1303616043=>1,1304137361=>1,1304133913=>1,1304180742=>1,1304184213=>1,1304746077=>1,1304184989=>1,1304100513=>1,1304079322=>1,1303665539=>1,1303664802=>1,1303714785=>1,1303717299=>1,1304046565=>1,1303763382=>1,1299988055=>1,1299928582=>1,1298547334=>1,1298437680=>1,1298608239=>1,1298682567=>1,1298776753=>1,1298776649=>1,1298425395=>1,1298222259=>1,1297992483=>1,1297956725=>1,1297992604=>1,1297992619=>1,1298130792=>1,1298036325=>1,1298777043=>1,1298976553=>1,1299770881=>1,1299767382=>1,1299778828=>1,1299871755=>1,1299911224=>1,1299893016=>1,1299720224=>1,1299459121=>1,1299022432=>1,1299017912=>1,1299055167=>1,1299090657=>1,1299169015=>1,1304946303=>1,1304960702=>1,1308699935=>1,1308355059=>1,1309192446=>1,1309238419=>1,1309533387=>1,1309369064=>1,1308304395=>1,1308299098=>1,1308079525=>1,1308079524=>1,1308079526=>1,1308122268=>1,1308190550=>1,1308130200=>1,1309973420=>1,1310090763=>1,1310422653=>1,1310418842=>1,1310465555=>1,1310487562=>1,1310671224=>1,1266080583=>1,1310286522=>1,1310252932=>1,1310125790=>1,1310119080=>1,1310133448=>1,1310192785=>1,1310214965=>1,1308079523=>1,1308079245=>1,1307118386=>1,1307097509=>1,1307176578=>1,1307241263=>1,1307284645=>1,1307252134=>1,1307097378=>1,1307062895=>1,1305146848=>1,1305103481=>1,1305147053=>1,1305166833=>1,1307062883=>1,1306351094=>1,1307370462=>1,1307375150=>1,1307797983=>1,1307797521=>1,1307930330=>1,1307942023=>1,1308028002=>1,1307968441=>1,1307750150=>1,1307711230=>1,1307464551=>1,1307461080=>1,1307627029=>1,1307637127=>1,1307710201=>1,1297949986=>1,1297740442=>1,1294326417=>1,1294306995=>1,1294374617=>1,1294557062=>1,1294576214=>1,1294557088=>1,1294305445=>1,1294154963=>1,1293357375=>1,1293341934=>1,1293368221=>1,1293381402=>1,1293929644=>1,1293410154=>1,1294700319=>1,1294721638=>1,1295064771=>1,1295048787=>1,1295163436=>1,1295178844=>1,1295192170=>1,1295188577=>1,1295010294=>1,1295010237=>1,1294936223=>1,1294893754=>1,1294936251=>1,1294945776=>1,1294968927=>1,1293332968=>1,1293321328=>1,1292576236=>1,1292575300=>1,1292576978=>1,1292579569=>1,1292582540=>1,1292581889=>1,1292554378=>1,1292333125=>1,1292014751=>1,1292011978=>1,1292116351=>1,1292203531=>1,1292316334=>1,1292311897=>1,1292584742=>1,1292586191=>1,1293246386=>1,1293244121=>1,1293251214=>1,1293251758=>1,1293274725=>1,1293254757=>1,1293243716=>1,1293232408=>1,1293178296=>1,1292704849=>1,1293193990=>1,1293201246=>1,1293211929=>1,1295192453=>1,1295192766=>1,1296602774=>1,1296449500=>1,1296652995=>1,1296656446=>1,1296729390=>1,1296656734=>1,1296360111=>1,1296311389=>1,1296101054=>1,1295667571=>1,1296174265=>1,1296183429=>1,1296241097=>1,1296231493=>1,1296763708=>1,1296803371=>1,1297481650=>1,1297468363=>1,1297552990=>1,1297576305=>1,1297729154=>1,1297591816=>1,1297420191=>1,1297215529=>1,1296860792=>1,1296813154=>1,1297071742=>1,1297180796=>1,1297213525=>1,1295665557=>1,1295657365=>1,1295206151=>1,1295206003=>1,1295206155=>1,1295210549=>1,1295213974=>1,1295213537=>1,1295205707=>1,1295205651=>1,1295193384=>1,1295192788=>1,1295193494=>1,1295193697=>1,1295205210=>1,1295193728=>1,1295214208=>1,1295219243=>1,1295551405=>1,1295547532=>1,1295569011=>1,1295579300=>1,1295628436=>1,1295581122=>1,1295530740=>1,1295378103=>1,1295240219=>1,1295240048=>1,1295369045=>1,1295373448=>1,1295376695=>1,1310696489=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-13.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1358890752=>1358890879,1358842368=>1358842879,1356618408=>1,1356749546=>1,1356853940=>1,1357481580=>1,1357437055=>1,1357221103=>1,1356613862=>1,1356600351=>1,1356533763=>1,1356530244=>1,1356558850=>1,1356565545=>1,1356593041=>1,1356587255=>1,1357522270=>1,1357696775=>1,1357931784=>1,1357931782=>1,1357931785=>1,1357931787=>1,1357932657=>1,1357932561=>1,1357931781=>1,1357931617=>1,1357806186=>1,1356480115=>1,1357851701=>1,1357930578=>1,1357931537=>1,1357524049=>1,1356364796=>1,1352940986=>1,1352864486=>1,1353182797=>1,1353314636=>1,1353882920=>1,1353762408=>1,1352462012=>1,1352402649=>1,1351819677=>1,1351374419=>1,1352206084=>1,1352402628=>1,1352402648=>1,1352402638=>1,1354099969=>1,1354100018=>1,1355337806=>1,1355302330=>1,1355369051=>1,1355516183=>1,1357932665=>1,1356360974=>1,1355180472=>1,1354739651=>1,1354100217=>1,1354100109=>1,1354509602=>1,1354518410=>1,1354598729=>1,1356422822=>1,1357932889=>1,1358448431=>1,1358263687=>1,1358450225=>1,1358483587=>1,1358539000=>1,1358491691=>1,1358263685=>1,1358263683=>1,1358080804=>1,1358080802=>1,1358188991=>1,1358230430=>1,1358263682=>1,1358263101=>1,1358575450=>1,1358576778=>1,1358891981=>1,1358890507=>1,1358892013=>1,1358924689=>1,1359011733=>1,1358928381=>1,1358889850=>1,1358879536=>1,1358697325=>1,1358629162=>1,1358732718=>1,1358765230=>1,1358855478=>1,1358080790=>1,1358027997=>1,1357934653=>1,1357934625=>1,1357934793=>1,1357934929=>1,1357934977=>1,1357934941=>1,1357934609=>1,1357933049=>1,1357932897=>1,1351363272=>1,1357932917=>1,1357932937=>1,1357933009=>1,1357932961=>1,1357934997=>1,1357935065=>1,1357941615=>1,1357940470=>1,1357960237=>1,1357960708=>1,1357987023=>1,1357962534=>1,1357937697=>1,1357937677=>1,1357935401=>1,1357935293=>1,1357935473=>1,1357935501=>1,1357935513=>1,1357932785=>1,1351362739=>1,1347308462=>1,1347300356=>1,1347344989=>1,1347345161=>1,1347387284=>1,1347360519=>1,1347263884=>1,1347263882=>1,1346953651=>1,1346866185=>1,1347023502=>1,1347069795=>1,1347230998=>1,1347114282=>1,1347387286=>1,1347488797=>1,1347769416=>1,1347738690=>1,1347769566=>1,1347887494=>1,1347930235=>1,1347928970=>1,1347727573=>1,1347712234=>1,1347548130=>1,1347490079=>1,1347548139=>1,1347567631=>1,1347696587=>1,1347568361=>1,1346864503=>1,1346657529=>1,1343066228=>1,1343060259=>1,1343152752=>1,1343215356=>1,1344099081=>1,1344098940=>1,1343039375=>1,1342987960=>1,1342003140=>1,1342002205=>1,1342003494=>1,1342004426=>1,1342650043=>1,1342169642=>1,1344462611=>1,1344939208=>1,1346537339=>1,1346398467=>1,1346557530=>1,1346612243=>1,1346617032=>1,1346612255=>1,1346388249=>1,1346320530=>1,1345363378=>1,1345024636=>1,1345656537=>1,1345941007=>1,1346172394=>1,1348086749=>1,1348180656=>1,1350250272=>1,1350249899=>1,1350527898=>1,1350530653=>1,1350535443=>1,1350531089=>1,1350249622=>1,1350248449=>1,1349929995=>1,1349841332=>1,1349930181=>1,1350011201=>1,1350085570=>1,1350043628=>1,1350539172=>1,1350716149=>1,1351177740=>1,1351154081=>1,1351178334=>1,1351233492=>1,1351328813=>1,1351245191=>1,1351132086=>1,1350994611=>1,1350784713=>1,1350728444=>1,1350976973=>1,1350977416=>1,1350991949=>1,1349841195=>1,1349686850=>1,1348732825=>1,1348690192=>1,1348783766=>1,1348795124=>1,1348831711=>1,1348804498=>1,1348673131=>1,1348663361=>1,1348253746=>1,1348189884=>1,1348396418=>1,1348424947=>1,1348623865=>1,1348618420=>1,1349321098=>1,1349384238=>1,1349647106=>1,1349557092=>1,1349647107=>1,1349647108=>1,1349647335=>1,1349647109=>1,1349553983=>1,1349550521=>1,1349389081=>1,1349384548=>1,1349435027=>1,1349481978=>1,1349509374=>1,1359101063=>1,1359114565=>1,1370067446=>1,1370066398=>1,1370069092=>1,1370069565=>1,1370072650=>1,1370070366=>1,1370066268=>1,1370065459=>1,1369801381=>1,1369665891=>1,1370063412=>1,1370063545=>1,1370065102=>1,1370063574=>1,1370075044=>1,1370075156=>1,1370159340=>1,1370151197=>1,1370160189=>1,1370353745=>1,1370396631=>1,1370396203=>1,1370145358=>1,1370143188=>1,1370078418=>1,1370076511=>1,1370084071=>1,1370087070=>1,1370134419=>1,1370093661=>1,1369638001=>1,1368719878=>1,1364811865=>1,1364811864=>1,1364813109=>1,1364926218=>1,1364985585=>1,1364942677=>1,1364803058=>1,1364787404=>1,1364787399=>1,1364787398=>1,1364787400=>1,1364787401=>1,1364787403=>1,1364787402=>1,1364985596=>1,1364985841=>1,1365960251=>1,1365564491=>1,1367715571=>1,1368039237=>1,1368694480=>1,1368204355=>1,1365432607=>1,1365193796=>1,1364986108=>1,1364986097=>1,1364987121=>1,1365040423=>1,1365183799=>1,1370416914=>1,1370461279=>1,1373947114=>1,1373886540=>1,1373947723=>1,1373961897=>1,1374032891=>1,1373971659=>1,1373858481=>1,1373743536=>1,1373291801=>1,1373286063=>1,1373294765=>1,1373301666=>1,1373739539=>1,1373425250=>1,1374072037=>1,1374170229=>1,1374918076=>1,1374916458=>1,1374918844=>1,1375128593=>1,1375830422=>1,1375830086=>1,1374914556=>1,1374914016=>1,1374323801=>1,1374204713=>1,1374485533=>1,1374485535=>1,1374913522=>1,1373275959=>1,1373269443=>1,1371616664=>1,1371431031=>1,1371834817=>1,1371962694=>1,1372035699=>1,1371990131=>1,1371206519=>1,1370995375=>1,1370566680=>1,1370480079=>1,1370600847=>1,1370837274=>1,1370994138=>1,1370956864=>1,1372041914=>1,1372068569=>1,1373013675=>1,1372950684=>1,1373179284=>1,1373184556=>1,1373264794=>1,1373223686=>1,1372941395=>1,1372594182=>1,1372123410=>1,1372123218=>1,1372142829=>1,1372205497=>1,1372307621=>1,1364787397=>1,1364787396=>1,1359417526=>1,1359417521=>1,1359417662=>1,1359417668=>1,1359418222=>1,1359417771=>1,1359417483=>1,1359417403=>1,1359416660=>1,1359416317=>1,1359416824=>1,1359417059=>1,1359417375=>1,1359417203=>1,1359650578=>1,1359670750=>1,1360076336=>1,1360076332=>1,1360149267=>1,1360149703=>1,1360149710=>1,1360149706=>1,1360076328=>1,1360073091=>1,1359773409=>1,1359731821=>1,1359988052=>1,1360029987=>1,1360073090=>1,1360072747=>1,1359416218=>1,1359416134=>1,1359243222=>1,1359243178=>1,1359243248=>1,1359243712=>1,1359244487=>1,1359243748=>1,1359242589=>1,1359149901=>1,1359139082=>1,1359136033=>1,1359141071=>1,1359146458=>1,1359149580=>1,1359147582=>1,1359244591=>1,1359244669=>1,1359415837=>1,1359415825=>1,1359415876=>1,1359415901=>1,1359416086=>1,1359416059=>1,1359414263=>1,1359414157=>1,1359247664=>1,1359245163=>1,1359248653=>1,1359276588=>1,1359310894=>1,1360149714=>1,1360149721=>1,1360919477=>1,1360919476=>1,1360919478=>1,1360938917=>1,1360974706=>1,1360950375=>1,1360919475=>1,1360919474=>1,1360917833=>1,1360917168=>1,1360917835=>1,1360917836=>1,1360919473=>1,1360917837=>1,1361168635=>1,1361813179=>1,1364380820=>1,1364380474=>1,1364389903=>1,1364631067=>1,1364787395=>1,1364758040=>1,1363263618=>1,1362743431=>1,1362211320=>1,1362023526=>1,1362285181=>1,1362429779=>1,1362641621=>1,1360917009=>1,1360840062=>1,1360350113=>1,1360350107=>1,1360350114=>1,1360350614=>1,1360350644=>1,1360350636=>1,1360350102=>1,1360350101=>1,1360188990=>1,1360149724=>1,1360200519=>1,1360299166=>1,1360350095=>1,1360350094=>1,1360350645=>1,1360350649=>1,1360756488=>1,1360359988=>1,1360756642=>1,1360799061=>1,1360803586=>1,1360800434=>1,1360355210=>1,1360350698=>1,1360350668=>1,1360350652=>1,1360350670=>1,1360350689=>1,1360350691=>1,1342001868=>1,1342000840=>1,1321723990=>1,1321652608=>1,1322082203=>1,1322236946=>1,1322619478=>1,1322540304=>1,1321645261=>1,1321393206=>1,1321293315=>1,1321291640=>1,1321307140=>1,1321310807=>1,1321363184=>1,1321346333=>1,1322930763=>1,1323142258=>1,1324526339=>1,1324232999=>1,1324814206=>1,1324930905=>1,1326242137=>1,1325401861=>1,1324088157=>1,1323918743=>1,1323371645=>1,1323163450=>1,1323400118=>1,1323475040=>1,1323770556=>1,1323498104=>1,1321291309=>1,1321279715=>1,1319752281=>1,1319565114=>1,1320192892=>1,1320211085=>1,1320364051=>1,1320246608=>1,1319563802=>1,1319552629=>1,1319149674=>1,1319149671=>1,1319149675=>1,1319149753=>1,1319552105=>1,1319355860=>1,1320824415=>1,1320850044=>1,1321024152=>1,1320999434=>1,1321026014=>1,1321026016=>1,1321267531=>1,1321237652=>1,1320971513=>1,1320969023=>1,1320885182=>1,1320864096=>1,1320900362=>1,1320903166=>1,1320953470=>1,1326242174=>1,1326316510=>1,1332011018=>1,1331969871=>1,1332027395=>1,1332027397=>1,1332027399=>1,1332027398=>1,1331968671=>1,1331936326=>1,1331849490=>1,1331841368=>1,1331850074=>1,1331850297=>1,1331936325=>1,1331850544=>1,1332027400=>1,1332027402=>1,1332674835=>1,1332534298=>1,1332674875=>1,1332674933=>1,1332675220=>1,1332675141=>1,1332425696=>1,1332349020=>1,1332027405=>1,1332027404=>1,1332027406=>1,1332214944=>1,1332339578=>1,1331841321=>1,1331829107=>1,1327748209=>1,1327565733=>1,1327751742=>1,1327751898=>1,1327827750=>1,1327824148=>1,1327562521=>1,1327400174=>1,1326638820=>1,1326638618=>1,1326638865=>1,1326638881=>1,1326971322=>1,1326643837=>1,1327827835=>1,1327827842=>1,1329404462=>1,1329069298=>1,1329803146=>1,1329861190=>1,1331807049=>1,1331140768=>1,1328938957=>1,1328544411=>1,1327827941=>1,1327827893=>1,1327828100=>1,1328233536=>1,1328432370=>1,1319149666=>1,1319149652=>1,1312303126=>1,1312259060=>1,1312995622=>1,1313104507=>1,1313213158=>1,1313178595=>1,1312168705=>1,1312084230=>1,1311943063=>1,1311870380=>1,1311991372=>1,1312012749=>1,1312059817=>1,1312046461=>1,1313220822=>1,1313251356=>1,1314557400=>1,1314538418=>1,1314579428=>1,1314653907=>1,1314802413=>1,1314802412=>1,1314525157=>1,1314384795=>1,1313977235=>1,1313385550=>1,1314080398=>1,1314113893=>1,1314231175=>1,1314185730=>1,1311836517=>1,1311767196=>1,1311729053=>1,1311728802=>1,1311733910=>1,1311734874=>1,1311739603=>1,1311736148=>1,1311728580=>1,1311728328=>1,1311724642=>1,1311724324=>1,1311725266=>1,1311726860=>1,1311727393=>1,1311727048=>1,1311741102=>1,1311742891=>1,1311760603=>1,1311759687=>1,1311761771=>1,1311764304=>1,1311767010=>1,1311766051=>1,1311759038=>1,1311754677=>1,1311743610=>1,1311743458=>1,1311747739=>1,1311748170=>1,1311751050=>1,1315459194=>1,1315483707=>1,1317869106=>1,1317761576=>1,1317890482=>1,1317933675=>1,1317934037=>1,1317933835=>1,1317746841=>1,1317699647=>1,1317248297=>1,1317230680=>1,1317249589=>1,1317343177=>1,1317602586=>1,1317499793=>1,1317934039=>1,1317934050=>1,1319019122=>1,1318963555=>1,1319023758=>1,1319149574=>1,1319149651=>1,1319149599=>1,1318877128=>1,1318876916=>1,1317966221=>1,1317965558=>1,1317973830=>1,1318874759=>1,1318876652=>1,1317222534=>1,1317219645=>1,1315696693=>1,1315696649=>1,1315712626=>1,1315717742=>1,1315727407=>1,1315720534=>1,1315585017=>1,1315484485=>1,1315483930=>1,1315483922=>1,1315483967=>1,1315484033=>1,1315484350=>1,1315484103=>1,1315751942=>1,1315768230=>1,1316900405=>1,1316556075=>1,1317112092=>1,1317114377=>1,1317175402=>1,1317121656=>1,1316247599=>1,1315908677=>1,1315774048=>1,1315768231=>1,1315810535=>1,1315854097=>1,1315907668=>1,1332675562=>1,1332675715=>1,1339236866=>1,1339222732=>1,1339237010=>1,1339237670=>1,1339315690=>1,1339239232=>1,1339221441=>1,1339221361=>1,1339218647=>1,1339215685=>1,1339218651=>1,1339218915=>1,1339219870=>1,1339218942=>1,1339436890=>1,1339479790=>1,1339778379=>1,1339719395=>1,1339802223=>1,1339802328=>1,1339806474=>1,1339804668=>1,1339709688=>1,1339708413=>1,1339540440=>1,1339490131=>1,1339546386=>1,1339653851=>1,1339659288=>1,1339658677=>1,1339214821=>1,1339214106=>1,1338681013=>1,1338558777=>1,1338724849=>1,1338728580=>1,1338734646=>1,1338731397=>1,1338539091=>1,1338527661=>1,1338105625=>1,1338022413=>1,1338113098=>1,1338132564=>1,1338136252=>1,1338135119=>1,1338785148=>1,1338788908=>1,1339166189=>1,1339162298=>1,1339167154=>1,1339211883=>1,1339213400=>1,1339213079=>1,1339094839=>1,1339093963=>1,1338806439=>1,1338789846=>1,1338892695=>1,1339022134=>1,1339081648=>1,1339809690=>1,1339809699=>1,1341249487=>1,1341245829=>1,1341415420=>1,1341465552=>1,1341475513=>1,1341474422=>1,1341245082=>1,1341187619=>1,1341118275=>1,1340925727=>1,1341128457=>1,1341136523=>1,1341187061=>1,1341186845=>1,1341490296=>1,1341617006=>1,1341997334=>1,1341995316=>1,1341997702=>1,1341998526=>1,1342000807=>1,1342000464=>1,1341968274=>1,1341966449=>1,1341691265=>1,1341619955=>1,1341862471=>1,1341893627=>1,1341896627=>1,1340664543=>1,1340571185=>1,1339815683=>1,1339815355=>1,1339816532=>1,1339817233=>1,1339817686=>1,1339817417=>1,1339815194=>1,1339814822=>1,1339810527=>1,1339809779=>1,1339811059=>1,1339811393=>1,1339813611=>1,1339812587=>1,1339817690=>1,1339817882=>1,1340272793=>1,1340097348=>1,1340313845=>1,1340315123=>1,1340557580=>1,1340401278=>1,1340034773=>1,1340034641=>1,1339817980=>1,1339817927=>1,1339823280=>1,1339825828=>1,1340000622=>1,1337931242=>1,1337928866=>1,1334234298=>1,1334232194=>1,1334236045=>1,1334242039=>1,1334247368=>1,1334247203=>1,1334184458=>1,1334170123=>1,1333868822=>1,1333868703=>1,1333916456=>1,1334017920=>1,1334110056=>1,1334110055=>1,1334302854=>1,1334319278=>1,1334585718=>1,1334585717=>1,1334817787=>1,1334818012=>1,1335724197=>1,1335612688=>1,1334585613=>1,1334577314=>1,1334323938=>1,1334320427=>1,1334330973=>1,1334337903=>1,1334576514=>1,1334455704=>1,1333754658=>1,1333753212=>1,1332957848=>1,1332869105=>1,1332980529=>1,1333019503=>1,1333057853=>1,1333054158=>1,1332855939=>1,1332854794=>1,1332676329=>1,1332676113=>1,1332697184=>1,1332743123=>1,1332772724=>1,1332756935=>1,1333137824=>1,1333161306=>1,1333285303=>1,1333283038=>1,1333298491=>1,1333531949=>1,1333753207=>1,1333752398=>1,1333275027=>1,1333268522=>1,1333182104=>1,1333179401=>1,1333182380=>1,1333267042=>1,1333267047=>1,1335736092=>1,1335910048=>1,1337185652=>1,1337131314=>1,1337235793=>1,1337276881=>1,1337295660=>1,1337287763=>1,1337112357=>1,1337057234=>1,1336895644=>1,1336876134=>1,1336914144=>1,1336936694=>1,1337015869=>1,1336939140=>1,1337315445=>1,1337323586=>1,1337575918=>1,1337546162=>1,1337731630=>1,1337737666=>1,1337928357=>1,1337786931=>1,1337545759=>1,1337540411=>1,1337356274=>1,1337336971=>1,1337500107=>1,1337525509=>1,1337526384=>1,1336844456=>1,1336844451=>1,1336734342=>1,1336724516=>1,1336734347=>1,1336734356=>1,1336734365=>1,1336734364=>1,1336721696=>1,1336703097=>1,1336259827=>1,1336227879=>1,1336593082=>1,1336676882=>1,1336696594=>1,1336679629=>1,1336734373=>1,1336734374=>1,1336734438=>1,1336734437=>1,1336734443=>1,1336815732=>1,1336844450=>1,1336821496=>1,1336734435=>1,1336734430=>1,1336734389=>1,1336734377=>1,1336734407=>1,1336734411=>1,1336734418=>1,1311724228=>1,);?>
1
+ <?php return array(1388811776=>1388812031,1388806400=>1388806655,1364811864=>1364811865,1364787396=>1364787403,1360919474=>1360919477,1360917836=>1360917837,1360350644=>1360350645,1360350094=>1360350095,1360073090=>1360073091,1358890752=>1358890879,1358842368=>1358842879,1358263682=>1358263683,1357931784=>1357931785,1352402648=>1352402649,1349647106=>1349647107,1381947287=>1,1381739124=>1,1381954266=>1,1381956555=>1,1381956579=>1,1381956556=>1,1381304419=>1,1381227368=>1,1400905147=>1,1381146935=>1,1381148104=>1,1381225313=>1,1381974731=>1,1381225386=>1,1381094809=>1,1381985075=>1,1382348814=>1,1382278387=>1,1382413822=>1,1382418979=>1,1382419596=>1,1382419197=>1,1382276716=>1,1382271651=>1,1382226924=>1,1382172782=>1,1382269269=>1,1382269350=>1,1382270209=>1,1381068002=>1,1381059916=>1,1380228732=>1,1380136736=>1,1380266546=>1,1380273187=>1,1400926366=>1,1380275910=>1,1380114242=>1,1380093059=>1,1377162013=>1,1376641285=>1,1377607595=>1,1378667388=>1,1380088556=>1,1378728299=>1,1380447823=>1,1380790942=>1,1381017297=>1,1381008773=>1,1381049768=>1,1381051603=>1,1381051611=>1,1381051608=>1,1381008605=>1,1381007368=>1,1380892575=>1,1380879643=>1,1380900307=>1,1400908080=>1,1380983139=>1,1382452946=>1,1382458019=>1,1384893681=>1,1384868385=>1,1384893937=>1,1384898801=>1,1384904177=>1,1384901361=>1,1384863800=>1,1384859240=>1,1384253711=>1,1384248108=>1,1384253823=>1,1384253836=>1,1384670211=>1,1384321411=>1,1384904183=>1,1384941117=>1,1385526140=>1,1385316175=>1,1385543124=>1,1385657762=>1,1386102620=>1,1385850219=>1,1385313490=>1,1385312017=>1,1384962894=>1,1384962127=>1,1384966584=>1,1385221392=>1,1385308856=>1,1384248106=>1,1384248105=>1,1383250348=>1,1383226725=>1,1383271697=>1,1383273167=>1,1383276473=>1,1383276460=>1,1383224833=>1,1383223868=>1,1382517847=>1,1382509789=>1,1383087673=>1,1383221529=>1,1383223866=>1,1383364611=>1,1383441226=>1,1383522868=>1,1383463792=>1,1383590180=>1,1383720308=>1,1384184313=>1,1383814842=>1,1383463576=>1,1383462791=>1,1383451606=>1,1400201394=>1,1383453814=>1,1383453910=>1,1383459415=>1,1376230901=>1,1376125961=>1,1370075156=>1,1370075044=>1,1370076511=>1,1370078418=>1,1370093661=>1,1370087070=>1,1370072650=>1,1370070366=>1,1370066268=>1,1370065459=>1,1370066398=>1,1370067446=>1,1370069565=>1,1370069092=>1,1370094410=>1,1370134419=>1,1370396203=>1,1370353745=>1,1370396631=>1,1370410420=>1,1370461279=>1,1370416914=>1,1370160189=>1,1401331853=>1,1370143188=>1,1370142810=>1,1370145358=>1,1370151197=>1,1370159340=>1,1401348503=>1,1370065102=>1,1401665733=>1,1364986108=>1,1364987121=>1,1365040423=>1,1365193796=>1,1365183799=>1,1364986097=>1,1364985841=>1,1364813109=>1,1364811865=>1,1364926218=>1,1364942677=>1,1364985596=>1,1364985585=>1,1365432607=>1,1365564491=>1,1369801381=>1,1369711466=>1,1370063412=>1,1370063545=>1,1401442564=>1,1370063574=>1,1369665891=>1,1369638001=>1,1367715571=>1,1365673374=>1,1368204355=>1,1368694480=>1,1368719878=>1,1370479362=>1,1400949247=>1,1374032891=>1,1373971659=>1,1374072037=>1,1374170229=>1,1374323801=>1,1374204713=>1,1373961897=>1,1373947723=>1,1373739539=>1,1373425250=>1,1373743536=>1,1373858481=>1,1373947114=>1,1373886540=>1,1374485533=>1,1374485535=>1,1375133822=>1,1375128593=>1,1375830086=>1,1375830422=>1,1376124521=>1,1375844784=>1,1374918844=>1,1374918076=>1,1374914016=>1,1374913522=>1,1374914556=>1,1374916458=>1,1374917680=>1,1373301666=>1,1373291801=>1,1372035699=>1,1371962694=>1,1372068569=>1,1372123218=>1,1372123410=>1,1400946420=>1,1371431031=>1,1371216905=>1,1370566680=>1,1370480079=>1,1370600847=>1,1370837274=>1,1371206519=>1,1372142829=>1,1372205497=>1,1373223686=>1,1373184556=>1,1373264794=>1,1373269443=>1,1373286063=>1,1373275959=>1,1373179284=>1,1373013675=>1,1372307621=>1,1372259002=>1,1372561363=>1,1372594182=>1,1372941395=>1,1386150557=>1,1386246769=>1,1393333997=>1,1393262987=>1,1393333998=>1,1393391426=>1,1393667826=>1,1393482634=>1,1393250517=>1,1393171336=>1,1392162129=>1,1392146624=>1,1392179568=>1,1392917559=>1,1393081651=>1,1392918178=>1,1393823706=>1,1393841182=>1,1394087075=>1,1394086181=>1,1394087845=>1,1394106882=>1,1394118716=>1,1394107184=>1,1394085004=>1,1394084507=>1,1393897750=>1,1393860847=>1,1393901541=>1,1393948379=>1,1393969319=>1,1392140375=>1,1392132324=>1,1391990991=>1,1391945589=>1,1391991391=>1,1391992005=>1,1392002750=>1,1391995813=>1,1391767847=>1,1391738868=>1,1391613842=>1,1391611469=>1,1391630547=>1,1391662028=>1,1391691188=>1,1391677193=>1,1392013631=>1,1392019902=>1,1392097630=>1,1392097452=>1,1392097914=>1,1392099966=>1,1392123007=>1,1392119778=>1,1392093163=>1,1392078836=>1,1392061363=>1,1392052714=>1,1392062939=>1,1392063261=>1,1392064867=>1,1394124088=>1,1394201326=>1,1395798008=>1,1395536575=>1,1396150978=>1,1396151276=>1,1396268387=>1,1396229294=>1,1395365615=>1,1395337041=>1,1394823947=>1,1394738432=>1,1394847357=>1,1395233248=>1,1395335869=>1,1395234731=>1,1397036937=>1,1397058113=>1,1398069533=>1,1398012745=>1,1398109155=>1,1398144055=>1,1398187921=>1,1398172045=>1,1397942833=>1,1397918961=>1,1397651628=>1,1397092949=>1,1397661985=>1,1397701932=>1,1397789704=>1,1394563439=>1,1394563157=>1,1394390030=>1,1394366027=>1,1394390331=>1,1394391765=>1,1394393220=>1,1394392331=>1,1394364591=>1,1394364282=>1,1394340625=>1,1394340165=>1,1394345686=>1,1394357004=>1,1394357149=>1,1394393368=>1,1394394446=>1,1394440554=>1,1394401503=>1,1394555989=>1,1394562078=>1,1394562184=>1,1394562156=>1,1394400889=>1,1394400587=>1,1394395228=>1,1394394464=>1,1394397924=>1,1394399364=>1,1394400514=>1,1391598777=>1,1391352580=>1,1388418482=>1,1388412525=>1,1388488004=>1,1388489246=>1,1388550852=>1,1388515713=>1,1388406318=>1,1388387423=>1,1388322546=>1,1388322542=>1,1388322549=>1,1388322557=>1,1388377281=>1,1388336807=>1,1388551184=>1,1388577686=>1,1388813145=>1,1398349817=>1,1388891493=>1,1388938902=>1,1389147179=>1,1389128156=>1,1398494746=>1,1388802306=>1,1388580034=>1,1388580031=>1,1388580494=>1,1388696817=>1,1388758334=>1,1387736295=>1,1387736290=>1,1386344372=>1,1386337489=>1,1386491679=>1,1386505153=>1,1386529948=>1,1386527451=>1,1398562419=>1,1386336855=>1,1386295838=>1,1398191315=>1,1386310983=>1,1386320870=>1,1386335760=>1,1386329620=>1,1386539011=>1,1386578566=>1,1387609684=>1,1387468053=>1,1387613446=>1,1387623623=>1,1387731989=>1,1387731517=>1,1387164972=>1,1387112623=>1,1386583203=>1,1386581583=>1,1386584038=>1,1386585174=>1,1386840025=>1,1389147180=>1,1389183341=>1,1390241024=>1,1390172469=>1,1390241050=>1,1390241091=>1,1390241504=>1,1390241130=>1,1390086489=>1,1390075396=>1,1389792650=>1,1389792486=>1,1389806845=>1,1390015751=>1,1390074415=>1,1390072965=>1,1390242238=>1,1390248153=>1,1390840468=>1,1390774815=>1,1390928500=>1,1390961066=>1,1391230710=>1,1391031703=>1,1390746347=>1,1390738452=>1,1390250777=>1,1390248288=>1,1390351690=>1,1390515089=>1,1390640629=>1,1389791554=>1,1389767665=>1,1389387584=>1,1389361587=>1,1389408909=>1,1389441474=>1,1389441480=>1,1389441476=>1,1389361055=>1,1389360907=>1,1389321932=>1,1389312772=>1,1389356530=>1,1389358589=>1,1389360467=>1,1389445919=>1,1389463079=>1,1389560009=>1,1389559988=>1,1389564801=>1,1389564815=>1,1389567991=>1,1389567878=>1,1389494547=>1,1389488207=>1,1389465179=>1,1389464905=>1,1389468130=>1,1389472926=>1,1389481895=>1,1386246721=>1,1364787399=>1,1347568361=>1,1347567631=>1,1347647172=>1,1347696587=>1,1347727573=>1,1347712234=>1,1347548139=>1,1347548130=>1,1347360519=>1,1347345161=>1,1347387284=>1,1347387286=>1,1347490079=>1,1347488797=>1,1347738690=>1,1347769416=>1,1348253746=>1,1348189884=>1,1348396418=>1,1348424947=>1,1348618420=>1,1348425328=>1,1348180656=>1,1348086749=>1,1347886063=>1,1347769566=>1,1347887494=>1,1347928970=>1,1347930235=>1,1347344989=>1,1347308462=>1,1346537339=>1,1346398467=>1,1346557530=>1,1346612243=>1,1346612386=>1,1346612255=>1,1346388249=>1,1346320530=>1,1344462611=>1,1344099081=>1,1345363378=>1,1345656537=>1,1346172394=>1,1345941007=>1,1346617032=>1,1346657529=>1,1347114282=>1,1347069795=>1,1347230998=>1,1347263882=>1,1347300356=>1,1347263884=>1,1347023502=>1,1346964775=>1,1346863929=>1,1346718852=>1,1346864503=>1,1346866185=>1,1346953651=>1,1348623865=>1,1348663361=>1,1350596411=>1,1350539172=>1,1350598429=>1,1350716770=>1,1350786055=>1,1350726741=>1,1350535443=>1,1350531089=>1,1350249899=>1,1350249622=>1,1350249906=>1,1350250272=>1,1350530653=>1,1350527898=>1,1350786184=>1,1350996672=>1,1351351407=>1,1351328813=>1,1351360681=>1,1351362285=>1,1351403733=>1,1351375190=>1,1351245225=>1,1351245191=>1,1351143843=>1,1351070486=>1,1351188044=>1,1351229706=>1,1351232992=>1,1350085570=>1,1350043628=>1,1349321098=>1,1349280538=>1,1349384238=>1,1349384548=>1,1349435027=>1,1349389081=>1,1348831711=>1,1348824675=>1,1348690192=>1,1348673131=>1,1348732825=>1,1348783766=>1,1348804498=>1,1348795124=>1,1349481978=>1,1349509374=>1,1349841195=>1,1349686850=>1,1349841202=>1,1349841332=>1,1350011201=>1,1349930181=>1,1349671974=>1,1349647336=>1,1349553983=>1,1349550521=>1,1349557092=>1,1349647109=>1,1349647335=>1,1344098940=>1,1344079623=>1,1339806474=>1,1339804668=>1,1339807652=>1,1339809690=>1,1339809779=>1,1339809699=>1,1339802328=>1,1339781078=>1,1339645685=>1,1339643484=>1,1339650731=>1,1339656645=>1,1339719395=>1,1339660768=>1,1339810527=>1,1339811059=>1,1339817647=>1,1339817233=>1,1339817690=>1,1339817724=>1,1339817927=>1,1339817882=>1,1339815683=>1,1339815355=>1,1339812587=>1,1339811393=>1,1339813611=>1,1339814822=>1,1339815194=>1,1339608022=>1,1339547737=>1,1339218942=>1,1339218915=>1,1339221361=>1,1339221441=>1,1339236489=>1,1339222732=>1,1339218651=>1,1339218647=>1,1339165110=>1,1339162298=>1,1339165235=>1,1339195345=>1,1339215685=>1,1339214821=>1,1339236707=>1,1339236866=>1,1339239542=>1,1339239232=>1,1339311191=>1,1339479790=>1,1339542873=>1,1339490131=>1,1339238595=>1,1339238105=>1,1339237185=>1,1339237010=>1,1339237541=>1,1339237670=>1,1339237763=>1,1339817980=>1,1339821905=>1,1341994010=>1,1341967583=>1,1341998053=>1,1341998431=>1,1342000807=>1,1342000464=>1,1341965228=>1,1341883240=>1,1341693878=>1,1341689900=>1,1341700241=>1,1341852096=>1,1341882813=>1,1341862471=>1,1342001868=>1,1342002205=>1,1343039375=>1,1342987960=>1,1343060259=>1,1343066228=>1,1343215356=>1,1343152752=>1,1342942121=>1,1342650043=>1,1342003494=>1,1342003140=>1,1342004407=>1,1342004426=>1,1342170540=>1,1341616842=>1,1341476408=>1,1340319567=>1,1340315580=>1,1340399593=>1,1340401278=>1,1340562885=>1,1340401333=>1,1340313845=>1,1340270289=>1,1340000942=>1,1339822011=>1,1340097348=>1,1340170248=>1,1340175252=>1,1340571185=>1,1340747189=>1,1341245858=>1,1341245158=>1,1341250290=>1,1341425178=>1,1341473644=>1,1341467316=>1,1341192979=>1,1341192908=>1,1341014579=>1,1340928952=>1,1341128457=>1,1341136523=>1,1341186662=>1,1351817141=>1,1351819677=>1,1359417403=>1,1359417375=>1,1359417483=>1,1359417521=>1,1359417662=>1,1359417526=>1,1359417203=>1,1359417059=>1,1359416134=>1,1359416086=>1,1359416218=>1,1359416317=>1,1359416824=>1,1359416660=>1,1359417668=>1,1359417771=>1,1360073091=>1,1360072747=>1,1360076328=>1,1360076332=>1,1360149710=>1,1360076336=>1,1360029987=>1,1359988052=>1,1359538526=>1,1359418222=>1,1359650578=>1,1359670750=>1,1359734560=>1,1359416059=>1,1359415901=>1,1359243178=>1,1359242589=>1,1359243222=>1,1359243248=>1,1359243748=>1,1359243712=>1,1359149901=>1,1359149580=>1,1359136033=>1,1359114565=>1,1359139082=>1,1359141071=>1,1359147582=>1,1359146458=>1,1359244487=>1,1359244591=>1,1359414157=>1,1359393562=>1,1359414263=>1,1359415825=>1,1359415876=>1,1359415837=>1,1359310894=>1,1359276588=>1,1359244949=>1,1359244794=>1,1359245163=>1,1359247664=>1,1359248653=>1,1360149714=>1,1360149721=>1,1362023526=>1,1361872026=>1,1362285181=>1,1362429779=>1,1362743431=>1,1362641621=>1,1361168635=>1,1360974706=>1,1360917835=>1,1360917833=>1,1360919473=>1,1360919478=>1,1360950375=>1,1360938917=>1,1363211707=>1,1363263618=>1,1364787400=>1,1339094839=>1,1364787401=>1,1364787402=>1,1364787404=>1,1364787403=>1,1364787398=>1,1364787397=>1,1364389903=>1,1364380820=>1,1364631067=>1,1364758040=>1,1364787395=>1,1360917009=>1,1360840062=>1,1360350614=>1,1360350114=>1,1360350616=>1,1360350636=>1,1360350652=>1,1360350649=>1,1360350113=>1,1360350107=>1,1360188990=>1,1360149724=>1,1360200519=>1,1360299166=>1,1360350102=>1,1360350101=>1,1360350657=>1,1360350668=>1,1360755899=>1,1360500339=>1,1360756300=>1,1360799061=>1,1360803586=>1,1360800434=>1,1360359988=>1,1360355210=>1,1360350689=>1,1360350670=>1,1360350691=>1,1360350698=>1,1360350708=>1,1359101063=>1,1359011733=>1,1357199637=>1,1356853940=>1,1357203005=>1,1357221103=>1,1357481580=>1,1357437055=>1,1356749546=>1,1356618408=>1,1356565545=>1,1356558850=>1,1356587255=>1,1356593041=>1,1356613862=>1,1356600351=>1,1357522270=>1,1357524049=>1,1357931787=>1,1357931782=>1,1357931791=>1,1357932561=>1,1357932665=>1,1357932657=>1,1357931781=>1,1357931617=>1,1357806186=>1,1357768582=>1,1357851701=>1,1357930578=>1,1357931537=>1,1356530244=>1,1356495376=>1,1353314636=>1,1353182797=>1,1353388561=>1,1353438365=>1,1353882920=>1,1353762408=>1,1353160834=>1,1353146379=>1,1352402628=>1,1352206084=>1,1352402638=>1,1352462012=>1,1352940986=>1,1352864486=>1,1354016731=>1,1354100018=>1,1356360974=>1,1355516183=>1,1356364796=>1,1356388120=>1,1356480115=>1,1356422822=>1,1355369051=>1,1355337806=>1,1354509602=>1,1354100109=>1,1354518410=>1,1354739651=>1,1355180472=>1,1357932785=>1,1357932889=>1,1358450225=>1,1358448431=>1,1358483587=>1,1358491691=>1,1358575450=>1,1358539000=>1,1358263687=>1,1358263685=>1,1358080802=>1,1358080795=>1,1358080804=>1,1358188991=>1,1358263101=>1,1358230430=>1,1358576778=>1,1358629162=>1,1358891981=>1,1358890507=>1,1358892013=>1,1358910090=>1,1358928381=>1,1358924689=>1,1358889850=>1,1358879536=>1,1358732718=>1,1358697325=>1,1358765230=>1,1358848656=>1,1358855478=>1,1358080790=>1,1358027997=>1,1357934653=>1,1357934625=>1,1357934793=>1,1357934929=>1,1357934977=>1,1357934941=>1,1357934609=>1,1357933049=>1,1357932917=>1,1357932897=>1,1357932937=>1,1357932961=>1,1357933009=>1,1357934997=>1,1357935065=>1,1357941615=>1,1357940470=>1,1357960237=>1,1357960708=>1,1357987023=>1,1357962534=>1,1357937697=>1,1357937677=>1,1357935401=>1,1357935293=>1,1357935473=>1,1357935501=>1,1357935513=>1,1364803058=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-14.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1388811776=>1388812031,1388806400=>1388806655,1419526514=>1,1419527203=>1,1419723617=>1,1419810751=>1,1419810589=>1,1419520680=>1,1419410329=>1,1419237969=>1,1419147832=>1,1419238762=>1,1419380339=>1,1419403740=>1,1419383406=>1,1419904537=>1,1420511070=>1,1420981458=>1,1420852357=>1,1420982168=>1,1421001809=>1,1421083448=>1,1421083358=>1,1420851916=>1,1420769044=>1,1420661265=>1,1418951408=>1,1420663589=>1,1420715648=>1,1420748018=>1,1420082962=>1,1418948639=>1,1417734985=>1,1417734974=>1,1417735253=>1,1417735497=>1,1417736513=>1,1417735498=>1,1417734646=>1,1417733746=>1,1417127109=>1,1417118869=>1,1417308424=>1,1417507499=>1,1417732983=>1,1417732261=>1,1417737724=>1,1417737996=>1,1418088048=>1,1418084628=>1,1418556840=>1,1418666356=>1,1418754505=>1,1418719780=>1,1417997112=>1,1417997008=>1,1417739026=>1,1417738264=>1,1417739502=>1,1417739659=>1,1417945112=>1,1421194333=>1,1421235614=>1,1422965496=>1,1422961405=>1,1422986642=>1,1423000975=>1,1423074440=>1,1423072207=>1,1422931869=>1,1422676914=>1,1422540373=>1,1422522138=>1,1422556232=>1,1422563216=>1,1422588131=>1,1422565429=>1,1423155222=>1,1423219114=>1,1423505990=>1,1423500640=>1,1423506142=>1,1423506208=>1,1423510724=>1,1423510581=>1,1423493625=>1,1423464790=>1,1423298486=>1,1423272527=>1,1423336761=>1,1423377391=>1,1423455012=>1,1423448528=>1,1422461678=>1,1422446112=>1,1422091935=>1,1421867391=>1,1422092414=>1,1422109759=>1,1422124470=>1,1422112572=>1,1421750024=>1,1421747901=>1,1421337496=>1,1421336969=>1,1421338090=>1,1421338321=>1,1421567188=>1,1421344629=>1,1422129260=>1,1422142246=>1,1422412270=>1,1422407714=>1,1422413299=>1,1422414499=>1,1422431688=>1,1422424680=>1,1422404847=>1,1422397134=>1,1422233173=>1,1422176098=>1,1422395425=>1,1422395567=>1,1422395599=>1,1416876362=>1,1416831992=>1,1410577477=>1,1410577381=>1,1410580125=>1,1410613324=>1,1410617808=>1,1410617736=>1,1410577001=>1,1410576975=>1,1410362229=>1,1409952606=>1,1410400273=>1,1410405682=>1,1410463257=>1,1410407413=>1,1410617834=>1,1410736930=>1,1411312743=>1,1411295477=>1,1411334266=>1,1411363093=>1,1411846376=>1,1411411358=>1,1411295142=>1,1411249452=>1,1410739737=>1,1410736933=>1,1410739801=>1,1410821059=>1,1411144430=>1,1410925578=>1,1409951902=>1,1409943554=>1,1408315055=>1,1408263633=>1,1408716378=>1,1408763911=>1,1408790214=>1,1408784083=>1,1408252506=>1,1408230389=>1,1408028750=>1,1407835118=>1,1408122653=>1,1408131692=>1,1408179690=>1,1408148438=>1,1408807638=>1,1408837141=>1,1409249483=>1,1409233406=>1,1409363244=>1,1409398663=>1,1409889419=>1,1409482805=>1,1409204351=>1,1409173047=>1,1408909585=>1,1408841720=>1,1408979150=>1,1409012407=>1,1409069703=>1,1411932859=>1,1411936326=>1,1414074204=>1,1414061115=>1,1414082946=>1,1414190651=>1,1414218987=>1,1414207946=>1,1414033448=>1,1414023408=>1,1413224050=>1,1413219224=>1,1413291596=>1,1413432451=>1,1414015255=>1,1414014995=>1,1414255207=>1,1414260259=>1,1416627782=>1,1416542402=>1,1416653856=>1,1416696578=>1,1416758070=>1,1416755064=>1,1416229139=>1,1416179247=>1,1414776018=>1,1414549573=>1,1414844463=>1,1415340385=>1,1415833004=>1,1415703379=>1,1413029734=>1,1413005093=>1,1412305078=>1,1412304068=>1,1412305676=>1,1412308114=>1,1412312646=>1,1412311930=>1,1412303016=>1,1412301778=>1,1412241346=>1,1412039427=>1,1412254730=>1,1412254731=>1,1412254733=>1,1412254732=>1,1412312837=>1,1412350373=>1,1412860141=>1,1412849718=>1,1412860158=>1,1412867945=>1,1412873515=>1,1412867999=>1,1412822953=>1,1412819098=>1,1412395275=>1,1412395273=>1,1412482894=>1,1412654568=>1,1412813467=>1,1423674898=>1,1423682876=>1,1433570715=>1,1433570399=>1,1433587263=>1,1433883278=>1,1433883330=>1,1433883287=>1,1433569044=>1,1433568608=>1,1433481677=>1,1433226236=>1,1433497311=>1,1433548369=>1,1433559406=>1,1433548375=>1,1433883533=>1,1433883582=>1,1435477092=>1,1435411201=>1,1435491283=>1,1435511863=>1,1436083303=>1,1435542116=>1,1434832673=>1,1434823642=>1,1434441657=>1,1434193726=>1,1434603219=>1,1434723363=>1,1434823546=>1,1434731402=>1,1433226228=>1,1433226225=>1,1432167888=>1,1432167887=>1,1432167890=>1,1432167895=>1,1432209201=>1,1432204496=>1,1432167883=>1,1432167881=>1,1432014852=>1,1431833587=>1,1432018359=>1,1432033481=>1,1432162351=>1,1432142738=>1,1432210224=>1,1432213780=>1,1432497228=>1,1432469590=>1,1432546072=>1,1432861111=>1,1432990139=>1,1432944675=>1,1432401999=>1,1432345130=>1,1432266323=>1,1432214220=>1,1432336564=>1,1432338592=>1,1432341041=>1,1436381229=>1,1436400093=>1,1438898035=>1,1438870334=>1,1438903205=>1,1438904946=>1,1438907335=>1,1438905194=>1,1438865845=>1,1438855334=>1,1438839307=>1,1438839306=>1,1438839308=>1,1438839309=>1,1438855201=>1,1438839310=>1,1439065891=>1,1439070326=>1,1439965711=>1,1439965667=>1,1439969202=>1,1439971691=>1,1440091089=>1,1439971819=>1,1439959257=>1,1439646982=>1,1439435573=>1,1439387138=>1,1439457970=>1,1439466640=>1,1439491375=>1,1438796562=>1,1438692330=>1,1437167577=>1,1437150115=>1,1437250289=>1,1437297186=>1,1437842387=>1,1437835468=>1,1437138890=>1,1437021664=>1,1436537242=>1,1436457082=>1,1436537655=>1,1436538213=>1,1436872998=>1,1436544466=>1,1437847451=>1,1437918762=>1,1438348211=>1,1438250109=>1,1438364961=>1,1438364989=>1,1438667333=>1,1438666456=>1,1438250103=>1,1438250100=>1,1438199250=>1,1437987464=>1,1438248662=>1,1438250085=>1,1438250097=>1,1431745581=>1,1430943897=>1,1426169906=>1,1426109659=>1,1426384210=>1,1426392356=>1,1426598785=>1,1426516206=>1,1425978300=>1,1425759141=>1,1425657874=>1,1425655782=>1,1425661862=>1,1425677479=>1,1425702149=>1,1425693994=>1,1426732378=>1,1426768905=>1,1426918756=>1,1426780410=>1,1426918910=>1,1427010470=>1,1427091679=>1,1427064195=>1,1426774951=>1,1426772789=>1,1426769644=>1,1426768908=>1,1426770223=>1,1426770519=>1,1426772679=>1,1426770759=>1,1425626431=>1,1425622132=>1,1424856747=>1,1424773407=>1,1424928204=>1,1424941541=>1,1425083901=>1,1425030378=>1,1424757078=>1,1424492006=>1,1423692622=>1,1407834711=>1,1423703015=>1,1424100635=>1,1424430826=>1,1424179108=>1,1425088425=>1,1425094406=>1,1425493437=>1,1425345669=>1,1425519166=>1,1425539447=>1,1425622038=>1,1425566678=>1,1425285085=>1,1425284916=>1,1425096980=>1,1425096338=>1,1425113210=>1,1425163757=>1,1425196045=>1,1427159786=>1,1427181324=>1,1427767180=>1,1427764932=>1,1427797420=>1,1427812118=>1,1427931241=>1,1427906276=>1,1427753246=>1,1427751885=>1,1427735194=>1,1427731928=>1,1427740065=>1,1427740376=>1,1427751441=>1,1427748944=>1,1427998870=>1,1428004022=>1,1428839166=>1,1428142845=>1,1428933054=>1,1429233326=>1,1430941684=>1,1430711269=>1,1428142756=>1,1428120930=>1,1428042152=>1,1428042062=>1,1428044100=>1,1428065990=>1,1428112638=>1,1427728247=>1,1427728197=>1,1427227316=>1,1427224560=>1,1427232433=>1,1427234694=>1,1427241395=>1,1427241386=>1,1427222857=>1,1427221579=>1,1427206307=>1,1427206176=>1,1427209068=>1,1427215590=>1,1427219628=>1,1427219621=>1,1427435890=>1,1427455806=>1,1427691381=>1,1427684568=>1,1427699818=>1,1427713165=>1,1427727527=>1,1427727507=>1,1427682504=>1,1427682298=>1,1427633043=>1,1427584185=>1,1427672589=>1,1427673401=>1,1427677809=>1,1423680165=>1,1407809418=>1,1388489246=>1,1388488004=>1,1388515713=>1,1388550852=>1,1388577686=>1,1388551184=>1,1388418482=>1,1388412525=>1,1388322557=>1,1388322549=>1,1388336807=>1,1388377281=>1,1388406318=>1,1388387423=>1,1388580031=>1,1388580034=>1,1389312772=>1,1389147180=>1,1389321932=>1,1389357737=>1,1389358589=>1,1389358141=>1,1389147179=>1,1389128156=>1,1388696817=>1,1388580494=>1,1388758334=>1,1388802306=>1,1388938902=>1,1388813145=>1,1388322546=>1,1388322542=>1,1386527451=>1,1386505153=>1,1386529948=>1,1386539011=>1,1386581583=>1,1386578566=>1,1386491679=>1,1386337489=>1,1386295838=>1,1386246769=>1,1386310983=>1,1386329620=>1,1386336855=>1,1386335760=>1,1386583203=>1,1386584038=>1,1387656536=>1,1387623623=>1,1387731517=>1,1387731989=>1,1387736295=>1,1387736290=>1,1387613446=>1,1387609684=>1,1386840025=>1,1386585174=>1,1387112623=>1,1387164972=>1,1387468053=>1,1389361055=>1,1389387584=>1,1390640629=>1,1390351690=>1,1390738452=>1,1390746347=>1,1390840468=>1,1390774815=>1,1390293230=>1,1390250777=>1,1390241091=>1,1390241050=>1,1390241130=>1,1390241504=>1,1390248288=>1,1390248153=>1,1390928500=>1,1390961066=>1,1391738868=>1,1391691188=>1,1391767847=>1,1391945589=>1,1391991391=>1,1391990991=>1,1391677193=>1,1391662028=>1,1391352580=>1,1391031703=>1,1391598777=>1,1391613842=>1,1391630547=>1,1390241024=>1,1390172476=>1,1389472926=>1,1389468130=>1,1389481895=>1,1389488207=>1,1389560009=>1,1389559988=>1,1389465179=>1,1389464905=>1,1389441474=>1,1389408909=>1,1389441476=>1,1389441480=>1,1389463079=>1,1389445919=>1,1389564801=>1,1389564815=>1,1390015751=>1,1389913053=>1,1390072965=>1,1390074415=>1,1390086489=>1,1390075396=>1,1389806845=>1,1389792650=>1,1389567991=>1,1389567878=>1,1389767665=>1,1389791554=>1,1389792486=>1,1386246721=>1,1386150557=>1,1381225313=>1,1381148152=>1,1381225386=>1,1381304419=>1,1381947287=>1,1381739124=>1,1381147972=>1,1381094809=>1,1381051603=>1,1381049768=>1,1381051608=>1,1381051611=>1,1381068002=>1,1381059916=>1,1381954266=>1,1381956555=>1,1382276716=>1,1382270209=>1,1382278387=>1,1382348814=>1,1382413822=>1,1382407409=>1,1382269350=>1,1382269269=>1,1381956579=>1,1381956556=>1,1381974731=>1,1381985075=>1,1382226924=>1,1382172782=>1,1381017297=>1,1381008773=>1,1378878129=>1,1378728299=>1,1379729894=>1,1380088556=>1,1380114242=>1,1380093059=>1,1378667388=>1,1377607595=>1,1376125961=>1,1376124521=>1,1376230901=>1,1377093931=>1,1377567722=>1,1377162013=>1,1380136736=>1,1380228732=>1,1380900307=>1,1380892575=>1,1380939283=>1,1380983139=>1,1381008605=>1,1381007368=>1,1380879643=>1,1380790942=>1,1380273187=>1,1380266546=>1,1380275910=>1,1380447823=>1,1380632510=>1,1382418979=>1,1382419197=>1,1384868385=>1,1384863800=>1,1384893681=>1,1384893937=>1,1384901361=>1,1384898801=>1,1384859240=>1,1384670211=>1,1384248108=>1,1384248106=>1,1384253711=>1,1384253823=>1,1384321411=>1,1384253836=>1,1384904177=>1,1384904183=>1,1385526140=>1,1385316175=>1,1385543124=>1,1385657762=>1,1386102620=>1,1385850219=>1,1385313490=>1,1385312017=>1,1384962127=>1,1384941117=>1,1384962894=>1,1384966584=>1,1385221392=>1,1384248105=>1,1384184313=>1,1383223866=>1,1383221529=>1,1383223868=>1,1383224833=>1,1383250348=>1,1383226725=>1,1383087673=>1,1382517847=>1,1382419629=>1,1382419596=>1,1382452946=>1,1382458018=>1,1382509789=>1,1382458019=>1,1383271697=>1,1383276460=>1,1383463576=>1,1383462791=>1,1383463792=>1,1383537148=>1,1384119533=>1,1383590180=>1,1383459415=>1,1383453910=>1,1383364611=>1,1383276473=>1,1383426709=>1,1383441226=>1,1383451606=>1,1391992005=>1,1392002750=>1,1403500835=>1,1403474490=>1,1403500900=>1,1403570380=>1,1403637978=>1,1403637847=>1,1403472098=>1,1403395596=>1,1403177872=>1,1403177654=>1,1403178308=>1,1403209960=>1,1403242920=>1,1403211203=>1,1403638578=>1,1403649575=>1,1406214190=>1,1406212539=>1,1406214908=>1,1406238111=>1,1406271118=>1,1406260262=>1,1406197329=>1,1405664710=>1,1403757601=>1,1403757006=>1,1403800490=>1,1403818003=>1,1404003458=>1,1403972222=>1,1403176764=>1,1403173988=>1,1401888515=>1,1401887534=>1,1401888518=>1,1401902053=>1,1402073575=>1,1401973050=>1,1401887532=>1,1401887531=>1,1401750068=>1,1401442564=>1,1401799636=>1,1401856006=>1,1401887530=>1,1401873506=>1,1402095542=>1,1402101492=>1,1402740685=>1,1402698134=>1,1403019107=>1,1403030455=>1,1403171395=>1,1403126383=>1,1402635051=>1,1402380484=>1,1402306444=>1,1402134922=>1,1402342347=>1,1402350373=>1,1402360442=>1,1406271241=>1,1406377817=>1,1407439620=>1,1407335092=>1,1407475020=>1,1407479274=>1,1407630491=>1,1407481499=>1,1407126190=>1,1407126184=>1,1407044617=>1,1407035022=>1,1407045849=>1,1407081725=>1,1407124371=>1,1407090355=>1,1407652389=>1,1407656580=>1,1407798238=>1,1407792469=>1,1407805761=>1,1407805792=>1,1375844784=>1,1407807762=>1,1407792423=>1,1407781868=>1,1407656641=>1,1407656581=>1,1407778931=>1,1407779929=>1,1407780159=>1,1406974124=>1,1406971067=>1,1406431621=>1,1406431519=>1,1406432224=>1,1406432292=>1,1406432865=>1,1406432652=>1,1406429584=>1,1406429329=>1,1406427342=>1,1406427319=>1,1406427972=>1,1406428260=>1,1406429308=>1,1406428690=>1,1406445754=>1,1406692947=>1,1406861700=>1,1406837278=>1,1406895882=>1,1406898729=>1,1406970751=>1,1406970558=>1,1406830317=>1,1406830316=>1,1406732733=>1,1406698449=>1,1406785164=>1,1406830314=>1,1406830315=>1,1401347867=>1,1401295795=>1,1393881360=>1,1393860847=>1,1393897482=>1,1393897750=>1,1393901541=>1,1393900628=>1,1393841182=>1,1393823706=>1,1393333997=>1,1393276441=>1,1393333998=>1,1393391426=>1,1393667826=>1,1393482634=>1,1393948379=>1,1393969319=>1,1394088040=>1,1394087845=>1,1394096372=>1,1394106882=>1,1394116924=>1,1394107184=>1,1394087532=>1,1394087075=>1,1394085004=>1,1394084507=>1,1394086181=>1,1394086327=>1,1394086867=>1,1393249741=>1,1393171336=>1,1392097452=>1,1392093163=>1,1392097630=>1,1392097914=>1,1392104583=>1,1392099966=>1,1392083571=>1,1392078836=>1,1392018489=>1,1392013631=>1,1392019902=>1,1392052714=>1,1392064867=>1,1392062939=>1,1392107114=>1,1392116957=>1,1392162129=>1,1392146624=>1,1392173146=>1,1392179568=>1,1393081651=>1,1392918178=>1,1392140375=>1,1392140189=>1,1392123007=>1,1392119778=>1,1392130684=>1,1392132324=>1,1392135476=>1,1394201326=>1,1394340165=>1,1397661985=>1,1397092949=>1,1397918961=>1,1397942833=>1,1398069533=>1,1398012745=>1,1397036937=>1,1396877810=>1,1395798008=>1,1395536575=>1,1396150978=>1,1396229294=>1,1396268387=>1,1396239119=>1,1398104964=>1,1398109155=>1,1400905147=>1,1400904769=>1,1400908080=>1,1400926366=>1,1400949247=>1,1400946420=>1,1400201394=>1,1398562419=>1,1398172045=>1,1398144055=>1,1398191315=>1,1398349817=>1,1398494746=>1,1395365615=>1,1395337041=>1,1394392331=>1,1394391765=>1,1394393220=>1,1394393368=>1,1394395228=>1,1394394464=>1,1394390030=>1,1394366027=>1,1394345686=>1,1394345446=>1,1394357004=>1,1394357149=>1,1394364591=>1,1394364282=>1,1394397924=>1,1394400587=>1,1394823947=>1,1394738432=>1,1394847357=>1,1395233248=>1,1395303826=>1,1395234731=>1,1394563157=>1,1394562156=>1,1394402009=>1,1394400889=>1,1394440554=>1,1394555828=>1,1394555989=>1,1407820260=>1,);?>
1
+ <?php return array(1467468544=>1467468799,1467346496=>1467346559,1442374564=>1442374565,1441652224=>1441652479,1441645824=>1441646079,1438839306=>1438839309,1412254730=>1412254733,1407656580=>1407656581,1406830314=>1406830317,1401887530=>1401887531,1441001441=>1,1440999372=>1,1441040364=>1,1440904510=>1,1441055688=>1,1440909729=>1,1440988990=>1,1440922761=>1,1440922596=>1,1449552534=>1,1441064367=>1,1440977847=>1,1440916755=>1,1441095534=>1,1441165052=>1,1441164577=>1,1441183304=>1,1441185126=>1,1441525269=>1,1441506410=>1,1441164467=>1,1441157776=>1,1441108725=>1,1440881525=>1,1441123198=>1,1441133829=>1,1441142104=>1,1441071592=>1,1440757330=>1,1440120569=>1,1440119976=>1,1440121031=>1,1440121668=>1,1440126792=>1,1440125661=>1,1449643872=>1,1440117718=>1,1440113391=>1,1440111021=>1,1440114153=>1,1440114988=>1,1440116783=>1,1440115263=>1,1440126952=>1,1440128028=>1,1440149727=>1,1440148687=>1,1440385087=>1,1440612581=>1,1441528408=>1,1440613510=>1,1440142220=>1,1440141019=>1,1440139332=>1,1440138455=>1,1440139836=>1,1440140960=>1,1449637339=>1,1440842387=>1,1441532923=>1,1446750661=>1,1446737752=>1,1446824528=>1,1446922025=>1,1446933931=>1,1446929923=>1,1446737747=>1,1446712739=>1,1446534972=>1,1446521961=>1,1446634318=>1,1446644741=>1,1446712614=>1,1446653656=>1,1447023501=>1,1447148750=>1,1447474478=>1,1447466711=>1,1447661461=>1,1448209166=>1,1448601162=>1,1448521022=>1,1447466644=>1,1447466635=>1,1447466249=>1,1447442680=>1,1447466468=>1,1447466501=>1,1447466503=>1,1445392437=>1,1445070799=>1,1441759203=>1,1441690443=>1,1441968915=>1,1441969932=>1,1442211066=>1,1442083522=>1,1441686672=>1,1449424428=>1,1441537658=>1,1441536274=>1,1441607309=>1,1440108793=>1,1441609973=>1,1442242193=>1,1442374563=>1,1444279170=>1,1443335199=>1,1444349152=>1,1444429709=>1,1444794483=>1,1444504605=>1,1443157858=>1,1443049359=>1,1442374565=>1,1448964786=>1,1442536271=>1,1442643191=>1,1443015362=>1,1448616135=>1,1440105577=>1,1433570715=>1,1433570399=>1,1433587263=>1,1433883278=>1,1433883330=>1,1433883287=>1,1433569044=>1,1433568608=>1,1433481677=>1,1433226236=>1,1433497311=>1,1433548369=>1,1433559406=>1,1433548375=>1,1433883533=>1,1433883582=>1,1435491283=>1,1435477092=>1,1435511863=>1,1435542116=>1,1436381229=>1,1436083303=>1,1435411201=>1,1434832673=>1,1434441657=>1,1434193726=>1,1434603219=>1,1434723363=>1,1434823546=>1,1433226228=>1,1433226225=>1,1432167883=>1,1432167881=>1,1432167887=>1,1432167888=>1,1432167895=>1,1432167890=>1,1432162351=>1,1432142738=>1,1431745581=>1,1430941684=>1,1431833587=>1,1432014852=>1,1432033481=>1,1432018359=>1,1432204496=>1,1432209201=>1,1432497125=>1,1432469590=>1,1432497228=>1,1432546072=>1,1432990139=>1,1432944675=>1,1432401999=>1,1432345130=>1,1432266323=>1,1432214220=>1,1432266818=>1,1432338592=>1,1432341041=>1,1436400093=>1,1436457082=>1,1439387138=>1,1439123266=>1,1439457970=>1,1439466640=>1,1439646982=>1,1439491375=>1,1439070326=>1,1439065891=>1,1438898035=>1,1438870334=>1,1438903205=>1,1438904946=>1,1438907335=>1,1438905194=>1,1439957327=>1,1439967458=>1,1440102142=>1,1440100065=>1,1440103984=>1,1449660175=>1,1440106796=>1,1440105803=>1,1440099500=>1,1440094140=>1,1439969597=>1,1439967529=>1,1439969794=>1,1439970963=>1,1440091089=>1,1438865845=>1,1438855334=>1,1437297186=>1,1437250289=>1,1437773687=>1,1437806635=>1,1438248662=>1,1438199250=>1,1437167577=>1,1437150115=>1,1436537655=>1,1436537242=>1,1436538213=>1,1436544466=>1,1437138890=>1,1436872998=>1,1438250085=>1,1438250097=>1,1438692330=>1,1438667333=>1,1438796562=>1,1438817635=>1,1438855201=>1,1438839310=>1,1438666456=>1,1438364989=>1,1438250103=>1,1438250100=>1,1438250109=>1,1438348211=>1,1438364961=>1,1440107637=>1,1449881170=>1,1469177100=>1,1469175274=>1,1469318699=>1,1469318770=>1,1469319815=>1,1469319386=>1,1469032306=>1,1468952999=>1,1468762883=>1,1468735961=>1,1468875858=>1,1468879037=>1,1468939361=>1,1468934508=>1,1469500559=>1,1469575079=>1,1470344962=>1,1470333536=>1,1470359190=>1,1470363729=>1,1470459076=>1,1470456606=>1,1470256994=>1,1470254541=>1,1469853537=>1,1469753831=>1,1469876562=>1,1469973949=>1,1470080708=>1,1468296026=>1,1468293345=>1,1467375331=>1,1467374635=>1,1467376315=>1,1467376694=>1,1467380358=>1,1467379358=>1,1467372790=>1,1467372725=>1,1466899911=>1,1466857742=>1,1466908679=>1,1467119876=>1,1467372589=>1,1467180645=>1,1467380963=>1,1467464280=>1,1467911823=>1,1467729874=>1,1467923319=>1,1468033010=>1,1468274513=>1,1468035006=>1,1467728339=>1,1467561193=>1,1467491598=>1,1467464305=>1,1467547271=>1,1467547336=>1,1467559589=>1,1470585654=>1,1470793122=>1,1471748731=>1,1471748662=>1,1471748752=>1,1471749481=>1,1471774029=>1,1471750088=>1,1471747725=>1,1471747513=>1,1471746830=>1,1471746526=>1,1471746857=>1,1471746997=>1,1471747410=>1,1471747392=>1,1471907876=>1,1471919959=>1,1473158363=>1,1473001603=>1,1473817523=>1,1473969385=>1,1474259503=>1,1474160751=>1,1472983447=>1,1472799515=>1,1472032560=>1,1471970699=>1,1472312302=>1,1472319502=>1,1472603112=>1,1471746420=>1,1471746329=>1,1471438056=>1,1471435709=>1,1471504953=>1,1471505273=>1,1471538401=>1,1471517661=>1,1471075203=>1,1471012190=>1,1470857898=>1,1470799297=>1,1470867732=>1,1470891123=>1,1471006351=>1,1470891402=>1,1471542179=>1,1471543680=>1,1471745549=>1,1471745228=>1,1471745619=>1,1471745653=>1,1471746210=>1,1471745773=>1,1471744728=>1,1471744580=>1,1471701206=>1,1471567229=>1,1471742984=>1,1471743986=>1,1471744099=>1,1466628470=>1,1466618092=>1,1460124779=>1,1460066263=>1,1460124872=>1,1460138339=>1,1460724844=>1,1460464103=>1,1459748832=>1,1459700210=>1,1458472176=>1,1457405327=>1,1458743922=>1,1458925548=>1,1459439045=>1,1459006514=>1,1460724860=>1,1460724904=>1,1460858213=>1,1460858206=>1,1460858220=>1,1460858315=>1,1460858457=>1,1460858357=>1,1460858174=>1,1460858158=>1,1460725206=>1,1460725120=>1,1460854603=>1,1460854672=>1,1460858154=>1,1457248616=>1,1456772487=>1,1450771000=>1,1450725209=>1,1450785599=>1,1450915004=>1,1451131159=>1,1451103949=>1,1450152130=>1,1450009680=>1,1449864482=>1,1449822470=>1,1430868746=>1,1449881208=>1,1449881312=>1,1449881249=>1,1451131160=>1,1451179914=>1,1454652409=>1,1454274685=>1,1455192082=>1,1455197940=>1,1455267739=>1,1455212820=>1,1453206510=>1,1452766414=>1,1451831565=>1,1451733227=>1,1452179588=>1,1452362532=>1,1452466036=>1,1460858470=>1,1460867798=>1,1466105172=>1,1466104564=>1,1466124610=>1,1466208759=>1,1466429304=>1,1466229765=>1,1466104542=>1,1466100089=>1,1466084088=>1,1466082043=>1,1466085949=>1,1466086886=>1,1466096020=>1,1466087685=>1,1466565476=>1,1466565664=>1,1466576527=>1,1466575640=>1,1466578822=>1,1466580140=>1,1466602767=>1,1466600472=>1,1466572986=>1,1466570061=>1,1466568351=>1,1466566275=>1,1466568911=>1,1466569229=>1,1466569974=>1,1466079813=>1,1466073272=>1,1464358361=>1,1464355303=>1,1464395857=>1,1464397755=>1,1464601774=>1,1464423501=>1,1463984007=>1,1463971519=>1,1460917901=>1,1460917858=>1,1460920424=>1,1462774471=>1,1463969884=>1,1463968322=>1,1464615594=>1,1464754840=>1,1465651484=>1,1465649480=>1,1465668172=>1,1465670251=>1,1465683119=>1,1465680685=>1,1464964157=>1,1464859776=>1,1464782706=>1,1464762232=>1,1464788608=>1,1464815454=>1,1464819607=>1,1449776258=>1,1430523397=>1,1410736930=>1,1410617808=>1,1410736933=>1,1410739737=>1,1410821059=>1,1410739801=>1,1410613324=>1,1410580125=>1,1410463257=>1,1410407413=>1,1410576975=>1,1410577001=>1,1410577477=>1,1410577381=>1,1410925578=>1,1410938605=>1,1411847755=>1,1411846376=>1,1411932859=>1,1411936326=>1,1412040974=>1,1412039427=>1,1411411358=>1,1411363093=>1,1411249452=>1,1411144430=>1,1411295142=>1,1411295477=>1,1411334266=>1,1411312743=>1,1410405682=>1,1410362229=>1,1408790214=>1,1408784083=>1,1408807638=>1,1408837141=>1,1408909585=>1,1408841720=>1,1408763911=>1,1408716378=>1,1408179690=>1,1408148438=>1,1408230389=>1,1408252506=>1,1408315055=>1,1408263633=>1,1408979150=>1,1409012407=>1,1409482805=>1,1409406514=>1,1409889419=>1,1409943554=>1,1409952606=>1,1409951902=>1,1409398663=>1,1409363244=>1,1409173047=>1,1409069703=>1,1409204351=>1,1409233406=>1,1409249483=>1,1412228879=>1,1412241346=>1,1414190651=>1,1414082946=>1,1414207946=>1,1414218987=>1,1414260259=>1,1414255207=>1,1414074204=>1,1414061115=>1,1414007953=>1,1413432451=>1,1414014995=>1,1414015255=>1,1414035052=>1,1414033448=>1,1414549573=>1,1414776018=>1,1416150841=>1,1416039858=>1,1416179247=>1,1416229139=>1,1416696578=>1,1416627782=>1,1415860470=>1,1415832939=>1,1415231305=>1,1414844463=>1,1415340385=>1,1415703379=>1,1415767867=>1,1413347733=>1,1413295256=>1,1412306772=>1,1412304375=>1,1412307489=>1,1412395273=>1,1412482894=>1,1412395275=>1,1412303454=>1,1412303264=>1,1412254732=>1,1412254731=>1,1412254733=>1,1412301694=>1,1412303187=>1,1412302867=>1,1412606402=>1,1412654568=>1,1412969506=>1,1412958107=>1,1413005093=>1,1413191361=>1,1413225535=>1,1413208503=>1,1412873515=>1,1412867999=>1,1412819098=>1,1412813467=>1,1412822953=>1,1412849718=>1,1412867945=>1,1408131692=>1,1408122653=>1,1403637978=>1,1403637847=>1,1403638578=>1,1403649575=>1,1403800490=>1,1403764521=>1,1403570380=>1,1403500900=>1,1403242920=>1,1403211203=>1,1403395596=>1,1403472098=>1,1403500835=>1,1403474490=>1,1403818003=>1,1403972222=>1,1406238111=>1,1406215058=>1,1406243359=>1,1406260262=>1,1406271241=>1,1406271118=>1,1406214908=>1,1406214190=>1,1405237445=>1,1404003458=>1,1405625833=>1,1406197329=>1,1406212539=>1,1403178308=>1,1403177872=>1,1402073575=>1,1401973050=>1,1402095542=>1,1402101492=>1,1402306444=>1,1402134922=>1,1401902053=>1,1401888518=>1,1401856006=>1,1401799636=>1,1401873506=>1,1401887532=>1,1401888515=>1,1401887534=>1,1402342347=>1,1402350373=>1,1403137818=>1,1403126383=>1,1403171395=>1,1403173988=>1,1403177654=>1,1403176764=>1,1403116258=>1,1403030455=>1,1402635051=>1,1402360442=>1,1402698134=>1,1402740685=>1,1403019107=>1,1406377817=>1,1406427319=>1,1407610850=>1,1407481499=>1,1407630491=>1,1407652389=>1,1407778931=>1,1407656641=>1,1407479274=>1,1407475020=>1,1407124371=>1,1407090355=>1,1407126184=>1,1407126190=>1,1407439620=>1,1407335092=>1,1407779929=>1,1407780457=>1,1407812307=>1,1407809418=>1,1407820260=>1,1407834711=>1,1408028750=>1,1407835118=>1,1407807762=>1,1407805792=>1,1407792423=>1,1407781868=>1,1407792469=>1,1407798238=>1,1407805761=>1,1407081725=>1,1407045849=>1,1406432224=>1,1406431621=>1,1406432292=>1,1406432652=>1,1406445754=>1,1406432865=>1,1406429584=>1,1406429329=>1,1406427549=>1,1406427342=>1,1406427972=>1,1406428260=>1,1406429308=>1,1406428690=>1,1406692947=>1,1406698449=>1,1406970751=>1,1406970558=>1,1406971067=>1,1406974124=>1,1407044617=>1,1407035022=>1,1406861700=>1,1406837278=>1,1406785164=>1,1406732733=>1,1406830315=>1,1406830316=>1,1406830317=>1,1416755064=>1,1416758070=>1,1425978300=>1,1425759141=>1,1426109659=>1,1426169906=>1,1426384210=>1,1426338162=>1,1425702149=>1,1425693994=>1,1425655782=>1,1425626431=>1,1425657874=>1,1425661862=>1,1425677479=>1,1425674841=>1,1426392356=>1,1426516206=>1,1426770759=>1,1426770519=>1,1426772789=>1,1426774951=>1,1426831454=>1,1426780410=>1,1426770223=>1,1426769644=>1,1426686282=>1,1426598785=>1,1426724273=>1,1426732378=>1,1426768908=>1,1426768905=>1,1425622132=>1,1425622038=>1,1424773407=>1,1424758772=>1,1424856747=>1,1424928204=>1,1425030378=>1,1424941541=>1,1424492006=>1,1424430826=>1,1423692622=>1,1423682876=>1,1423703015=>1,1424100635=>1,1424179108=>1,1424121918=>1,1425083901=>1,1425088425=>1,1425493437=>1,1425345669=>1,1425512874=>1,1425519166=>1,1425566678=>1,1425539447=>1,1425285085=>1,1425196045=>1,1425096338=>1,1425094406=>1,1425096980=>1,1425113210=>1,1425163757=>1,1426918756=>1,1426918910=>1,1427764932=>1,1427753246=>1,1427767180=>1,1427797420=>1,1427931241=>1,1427906276=>1,1427751885=>1,1427751441=>1,1427728247=>1,1427728197=>1,1427731928=>1,1427735194=>1,1427748944=>1,1427740065=>1,1427998870=>1,1428004022=>1,1428839166=>1,1428142845=>1,1428933054=>1,1429233326=>1,1430537905=>1,1401750068=>1,1428142756=>1,1428136286=>1,1428042152=>1,1428042062=>1,1428065990=>1,1428112638=>1,1428120930=>1,1427727507=>1,1427720897=>1,1427221579=>1,1427219628=>1,1427222857=>1,1427224560=>1,1427232433=>1,1427227316=>1,1427219621=>1,1427215590=>1,1427091679=>1,1427010470=>1,1427181324=>1,1427206176=>1,1427209068=>1,1427206307=>1,1427234694=>1,1427241386=>1,1427682504=>1,1427677809=>1,1427684568=>1,1427691381=>1,1427713165=>1,1427699818=>1,1427673401=>1,1427672589=>1,1427435890=>1,1427241395=>1,1427455806=>1,1427584185=>1,1427633043=>1,1423680165=>1,1423674898=>1,1419403740=>1,1419380343=>1,1419521423=>1,1419528294=>1,1419723617=>1,1419529535=>1,1419378810=>1,1419238762=>1,1418754505=>1,1418747266=>1,1418948639=>1,1418951408=>1,1419236495=>1,1419147832=>1,1419827448=>1,1420116001=>1,1420968550=>1,1420852182=>1,1420969980=>1,1421001809=>1,1421085554=>1,1421001996=>1,1420850141=>1,1420845428=>1,1420516312=>1,1420512229=>1,1420663589=>1,1420751156=>1,1420756022=>1,1418719780=>1,1418556840=>1,1417732983=>1,1417732261=>1,1417733363=>1,1417733746=>1,1417734974=>1,1417734646=>1,1417507499=>1,1417308424=>1,1416876362=>1,1416831992=>1,1417066393=>1,1417118869=>1,1417206824=>1,1417127109=>1,1417734985=>1,1417735253=>1,1417945847=>1,1417740259=>1,1417952107=>1,1417996494=>1,1418281523=>1,1418085547=>1,1417739659=>1,1417739026=>1,1417735498=>1,1417735497=>1,1417736513=>1,1417737724=>1,1417738264=>1,1421086721=>1,1421109835=>1,1422965496=>1,1422961405=>1,1423000975=>1,1423072207=>1,1423219114=>1,1423074440=>1,1422931869=>1,1422676914=>1,1422522138=>1,1422446112=>1,1422540373=>1,1422556232=>1,1422565429=>1,1422563216=>1,1423272527=>1,1423298486=>1,1423504025=>1,1423500640=>1,1423506142=>1,1423506208=>1,1423510724=>1,1423510581=>1,1423493625=>1,1423464790=>1,1423377391=>1,1423336761=>1,1423415643=>1,1423448528=>1,1423455012=>1,1422431688=>1,1422424680=>1,1421747222=>1,1421567188=>1,1421748044=>1,1422091935=>1,1422112572=>1,1422109759=>1,1421344083=>1,1421341684=>1,1421237841=>1,1421195756=>1,1421298058=>1,1421303173=>1,1421337863=>1,1421335976=>1,1422124470=>1,1422129260=>1,1422407714=>1,1422404847=>1,1422412270=>1,1422413299=>1,1422420553=>1,1422414499=>1,1422397134=>1,1422395599=>1,1422176098=>1,1422142246=>1,1422233173=>1,1422395425=>1,1422395567=>1,1430711269=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-15.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1467468544=>1467468799,1467346496=>1467346559,1441652224=>1441652479,1441645824=>1441646079,1494396043=>1,1494396016=>1,1494396201=>1,1494396502=>1,1494462582=>1,1494396004=>1,1494372487=>1,1494265316=>1,1494195177=>1,1494266014=>1,1494295914=>1,1494463519=>1,1494395958=>1,1494568838=>1,1494744455=>1,1494638906=>1,1494825726=>1,1494857654=>1,1494894470=>1,1494863935=>1,1494638639=>1,1494605546=>1,1494601190=>1,1494194572=>1,1494601457=>1,1494603325=>1,1494605511=>1,1494603379=>1,1494466817=>1,1494107337=>1,1491195488=>1,1490660321=>1,1491200158=>1,1491396651=>1,1492582930=>1,1492339399=>1,1490652981=>1,1490650626=>1,1490472793=>1,1490302517=>1,1490481704=>1,1490504602=>1,1490617218=>1,1490616767=>1,1492653900=>1,1492675525=>1,1493114658=>1,1493042829=>1,1493142081=>1,1493144600=>1,1493223927=>1,1493215853=>1,1492843229=>1,1492830635=>1,1492761069=>1,1492696676=>1,1492774807=>1,1492784191=>1,1492814276=>1,1494955036=>1,1495007594=>1,1495826246=>1,1495825999=>1,1495826278=>1,1495840107=>1,1495904781=>1,1495886435=>1,1495825853=>1,1495825567=>1,1495822515=>1,1495822420=>1,1495823971=>1,1495825436=>1,1495825448=>1,1495825444=>1,1496124149=>1,1496130452=>1,1496237140=>1,1496212918=>1,1497483590=>1,1497484577=>1,1497601284=>1,1497563452=>1,1496212917=>1,1496212642=>1,1496204898=>1,1496180745=>1,1496206024=>1,1496207278=>1,1496212551=>1,1496212493=>1,1495811989=>1,1495740418=>1,1495280741=>1,1495236690=>1,1495302063=>1,1495328294=>1,1495398002=>1,1495330678=>1,1495228584=>1,1495218437=>1,1495017261=>1,1490297485=>1,1495038387=>1,1495045781=>1,1495079196=>1,1495045862=>1,1495407227=>1,1495461131=>1,1495538240=>1,1495511656=>1,1495585453=>1,1495586637=>1,1495701001=>1,1495629831=>1,1495503630=>1,1495503385=>1,1495461221=>1,1495461132=>1,1495467676=>1,1495476075=>1,1495486492=>1,1494957684=>1,1490199429=>1,1487381390=>1,1487351004=>1,1487425932=>1,1487467095=>1,1487983492=>1,1487975431=>1,1487000665=>1,1486998318=>1,1486859509=>1,1486851311=>1,1486859754=>1,1486863726=>1,1486878064=>1,1486870397=>1,1488082634=>1,1488235839=>1,1488957116=>1,1488900100=>1,1488966689=>1,1489042705=>1,1489215024=>1,1489104273=>1,1488877288=>1,1488877151=>1,1488558982=>1,1488354461=>1,1488589324=>1,1488681050=>1,1488834101=>1,1488709915=>1,1486846994=>1,1486845084=>1,1486017098=>1,1485382571=>1,1486021623=>1,1486059974=>1,1486210521=>1,1486060034=>1,1485254993=>1,1485161340=>1,1484951189=>1,1484948191=>1,1485048392=>1,1485153071=>1,1485160737=>1,1485157868=>1,1486216483=>1,1486217601=>1,1486834771=>1,1486834601=>1,1486834781=>1,1486835339=>1,1486836724=>1,1486835619=>1,1486833209=>1,1486832769=>1,1486447099=>1,1486236228=>1,1486463202=>1,1486826398=>1,1486826400=>1,1489231580=>1,1489239670=>1,1489607301=>1,1489604913=>1,1489792278=>1,1489800922=>1,1489918479=>1,1489819258=>1,1489520996=>1,1489478802=>1,1489446397=>1,1489435931=>1,1489478789=>1,1489478796=>1,1489478798=>1,1489478797=>1,1490014757=>1,1490057550=>1,1490198269=>1,1490198229=>1,1490199325=>1,1490199377=>1,1497676739=>1,1490199393=>1,1490198205=>1,1490170023=>1,1490079778=>1,1490076058=>1,1490085085=>1,1490085111=>1,1490089226=>1,1489435917=>1,1489425411=>1,1489384502=>1,1489384293=>1,1489384653=>1,1489385612=>1,1489399189=>1,1489388986=>1,1489382545=>1,1489380388=>1,1489371747=>1,1489300525=>1,1489372675=>1,1489373456=>1,1489376004=>1,1489374123=>1,1489399269=>1,1489399448=>1,1489413339=>1,1489412964=>1,1489420444=>1,1489420889=>1,1489424350=>1,1489421594=>1,1489412963=>1,1489409800=>1,1489399671=>1,1489399490=>1,1489401154=>1,1489401797=>1,1489403233=>1,1490199437=>1,1497795993=>1,1512496016=>1,1512493553=>1,1512973799=>1,1513322366=>1,1514134155=>1,1513796664=>1,1512386294=>1,1512166391=>1,1509993106=>1,1509972489=>1,1510007729=>1,1510458380=>1,1511785528=>1,1511352935=>1,1514216283=>1,1514235510=>1,1518165564=>1,1517612052=>1,1518263064=>1,1518323781=>1,1519526558=>1,1519509194=>1,1517326247=>1,1517218210=>1,1514324235=>1,1514248397=>1,1515079283=>1,1516780357=>1,1516803775=>1,1516786045=>1,1509961111=>1,1509943406=>1,1508789508=>1,1508617889=>1,1508792773=>1,1508814065=>1,1508893711=>1,1508868246=>1,1508617888=>1,1508548094=>1,1507538519=>1,1507530641=>1,1507680218=>1,1507978132=>1,1508543752=>1,1508324389=>1,1509345525=>1,1509348884=>1,1509609411=>1,1509577333=>1,1509687948=>1,1509692624=>1,1509880944=>1,1509744328=>1,1509541195=>1,1509524901=>1,1509466386=>1,1509455592=>1,1509466803=>1,1509467805=>1,1509468288=>1,1519572879=>1,1519650149=>1,1522367361=>1,1522331133=>1,1522823795=>1,1523885048=>1,1524169909=>1,1524162071=>1,1522294734=>1,1522065014=>1,1521872004=>1,1521605842=>1,1521915946=>1,1521975097=>1,1522044640=>1,1522022469=>1,1524295855=>1,1524646963=>1,1525127327=>1,1525124785=>1,1526748211=>1,1526749872=>1,1527017488=>1,1526874282=>1,1525063313=>1,1525056588=>1,1524715573=>1,1524711508=>1,1524715739=>1,1524806279=>1,1524943519=>1,1521216112=>1,1520293734=>1,1519663857=>1,1519663045=>1,1519665571=>1,1519665578=>1,1519666613=>1,1519666377=>1,1519661925=>1,1519660721=>1,1519654275=>1,1519653306=>1,1519654620=>1,1519655823=>1,1519659986=>1,1519657404=>1,1519669137=>1,1519669281=>1,1519720764=>1,1519679937=>1,1519878747=>1,1520074515=>1,1520113626=>1,1520075158=>1,1519679765=>1,1519673940=>1,1519669449=>1,1519669417=>1,1519671299=>1,1519673270=>1,1519673935=>1,1507530617=>1,1507513962=>1,1502377852=>1,1502377750=>1,1502377918=>1,1502377925=>1,1502377963=>1,1502377940=>1,1502367663=>1,1502318917=>1,1501942474=>1,1501942471=>1,1501950558=>1,1502050561=>1,1502129047=>1,1502056534=>1,1503370192=>1,1503374894=>1,1503888972=>1,1503888590=>1,1503889250=>1,1503890600=>1,1503907845=>1,1503894414=>1,1503887426=>1,1503887417=>1,1503588085=>1,1503552320=>1,1503676846=>1,1503679626=>1,1503681242=>1,1503680305=>1,1501919732=>1,1501880826=>1,1499329132=>1,1499326846=>1,1499601092=>1,1499601890=>1,1499699999=>1,1499651148=>1,1499264499=>1,1498748476=>1,1497866526=>1,1484309818=>1,1497968238=>1,1498191317=>1,1498697390=>1,1498253486=>1,1499700101=>1,1499734397=>1,1500268321=>1,1500214009=>1,1500292539=>1,1500319025=>1,1500451908=>1,1500393482=>1,1500128947=>1,1500092279=>1,1499892858=>1,1499846358=>1,1499959928=>1,1499995495=>1,1500090548=>1,1503908329=>1,1503910182=>1,1505740789=>1,1505652225=>1,1505745153=>1,1506344085=>1,1506616501=>1,1506612725=>1,1505602660=>1,1505582994=>1,1505464016=>1,1505362251=>1,1505464145=>1,1505464442=>1,1505570875=>1,1505521106=>1,1506616537=>1,1506616771=>1,1507469002=>1,1507292814=>1,1507469031=>1,1507479002=>1,1507480650=>1,1507479702=>1,1507099358=>1,1506806438=>1,1506617142=>1,1506617077=>1,1506622838=>1,1506761929=>1,1506771350=>1,1505298428=>1,1505180388=>1,1503917493=>1,1503917428=>1,1503917496=>1,1503917867=>1,1503987041=>1,1503917928=>1,1503915309=>1,1503914915=>1,1503910255=>1,1503910228=>1,1503910732=>1,1503912123=>1,1503912376=>1,1503912148=>1,1503996508=>1,1504063361=>1,1504911777=>1,1504742590=>1,1504933797=>1,1504935804=>1,1505175993=>1,1504964977=>1,1504648099=>1,1504562697=>1,1504113321=>1,1504107451=>1,1504114531=>1,1504254788=>1,1504258987=>1,1497781322=>1,1484063357=>1,1457401075=>1,1457248616=>1,1457405327=>1,1458472176=>1,1458925548=>1,1458743922=>1,1456772487=>1,1455845694=>1,1454862274=>1,1454652409=>1,1454901053=>1,1455197940=>1,1455267739=>1,1455212820=>1,1459006514=>1,1459439045=>1,1460724844=>1,1460464103=>1,1460724860=>1,1460724904=>1,1460781170=>1,1460725206=>1,1460124872=>1,1460124855=>1,1459700210=>1,1459453316=>1,1459748832=>1,1459971354=>1,1460124779=>1,1460066263=>1,1454652188=>1,1453206510=>1,1450152130=>1,1449881312=>1,1450725209=>1,1450799114=>1,1450936809=>1,1450915004=>1,1449881249=>1,1449881208=>1,1449660175=>1,1449637388=>1,1449776258=>1,1449822470=>1,1449881170=>1,1449864482=>1,1451091506=>1,1451103949=>1,1452466036=>1,1452362532=>1,1452610951=>1,1452695886=>1,1452930351=>1,1452766414=>1,1452179588=>1,1451831565=>1,1451131160=>1,1451131159=>1,1451179914=>1,1451733227=>1,1451776437=>1,1460854672=>1,1460858154=>1,1466079813=>1,1466073272=>1,1466082043=>1,1466084088=>1,1466086886=>1,1466085949=>1,1465683119=>1,1465680685=>1,1465649480=>1,1464964157=>1,1465651484=>1,1465659040=>1,1465670251=>1,1465668172=>1,1466087685=>1,1466096020=>1,1466429304=>1,1466396102=>1,1466565476=>1,1466565664=>1,1466568351=>1,1466566275=>1,1466234520=>1,1466229765=>1,1466104542=>1,1466100089=>1,1466104564=>1,1466105172=>1,1466124610=>1,1464842146=>1,1464819607=>1,1460917858=>1,1460867798=>1,1460917901=>1,1460920424=>1,1462774471=>1,1461046362=>1,1460858457=>1,1460858357=>1,1460858174=>1,1460858158=>1,1460858197=>1,1460858206=>1,1460858315=>1,1460858213=>1,1463591295=>1,1463835187=>1,1464738478=>1,1464601774=>1,1464754840=>1,1464768248=>1,1464815454=>1,1464788608=>1,1464423501=>1,1464397755=>1,1463984007=>1,1463980025=>1,1464355303=>1,1464358361=>1,1464395857=>1,1449636660=>1,1449552534=>1,1440922761=>1,1440922596=>1,1440977847=>1,1440988990=>1,1441001441=>1,1440999372=>1,1440916755=>1,1440909729=>1,1440757330=>1,1440613510=>1,1440842387=>1,1440881525=>1,1440904510=>1,1440904358=>1,1441040364=>1,1441054983=>1,1441157776=>1,1441142104=>1,1441164467=>1,1441164577=>1,1441183304=>1,1441165052=>1,1441133829=>1,1441123198=>1,1441064367=>1,1441055688=>1,1441071592=>1,1441095534=>1,1441108725=>1,1440612581=>1,1440385087=>1,1440113391=>1,1440111021=>1,1440114153=>1,1440114988=>1,1440117718=>1,1440115263=>1,1440108793=>1,1440107637=>1,1440100065=>1,1440099500=>1,1440103984=>1,1440105577=>1,1440106796=>1,1440105803=>1,1440119976=>1,1440120569=>1,1440140960=>1,1440139836=>1,1440141019=>1,1440142220=>1,1440149727=>1,1440148687=>1,1440139332=>1,1440128028=>1,1440121668=>1,1440121031=>1,1440125661=>1,1440126792=>1,1440126952=>1,1441185126=>1,1441506410=>1,1446737752=>1,1446737747=>1,1446824528=>1,1446922025=>1,1446933931=>1,1446929923=>1,1446712827=>1,1446712739=>1,1445392437=>1,1445070799=>1,1446634318=>1,1446644741=>1,1446712614=>1,1446653656=>1,1447442680=>1,1447466249=>1,1448521022=>1,1448209166=>1,1448601162=>1,1448616135=>1,1449424428=>1,1448964786=>1,1447661461=>1,1447466726=>1,1447466501=>1,1447466468=>1,1447466536=>1,1447466635=>1,1447466644=>1,1444794483=>1,1444672151=>1,1441759203=>1,1441690443=>1,1441968600=>1,1442083522=>1,1442242193=>1,1442210429=>1,1441686672=>1,1441609973=>1,1441528408=>1,1441525269=>1,1441532923=>1,1441536274=>1,1441607309=>1,1441537658=>1,1442346072=>1,1442374563=>1,1443568866=>1,1443335199=>1,1444279170=>1,1444349152=>1,1444504605=>1,1444429709=>1,1443157858=>1,1443049359=>1,1442374565=>1,1442374564=>1,1442536271=>1,1442643191=>1,1443015362=>1,1466568911=>1,1466569229=>1,1476473642=>1,1476441542=>1,1476807568=>1,1476807660=>1,1476927696=>1,1476821098=>1,1476391403=>1,1476387141=>1,1475988839=>1,1475721452=>1,1476103261=>1,1476134307=>1,1476347620=>1,1476322534=>1,1477022619=>1,1477290110=>1,1481075724=>1,1481069483=>1,1481091122=>1,1481097831=>1,1481263524=>1,1481219589=>1,1481003856=>1,1480950657=>1,1477855265=>1,1477737407=>1,1478178914=>1,1478835028=>1,1480742034=>1,1480215740=>1,1475655097=>1,1475589572=>1,1474172553=>1,1474160751=>1,1474351859=>1,1474565461=>1,1474685898=>1,1474649894=>1,1474000710=>1,1473969385=>1,1472603112=>1,1472319502=>1,1472799515=>1,1473001603=>1,1473817523=>1,1473158363=>1,1474695156=>1,1474697621=>1,1475139411=>1,1475139400=>1,1475139569=>1,1475209887=>1,1475453423=>1,1475415150=>1,1475139358=>1,1475138475=>1,1475091355=>1,1474765197=>1,1475133975=>1,1475134263=>1,1475134393=>1,1481265121=>1,1481339356=>1,1482265807=>1,1482219766=>1,1482279135=>1,1482621587=>1,1482643687=>1,1482632043=>1,1482115144=>1,1481894304=>1,1481762650=>1,1481692861=>1,1481792765=>1,1481812124=>1,1481838243=>1,1481813229=>1,1482652182=>1,1482652511=>1,1483990412=>1,1483938828=>1,1484025566=>1,1484057550=>1,1484089471=>1,1440094140=>1,1483840390=>1,1483693492=>1,1482659872=>1,1482657499=>1,1482660039=>1,1482771967=>1,1483612452=>1,1481643532=>1,1481642948=>1,1481478182=>1,1481476566=>1,1481478503=>1,1481479147=>1,1481479748=>1,1481479399=>1,1481458416=>1,1481393361=>1,1481340732=>1,1481340091=>1,1481381789=>1,1481382730=>1,1481392707=>1,1481382805=>1,1481479904=>1,1481479907=>1,1481496096=>1,1481494882=>1,1481496688=>1,1481543450=>1,1481642071=>1,1481639685=>1,1481494164=>1,1481493487=>1,1481488192=>1,1481481914=>1,1481488478=>1,1481489728=>1,1481491115=>1,1472312302=>1,1472032876=>1,1467911823=>1,1467815447=>1,1467923319=>1,1468033010=>1,1468296664=>1,1468035006=>1,1467735049=>1,1467731466=>1,1467547271=>1,1467491598=>1,1467547336=>1,1467559589=>1,1467708292=>1,1467561193=>1,1468300186=>1,1468715968=>1,1469062841=>1,1469059636=>1,1469160881=>1,1469177100=>1,1469318699=>1,1469251767=>1,1468953753=>1,1468949347=>1,1468735961=>1,1468718658=>1,1468762883=>1,1468874878=>1,1468926743=>1,1467464305=>1,1467464280=>1,1466600472=>1,1466580140=>1,1466602767=>1,1466618092=>1,1466823754=>1,1466628470=>1,1466578822=>1,1466576830=>1,1466570061=>1,1466569974=>1,1466570353=>1,1466572986=>1,1466576527=>1,1466575640=>1,1466857742=>1,1466869011=>1,1467374635=>1,1467372790=>1,1467375331=>1,1467376315=>1,1467380963=>1,1467376694=>1,1467372725=>1,1467372589=>1,1466908679=>1,1466899911=>1,1467119876=>1,1467149388=>1,1467180645=>1,1469318770=>1,1469319386=>1,1471745619=>1,1471745228=>1,1471745653=>1,1471745773=>1,1471746329=>1,1471746210=>1,1471744728=>1,1471744580=>1,1471743258=>1,1471742984=>1,1471743986=>1,1471744099=>1,1471744562=>1,1471744333=>1,1471746526=>1,1471746830=>1,1471750088=>1,1471749481=>1,1471770896=>1,1471774029=>1,1471970420=>1,1471920721=>1,1471748752=>1,1471748731=>1,1471747392=>1,1471746857=>1,1471747410=>1,1471747513=>1,1471747725=>1,1471742785=>1,1471701206=>1,1470126648=>1,1470125729=>1,1470132424=>1,1470254545=>1,1470456606=>1,1470344226=>1,1470079049=>1,1470074631=>1,1469319815=>1,1469319631=>1,1469502650=>1,1469654150=>1,1469908778=>1,1469876562=>1,1470511805=>1,1470585654=>1,1471517661=>1,1471436628=>1,1471537870=>1,1471542179=>1,1471567229=>1,1471543527=>1,1471075387=>1,1471072660=>1,1470798638=>1,1470794145=>1,1470857898=>1,1470890204=>1,1470890661=>1,1484246062=>1,);?>
1
+ <?php return array(1540958722=>1540958723,1540566346=>1540566347,1508617888=>1508617889,1489478796=>1489478797,1529663371=>1,1529665134=>1,1529734425=>1,1529864507=>1,1529663116=>1,1529728966=>1,1529659730=>1,1529335710=>1,1528879217=>1,1529427833=>1,1529561437=>1,1529867245=>1,1529662827=>1,1529886935=>1,1530126631=>1,1530126401=>1,1530127618=>1,1530127892=>1,1530128456=>1,1530127949=>1,1530126365=>1,1530107435=>1,1529887031=>1,1528875346=>1,1529887691=>1,1529897540=>1,1530093013=>1,1529903464=>1,1529881041=>1,1528198665=>1,1524806279=>1,1524715739=>1,1524943519=>1,1525056588=>1,1525124785=>1,1525063313=>1,1524715573=>1,1524711508=>1,1523885048=>1,1523706265=>1,1524162071=>1,1524295855=>1,1524692074=>1,1524646963=>1,1525127327=>1,1526748211=>1,1527721623=>1,1527667307=>1,1527772771=>1,1527928223=>1,1530128627=>1,1528120717=>1,1527665284=>1,1527640518=>1,1526874398=>1,1526749872=>1,1527073883=>1,1527228218=>1,1527635885=>1,1527606326=>1,1528874119=>1,1530132449=>1,1532161407=>1,1531690622=>1,1532561162=>1,1532579965=>1,1532622342=>1,1532586404=>1,1531566350=>1,1531500676=>1,1531013952=>1,1531003696=>1,1531020981=>1,1531021827=>1,1531038808=>1,1531035970=>1,1532783886=>1,1532783925=>1,1533179570=>1,1533173789=>1,1533182032=>1,1533185189=>1,1533187070=>1,1533185877=>1,1533167480=>1,1533166944=>1,1533105160=>1,1533095253=>1,1533155075=>1,1533157276=>1,1533160395=>1,1531001409=>1,1530992484=>1,1530394121=>1,1530329839=>1,1530611505=>1,1530612951=>1,1530615393=>1,1530613066=>1,1530321074=>1,1530285602=>1,1530132747=>1,1523539098=>1,1530133373=>1,1530210085=>1,1530232333=>1,1530215093=>1,1530615519=>1,1530615538=>1,1530941478=>1,1530934913=>1,1530943348=>1,1530943635=>1,1530985356=>1,1530970762=>1,1530903467=>1,1530893951=>1,1530617778=>1,1530617523=>1,1530617823=>1,1530640559=>1,1530741172=>1,1530131203=>1,1522367361=>1,1513244593=>1,1512496016=>1,1513322366=>1,1513796664=>1,1514121023=>1,1513879487=>1,1512386294=>1,1511785528=>1,1509961111=>1,1509943406=>1,1509972489=>1,1510007729=>1,1511352935=>1,1510363223=>1,1514134155=>1,1514216283=>1,1517029313=>1,1516967663=>1,1517218210=>1,1517326247=>1,1517870406=>1,1517374122=>1,1516803775=>1,1516786045=>1,1514248397=>1,1514235510=>1,1514324235=>1,1515079283=>1,1516780357=>1,1509744328=>1,1509692624=>1,1508543752=>1,1508324389=>1,1508548094=>1,1508789508=>1,1508814065=>1,1508792773=>1,1507978132=>1,1507780908=>1,1507479702=>1,1507479002=>1,1507480650=>1,1507530617=>1,1507680218=>1,1507530641=>1,1508893711=>1,1509229685=>1,1509524901=>1,1509468288=>1,1509541195=>1,1509577333=>1,1509687948=>1,1509609411=>1,1509467805=>1,1509466803=>1,1509336368=>1,1509284374=>1,1509336802=>1,1509455592=>1,1509466386=>1,1518165564=>1,1518263064=>1,1519679765=>1,1519676058=>1,1519679937=>1,1519815539=>1,1520074515=>1,1519878747=>1,1519673935=>1,1519673885=>1,1519669582=>1,1519669449=>1,1519669722=>1,1519671299=>1,1519673270=>1,1519671395=>1,1520075158=>1,1520113626=>1,1522065014=>1,1522044640=>1,1522069294=>1,1522294734=>1,1533209340=>1,1522331133=>1,1522022469=>1,1521975097=>1,1521216112=>1,1520293734=>1,1521605842=>1,1521872004=>1,1521915946=>1,1519669417=>1,1519669281=>1,1519653306=>1,1519652837=>1,1519654275=>1,1519654620=>1,1519655823=>1,1519655721=>1,1519651905=>1,1519651769=>1,1519509194=>1,1518323781=>1,1519526558=>1,1519572879=>1,1519650659=>1,1519650149=>1,1519656459=>1,1519657404=>1,1519664978=>1,1519664384=>1,1519665048=>1,1519665571=>1,1519666627=>1,1519665578=>1,1519663857=>1,1519663045=>1,1519660303=>1,1519658931=>1,1519660721=>1,1519661373=>1,1519661925=>1,1522823795=>1,1533218713=>1,1539970686=>1,1539951460=>1,1539972045=>1,1539975283=>1,1540001806=>1,1539998043=>1,1539910139=>1,1539894056=>1,1539602844=>1,1539565085=>1,1539630658=>1,1539682027=>1,1539883029=>1,1539806603=>1,1540031890=>1,1540031909=>1,1540499605=>1,1540367273=>1,1540510914=>1,1540515931=>1,1540583425=>1,1540582150=>1,1540294483=>1,1540263494=>1,1540084805=>1,1540072762=>1,1540084848=>1,1540124763=>1,1540205906=>1,1540124886=>1,1539565071=>1,1539562565=>1,1539012005=>1,1539011901=>1,1539013321=>1,1539074943=>1,1539079552=>1,1539077338=>1,1539010116=>1,1538924604=>1,1538521560=>1,1538472362=>1,1538577748=>1,1538749231=>1,1538918550=>1,1538781145=>1,1539118394=>1,1539122216=>1,1539366214=>1,1539306069=>1,1539463783=>1,1539509402=>1,1539546506=>1,1539509437=>1,1539303862=>1,1539299012=>1,1539158081=>1,1539122867=>1,1539159723=>1,1539199954=>1,1539208525=>1,1540583672=>1,1540583681=>1,1541139592=>1,1541139587=>1,1541139622=>1,1541139674=>1,1541139688=>1,1541139678=>1,1541135511=>1,1541086702=>1,1541086419=>1,1541086307=>1,1541086525=>1,1541086606=>1,1541086652=>1,1541086621=>1,1541139731=>1,1541139829=>1,1541269842=>1,1541230262=>1,1541272065=>1,1541386229=>1,1541444897=>1,1541444873=>1,1541227228=>1,1541200901=>1,1541139956=>1,1541139941=>1,1541140045=>1,1541140189=>1,1541140316=>1,1541086293=>1,1541082322=>1,1540594979=>1,1540588702=>1,1540687936=>1,1540687956=>1,1540687999=>1,1540687961=>1,1540586837=>1,1540585265=>1,1540584193=>1,1540583937=>1,1540584641=>1,1540584646=>1,1540585256=>1,1540585251=>1,1540688107=>1,1540688108=>1,1540830593=>1,1540803472=>1,1540901073=>1,1540958724=>1,1541065531=>1,1540999713=>1,1540798714=>1,1540797188=>1,1540745532=>1,1540701079=>1,1540745610=>1,1540784302=>1,1540794608=>1,1538266406=>1,1537133026=>1,1534680460=>1,1534678402=>1,1534680480=>1,1534680615=>1,1534684224=>1,1534683779=>1,1534678153=>1,1534678108=>1,1534676143=>1,1534670344=>1,1534676172=>1,1534676175=>1,1534677529=>1,1534677108=>1,1534684750=>1,1534685510=>1,1534696977=>1,1534696225=>1,1534697252=>1,1534697359=>1,1534697605=>1,1534697478=>1,1534694209=>1,1534693978=>1,1534687687=>1,1534686242=>1,1534690356=>1,1534691460=>1,1534693664=>1,1534668471=>1,1534664307=>1,1533483706=>1,1533306820=>1,1533714398=>1,1533719604=>1,1533720602=>1,1533719691=>1,1533277544=>1,1533259512=>1,1507469031=>1,1533215485=>1,1533220734=>1,1533223953=>1,1533257426=>1,1533257105=>1,1533722233=>1,1533722257=>1,1534423642=>1,1534317995=>1,1534553722=>1,1534656788=>1,1534662500=>1,1534660675=>1,1534244865=>1,1534199094=>1,1533851418=>1,1533838330=>1,1533851442=>1,1533859708=>1,1533877624=>1,1534699160=>1,1534700407=>1,1536039944=>1,1536039686=>1,1536054454=>1,1536107050=>1,1536119004=>1,1536114163=>1,1536037705=>1,1535815041=>1,1535579306=>1,1535570016=>1,1535681666=>1,1535775772=>1,1535788854=>1,1535775785=>1,1536121725=>1,1536121742=>1,1536536019=>1,1536326189=>1,1536667735=>1,1536780337=>1,1536913125=>1,1536900832=>1,1536325891=>1,1536231394=>1,1536186569=>1,1536143063=>1,1536207010=>1,1536207391=>1,1536209403=>1,1535569063=>1,1535565791=>1,1534707101=>1,1534706601=>1,1534708824=>1,1534730159=>1,1534734314=>1,1534732930=>1,1534706564=>1,1534706209=>1,1534701657=>1,1534700986=>1,1534702171=>1,1534703703=>1,1534706182=>1,1534705818=>1,1534747661=>1,1534778004=>1,1535545257=>1,1535544665=>1,1535549428=>1,1535563171=>1,1535564228=>1,1535564187=>1,1535543052=>1,1535512952=>1,1534839019=>1,1534811772=>1,1534929706=>1,1535035375=>1,1535508762=>1,1533214752=>1,1507292814=>1,1488082634=>1,1487975431=>1,1488100926=>1,1488235839=>1,1488558982=>1,1488354461=>1,1487698061=>1,1487536527=>1,1487000665=>1,1486998318=>1,1487351004=>1,1487381390=>1,1487467095=>1,1487425932=>1,1488589324=>1,1488681050=>1,1489104273=>1,1489042705=>1,1489209459=>1,1489215024=>1,1489300525=>1,1489231580=>1,1488966689=>1,1488957116=>1,1488834101=>1,1488709915=>1,1488859465=>1,1488877151=>1,1488900100=>1,1488877288=>1,1486966504=>1,1486878064=>1,1486639014=>1,1486465505=>1,1486826398=>1,1486826400=>1,1486833209=>1,1486832769=>1,1486463202=>1,1486447099=>1,1486210521=>1,1486210219=>1,1486216483=>1,1486236228=>1,1486387967=>1,1486313618=>1,1486834601=>1,1486834639=>1,1486859509=>1,1486851311=>1,1486859754=>1,1486863726=>1,1486870397=>1,1486869488=>1,1486846994=>1,1486845084=>1,1486834781=>1,1486834771=>1,1486835339=>1,1486835619=>1,1486836724=>1,1489371747=>1,1489371762=>1,1489800922=>1,1489792278=>1,1489819258=>1,1489918479=>1,1490057550=>1,1490014757=>1,1489604913=>1,1489520996=>1,1489446397=>1,1489435931=>1,1489478789=>1,1489478798=>1,1489481193=>1,1489478802=>1,1490076058=>1,1490079778=>1,1490199377=>1,1490199325=>1,1490199393=>1,1490199429=>1,1490199437=>1,1490199433=>1,1490198269=>1,1490198229=>1,1490085111=>1,1490085085=>1,1490089226=>1,1490170023=>1,1490198205=>1,1489435917=>1,1489427569=>1,1489385612=>1,1489384653=>1,1489388986=>1,1489399189=>1,1489399448=>1,1489399269=>1,1489384502=>1,1489384293=>1,1489373456=>1,1489372675=>1,1489374123=>1,1489376004=>1,1489382545=>1,1489380388=>1,1489399490=>1,1489399671=>1,1489420444=>1,1489413339=>1,1489420889=>1,1489421594=>1,1489425411=>1,1489424350=>1,1489412964=>1,1489412963=>1,1489401154=>1,1489400592=>1,1489401797=>1,1489403233=>1,1489409800=>1,1486060034=>1,1486059974=>1,1480215740=>1,1478835028=>1,1480742034=>1,1480828776=>1,1481003856=>1,1480852266=>1,1477855265=>1,1477829221=>1,1476927696=>1,1476821098=>1,1477022619=>1,1477290110=>1,1477737407=>1,1477486782=>1,1481068826=>1,1481097831=>1,1481392707=>1,1481392349=>1,1481393361=>1,1481476566=>1,1481478503=>1,1481478182=>1,1481382805=>1,1481381789=>1,1481265121=>1,1481137612=>1,1481339356=>1,1481340091=>1,1481342298=>1,1481340732=>1,1476807660=>1,1476807568=>1,1475138475=>1,1475134393=>1,1475139358=>1,1475139400=>1,1475139569=>1,1475139411=>1,1475134263=>1,1475133975=>1,1474649894=>1,1474565461=>1,1474685898=>1,1474695156=>1,1474765197=>1,1474697621=>1,1475209887=>1,1475372301=>1,1476347620=>1,1476134307=>1,1476387141=>1,1476391403=>1,1476473642=>1,1476441542=>1,1476103261=>1,1476007025=>1,1475589572=>1,1475415150=>1,1475655097=>1,1475721452=>1,1475988839=>1,1481479399=>1,1481479748=>1,1483686136=>1,1483612452=>1,1483840390=>1,1483990412=>1,1484057550=>1,1484025566=>1,1482771967=>1,1482660039=>1,1482652182=>1,1482643687=>1,1482652511=>1,1482657499=>1,1482659877=>1,1482659872=>1,1484062855=>1,1484246062=>1,1485254993=>1,1485161340=>1,1485299678=>1,1485382571=>1,1486021623=>1,1486017098=>1,1485160737=>1,1485157868=>1,1484404102=>1,1484309818=>1,1484948475=>1,1485048392=>1,1485153071=>1,1482632043=>1,1482621587=>1,1481493487=>1,1481491115=>1,1481494164=>1,1481494882=>1,1481496894=>1,1481496688=>1,1481489728=>1,1481488478=>1,1481479907=>1,1481479904=>1,1481480848=>1,1481481914=>1,1481488192=>1,1481486744=>1,1481526438=>1,1481563099=>1,1481838243=>1,1481813229=>1,1481894304=>1,1482115144=>1,1482285288=>1,1482265807=>1,1481812124=>1,1481792765=>1,1481642071=>1,1481639685=>1,1481642948=>1,1481643532=>1,1481692861=>1,1490297485=>1,1490302517=>1,1503370192=>1,1502377963=>1,1503374894=>1,1503541403=>1,1503588085=>1,1503552320=>1,1502377959=>1,1502377940=>1,1502377750=>1,1502367663=>1,1502377852=>1,1502377918=>1,1502377939=>1,1502377925=>1,1503590982=>1,1503676846=>1,1503894414=>1,1503890600=>1,1503907845=>1,1503908329=>1,1503910228=>1,1503910182=>1,1503889250=>1,1503888972=>1,1503680305=>1,1503679626=>1,1503681242=>1,1503887417=>1,1503888590=>1,1503887426=>1,1502318917=>1,1502129047=>1,1499892858=>1,1499846358=>1,1499959928=>1,1499995495=>1,1500092279=>1,1500090548=>1,1499739039=>1,1499734397=>1,1499601092=>1,1499372908=>1,1499601890=>1,1499651148=>1,1499700101=>1,1499699999=>1,1500128947=>1,1500214009=>1,1501942471=>1,1501919732=>1,1501942474=>1,1501950558=>1,1502056534=>1,1502050561=>1,1501880826=>1,1500527125=>1,1500292539=>1,1500268321=>1,1500319025=>1,1500393482=>1,1500451908=>1,1503910255=>1,1503910732=>1,1505521106=>1,1505464442=>1,1505570875=>1,1505582994=>1,1505652225=>1,1505602660=>1,1505464145=>1,1505464016=>1,1505173995=>1,1505169455=>1,1505177231=>1,1505298428=>1,1505420902=>1,1505362251=>1,1505740789=>1,1505745153=>1,1506761929=>1,1506622838=>1,1506771350=>1,1506806438=>1,1474351859=>1,1507099358=>1,1506617142=>1,1506617077=>1,1506612725=>1,1506344085=>1,1506616501=>1,1506616537=>1,1506616771=>1,1505146823=>1,1505142555=>1,1503917928=>1,1503917867=>1,1503969392=>1,1503987041=>1,1504063361=>1,1503996508=>1,1503917496=>1,1503917493=>1,1503912148=>1,1503912123=>1,1503912376=>1,1503914915=>1,1503917428=>1,1503915309=>1,1504079516=>1,1504098934=>1,1504742590=>1,1504648099=>1,1504911777=>1,1504933797=>1,1504964977=>1,1504935804=>1,1504562697=>1,1504559332=>1,1504113321=>1,1504107451=>1,1504114531=>1,1504254788=>1,1504258987=>1,1499326846=>1,1499264499=>1,1494396004=>1,1494395958=>1,1494396016=>1,1494396043=>1,1494396502=>1,1494396201=>1,1494372487=>1,1494295914=>1,1494069762=>1,1493976317=>1,1494171942=>1,1494188395=>1,1494266014=>1,1494265316=>1,1494400619=>1,1494463519=>1,1494894470=>1,1494874219=>1,1494955036=>1,1494957684=>1,1495017261=>1,1495007594=>1,1494863935=>1,1494857654=>1,1494568838=>1,1494466817=>1,1494603325=>1,1494605546=>1,1494744455=>1,1494638906=>1,1493221116=>1,1493207464=>1,1491200158=>1,1491099722=>1,1491358256=>1,1491396651=>1,1492339399=>1,1492180932=>1,1490660321=>1,1490652981=>1,1490481704=>1,1490472793=>1,1490504602=>1,1490623422=>1,1490650626=>1,1490624373=>1,1492582930=>1,1492610454=>1,1493042829=>1,1492843229=>1,1493103637=>1,1493114658=>1,1493144600=>1,1493142081=>1,1492830635=>1,1492814276=>1,1492675525=>1,1492653900=>1,1492761069=>1,1492774807=>1,1492784191=>1,1495038387=>1,1495045781=>1,1496206024=>1,1496204898=>1,1496207278=>1,1496212493=>1,1496212642=>1,1496212551=>1,1496180745=>1,1496130452=>1,1495826278=>1,1495826246=>1,1495840107=>1,1495886435=>1,1496124149=>1,1495904781=>1,1497483590=>1,1497484577=>1,1498253486=>1,1498191317=>1,1498486914=>1,1498697390=>1,1499207879=>1,1498748476=>1,1497968238=>1,1497866526=>1,1497563452=>1,1497516049=>1,1497601284=>1,1497676739=>1,1497781322=>1,1495825999=>1,1495825853=>1,1495407227=>1,1495398002=>1,1495425412=>1,1495461131=>1,1495461156=>1,1495461132=>1,1495330678=>1,1495328294=>1,1495079196=>1,1495045862=>1,1495218437=>1,1495228584=>1,1495302063=>1,1495236690=>1,1495461221=>1,1495476075=>1,1495822420=>1,1495811989=>1,1495825436=>1,1495825444=>1,1495825567=>1,1495825448=>1,1495740418=>1,1495629831=>1,1495503385=>1,1495486492=>1,1495511656=>1,1495538240=>1,1495585453=>1,1507469002=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-16.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1567838208=>1567842303,1567763544=>1567764479,1567763528=>1567763535,1567762824=>1567763519,1567762432=>1567762815,1542379008=>1542379519,1559437008=>1,1559391462=>1,1559394526=>1,1559391297=>1,1559446889=>1,1559429299=>1,1559376440=>1,1558612332=>1,1558536372=>1,1558823468=>1,1559153785=>1,1559502597=>1,1559324371=>1,1559391153=>1,1559704489=>1,1559859063=>1,1559816068=>1,1559885946=>1,1560026399=>1,1560164689=>1,1560052028=>1,1559723953=>1,1559723833=>1,1558375239=>1,1559603963=>1,1559723450=>1,1559723510=>1,1559723830=>1,1559550846=>1,1558237168=>1,1558113560=>1,1558113559=>1,1558113571=>1,1558113580=>1,1558113588=>1,1558113586=>1,1558113558=>1,1558113556=>1,1558106419=>1,1558104567=>1,1558113541=>1,1558113545=>1,1558113546=>1,1558113591=>1,1558113613=>1,1558183329=>1,1558113660=>1,1558236965=>1,1560189141=>1,1558313759=>1,1558248419=>1,1558113650=>1,1558113649=>1,1558113625=>1,1558113621=>1,1558113634=>1,1558113635=>1,1558113642=>1,1558350763=>1,1560263643=>1,1566565365=>1,1566532774=>1,1566565425=>1,1566565446=>1,1566775665=>1,1566565501=>1,1566488746=>1,1566478891=>1,1566232803=>1,1566139675=>1,1566248644=>1,1566286552=>1,1566363200=>1,1566287404=>1,1566823468=>1,1567040367=>1,1567150910=>1,1567150494=>1,1567151357=>1,1567151425=>1,1567206258=>1,1567151740=>1,1567150186=>1,1567150106=>1,1567089481=>1,1567076168=>1,1567122981=>1,1567125940=>1,1567138273=>1,1565583688=>1,1565562849=>1,1560564296=>1,1560279874=>1,1561812521=>1,1562364960=>1,1563605640=>1,1563337484=>1,1560276564=>1,1560273257=>1,1560260746=>1,1560259798=>1,1558099323=>1,1560267284=>1,1560268633=>1,1563686760=>1,1564043363=>1,1565479575=>1,1565132888=>1,1565480794=>1,1565502831=>1,1565560482=>1,1565516461=>1,1565026636=>1,1565025550=>1,1564446352=>1,1564085016=>1,1564466558=>1,1564515331=>1,1564528439=>1,1560235527=>1,1558096592=>1,1556329581=>1,1556320471=>1,1556339123=>1,1556761860=>1,1557010973=>1,1556773608=>1,1556309946=>1,1556307586=>1,1556301194=>1,1556300479=>1,1556301700=>1,1556302103=>1,1556304924=>1,1556302798=>1,1557060934=>1,1557188794=>1,1558038922=>1,1558010529=>1,1558040336=>1,1558053990=>1,1558055221=>1,1558054412=>1,1558003234=>1,1557981670=>1,1557199237=>1,1557199127=>1,1557570111=>1,1557694148=>1,1557778377=>1,1557738454=>1,1556300449=>1,1556299665=>1,1550634459=>1,1550597625=>1,1550748186=>1,1550779569=>1,1550848802=>1,1550818318=>1,1550432644=>1,1550324697=>1,1549223439=>1,1549218102=>1,1549331763=>1,1550030773=>1,1550319790=>1,1550039608=>1,1551074748=>1,1553019183=>1,1556290268=>1,1556285654=>1,1556291920=>1,1556293276=>1,1556297555=>1,1556294609=>1,1556284995=>1,1556284236=>1,1554192748=>1,1553892509=>1,1554484292=>1,1555718432=>1,1556284058=>1,1558055238=>1,1558058114=>1,1558080808=>1,1558080801=>1,1558080810=>1,1558080820=>1,1558080830=>1,1558080823=>1,1558080729=>1,1558080706=>1,1558080611=>1,1558080610=>1,1558080623=>1,1558080631=>1,1558080705=>1,1558080636=>1,1558080837=>1,1558080839=>1,1558092344=>1,1558092244=>1,1558092345=>1,1558092347=>1,1567690016=>1,1558094390=>1,1558092242=>1,1558092240=>1,1558080842=>1,1558080840=>1,1558080843=>1,1558085477=>1,1558092179=>1,1558091266=>1,1558080590=>1,1558080471=>1,1558064386=>1,1558063031=>1,1558069310=>1,1558069416=>1,1558070701=>1,1558070635=>1,1558062770=>1,1558062659=>1,1558058609=>1,1558058533=>1,1558058946=>1,1558059455=>1,1558060275=>1,1558060175=>1,1558072821=>1,1558073089=>1,1558080278=>1,1558079567=>1,1558080318=>1,1558080402=>1,1558080437=>1,1558080429=>1,1558079466=>1,1558079465=>1,1558073786=>1,1558073672=>1,1558074421=>1,1558074504=>1,1558076510=>1,1558099304=>1,1567762820=>1,1574174525=>1,1574174286=>1,1574195601=>1,1574367377=>1,1574498113=>1,1574488423=>1,1574174155=>1,1574174137=>1,1574170648=>1,1574170417=>1,1574171508=>1,1574172622=>1,1574173966=>1,1574172912=>1,1574593956=>1,1574650536=>1,1574763713=>1,1574729775=>1,1574921797=>1,1574928323=>1,1575395708=>1,1575194399=>1,1574715428=>1,1574700422=>1,1574662601=>1,1574651169=>1,1574681307=>1,1574681401=>1,1574681745=>1,1574170337=>1,1574167993=>1,1572678264=>1,1572678256=>1,1572769139=>1,1572890376=>1,1572945676=>1,1572896554=>1,1572678187=>1,1572678175=>1,1572535927=>1,1572522197=>1,1572544870=>1,1572644448=>1,1572678157=>1,1572678155=>1,1572946579=>1,1572950169=>1,1573648996=>1,1573634518=>1,1573779447=>1,1573866963=>1,1574167504=>1,1574166563=>1,1573441444=>1,1573440682=>1,1572964123=>1,1572963411=>1,1573025472=>1,1573061926=>1,1573209387=>1,1575395720=>1,1575395842=>1,1578141959=>1,1578140878=>1,1578149086=>1,1578332401=>1,1578461026=>1,1578428914=>1,1578130464=>1,1578127392=>1,1575951964=>1,1575951955=>1,1575975631=>1,1575998350=>1,1578124658=>1,1575999166=>1,1578483938=>1,1578500500=>1,1578579055=>1,1578571203=>1,1578579999=>1,1578583774=>1,1578592152=>1,1578583784=>1,1578570780=>1,1578570409=>1,1578536618=>1,1578510552=>1,1578566052=>1,1578570042=>1,1578570141=>1,1575915375=>1,1575890262=>1,1575400201=>1,1575399937=>1,1575400684=>1,1575401250=>1,1575445577=>1,1575401361=>1,1575399863=>1,1575399713=>1,1575396702=>1,1575395856=>1,1575397781=>1,1575397862=>1,1575399677=>1,1575399025=>1,1575480183=>1,1575481013=>1,1575847351=>1,1575820862=>1,1575848344=>1,1575849745=>1,1575889956=>1,1575887508=>1,1575819807=>1,1575818642=>1,1575661302=>1,1575575196=>1,1575694520=>1,1575696287=>1,1575773256=>1,1572522052=>1,1572474438=>1,1568483343=>1,1568399767=>1,1568564703=>1,1568736898=>1,1568743857=>1,1568737157=>1,1568385912=>1,1568365069=>1,1568054288=>1,1568017031=>1,1568055012=>1,1568073842=>1,1568353975=>1,1568154256=>1,1568745124=>1,1568746135=>1,1568791189=>1,1568790472=>1,1568791976=>1,1568939078=>1,1569322410=>1,1569322377=>1,1568788071=>1,1568787607=>1,1568751479=>1,1568749722=>1,1568784482=>1,1568785961=>1,1568786446=>1,1567967259=>1,1567935872=>1,1567763542=>1,1567763541=>1,1567820304=>1,1567839219=>1,1567839375=>1,1567839220=>1,1567763540=>1,1567763523=>1,1549218101=>1,1567752130=>1,1567762822=>1,1567762823=>1,1567763521=>1,1567763520=>1,1567839522=>1,1567841090=>1,1567842548=>1,1567842264=>1,1567842802=>1,1567879426=>1,1567879618=>1,1567879474=>1,1567842255=>1,1567842254=>1,1567842249=>1,1567842086=>1,1567842250=>1,1567842252=>1,1567842253=>1,1569324631=>1,1569436538=>1,1571707274=>1,1571707252=>1,1571707422=>1,1571708293=>1,1572029801=>1,1571743732=>1,1571698514=>1,1571540258=>1,1571441820=>1,1571441749=>1,1571442068=>1,1571442094=>1,1571465664=>1,1571465534=>1,1572117086=>1,1572117588=>1,1572362165=>1,1572356835=>1,1572398089=>1,1572433343=>1,1572458454=>1,1572454773=>1,1572347150=>1,1572323758=>1,1572124516=>1,1572117914=>1,1572296144=>1,1572313895=>1,1572313936=>1,1571125710=>1,1570691214=>1,1569687325=>1,1569601587=>1,1569689784=>1,1569694374=>1,1569710278=>1,1569699540=>1,1569589905=>1,1569582934=>1,1569447076=>1,1569443620=>1,1569449894=>1,1569561247=>1,1569566549=>1,1569563321=>1,1569710556=>1,1569713979=>1,1570631651=>1,1570583318=>1,1570631655=>1,1570631673=>1,1570690990=>1,1570689481=>1,1570523353=>1,1570287211=>1,1569759587=>1,1569758510=>1,1569785196=>1,1570278872=>1,1570283487=>1,1567696114=>1,1549212826=>1,1534705818=>1,1534703703=>1,1534706182=>1,1534706209=>1,1534706601=>1,1534706564=>1,1534702171=>1,1534701657=>1,1534697359=>1,1534697252=>1,1534697478=>1,1534697605=>1,1534700986=>1,1534699160=>1,1534707101=>1,1534708824=>1,1534929706=>1,1534839019=>1,1535035375=>1,1535508762=>1,1535543052=>1,1535512952=>1,1534811772=>1,1534794743=>1,1534732930=>1,1534730159=>1,1534734314=>1,1534747661=>1,1534778004=>1,1534768837=>1,1534696977=>1,1534696225=>1,1534670344=>1,1534668471=>1,1534676143=>1,1534676172=>1,1534677108=>1,1534676175=>1,1534664307=>1,1534663315=>1,1534423642=>1,1534199094=>1,1534553722=>1,1534656788=>1,1534662500=>1,1534660675=>1,1534677529=>1,1534678108=>1,1534687687=>1,1534686242=>1,1534690356=>1,1534691460=>1,1534694209=>1,1534693978=>1,1534685510=>1,1534684750=>1,1534678402=>1,1534678153=>1,1534680460=>1,1534680480=>1,1534680615=>1,1535545257=>1,1535549428=>1,1538929555=>1,1538925618=>1,1539010116=>1,1539011901=>1,1539013321=>1,1539012005=>1,1538918550=>1,1538749231=>1,1537133026=>1,1536913125=>1,1538268810=>1,1538334519=>1,1538645205=>1,1538577748=>1,1539074943=>1,1539077338=>1,1539299012=>1,1539208525=>1,1539303862=>1,1539306069=>1,1539366214=>1,1539354082=>1,1539199954=>1,1539158081=>1,1539096223=>1,1539079552=>1,1539118394=>1,1539122216=>1,1539122867=>1,1536780337=>1,1536667735=>1,1535788854=>1,1535775785=>1,1536037705=>1,1536039686=>1,1536054454=>1,1536039944=>1,1535775772=>1,1535681666=>1,1535564187=>1,1535563171=>1,1535564228=>1,1535565791=>1,1535579306=>1,1535569063=>1,1536070742=>1,1536107050=>1,1536209403=>1,1536207391=>1,1536231394=>1,1536325891=>1,1536536019=>1,1536326189=>1,1536207010=>1,1536186569=>1,1536121725=>1,1536119004=>1,1536121742=>1,1536143063=>1,1536149328=>1,1533877624=>1,1533851442=>1,1530128456=>1,1530127949=>1,1530128627=>1,1530131203=>1,1530132747=>1,1530132449=>1,1530127618=>1,1530126665=>1,1529897885=>1,1529887031=>1,1529899157=>1,1530107435=>1,1530126631=>1,1530126365=>1,1530133373=>1,1530232333=>1,1530617080=>1,1530615519=>1,1530617523=>1,1530617823=>1,1530741394=>1,1530640559=>1,1530615393=>1,1530611842=>1,1530319548=>1,1530316753=>1,1530329839=>1,1530394069=>1,1530611117=>1,1530610584=>1,1529886935=>1,1529881041=>1,1528876403=>1,1528197915=>1,1528879445=>1,1528885567=>1,1529332455=>1,1529199225=>1,1528185562=>1,1528149942=>1,1527640518=>1,1527267629=>1,1527666396=>1,1527861603=>1,1528149457=>1,1527862206=>1,1529339362=>1,1529441389=>1,1529665134=>1,1529663371=>1,1529726338=>1,1529735576=>1,1529880729=>1,1529736927=>1,1529663116=>1,1529662827=>1,1529624355=>1,1529574871=>1,1529626310=>1,1529662562=>1,1529662666=>1,1530893951=>1,1530903467=>1,1533215485=>1,1533214752=>1,1533218713=>1,1533220734=>1,1533234422=>1,1533223953=>1,1533209340=>1,1533187070=>1,1533177730=>1,1533173789=>1,1533179570=>1,1533182032=>1,1533185877=>1,1533185189=>1,1533257105=>1,1533257426=>1,1533722233=>1,1533720602=>1,1533722257=>1,1533732917=>1,1533851418=>1,1533838330=>1,1533719691=>1,1533719604=>1,1533277544=>1,1533259512=>1,1533306820=>1,1533483706=>1,1533714398=>1,1533167480=>1,1533166944=>1,1531021827=>1,1531020981=>1,1531035970=>1,1531038808=>1,1531566350=>1,1531500676=>1,1531013952=>1,1531003696=>1,1530941478=>1,1530934913=>1,1530943348=>1,1530943635=>1,1530992484=>1,1530970762=>1,1531690622=>1,1531896209=>1,1533144620=>1,1533107326=>1,1533155075=>1,1533157276=>1,1533160395=>1,1533160356=>1,1533097861=>1,1533018854=>1,1532579965=>1,1532161407=>1,1532622342=>1,1532783886=>1,1532783925=>1,1539463783=>1,1539509402=>1,1542694924=>1,1542693834=>1,1542713367=>1,1542715283=>1,1542751757=>1,1542728095=>1,1542655003=>1,1542627829=>1,1542472340=>1,1542472338=>1,1542472466=>1,1542472584=>1,1542526122=>1,1542472587=>1,1542752015=>1,1542908278=>1,1545275345=>1,1545153668=>1,1545631946=>1,1545977998=>1,1546026645=>1,1546026636=>1,1545153421=>1,1544877801=>1,1543131594=>1,1543131445=>1,1543135662=>1,1543140281=>1,1544071734=>1,1543172593=>1,1542472334=>1,1542472330=>1,1542099630=>1,1542086869=>1,1542119971=>1,1542150974=>1,1542254471=>1,1542222935=>1,1542086854=>1,1542032221=>1,1541981261=>1,1541979156=>1,1542023801=>1,1542023917=>1,1542026359=>1,1542026291=>1,1542254476=>1,1542257432=>1,1542449233=>1,1542407071=>1,1542471971=>1,1542472074=>1,1542472328=>1,1542472325=>1,1542392811=>1,1542331840=>1,1542272170=>1,1542257438=>1,1542281319=>1,1542286314=>1,1542297156=>1,1546034838=>1,1546044961=>1,1547677220=>1,1547676952=>1,1547677255=>1,1548092785=>1,1548247709=>1,1548247646=>1,1547676623=>1,1547660924=>1,1547468457=>1,1547468305=>1,1547488241=>1,1547624708=>1,1547653491=>1,1547627565=>1,1548449348=>1,1548449724=>1,1548679158=>1,1548678824=>1,1548694716=>1,1549175792=>1,1527073883=>1,1549211635=>1,1548677526=>1,1548592496=>1,1548473369=>1,1548449855=>1,1548517907=>1,1548553581=>1,1548556205=>1,1547449435=>1,1547163917=>1,1546399241=>1,1546331323=>1,1546520088=>1,1546544462=>1,1546546001=>1,1546545720=>1,1546330662=>1,1546321278=>1,1546067876=>1,1546067835=>1,1546067948=>1,1546110196=>1,1546298310=>1,1546122797=>1,1546549858=>1,1546550547=>1,1546907846=>1,1546880259=>1,1546909059=>1,1546951506=>1,1547114742=>1,1546978275=>1,1546866046=>1,1546822134=>1,1546573690=>1,1546550705=>1,1546757080=>1,1546788626=>1,1546819646=>1,1541887692=>1,1541887589=>1,1540583937=>1,1540583681=>1,1540584193=>1,1540584641=>1,1540585251=>1,1540584646=>1,1540583672=>1,1540583425=>1,1540510914=>1,1540499605=>1,1540515931=>1,1540566346=>1,1540582150=>1,1540566347=>1,1540585256=>1,1540585265=>1,1540745532=>1,1540688108=>1,1540784302=>1,1540794608=>1,1540798714=>1,1540797188=>1,1540688107=>1,1540687999=>1,1540588702=>1,1540586837=>1,1540594979=>1,1540687936=>1,1540687961=>1,1540687956=>1,1540367273=>1,1540263494=>1,1539806603=>1,1539682027=>1,1539883029=>1,1539894056=>1,1539951460=>1,1539910139=>1,1539630658=>1,1539602844=>1,1539538176=>1,1539509437=>1,1539546506=>1,1539562565=>1,1539565085=>1,1539565071=>1,1539970686=>1,1539972045=>1,1540084848=>1,1540084805=>1,1540124763=>1,1540124886=>1,1540205906=>1,1540195263=>1,1540076276=>1,1540072762=>1,1539998043=>1,1539975283=>1,1540001806=>1,1540031890=>1,1540031909=>1,1540803472=>1,1540830593=>1,1541462388=>1,1541458883=>1,1541492302=>1,1541555258=>1,1541623041=>1,1541560593=>1,1541453388=>1,1541444919=>1,1541272065=>1,1541269842=>1,1541339418=>1,1541386229=>1,1541444897=>1,1541444873=>1,1541681411=>1,1541682362=>1,1541739547=>1,1541719911=>1,1541754176=>1,1541786999=>1,1541852240=>1,1541795923=>1,1541719548=>1,1541719465=>1,1541707572=>1,1541682518=>1,1541719090=>1,1541719110=>1,1541719462=>1,1541230262=>1,1541227228=>1,1541086419=>1,1541086307=>1,1541086525=>1,1541086606=>1,1541086652=>1,1541086621=>1,1541086293=>1,1541082322=>1,1540958722=>1,1540901073=>1,1540958723=>1,1540958724=>1,1541065531=>1,1540999713=>1,1541086702=>1,1541135511=>1,1541139941=>1,1541139829=>1,1541139956=>1,1541140189=>1,1541200901=>1,1541140316=>1,1541139731=>1,1541139688=>1,1541139592=>1,1541139587=>1,1541139622=>1,1541139674=>1,1541139678=>1,1549212877=>1,);?>
1
+ <?php return array(1592089394=>1592089395,1567838208=>1567842303,1567763544=>1567764479,1567763540=>1567763541,1567763528=>1567763535,1567762822=>1567763521,1567762432=>1567762815,1558092344=>1558092345,1558080610=>1558080611,1542379008=>1542379519,1578629278=>1,1578798230=>1,1578795406=>1,1578700734=>1,1578630367=>1,1578767382=>1,1578782020=>1,1578784866=>1,1578630175=>1,1578833658=>1,1580041918=>1,1580030711=>1,1579846666=>1,1580066988=>1,1580067063=>1,1580114817=>1,1580114768=>1,1579800252=>1,1579798507=>1,1578941804=>1,1578933160=>1,1578920950=>1,1578956407=>1,1579070898=>1,1579785880=>1,1579103691=>1,1578628906=>1,1578618144=>1,1578579055=>1,1578570780=>1,1578579999=>1,1578583774=>1,1578592152=>1,1578583784=>1,1578570409=>1,1578570141=>1,1578536618=>1,1578510552=>1,1578538424=>1,1578566052=>1,1578570042=>1,1578594366=>1,1578604223=>1,1578619422=>1,1580114893=>1,1578621888=>1,1578622386=>1,1578624968=>1,1578618031=>1,1578617168=>1,1578606129=>1,1578605111=>1,1578607910=>1,1578608060=>1,1578608593=>1,1578625715=>1,1580125730=>1,1583755695=>1,1583755584=>1,1583755818=>1,1583756721=>1,1583853398=>1,1583853397=>1,1583737447=>1,1583723971=>1,1583613467=>1,1583613463=>1,1583616674=>1,1583624758=>1,1583691127=>1,1583673427=>1,1584509093=>1,1584525879=>1,1585970534=>1,1585955988=>1,1585995670=>1,1586006474=>1,1586220217=>1,1586121286=>1,1585954947=>1,1585954887=>1,1585221393=>1,1584577608=>1,1585312349=>1,1585321902=>1,1585889658=>1,1585359525=>1,1583601532=>1,1583597551=>1,1581036111=>1,1580996735=>1,1581055786=>1,1581255042=>1,1581945089=>1,1581818997=>1,1580761210=>1,1580382896=>1,1578500500=>1,1580125708=>1,1580125819=>1,1580125867=>1,1580369679=>1,1580125893=>1,1581946378=>1,1581953185=>1,1582280162=>1,1582270902=>1,1582305931=>1,1582305932=>1,1583596052=>1,1583556942=>1,1582245086=>1,1582245082=>1,1581997346=>1,1581977535=>1,1582069006=>1,1582090604=>1,1582194902=>1,1582145968=>1,1580114937=>1,1578461026=>1,1573866963=>1,1573864128=>1,1573869779=>1,1573870950=>1,1574167993=>1,1574167504=>1,1573642958=>1,1573641783=>1,1573209387=>1,1573067509=>1,1573238786=>1,1573353512=>1,1573440447=>1,1573437530=>1,1574168337=>1,1574170337=>1,1574174155=>1,1574174137=>1,1574174525=>1,1574198373=>1,1574369796=>1,1574247041=>1,1574173966=>1,1574173690=>1,1574170648=>1,1574170417=>1,1574171508=>1,1574172551=>1,1574172912=>1,1573061926=>1,1573030814=>1,1572522052=>1,1572474438=>1,1572522197=>1,1572535927=>1,1572644448=>1,1572544870=>1,1572458454=>1,1572433343=>1,1572323758=>1,1572313936=>1,1572347150=>1,1572356835=>1,1572398089=>1,1572362165=>1,1572678155=>1,1572678157=>1,1572952363=>1,1572950278=>1,1572963099=>1,1572964123=>1,1573028242=>1,1573027469=>1,1572945676=>1,1572896242=>1,1572678187=>1,1572678175=>1,1572678256=>1,1572678264=>1,1572769139=>1,1574501133=>1,1574569101=>1,1575696038=>1,1575694458=>1,1575773256=>1,1575847238=>1,1575849745=>1,1575847276=>1,1575657682=>1,1575657478=>1,1575401361=>1,1575401250=>1,1575445577=>1,1575478311=>1,1575575196=>1,1575480449=>1,1575887508=>1,1575911685=>1,1578332401=>1,1578149086=>1,1578428914=>1,1586264230=>1,1578488519=>1,1578483938=>1,1578141959=>1,1578140878=>1,1577658249=>1,1575975196=>1,1578124381=>1,1578127392=>1,1578128197=>1,1575400684=>1,1575400201=>1,1574681745=>1,1574681401=>1,1574699921=>1,1574704436=>1,1574728868=>1,1574721543=>1,1574662601=>1,1574656951=>1,1574600095=>1,1574593956=>1,1574653936=>1,1574654237=>1,1574654340=>1,1574763713=>1,1574924132=>1,1575397862=>1,1575397781=>1,1575399025=>1,1575399677=>1,1575399937=>1,1575399863=>1,1575396702=>1,1575395856=>1,1575194399=>1,1575194267=>1,1575395708=>1,1575395720=>1,1575395842=>1,1578497652=>1,1586264270=>1,1594426697=>1,1594216053=>1,1594439514=>1,1594445773=>1,1594454074=>1,1594447921=>1,1593862395=>1,1593843914=>1,1593705031=>1,1593642187=>1,1593710693=>1,1593710753=>1,1593825018=>1,1593806368=>1,1594464981=>1,1594465482=>1,1595007850=>1,1594917277=>1,1595009249=>1,1595107478=>1,1595479292=>1,1595417377=>1,1594880905=>1,1594869149=>1,1594739248=>1,1594516924=>1,1594739996=>1,1594740109=>1,1594816741=>1,1594813298=>1,1593510154=>1,1593309602=>1,1592971640=>1,1592970793=>1,1592971714=>1,1592971764=>1,1592974871=>1,1592971794=>1,1592969105=>1,1592969028=>1,1592932986=>1,1592932915=>1,1592933302=>1,1592933307=>1,1592968122=>1,1592952467=>1,1592975063=>1,1592976558=>1,1593128287=>1,1593120648=>1,1593128939=>1,1593129453=>1,1593154659=>1,1593153445=>1,1593115362=>1,1593031375=>1,1592981015=>1,1592977250=>1,1592981016=>1,1592983408=>1,1593020538=>1,1595543580=>1,1595551522=>1,1597434603=>1,1597428793=>1,1597441676=>1,1597539568=>1,1597609173=>1,1597563733=>1,1597411803=>1,1597393455=>1,1596875431=>1,1596853134=>1,1596944779=>1,1596964365=>1,1597168212=>1,1597072387=>1,1597638806=>1,1597652922=>1,1598389518=>1,1598355422=>1,1598416920=>1,1598490132=>1,1598501176=>1,1598490561=>1,1598312193=>1,1598249588=>1,1598073824=>1,1597817246=>1,1598101881=>1,1598113163=>1,1598240818=>1,1598119741=>1,1596705497=>1,1596620076=>1,1595835384=>1,1595751245=>1,1595867762=>1,1595868913=>1,1595871447=>1,1595870374=>1,1595725905=>1,1595684866=>1,1595628045=>1,1595590377=>1,1595634074=>1,1595638766=>1,1595654197=>1,1595646892=>1,1595872609=>1,1595873426=>1,1596094440=>1,1596088445=>1,1596262136=>1,1596348613=>1,1596618152=>1,1596616147=>1,1596079098=>1,1596037533=>1,1595875411=>1,1595874769=>1,1595877073=>1,1595899665=>1,1595929095=>1,1592932866=>1,1592932820=>1,1589115436=>1,1589114703=>1,1589199450=>1,1589204330=>1,1589382121=>1,1589205590=>1,1589109841=>1,1589103320=>1,1588972256=>1,1588968981=>1,1589018788=>1,1589080109=>1,1589097770=>1,1589091084=>1,1589653227=>1,1589728185=>1,1590224773=>1,1590224770=>1,1590259654=>1,1590265595=>1,1590312369=>1,1590283772=>1,1590182606=>1,1590171774=>1,1590059591=>1,1590052058=>1,1590060049=>1,1590060050=>1,1590113125=>1,1590087732=>1,1588932077=>1,1588931831=>1,1586424089=>1,1586419602=>1,1586426250=>1,1586426452=>1,1586477273=>1,1586427342=>1,1586343059=>1,1586325195=>1,1586283772=>1,1572313895=>1,1586324499=>1,1586324595=>1,1586325139=>1,1586324923=>1,1587207775=>1,1587228975=>1,1588904201=>1,1588899367=>1,1588906966=>1,1588916849=>1,1588929088=>1,1588929085=>1,1588884246=>1,1588836480=>1,1587314698=>1,1587301801=>1,1587426615=>1,1587468879=>1,1588722128=>1,1590344494=>1,1590348749=>1,1592104256=>1,1592104029=>1,1592105748=>1,1592118892=>1,1592167187=>1,1592129337=>1,1592085157=>1,1592052126=>1,1591699717=>1,1591674547=>1,1591749794=>1,1591966215=>1,1592051282=>1,1592022539=>1,1592226950=>1,1592238953=>1,1592370252=>1,1592305763=>1,1592895512=>1,1592898298=>1,1592932646=>1,1592932610=>1,1592286412=>1,1592282876=>1,1592240847=>1,1592240269=>1,1592245830=>1,1592245906=>1,1592279400=>1,1591671274=>1,1591671062=>1,1590820892=>1,1590805401=>1,1590827348=>1,1590838225=>1,1590868342=>1,1590868207=>1,1590789873=>1,1590683362=>1,1590386704=>1,1590373089=>1,1590398861=>1,1590514091=>1,1590630909=>1,1590537093=>1,1590957304=>1,1591084128=>1,1591597952=>1,1591574157=>1,1591615772=>1,1591634210=>1,1591670586=>1,1591634433=>1,1591572821=>1,1591567742=>1,1591135299=>1,1591086074=>1,1591236098=>1,1591266353=>1,1591531895=>1,1586264266=>1,1572117086=>1,1550779569=>1,1550748186=>1,1550818318=>1,1550848802=>1,1551074748=>1,1550878300=>1,1550699151=>1,1550634459=>1,1550174985=>1,1550142570=>1,1550319790=>1,1550324697=>1,1550597625=>1,1550432644=>1,1552356039=>1,1552656482=>1,1556158128=>1,1556116101=>1,1556225326=>1,1556284058=>1,1556284995=>1,1556284236=>1,1556113353=>1,1554484292=>1,1553049444=>1,1553019183=>1,1553214680=>1,1553892509=>1,1554192748=>1,1550039608=>1,1550030773=>1,1548370844=>1,1548358899=>1,1548449724=>1,1548449855=>1,1548517907=>1,1548467845=>1,1548261767=>1,1548247646=>1,1547676952=>1,1547676623=>1,1547677220=>1,1547677255=>1,1548092785=>1,1547695568=>1,1548529190=>1,1548553581=>1,1549212877=>1,1549212826=>1,1549218101=>1,1549218102=>1,1549331763=>1,1549223439=>1,1549211635=>1,1548694716=>1,1548613532=>1,1548556205=>1,1548677526=>1,1548679158=>1,1548684378=>1,1556285654=>1,1556290268=>1,1558058533=>1,1558058114=>1,1558058609=>1,1558058946=>1,1558060175=>1,1558059455=>1,1558055238=>1,1558054412=>1,1558003234=>1,1557981670=>1,1558010529=>1,1558038922=>1,1558053990=>1,1558040336=>1,1558060275=>1,1558062659=>1,1558073672=>1,1558073089=>1,1558073786=>1,1558074421=>1,1558076510=>1,1558074504=>1,1558072821=>1,1558070701=>1,1558063031=>1,1558062770=>1,1558064386=>1,1558069416=>1,1558070635=>1,1557778377=>1,1557738454=>1,1556309542=>1,1556304924=>1,1556309946=>1,1556310008=>1,1556329581=>1,1556320471=>1,1556302798=>1,1556301700=>1,1556293276=>1,1556291920=>1,1556297555=>1,1556299665=>1,1556301194=>1,1556300449=>1,1556339123=>1,1556677847=>1,1557188794=>1,1557060934=>1,1557198969=>1,1557247039=>1,1557694148=>1,1557370243=>1,1557010973=>1,1556894472=>1,1556760859=>1,1556682182=>1,1556762382=>1,1556888023=>1,1556891492=>1,1547660924=>1,1547653491=>1,1542257432=>1,1542254476=>1,1542257438=>1,1542272170=>1,1542286314=>1,1542281319=>1,1542254471=>1,1542222935=>1,1542086854=>1,1542032221=>1,1542086869=>1,1542099630=>1,1542150974=>1,1542119971=>1,1542297156=>1,1542331840=>1,1542472334=>1,1542472330=>1,1542472338=>1,1542472340=>1,1542472584=>1,1542472466=>1,1542472328=>1,1542472325=>1,1542407071=>1,1542392811=>1,1542449233=>1,1542472012=>1,1542472016=>1,1542026359=>1,1542026291=>1,1541682362=>1,1541681411=>1,1541682518=>1,1541691677=>1,1541719090=>1,1541707572=>1,1541623041=>1,1541560593=>1,1541453388=>1,1541444919=>1,1541458883=>1,1541462388=>1,1541555258=>1,1541492302=>1,1541719110=>1,1541719462=>1,1541887589=>1,1541852240=>1,1541887692=>1,1541979156=>1,1542023917=>1,1542023801=>1,1541795923=>1,1541786999=>1,1541719548=>1,1541719465=>1,1541719911=>1,1541739547=>1,1541754176=>1,1542526122=>1,1542627829=>1,1546573690=>1,1546550705=>1,1546757080=>1,1546788626=>1,1546822134=>1,1546819646=>1,1546550547=>1,1546549858=>1,1546330662=>1,1546321278=>1,1546331323=>1,1546399241=>1,1546546001=>1,1546520088=>1,1546866046=>1,1546880259=>1,1547468457=>1,1547468305=>1,1547488241=>1,1547624708=>1,1547627704=>1,1547627565=>1,1547449435=>1,1547163917=>1,1546909059=>1,1546907846=>1,1546951506=>1,1546978275=>1,1547114742=>1,1546298310=>1,1546122797=>1,1543131445=>1,1542908278=>1,1543131594=>1,1543135662=>1,1543172593=>1,1543140281=>1,1542773828=>1,1542752015=>1,1542693834=>1,1542655003=>1,1542713367=>1,1542715283=>1,1542751757=>1,1542728095=>1,1544072775=>1,1544663563=>1,1546065827=>1,1546028575=>1,1546067835=>1,1546067876=>1,1546110196=>1,1546067948=>1,1546026685=>1,1546026645=>1,1545275345=>1,1545153668=>1,1545631946=>1,1546011116=>1,1546026636=>1,1558079465=>1,1558079466=>1,1567967259=>1,1567935872=>1,1568016565=>1,1568017383=>1,1568055012=>1,1568054288=>1,1567879618=>1,1567879474=>1,1567842255=>1,1567842254=>1,1567842264=>1,1567842548=>1,1567879426=>1,1567842802=>1,1568073842=>1,1568154256=>1,1568743857=>1,1568737157=>1,1568746135=>1,1568760145=>1,1568785961=>1,1568779014=>1,1568736898=>1,1568564703=>1,1568365069=>1,1568353975=>1,1568385912=>1,1568399767=>1,1568483343=>1,1567842253=>1,1567842252=>1,1567150910=>1,1567150494=>1,1567151357=>1,1567151425=>1,1567206258=>1,1567151740=>1,1567150397=>1,1567150186=>1,1567089481=>1,1567040367=>1,1567125136=>1,1567125653=>1,1567150106=>1,1567138273=>1,1567690016=>1,1567696114=>1,1567839522=>1,1567839375=>1,1567841090=>1,1567842086=>1,1567842250=>1,1567842249=>1,1567839220=>1,1567839219=>1,1567762820=>1,1567752130=>1,1567763523=>1,1567763542=>1,1567820304=>1,1568786446=>1,1568787607=>1,1571441820=>1,1571441749=>1,1571442068=>1,1571442094=>1,1571465664=>1,1571465534=>1,1571125710=>1,1570691214=>1,1570631651=>1,1570613439=>1,1570631655=>1,1570631673=>1,1570690990=>1,1570689481=>1,1571540258=>1,1571587098=>1,1541444909=>1,1572029801=>1,1572117143=>1,1572117588=>1,1572124516=>1,1572117914=>1,1571782058=>1,1571743732=>1,1571707252=>1,1571698514=>1,1571707274=>1,1571707422=>1,1571708293=>1,1570583318=>1,1570523353=>1,1569561247=>1,1569449894=>1,1569582934=>1,1569589905=>1,1569687325=>1,1569601587=>1,1569447076=>1,1569436538=>1,1568791189=>1,1568788071=>1,1568791976=>1,1569322377=>1,1569434581=>1,1569322410=>1,1569689784=>1,1569699540=>1,1570149011=>1,1569785196=>1,1570277100=>1,1570278872=>1,1570287211=>1,1570283487=>1,1569759587=>1,1569758510=>1,1569710278=>1,1569700877=>1,1569710556=>1,1569713979=>1,1569749490=>1,1566866770=>1,1566823468=>1,1558250002=>1,1558236977=>1,1558251729=>1,1558350651=>1,1558611560=>1,1558553165=>1,1558236919=>1,1558201775=>1,1558099323=>1,1558099304=>1,1558104567=>1,1558106413=>1,1558183329=>1,1558106419=>1,1558823468=>1,1559324371=>1,1559446889=>1,1559437008=>1,1559502597=>1,1559550846=>1,1559704489=>1,1559603963=>1,1559429299=>1,1559415810=>1,1559391153=>1,1559376440=>1,1559391297=>1,1559391462=>1,1559394526=>1,1558096592=>1,1558094390=>1,1558080631=>1,1558080623=>1,1558080636=>1,1558080705=>1,1558080729=>1,1558080706=>1,1558080590=>1,1558080471=>1,1558080278=>1,1558079567=>1,1558080318=>1,1558080402=>1,1558080437=>1,1558080429=>1,1558080801=>1,1558080808=>1,1558092179=>1,1558091266=>1,1558092204=>1,1558092242=>1,1558092347=>1,1558092244=>1,1558085477=>1,1558080839=>1,1558080820=>1,1558080810=>1,1558080823=>1,1558080830=>1,1558080837=>1,1559722741=>1,1559723450=>1,1565516461=>1,1565502831=>1,1565560482=>1,1565583688=>1,1566139394=>1,1565666931=>1,1565480794=>1,1565479575=>1,1564515331=>1,1564466558=>1,1564528439=>1,1565025550=>1,1565132888=>1,1565026636=>1,1566139675=>1,1566205514=>1,1566565365=>1,1566532774=>1,1566565425=>1,1566565446=>1,1566775665=>1,1566565501=>1,1566488746=>1,1566478891=>1,1566248644=>1,1566232803=>1,1566286552=>1,1566287404=>1,1566363200=>1,1564446352=>1,1564085016=>1,1560063944=>1,1560026399=>1,1560164689=>1,1560189141=>1,1560235527=>1,1560190747=>1,1560025389=>1,1559885946=>1,1559723833=>1,1559723830=>1,1559816068=>1,1559859063=>1,1559883552=>1,1559868934=>1,1560259798=>1,1560260746=>1,1563337484=>1,1562364960=>1,1563602476=>1,1563605640=>1,1564043363=>1,1563686760=>1,1560564296=>1,1560279874=>1,1560267284=>1,1560263643=>1,1560268633=>1,1560270677=>1,1560276564=>1,1572296144=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-17.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1607837059=>1,1607830329=>1,1607838219=>1,1607838748=>1,1607841444=>1,1607838750=>1,1607721715=>1,1607721714=>1,1607717448=>1,1607716247=>1,1607718921=>1,1607720972=>1,1607721538=>1,1607721383=>1,1607844446=>1,1607855258=>1,1607937408=>1,1607937348=>1,1607937418=>1,1607937422=>1,1607937468=>1,1607937467=>1,1607937256=>1,1607937218=>1,1607937126=>1,1607855588=>1,1607937129=>1,1607937169=>1,1607937213=>1,1607937210=>1,1607716241=>1,1607716234=>1,1607517159=>1,1606386305=>1,1607665566=>1,1607670660=>1,1607698951=>1,1607696672=>1,1606220523=>1,1606220013=>1,1606214310=>1,1606214172=>1,1606214528=>1,1606214584=>1,1606218902=>1,1606218487=>1,1607698957=>1,1607698995=>1,1607711764=>1,1607711760=>1,1607711765=>1,1607711776=>1,1607715802=>1,1607714331=>1,1607711755=>1,1607710917=>1,1607699684=>1,1607699676=>1,1607701658=>1,1607704724=>1,1607706915=>1,1607937582=>1,1607937608=>1,1610758353=>1,1610750680=>1,1610768526=>1,1610779492=>1,1610874161=>1,1610865081=>1,1610381126=>1,1610380619=>1,1609918383=>1,1609563546=>1,1610297044=>1,1610370892=>1,1610380038=>1,1610370960=>1,1611189498=>1,1611220424=>1,1612165735=>1,1612005950=>1,1612383621=>1,1612383850=>1,1612396868=>1,1612395327=>1,1611954946=>1,1611857322=>1,1611264560=>1,1611225654=>1,1611294314=>1,1611377451=>1,1611827515=>1,1611795903=>1,1609558947=>1,1609494465=>1,1608133357=>1,1607941380=>1,1608154568=>1,1608262110=>1,1608323278=>1,1608263513=>1,1607941160=>1,1607939251=>1,1607937685=>1,1607937659=>1,1607937780=>1,1607937942=>1,1607939222=>1,1607937998=>1,1608323681=>1,1608325065=>1,1609494057=>1,1609494032=>1,1609494223=>1,1609494290=>1,1609494440=>1,1609494359=>1,1609493931=>1,1609493783=>1,1608346446=>1,1608343649=>1,1608893081=>1,1609117351=>1,1609423366=>1,1606213996=>1,1606213772=>1,1602364535=>1,1602358685=>1,1602467674=>1,1602480642=>1,1602516297=>1,1602503331=>1,1602358391=>1,1602358363=>1,1602358031=>1,1602358021=>1,1602358058=>1,1602358163=>1,1602358319=>1,1602358177=>1,1602564762=>1,1602620777=>1,1603178230=>1,1603097490=>1,1603178259=>1,1603178279=>1,1603184131=>1,1603182911=>1,1603088360=>1,1603085590=>1,1602662633=>1,1602630872=>1,1602978473=>1,1602989788=>1,1603021495=>1,1602990444=>1,1602357689=>1,1602357580=>1,1600816212=>1,1600814622=>1,1600817296=>1,1600863557=>1,1600944925=>1,1600894498=>1,1600812874=>1,1600809273=>1,1600799358=>1,1600788610=>1,1600806959=>1,1600807037=>1,1600808419=>1,1600808231=>1,1600983762=>1,1600985617=>1,1601332385=>1,1601326434=>1,1601411522=>1,1601446644=>1,1602303917=>1,1602235300=>1,1601324073=>1,1601310176=>1,1600993397=>1,1600993055=>1,1601010320=>1,1601056605=>1,1601120357=>1,1603185938=>1,1603219532=>1,1605168191=>1,1605033578=>1,1605695623=>1,1605695629=>1,1605695636=>1,1605695631=>1,1604959335=>1,1604809843=>1,1604548969=>1,1604545323=>1,1604548995=>1,1604558861=>1,1604790803=>1,1604685680=>1,1605695637=>1,1605695663=>1,1605850064=>1,1605848878=>1,1605857630=>1,1606176233=>1,1606194852=>1,1606180370=>1,1605842269=>1,1605841506=>1,1605782820=>1,1605762598=>1,1605818318=>1,1605840908=>1,1605841458=>1,1604545296=>1,1604545295=>1,1603267793=>1,1603256721=>1,1603526641=>1,1603767005=>1,1603932571=>1,1603870472=>1,1603251427=>1,1603251414=>1,1603251340=>1,1603225516=>1,1603251347=>1,1603251388=>1,1603251412=>1,1603251391=>1,1603934281=>1,1603944722=>1,1604227441=>1,1604225840=>1,1604353315=>1,1604435202=>1,1604545294=>1,1604445370=>1,1604193652=>1,1604170787=>1,1603949392=>1,1603948832=>1,1603950844=>1,1603979174=>1,1603983148=>1,1612397619=>1,1612402178=>1,1654608693=>1,1654606047=>1,1654609656=>1,1654717782=>1,1654916319=>1,1654838731=>1,1654554044=>1,1653715881=>1,1653547806=>1,1653161533=>1,1653596434=>1,1653647338=>1,1653704951=>1,1653665300=>1,1655133422=>1,1655143570=>1,1657395557=>1,1657352674=>1,1657705951=>1,1657935817=>1,1658257552=>1,1657978714=>1,1657330762=>1,1657148098=>1,1655675688=>1,1655213960=>1,1655751428=>1,1656713757=>1,1656857610=>1,1656828198=>1,1652205615=>1,1652114239=>1,1634438077=>1,1634437996=>1,1634438890=>1,1645798334=>1,1645880993=>1,1645802223=>1,1634437916=>1,1634437700=>1,1634120778=>1,1633799899=>1,1634292762=>1,1634435279=>1,1634436735=>1,1634436120=>1,1645900014=>1,1645952533=>1,1651704870=>1,1651638849=>1,1651745056=>1,1651930746=>1,1652114068=>1,1651964450=>1,1651315773=>1,1650934750=>1,1646032886=>1,1646019812=>1,1650800818=>1,1650826646=>1,1650932797=>1,1658357399=>1,1658443417=>1,1668662921=>1,1668363494=>1,1668783050=>1,1669095983=>1,1671432736=>1,1669242949=>1,1668186217=>1,1665874110=>1,1664068993=>1,1663753996=>1,1664397474=>1,1664706081=>1,1664975118=>1,1664809046=>1,1673829864=>1,1673830190=>1,1677783070=>1,1677665346=>1,1677975179=>1,1678158264=>1,1678733829=>1,1678189299=>1,1677030163=>1,1676916846=>1,1673971420=>1,1673894310=>1,1675982541=>1,1676290976=>1,1676903134=>1,1662398522=>1,1661652056=>1,1659253139=>1,1659227807=>1,1659406868=>1,1659549602=>1,1659615655=>1,1659559361=>1,1659125618=>1,1659059360=>1,1658799305=>1,1658738645=>1,1658937307=>1,1658952375=>1,1659033859=>1,1658955362=>1,1659682807=>1,1659930922=>1,1660823987=>1,1660484401=>1,1660930087=>1,1660947946=>1,1661595659=>1,1661367581=>1,1660484248=>1,1660481183=>1,1660269265=>1,1660159961=>1,1660352781=>1,1660385539=>1,1660467245=>1,1633624845=>1,1633510022=>1,1613754265=>1,1613752278=>1,1614063618=>1,1614109290=>1,1614432990=>1,1614201090=>1,1613750804=>1,1613733030=>1,1613542797=>1,1613537818=>1,1613607558=>1,1613631740=>1,1613715463=>1,1613633470=>1,1614795586=>1,1614795632=>1,1614802516=>1,1614802050=>1,1614803181=>1,1614803339=>1,1614805031=>1,1614803733=>1,1614801973=>1,1614801944=>1,1614797620=>1,1614795707=>1,1614798883=>1,1614799138=>1,1614801173=>1,1614799386=>1,1613536716=>1,1613499757=>1,1612638534=>1,1612638089=>1,1612639430=>1,1612639431=>1,1612748435=>1,1612656919=>1,1612637379=>1,1612497520=>1,1612407616=>1,1612402220=>1,1612430770=>1,1612436955=>1,1612446545=>1,1612439091=>1,1612780234=>1,1612934937=>1,1613275315=>1,1613261581=>1,1613301021=>1,1613348971=>1,1613467164=>1,1613381278=>1,1613199378=>1,1613184774=>1,1612968712=>1,1612939907=>1,1612978911=>1,1613011706=>1,1613115859=>1,1614805163=>1,1614805326=>1,1632789595=>1,1632765033=>1,1632840132=>1,1632840683=>1,1632930097=>1,1632843317=>1,1632706700=>1,1632696681=>1,1632462870=>1,1632455603=>1,1632505376=>1,1632551178=>1,1632603331=>1,1632561970=>1,1633032831=>1,1633043181=>1,1633278358=>1,1633254860=>1,1633444314=>1,1633446378=>1,1633488234=>1,1633479069=>1,1633238846=>1,1633219538=>1,1633053709=>1,1633043890=>1,1633103355=>1,1633176338=>1,1633198815=>1,1632447398=>1,1632441918=>1,1616891697=>1,1616748161=>1,1618894857=>1,1618894938=>1,1625689163=>1,1618897371=>1,1616678605=>1,1616672306=>1,1616331381=>1,1616132561=>1,1616481565=>1,1616530523=>1,1616624121=>1,1616579409=>1,1625776672=>1,1626047228=>1,1631843622=>1,1631843559=>1,1631853108=>1,1632300484=>1,1632441917=>1,1632390118=>1,1631802488=>1,1631626187=>1,1626460708=>1,1626059325=>1,1626581605=>1,1626714165=>1,1627380467=>1,1600784902=>1,1600784841=>1,1586426250=>1,1586424089=>1,1586426452=>1,1586427342=>1,1587207775=>1,1587130338=>1,1586419602=>1,1586343059=>1,1586324499=>1,1586283772=>1,1586324595=>1,1586324923=>1,1586325195=>1,1586325139=>1,1587228975=>1,1587283960=>1,1588906966=>1,1588899367=>1,1588916849=>1,1588929085=>1,1588931831=>1,1588929088=>1,1588884246=>1,1588844399=>1,1587314698=>1,1587301801=>1,1587468879=>1,1588657046=>1,1588836480=>1,1588722128=>1,1586264270=>1,1586264266=>1,1583755695=>1,1583755584=>1,1583755818=>1,1583756721=>1,1583853398=>1,1583853397=>1,1583737447=>1,1583726580=>1,1583625218=>1,1583624758=>1,1583627010=>1,1583673427=>1,1583723971=>1,1583691127=>1,1584509093=>1,1584525879=>1,1585995670=>1,1585970534=>1,1586006474=>1,1586121286=>1,1586264230=>1,1586220217=>1,1585955988=>1,1585954947=>1,1585221393=>1,1584577608=>1,1585321902=>1,1585359525=>1,1585954887=>1,1588932077=>1,1588968981=>1,1590868207=>1,1590827348=>1,1590957304=>1,1591084128=>1,1591088729=>1,1591086074=>1,1590820892=>1,1590805401=>1,1590537093=>1,1590514091=>1,1590630909=>1,1590683362=>1,1590789873=>1,1590782282=>1,1591135299=>1,1591231434=>1,1591634210=>1,1591597952=>1,1591634433=>1,1591635793=>1,1591671062=>1,1591670291=>1,1591574157=>1,1591572821=>1,1591279085=>1,1591271802=>1,1591374775=>1,1591531895=>1,1591567742=>1,1590449466=>1,1590386704=>1,1589205590=>1,1589204330=>1,1589653227=>1,1589728185=>1,1590059591=>1,1590052058=>1,1589199450=>1,1589114703=>1,1589018788=>1,1588972751=>1,1589080109=>1,1589091084=>1,1589109841=>1,1589097770=>1,1590060049=>1,1590060050=>1,1590283772=>1,1590265595=>1,1590312369=>1,1590344494=>1,1590373089=>1,1590348749=>1,1590259654=>1,1590224773=>1,1590113125=>1,1590087732=>1,1590171774=>1,1590182606=>1,1590224770=>1,1583616674=>1,1583613467=>1,1580125867=>1,1580125730=>1,1580125874=>1,1580129803=>1,1580129805=>1,1580129804=>1,1580125708=>1,1580114937=>1,1580066988=>1,1580041918=>1,1580067063=>1,1580114768=>1,1580114893=>1,1580114817=>1,1580129816=>1,1580129817=>1,1580129901=>1,1580129890=>1,1580129902=>1,1580129905=>1,1580129910=>1,1580129908=>1,1580129880=>1,1580129868=>1,1580129825=>1,1580129820=>1,1580129839=>1,1580129842=>1,1580129852=>1,1580129851=>1,1579846666=>1,1579800252=>1,1578619422=>1,1578618144=>1,1578621888=>1,1578622386=>1,1578625715=>1,1578624968=>1,1578618031=>1,1578617168=>1,1578605111=>1,1578604223=>1,1578606129=>1,1578607910=>1,1578608593=>1,1578608060=>1,1578628906=>1,1578629278=>1,1578920950=>1,1578833658=>1,1578941804=>1,1578956407=>1,1579103691=>1,1579070898=>1,1578798230=>1,1578795406=>1,1578630367=>1,1578630175=>1,1578700734=>1,1578767382=>1,1578784866=>1,1580129914=>1,1580129915=>1,1581255042=>1,1581055786=>1,1581818997=>1,1581945089=>1,1581953185=>1,1581946378=>1,1581036111=>1,1580996735=>1,1580130044=>1,1580130033=>1,1580368277=>1,1580434707=>1,1580761210=>1,1580707885=>1,1581977535=>1,1581997346=>1,1582280162=>1,1582270902=>1,1582305931=>1,1582305932=>1,1583613463=>1,1583596052=>1,1582245086=>1,1582245082=>1,1582069006=>1,1582056388=>1,1582090604=>1,1582145968=>1,1582194902=>1,1580130029=>1,1580130025=>1,1580129946=>1,1580129945=>1,1580129949=>1,1580129953=>1,1580129959=>1,1580129954=>1,1580129943=>1,1580129940=>1,1580129920=>1,1580129919=>1,1580129922=>1,1580129927=>1,1580129930=>1,1580129929=>1,1580129965=>1,1580129973=>1,1580130001=>1,1580130000=>1,1580130014=>1,1580130016=>1,1580130024=>1,1580130018=>1,1580129999=>1,1580129990=>1,1580129984=>1,1580129976=>1,1580129987=>1,1580129988=>1,1580129989=>1,1591671274=>1,1591673049=>1,1598646351=>1,1598632532=>1,1598646376=>1,1598650467=>1,1598652196=>1,1598651133=>1,1598632425=>1,1598629153=>1,1598573170=>1,1598565572=>1,1598580710=>1,1598591084=>1,1598601085=>1,1598598997=>1,1598652215=>1,1598675336=>1,1598681760=>1,1598681294=>1,1598682000=>1,1598682015=>1,1598682547=>1,1598682128=>1,1598681238=>1,1598681200=>1,1598677490=>1,1598677045=>1,1598678123=>1,1598678180=>1,1598678556=>1,1598678456=>1,1598521062=>1,1598507458=>1,1597638737=>1,1597563733=>1,1597638806=>1,1597638807=>1,1597652922=>1,1597643810=>1,1597539568=>1,1597526966=>1,1597168212=>1,1597072387=>1,1597393455=>1,1597411803=>1,1597434603=>1,1597428793=>1,1597738827=>1,1597817246=>1,1598416920=>1,1598389518=>1,1598490132=>1,1598490561=>1,1598507092=>1,1598497054=>1,1598355422=>1,1598249588=>1,1598101881=>1,1598073824=>1,1598113163=>1,1598119741=>1,1598240818=>1,1598682925=>1,1598684175=>1,1599505842=>1,1599430397=>1,1599597010=>1,1599622073=>1,1599658767=>1,1599626646=>1,1599424619=>1,1599420906=>1,1599411273=>1,1599410990=>1,1599414921=>1,1599415663=>1,1599420527=>1,1599419554=>1,1599665572=>1,1599673182=>1,1600041519=>1,1599835460=>1,1600194898=>1,1600529695=>1,1600730237=>1,1600700873=>1,1599825574=>1,1599818651=>1,1599801594=>1,1599686112=>1,1599802059=>1,1599815225=>1,1599815419=>1,1599408711=>1,1599408354=>1,1599043049=>1,1599037447=>1,1599046734=>1,1599054372=>1,1599064977=>1,1599058418=>1,1599034093=>1,1599030825=>1,1598966931=>1,1598914249=>1,1598979902=>1,1598991544=>1,1599011617=>1,1599008105=>1,1599065298=>1,1599065407=>1,1599375544=>1,1599373809=>1,1599381533=>1,1599382562=>1,1599394174=>1,1599391284=>1,1599373681=>1,1599373529=>1,1599090396=>1,1599089994=>1,1599091663=>1,1599103529=>1,1599256286=>1,1596964365=>1,1596944779=>1,1592969028=>1,1592968122=>1,1592969105=>1,1592970793=>1,1592971714=>1,1592971640=>1,1592952467=>1,1592933307=>1,1592932820=>1,1592932646=>1,1592932866=>1,1592932915=>1,1592933302=>1,1592932986=>1,1592971764=>1,1592971794=>1,1593120648=>1,1593115362=>1,1593128939=>1,1593129453=>1,1593153445=>1,1593150996=>1,1593031375=>1,1592983408=>1,1592975063=>1,1592974871=>1,1592976558=>1,1592977250=>1,1592981016=>1,1592981015=>1,1592932610=>1,1592898298=>1,1592103814=>1,1592089395=>1,1592104029=>1,1592104256=>1,1592105748=>1,1592104923=>1,1592089394=>1,1592085157=>1,1591749794=>1,1591699717=>1,1591886671=>1,1592022539=>1,1592052126=>1,1592051282=>1,1592118892=>1,1592129337=>1,1592282876=>1,1592279400=>1,1592286412=>1,1592305763=>1,1592895512=>1,1592370252=>1,1592245906=>1,1592245830=>1,1592226950=>1,1592167187=>1,1592238953=>1,1592240269=>1,1592240847=>1,1593154659=>1,1593158624=>1,1595871447=>1,1595870374=>1,1595872609=>1,1595873426=>1,1595875411=>1,1595874769=>1,1595868913=>1,1595867762=>1,1595646892=>1,1595638766=>1,1595654197=>1,1595684866=>1,1595835384=>1,1595725905=>1,1595877073=>1,1595929095=>1,1596616147=>1,1596348613=>1,1596618152=>1,1596620076=>1,1596853134=>1,1596705497=>1,1596347269=>1,1596331422=>1,1596079098=>1,1595931011=>1,1596088445=>1,1596094440=>1,1596271159=>1,1595551522=>1,1595479292=>1,1593862395=>1,1593843914=>1,1594216053=>1,1594216330=>1,1594439514=>1,1594426697=>1,1593825018=>1,1593806368=>1,1593642187=>1,1593510154=>1,1593681022=>1,1593705031=>1,1593710753=>1,1593710693=>1,1594445773=>1,1594447921=>1,1594869149=>1,1594816741=>1,1595004829=>1,1595382264=>1,1595451018=>1,1595417377=>1,1594740109=>1,1594739248=>1,1594454074=>1,1594451300=>1,1594464981=>1,1594465482=>1,1594479587=>1,1578594366=>1,);?>
1
+ <?php return array(1731740774=>1731740775,1731740750=>1731740751,1731740736=>1731740737,1731740712=>1731740713,1731740686=>1731740687,1730647954=>1730647955,1730647454=>1730647455,1730647450=>1730647451,1730647436=>1730647437,1730647226=>1730647227,1730647204=>1730647205,1730647200=>1730647201,1730647178=>1730647179,1730647170=>1730647171,1729234516=>1729234517,1728131850=>1728131851,1728131148=>1728131149,1711182470=>1711182471,1700793128=>1700793135,1700793118=>1700793121,1700792872=>1700792879,1700792862=>1700792865,1699175094=>1699175095,1612639430=>1612639431,1607721714=>1607721715,1605695636=>1605695637,1604545294=>1604545295,1702913123=>1,1705452023=>1,1705269551=>1,1702878134=>1,1702913304=>1,1702856088=>1,1701661021=>1,1707642414=>1,1707651642=>1,1707658066=>1,1707651878=>1,1707652637=>1,1707654943=>1,1707651630=>1,1707650571=>1,1707654989=>1,1707636972=>1,1701634772=>1,1707648307=>1,1707658313=>1,1705495742=>1,1700992552=>1,1699865892=>1,1699848713=>1,1699869262=>1,1699871497=>1,1700679389=>1,1699833990=>1,1699815095=>1,1699811476=>1,1699811830=>1,1699812943=>1,1699814938=>1,1700792861=>1,1700792867=>1,1701088567=>1,1701088350=>1,1701089454=>1,1701585921=>1,1701591918=>1,1701041204=>1,1700998154=>1,1700793117=>1,1700793123=>1,1700924306=>1,1707658423=>1,1701629786=>1,1707731853=>1,1728379412=>1,1728379410=>1,1728428834=>1,1728433138=>1,1728479481=>1,1728457635=>1,1728358374=>1,1728357578=>1,1728265586=>1,1728142727=>1,1728269836=>1,1728269838=>1,1728339032=>1,1728329289=>1,1728480864=>1,1728480921=>1,1728759090=>1,1728742933=>1,1728759652=>1,1728762434=>1,1728798774=>1,1728767224=>1,1728742407=>1,1728687334=>1,1728501190=>1,1728480957=>1,1728609021=>1,1728662815=>1,1728666004=>1,1728662816=>1,1728142520=>1,1711233722=>1,1709649442=>1,1709379232=>1,1709650586=>1,1709700362=>1,1710980901=>1,1709701578=>1,1709373933=>1,1709313247=>1,1707721792=>1,1707682348=>1,1707728570=>1,1699811423=>1,1707951864=>1,1707945352=>1,1710999362=>1,1711011666=>1,1711226570=>1,1711225982=>1,1711229346=>1,1711230734=>1,1711233009=>1,1711232826=>1,1711225978=>1,1711223666=>1,1711193286=>1,1711013410=>1,1711219846=>1,1711223597=>1,1711223634=>1,1707666034=>1,1699084943=>1,1668662921=>1,1668363494=>1,1668783050=>1,1669242949=>1,1671432736=>1,1669243096=>1,1666751130=>1,1665874110=>1,1664068993=>1,1663753996=>1,1664397474=>1,1664706081=>1,1664975118=>1,1664809046=>1,1673829864=>1,1673830190=>1,1678158264=>1,1677783070=>1,1678189299=>1,1678263172=>1,1678733829=>1,1678470499=>1,1677665346=>1,1677030163=>1,1675667281=>1,1673894310=>1,1675982541=>1,1676903134=>1,1676916846=>1,1662554383=>1,1661503599=>1,1659253139=>1,1659227807=>1,1659406868=>1,1659559361=>1,1659615655=>1,1659567681=>1,1659125618=>1,1659059360=>1,1658799305=>1,1658738645=>1,1658937307=>1,1658952375=>1,1659033859=>1,1658955362=>1,1659682807=>1,1659930922=>1,1660823987=>1,1660484401=>1,1660930087=>1,1660947946=>1,1661367581=>1,1661011110=>1,1660484248=>1,1660481183=>1,1660269265=>1,1660159961=>1,1660352781=>1,1660385539=>1,1660467245=>1,1678737511=>1,1679861526=>1,1696340235=>1,1696262649=>1,1696341360=>1,1696359697=>1,1697383218=>1,1696522129=>1,1696212642=>1,1696160725=>1,1696160594=>1,1696160592=>1,1696160601=>1,1696160604=>1,1696160686=>1,1696160656=>1,1697776606=>1,1697782988=>1,1728815108=>1,1699064412=>1,1699093168=>1,1699376675=>1,1699669615=>1,1699459802=>1,1698965729=>1,1698888982=>1,1697874929=>1,1697872351=>1,1698135306=>1,1698791165=>1,1698888664=>1,1696160590=>1,1696160573=>1,1680479005=>1,1680240594=>1,1680517587=>1,1680629186=>1,1680635460=>1,1680629882=>1,1680217740=>1,1680125038=>1,1679900784=>1,1679895118=>1,1679915536=>1,1680093618=>1,1680112644=>1,1680699244=>1,1694514035=>1,1696132800=>1,1695977547=>1,1696139309=>1,1696156238=>1,1696160551=>1,1696160514=>1,1695901217=>1,1695900778=>1,1695549263=>1,1694571339=>1,1695718714=>1,1695788314=>1,1695846022=>1,1699677420=>1,1728977665=>1,1730647994=>1,1730647993=>1,1730647996=>1,1730732673=>1,1730751625=>1,1730751546=>1,1730647976=>1,1730647967=>1,1730647939=>1,1730647742=>1,1730647953=>1,1730647956=>1,1730647964=>1,1730647958=>1,1730751671=>1,1730774295=>1,1731187284=>1,1731182950=>1,1731190072=>1,1731203154=>1,1731291507=>1,1731274237=>1,1730979008=>1,1730953657=>1,1730785598=>1,1730785585=>1,1730785600=>1,1730873026=>1,1730882621=>1,1730647741=>1,1730647733=>1,1730647225=>1,1730647222=>1,1730647229=>1,1730647429=>1,1730647442=>1,1730647441=>1,1730647214=>1,1730647213=>1,1730636936=>1,1730628967=>1,1730647183=>1,1730647207=>1,1730647210=>1,1730647447=>1,1730647457=>1,1730647708=>1,1730647706=>1,1730647718=>1,1730647722=>1,1730647731=>1,1730647727=>1,1730647697=>1,1730647684=>1,1730647465=>1,1730647460=>1,1730647472=>1,1730647477=>1,1730647483=>1,1731313538=>1,1731396330=>1,1731740675=>1,1731724857=>1,1731740678=>1,1731740702=>1,1731740735=>1,1731740728=>1,1731666966=>1,1731664763=>1,1731664725=>1,1731664713=>1,1731664735=>1,1731664749=>1,1731664753=>1,1731740743=>1,1731740756=>1,1731740836=>1,1731740834=>1,1731740838=>1,1731740848=>1,1731740860=>1,1731740858=>1,1731740817=>1,1731740811=>1,1731740762=>1,1731740761=>1,1731740787=>1,1731740790=>1,1731740795=>1,1731664577=>1,1731664568=>1,1731478562=>1,1731452621=>1,1731516534=>1,1731566860=>1,1731570029=>1,1731568641=>1,1731452619=>1,1731452517=>1,1731432708=>1,1731422478=>1,1731432716=>1,1731432798=>1,1731432814=>1,1731573811=>1,1731598339=>1,1731630849=>1,1731630401=>1,1731648068=>1,1731648274=>1,1731664076=>1,1731648666=>1,1731630337=>1,1731630126=>1,1731599935=>1,1731599105=>1,1731601950=>1,1731617793=>1,1731630082=>1,1730628912=>1,1730569558=>1,1729234505=>1,1729234503=>1,1729234506=>1,1729234509=>1,1729234513=>1,1729234510=>1,1729234497=>1,1729234003=>1,1729180494=>1,1729134755=>1,1729180505=>1,1729180560=>1,1729207938=>1,1729197301=>1,1729234514=>1,1729234518=>1,1729386753=>1,1729363286=>1,1729386769=>1,1729386809=>1,1729407002=>1,1729386929=>1,1729357246=>1,1729326522=>1,1729253377=>1,1729251995=>1,1729278977=>1,1729278986=>1,1729279026=>1,1729131282=>1,1729131278=>1,1658357399=>1,1728977557=>1,1728977738=>1,1728977798=>1,1728977890=>1,1728977802=>1,1728977426=>1,1728939466=>1,1728885050=>1,1728873484=>1,1728939449=>1,1728939454=>1,1728939462=>1,1728988782=>1,1728990213=>1,1729099698=>1,1729091979=>1,1729130497=>1,1729130633=>1,1729130754=>1,1729130709=>1,1729052405=>1,1729052229=>1,1729021002=>1,1728990249=>1,1729034887=>1,1729034986=>1,1729043498=>1,1729411427=>1,1729413245=>1,1729946029=>1,1729946025=>1,1729946036=>1,1729991686=>1,1730030169=>1,1730029640=>1,1729937929=>1,1729937449=>1,1729937430=>1,1729937418=>1,1729937437=>1,1729937441=>1,1729937446=>1,1730042314=>1,1730066010=>1,1730421610=>1,1730415382=>1,1730511101=>1,1730521187=>1,1730554605=>1,1730521273=>1,1730149236=>1,1730130657=>1,1730096281=>1,1730069201=>1,1730130177=>1,1730130530=>1,1730130546=>1,1729926518=>1,1729909765=>1,1729658450=>1,1729649768=>1,1729658452=>1,1729658821=>1,1729672275=>1,1729658822=>1,1729596138=>1,1729595943=>1,1729571146=>1,1729530714=>1,1729586311=>1,1729587078=>1,1729587159=>1,1729706530=>1,1729724500=>1,1729824567=>1,1729813096=>1,1729839874=>1,1729853074=>1,1729902734=>1,1729866561=>1,1729806499=>1,1729792141=>1,1729737484=>1,1729731554=>1,1729788490=>1,1729790730=>1,1729792138=>1,1728868609=>1,1657935817=>1,1604353315=>1,1604227441=>1,1604435202=>1,1604445370=>1,1604545296=>1,1604545295=>1,1604225840=>1,1604193652=>1,1603948832=>1,1603944722=>1,1603949392=>1,1603950844=>1,1604170787=>1,1603979174=>1,1604545323=>1,1604548969=>1,1605695631=>1,1605695623=>1,1605762517=>1,1605762598=>1,1605818318=>1,1605782820=>1,1605168191=>1,1605033578=>1,1604685680=>1,1604548995=>1,1604790803=>1,1604809843=>1,1604959335=>1,1604855718=>1,1603934281=>1,1603932571=>1,1603085590=>1,1603021495=>1,1603088360=>1,1603097490=>1,1603182911=>1,1603178230=>1,1602978473=>1,1602662633=>1,1602486384=>1,1602480642=>1,1602494428=>1,1602558283=>1,1602630872=>1,1602620777=>1,1603184131=>1,1603185938=>1,1603251427=>1,1603251414=>1,1603256721=>1,1603267793=>1,1603870472=>1,1603526641=>1,1603251412=>1,1603251388=>1,1603219532=>1,1603213157=>1,1603225516=>1,1603251340=>1,1603251347=>1,1605840908=>1,1605841458=>1,1607720972=>1,1607718921=>1,1607721383=>1,1607721538=>1,1607830329=>1,1607721715=>1,1607717448=>1,1607716247=>1,1607711776=>1,1607711755=>1,1607714331=>1,1607715802=>1,1607716241=>1,1607716234=>1,1607838219=>1,1607838750=>1,1607937218=>1,1607937213=>1,1607937256=>1,1607937348=>1,1607937422=>1,1607937418=>1,1607937210=>1,1607937169=>1,1607844446=>1,1607841444=>1,1607855588=>1,1607937126=>1,1607937129=>1,1607710917=>1,1607706915=>1,1606213772=>1,1606196253=>1,1606213996=>1,1606214172=>1,1606214528=>1,1606214310=>1,1606194901=>1,1606194852=>1,1605841506=>1,1605841505=>1,1605842269=>1,1605846513=>1,1606180370=>1,1606176233=>1,1606220013=>1,1606220523=>1,1607698995=>1,1607698957=>1,1607699676=>1,1607699684=>1,1607704724=>1,1607701658=>1,1607698951=>1,1607696672=>1,1606386305=>1,1606264984=>1,1607517159=>1,1607665566=>1,1607670660=>1,1602467674=>1,1602364535=>1,1599089994=>1,1599065298=>1,1599090396=>1,1599091663=>1,1599256286=>1,1599103529=>1,1599064977=>1,1599058418=>1,1599030825=>1,1599013931=>1,1599037447=>1,1599043049=>1,1599054372=>1,1599046734=>1,1599373529=>1,1599373681=>1,1599408711=>1,1599408354=>1,1599410990=>1,1599411273=>1,1599419554=>1,1599415663=>1,1599394174=>1,1599391284=>1,1599373803=>1,1599373800=>1,1599373809=>1,1599375544=>1,1599381533=>1,1599011617=>1,1599008105=>1,1598646351=>1,1598645801=>1,1598646376=>1,1598650467=>1,1598663062=>1,1598651133=>1,1598632532=>1,1598632425=>1,1598507458=>1,1598507092=>1,1598521062=>1,1598598997=>1,1598629153=>1,1598601085=>1,1598677490=>1,1598678123=>1,1598682128=>1,1598682015=>1,1598682547=>1,1598682925=>1,1598991544=>1,1598979902=>1,1598682000=>1,1598681760=>1,1598678456=>1,1598678180=>1,1598678556=>1,1598681200=>1,1598681294=>1,1599420527=>1,1599420906=>1,1601293146=>1,1601120357=>1,1601319785=>1,1601331427=>1,1601396856=>1,1601358404=>1,1601010320=>1,1600993397=>1,1600894498=>1,1600863557=>1,1600944925=>1,1600983762=>1,1600993055=>1,1600985617=>1,1601469149=>1,1601497382=>1,1602358163=>1,1602358058=>1,1602358177=>1,1602358319=>1,1602358685=>1,1602358391=>1,1602358031=>1,1602358021=>1,1602235300=>1,1601637237=>1,1602303917=>1,1602357580=>1,1602357689=>1,1600817296=>1,1600816212=>1,1599815225=>1,1599802059=>1,1599815419=>1,1599818651=>1,1599835460=>1,1599830255=>1,1599801594=>1,1599686112=>1,1599505842=>1,1599424619=>1,1599622073=>1,1599626646=>1,1599673182=>1,1599658767=>1,1600041519=>1,1600194898=>1,1600806959=>1,1600799358=>1,1600808231=>1,1600808419=>1,1600814622=>1,1600809273=>1,1600788610=>1,1600784902=>1,1600700873=>1,1600529695=>1,1600730237=>1,1600743403=>1,1600784841=>1,1607937467=>1,1607937468=>1,1633043181=>1,1633032831=>1,1633043890=>1,1633053709=>1,1633176338=>1,1633103355=>1,1632930097=>1,1632843317=>1,1632765033=>1,1632706700=>1,1632789595=>1,1632797255=>1,1632840683=>1,1632840132=>1,1633198815=>1,1633219538=>1,1634056351=>1,1633799899=>1,1634292762=>1,1634435279=>1,1634436735=>1,1634436120=>1,1633624845=>1,1633510022=>1,1633278358=>1,1633238846=>1,1633444314=>1,1633446378=>1,1633488234=>1,1633479069=>1,1632696681=>1,1632603331=>1,1625764304=>1,1625689163=>1,1626047228=>1,1626059325=>1,1626581605=>1,1626460708=>1,1618897371=>1,1618894938=>1,1616672306=>1,1616624121=>1,1616678605=>1,1616748161=>1,1618894857=>1,1618862699=>1,1626714165=>1,1627380467=>1,1632455603=>1,1632447398=>1,1632462870=>1,1632505376=>1,1632561970=>1,1632551178=>1,1632390118=>1,1632300484=>1,1631802488=>1,1631626187=>1,1631843622=>1,1631853108=>1,1631891482=>1,1634437700=>1,1634437916=>1,1654916319=>1,1654609656=>1,1655133422=>1,1655143570=>1,1655675688=>1,1655213960=>1,1654608693=>1,1654606047=>1,1653647338=>1,1653601029=>1,1653665300=>1,1653704951=>1,1654554044=>1,1653715881=>1,1655751428=>1,1656110246=>1,1657395557=>1,1657352674=>1,1657705951=>1,1657752460=>1,1657978714=>1,1598503202=>1,1657330762=>1,1657148098=>1,1656676045=>1,1656676043=>1,1656716130=>1,1656828198=>1,1656857610=>1,1653596434=>1,1653547806=>1,1645802223=>1,1645667663=>1,1645880993=>1,1645900014=>1,1646019812=>1,1645998173=>1,1645447554=>1,1645446805=>1,1634438077=>1,1634437996=>1,1634438789=>1,1634438890=>1,1645317747=>1,1635717548=>1,1646032886=>1,1650800818=>1,1651964450=>1,1651930746=>1,1652114068=>1,1652114239=>1,1653161533=>1,1652205615=>1,1651745056=>1,1651704870=>1,1650932797=>1,1650826646=>1,1650934750=>1,1651315773=>1,1651638849=>1,1616579409=>1,1616530523=>1,1610394126=>1,1610381258=>1,1610750680=>1,1610758353=>1,1610779492=>1,1610768526=>1,1610381133=>1,1610381126=>1,1609558947=>1,1609494525=>1,1609563546=>1,1609918383=>1,1610370892=>1,1609998570=>1,1610865081=>1,1610874161=>1,1612165735=>1,1612005950=>1,1612383621=>1,1612383850=>1,1612396868=>1,1612395327=>1,1611857322=>1,1611827515=>1,1611225654=>1,1611189498=>1,1611264560=>1,1611377451=>1,1611795903=>1,1609494465=>1,1609494440=>1,1607941380=>1,1607939251=>1,1608160470=>1,1608262110=>1,1608323278=>1,1608263513=>1,1607939222=>1,1607937998=>1,1607937608=>1,1607937582=>1,1607937659=>1,1607937685=>1,1607937942=>1,1607937780=>1,1608323681=>1,1608324578=>1,1609423366=>1,1609117351=>1,1609493931=>1,1609494057=>1,1609494359=>1,1609494223=>1,1608893081=>1,1608420753=>1,1608343649=>1,1608325065=>1,1608345646=>1,1608346446=>1,1608399206=>1,1612397619=>1,1612402178=>1,1614201090=>1,1614109290=>1,1614432990=>1,1614795586=>1,1614795707=>1,1614795632=>1,1614063618=>1,1613754265=>1,1613633470=>1,1613631740=>1,1613715463=>1,1613733030=>1,1613752278=>1,1613750804=>1,1614797620=>1,1614799386=>1,1614805163=>1,1614805031=>1,1614805326=>1,1616331381=>1,1616481565=>1,1616410737=>1,1614803733=>1,1614803181=>1,1614801944=>1,1614801173=>1,1614801973=>1,1614802050=>1,1614802516=>1,1613607558=>1,1613542797=>1,1612638534=>1,1612638089=>1,1612656919=>1,1612748435=>1,1612934937=>1,1612780234=>1,1612637379=>1,1612584644=>1,1612407616=>1,1612402220=>1,1612430770=>1,1612436955=>1,1612497520=>1,1612439091=>1,1612939907=>1,1612968712=>1,1613381278=>1,1613348971=>1,1613467164=>1,1613499757=>1,1613537818=>1,1613536716=>1,1613301021=>1,1613275315=>1,1613115859=>1,1612978911=>1,1613184774=>1,1613203097=>1,1613261581=>1,1658257552=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-18.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1700793128=>1700793135,1700792872=>1700792879,1743783938=>1,1743785997=>1,1743785998=>1,1743805191=>1,1743781874=>1,1743853796=>1,1743724508=>1,1743463018=>1,1743453795=>1,1743571310=>1,1743622287=>1,1743713036=>1,1743890693=>1,1743890866=>1,1743940555=>1,1743940554=>1,1743940557=>1,1743966549=>1,1743985472=>1,1743984715=>1,1743939870=>1,1743928026=>1,1743890880=>1,1743890868=>1,1743890897=>1,1743890900=>1,1743924908=>1,1743890911=>1,1743453794=>1,1743423988=>1,1743081561=>1,1743058454=>1,1743082483=>1,1743128277=>1,1743166638=>1,1743142482=>1,1743015619=>1,1743002478=>1,1742797112=>1,1742780870=>1,1742843625=>1,1742877797=>1,1742915957=>1,1742896688=>1,1743193475=>1,1743193661=>1,1743329593=>1,1743320711=>1,1743360533=>1,1743395338=>1,1743398032=>1,1743395446=>1,1743298409=>1,1743274181=>1,1743227187=>1,1743209009=>1,1743244051=>1,1743248238=>1,1743274180=>1,1743274179=>1,1743992365=>1,1743992366=>1,1744640372=>1,1744625125=>1,1744640413=>1,1744671276=>1,1744677121=>1,1744676865=>1,1744595988=>1,1744574764=>1,1744524081=>1,1744517172=>1,1744524094=>1,1744548866=>1,1744565522=>1,1744559539=>1,1744687947=>1,1744712710=>1,1746933041=>1,1745871132=>1,1746942491=>1,1747076347=>1,1747223487=>1,1747177753=>1,1744977762=>1,1744840586=>1,1744712713=>1,1744712712=>1,1744727077=>1,1744768792=>1,1744823183=>1,1744822290=>1,1744513845=>1,1744452148=>1,1744179693=>1,1744175461=>1,1744266598=>1,1744282330=>1,1744296802=>1,1744296001=>1,1744129336=>1,1744128145=>1,1744024410=>1,1743992460=>1,1744024411=>1,1744074840=>1,1744091330=>1,1744075179=>1,1744296865=>1,1744314536=>1,1744404652=>1,1744397466=>1,1744432718=>1,1744432728=>1,1744441300=>1,1744433372=>1,1744397425=>1,1744397330=>1,1744365658=>1,1744330026=>1,1744392794=>1,1744394244=>1,1744395009=>1,1742776074=>1,1742754463=>1,1741737733=>1,1741698097=>1,1741737737=>1,1741797378=>1,1741800698=>1,1741797414=>1,1741616790=>1,1741616750=>1,1741168373=>1,1741099066=>1,1741168439=>1,1741453078=>1,1741559312=>1,1741512466=>1,1742095571=>1,1742095809=>1,1742387228=>1,1742387224=>1,1742387239=>1,1742387257=>1,1742387271=>1,1742387259=>1,1742387217=>1,1742387216=>1,1742196182=>1,1742129490=>1,1742332156=>1,1742387202=>1,1742387215=>1,1742387209=>1,1740909446=>1,1740869208=>1,1731799709=>1,1731799697=>1,1731799713=>1,1731799725=>1,1731965457=>1,1731880375=>1,1731778716=>1,1731778714=>1,1731776376=>1,1731776340=>1,1731778653=>1,1731778710=>1,1731778713=>1,1731778712=>1,1732031962=>1,1732041737=>1,1740816704=>1,1740778356=>1,1740817272=>1,1740833658=>1,1740846850=>1,1740833662=>1,1740778339=>1,1740753146=>1,1732206594=>1,1732046852=>1,1732206842=>1,1732222627=>1,1732222842=>1,1742387273=>1,1742387276=>1,1742387610=>1,1742387605=>1,1742387613=>1,1742387619=>1,1742387638=>1,1742387632=>1,1742387602=>1,1742387600=>1,1742387537=>1,1742387529=>1,1742387550=>1,1742387556=>1,1742387596=>1,1742387589=>1,1742387641=>1,1742387642=>1,1742740762=>1,1742740590=>1,1742745756=>1,1742754166=>1,1747236108=>1,1742754449=>1,1742387897=>1,1742387832=>1,1742387684=>1,1742387672=>1,1742387691=>1,1742387695=>1,1742387705=>1,1742387519=>1,1742387518=>1,1742387361=>1,1742387358=>1,1742387362=>1,1742387365=>1,1742387379=>1,1742387378=>1,1742387355=>1,1742387354=>1,1742387297=>1,1742387278=>1,1742387301=>1,1742387329=>1,1742387348=>1,1742387334=>1,1742387397=>1,1742387410=>1,1742387488=>1,1742387477=>1,1742387492=>1,1742387501=>1,1742387507=>1,1742387503=>1,1742387468=>1,1742387459=>1,1742387419=>1,1742387412=>1,1742387425=>1,1742387427=>1,1742387448=>1,1742754478=>1,1747236124=>1,1755061692=>1,1755061648=>1,1755061770=>1,1755061825=>1,1755061877=>1,1755061868=>1,1755061492=>1,1755061141=>1,1755060127=>1,1755060030=>1,1755060598=>1,1755060896=>1,1755061135=>1,1755060976=>1,1755061887=>1,1755062009=>1,1755115095=>1,1755113798=>1,1755116857=>1,1755117417=>1,1755119133=>1,1755119056=>1,1755113096=>1,1755112942=>1,1755062161=>1,1755062071=>1,1755069603=>1,1755080392=>1,1755112089=>1,1755111507=>1,1755059688=>1,1755059565=>1,1754361948=>1,1754361777=>1,1754362309=>1,1754362562=>1,1754363250=>1,1754362644=>1,1754361711=>1,1754361699=>1,1754361042=>1,1754359018=>1,1754361047=>1,1754361123=>1,1754361291=>1,1754361252=>1,1754363522=>1,1754363538=>1,1755055161=>1,1755009935=>1,1755058721=>1,1755059290=>1,1755059487=>1,1755059477=>1,1754949048=>1,1754865206=>1,1754364011=>1,1754363549=>1,1754364697=>1,1754861732=>1,1754862495=>1,1755186062=>1,1755325681=>1,1757324460=>1,1757001298=>1,1757430531=>1,1757437147=>1,1757437149=>1,1757437148=>1,1756873836=>1,1756827698=>1,1755885421=>1,1755884594=>1,1756092892=>1,1756188204=>1,1756327456=>1,1756256921=>1,1757437171=>1,1757474058=>1,1757942516=>1,1757941987=>1,1757942926=>1,1757943873=>1,1758079414=>1,1757976400=>1,1757911006=>1,1757706906=>1,1757615117=>1,1757504790=>1,1757677905=>1,1757685920=>1,1757706017=>1,1755884243=>1,1755883298=>1,1755802197=>1,1755802078=>1,1755802377=>1,1755802957=>1,1755804042=>1,1755803801=>1,1755801466=>1,1755801332=>1,1755800159=>1,1755461782=>1,1755800431=>1,1755800811=>1,1755801192=>1,1755801055=>1,1755804617=>1,1755804777=>1,1755879673=>1,1755879516=>1,1755879942=>1,1755880006=>1,1755882190=>1,1755880646=>1,1755862951=>1,1755856593=>1,1755805003=>1,1755804906=>1,1755823453=>1,1755856558=>1,1755856591=>1,1754358489=>1,1754358083=>1,1753426080=>1,1753423791=>1,1753426581=>1,1753427302=>1,1753430143=>1,1753428220=>1,1753422902=>1,1753422777=>1,1753416941=>1,1753415969=>1,1753418710=>1,1753418891=>1,1753421695=>1,1753420663=>1,1753431622=>1,1753432545=>1,1753448695=>1,1753447184=>1,1753448734=>1,1753449090=>1,1753450031=>1,1753449538=>1,1753446493=>1,1753444936=>1,1753432770=>1,1753432595=>1,1753435431=>1,1753441787=>1,1753443531=>1,1753443335=>1,1753409333=>1,1753402683=>1,1747452303=>1,1747304951=>1,1747487398=>1,1747492670=>1,1747525792=>1,1747508050=>1,1747304604=>1,1747298587=>1,1747236126=>1,1731752249=>1,1747236354=>1,1747241197=>1,1747249942=>1,1747241232=>1,1747532228=>1,1747557077=>1,1753270979=>1,1753270688=>1,1753270980=>1,1753277592=>1,1753393529=>1,1753280412=>1,1753260521=>1,1753260351=>1,1747570233=>1,1747569757=>1,1747856439=>1,1748711650=>1,1748992955=>1,1753450869=>1,1753450911=>1,1754354228=>1,1754354223=>1,1754354281=>1,1754354292=>1,1754354413=>1,1754354368=>1,1754353986=>1,1754353969=>1,1754353845=>1,1754353692=>1,1754353903=>1,1754353930=>1,1754353961=>1,1754353950=>1,1754354516=>1,1754354542=>1,1754355812=>1,1754355657=>1,1754355932=>1,1754356529=>1,1754358068=>1,1754357926=>1,1754355059=>1,1754354866=>1,1754354604=>1,1754354580=>1,1754354611=>1,1754354612=>1,1754354636=>1,1754352850=>1,1754352833=>1,1753468439=>1,1753468352=>1,1753478455=>1,1753757689=>1,1754010761=>1,1753805730=>1,1753468051=>1,1753465506=>1,1753453654=>1,1753453052=>1,1753453908=>1,1753455205=>1,1753462190=>1,1753461194=>1,1754250400=>1,1754350618=>1,1754352217=>1,1754351919=>1,1754352244=>1,1754352327=>1,1754352673=>1,1754352346=>1,1754351860=>1,1754351641=>1,1754351363=>1,1754350931=>1,1754351435=>1,1754351500=>1,1754351557=>1,1747236116=>1,1731740918=>1,1728142520=>1,1728131851=>1,1728142727=>1,1728265586=>1,1728269838=>1,1728269836=>1,1728131850=>1,1728131149=>1,1711233722=>1,1711233009=>1,1711234698=>1,1728129975=>1,1728131148=>1,1728129976=>1,1728329289=>1,1728339032=>1,1728480920=>1,1728480807=>1,1728480921=>1,1728480937=>1,1728480957=>1,1728480949=>1,1728479481=>1,1728457635=>1,1728358374=>1,1728357578=>1,1728379410=>1,1728379412=>1,1728433138=>1,1728428834=>1,1711232826=>1,1711230734=>1,1709379232=>1,1709373933=>1,1709649442=>1,1709650586=>1,1709701578=>1,1709700362=>1,1709313247=>1,1707951864=>1,1707691720=>1,1707682348=>1,1707721792=>1,1707728570=>1,1707945352=>1,1707731853=>1,1710980901=>1,1710999362=>1,1711223666=>1,1711223634=>1,1711225978=>1,1711225982=>1,1711229346=>1,1711226570=>1,1711223597=>1,1711219846=>1,1711013410=>1,1711011666=>1,1711182470=>1,1711182471=>1,1711193286=>1,1728480970=>1,1728481026=>1,1729043498=>1,1729034986=>1,1729052229=>1,1729052405=>1,1729091979=>1,1729091949=>1,1729034887=>1,1729021002=>1,1728977798=>1,1728977738=>1,1728977802=>1,1728977890=>1,1728990249=>1,1728988782=>1,1729099698=>1,1729130497=>1,1729180560=>1,1729180505=>1,1729197301=>1,1729207938=>1,1729234497=>1,1729234003=>1,1729180494=>1,1729134755=>1,1729130709=>1,1729130633=>1,1729130754=>1,1729131278=>1,1729131282=>1,1728977665=>1,1728977557=>1,1728662815=>1,1728609021=>1,1728662816=>1,1728666004=>1,1728742407=>1,1728687334=>1,1728501190=>1,1728481268=>1,1728481144=>1,1728481111=>1,1728481193=>1,1728481219=>1,1728481267=>1,1728481236=>1,1728742933=>1,1728759090=>1,1728939449=>1,1728885050=>1,1728939454=>1,1728939462=>1,1728977426=>1,1728939466=>1,1728873484=>1,1728868609=>1,1728762434=>1,1728759652=>1,1728767224=>1,1728798774=>1,1728815108=>1,1707666034=>1,1707658423=>1,1696212642=>1,1696160725=>1,1696262649=>1,1696340235=>1,1696359697=>1,1696341360=>1,1696160686=>1,1696160656=>1,1696160590=>1,1696160573=>1,1696160592=>1,1696160594=>1,1696160604=>1,1696160601=>1,1696522129=>1,1697383218=>1,1698965729=>1,1698888982=>1,1699064412=>1,1699084943=>1,1699175094=>1,1699093168=>1,1698888664=>1,1698791165=>1,1697782988=>1,1697776606=>1,1697872351=>1,1697874484=>1,1698135306=>1,1697875701=>1,1696160551=>1,1696160514=>1,1680479005=>1,1680240594=>1,1680517587=>1,1680629186=>1,1680635460=>1,1680629882=>1,1680217740=>1,1680125038=>1,1679895118=>1,1679861526=>1,1679900784=>1,1679915536=>1,1680112644=>1,1680093618=>1,1680699244=>1,1694571339=>1,1695901217=>1,1695900778=>1,1695977547=>1,1696132800=>1,1696156238=>1,1696139309=>1,1695846022=>1,1695788314=>1,1694905490=>1,1694672222=>1,1694907945=>1,1695549263=>1,1695718714=>1,1699175095=>1,1699669615=>1,1702856088=>1,1701661021=>1,1702878134=>1,1702913304=>1,1705269551=>1,1702913379=>1,1701634772=>1,1701629786=>1,1701088567=>1,1701088350=>1,1701089454=>1,1701156297=>1,1701591918=>1,1701585921=>1,1705452023=>1,1705495742=>1,1707652637=>1,1707651878=>1,1707654943=>1,1707654989=>1,1707658313=>1,1707657514=>1,1707651642=>1,1707651630=>1,1707642414=>1,1707636972=>1,1707647594=>1,1707648307=>1,1707650571=>1,1701041204=>1,1701003274=>1,1699848713=>1,1699833990=>1,1699865892=>1,1699869262=>1,1700679389=>1,1699871497=>1,1699815197=>1,1699815095=>1,1699811423=>1,1699677420=>1,1699811476=>1,1699811830=>1,1699814938=>1,1699812943=>1,1700792861=>1,1700792862=>1,1700793121=>1,1700793120=>1,1700793123=>1,1700924306=>1,1700998154=>1,1700992552=>1,1700793119=>1,1700793118=>1,1700792864=>1,1700792863=>1,1700792865=>1,1700792867=>1,1700793117=>1,1729234503=>1,1729234505=>1,1731190072=>1,1731187284=>1,1731274237=>1,1731291507=>1,1731396330=>1,1731313538=>1,1731182950=>1,1730979008=>1,1730882621=>1,1730873026=>1,1730943651=>1,1730953657=>1,1730975021=>1,1730975019=>1,1731402856=>1,1731422478=>1,1731566860=>1,1731516534=>1,1731568641=>1,1731570029=>1,1731598339=>1,1731573811=>1,1731478562=>1,1731452621=>1,1731432716=>1,1731432708=>1,1731432798=>1,1731432814=>1,1731452619=>1,1731452517=>1,1730794750=>1,1730785600=>1,1730647939=>1,1730647742=>1,1730647953=>1,1730647954=>1,1730647956=>1,1730647955=>1,1730647741=>1,1730647733=>1,1730647708=>1,1730647706=>1,1730647718=>1,1730647722=>1,1730647731=>1,1730647727=>1,1730647958=>1,1730647964=>1,1730751625=>1,1730751546=>1,1730751671=>1,1730777098=>1,1730785598=>1,1730785585=>1,1730744673=>1,1730732673=>1,1730647976=>1,1730647967=>1,1730647993=>1,1730647994=>1,1730647996=>1,1731599105=>1,1731599935=>1,1731740811=>1,1731740795=>1,1731740817=>1,1731740834=>1,1731740838=>1,1731740836=>1,1731740790=>1,1731740787=>1,1731740750=>1,1731740743=>1,1731740751=>1,1731740756=>1,1731740762=>1,1731740761=>1,1731740848=>1,1731740858=>1,1731740890=>1,1731740885=>1,1731740897=>1,1731740907=>1,1678737511=>1,1731740912=>1,1731740884=>1,1731740881=>1,1731740865=>1,1731740860=>1,1731740870=>1,1731740875=>1,1731740879=>1,1731740728=>1,1731740712=>1,1731648274=>1,1731648068=>1,1731648666=>1,1731664076=>1,1731664577=>1,1731664568=>1,1731639044=>1,1731630849=>1,1731617793=>1,1731601950=>1,1731630082=>1,1731630126=>1,1731630401=>1,1731630337=>1,1731664713=>1,1731664725=>1,1731740675=>1,1731739640=>1,1731740678=>1,1731740686=>1,1731740702=>1,1731740687=>1,1731724857=>1,1731724598=>1,1731664749=>1,1731664735=>1,1731664753=>1,1731664763=>1,1731666966=>1,1730647697=>1,1730647684=>1,1729737484=>1,1729731554=>1,1729788490=>1,1729790730=>1,1729792141=>1,1729792138=>1,1729724500=>1,1729706530=>1,1729658452=>1,1729658450=>1,1729658821=>1,1729658822=>1,1729688899=>1,1729672275=>1,1729806499=>1,1729813096=>1,1729937418=>1,1729926518=>1,1729937430=>1,1729937437=>1,1729937446=>1,1729937441=>1,1729909765=>1,1729903147=>1,1729842547=>1,1729839874=>1,1729853074=>1,1729866561=>1,1729902734=>1,1729649768=>1,1729596138=>1,1729253377=>1,1729251995=>1,1729278977=>1,1729278986=>1,1729326522=>1,1729313178=>1,1729234518=>1,1729234517=>1,1729234509=>1,1729234506=>1,1729234510=>1,1729234513=>1,1729234516=>1,1729234514=>1,1729357246=>1,1729363286=>1,1729571146=>1,1729530714=>1,1729586311=>1,1729587078=>1,1729595943=>1,1729587159=>1,1729413245=>1,1729411427=>1,1729386769=>1,1729386753=>1,1729386809=>1,1729386929=>1,1729407002=>1,1729937449=>1,1729937929=>1,1730647225=>1,1730647222=>1,1730647226=>1,1730647227=>1,1730647429=>1,1730647229=>1,1730647214=>1,1730647213=>1,1730647201=>1,1730647200=>1,1730647204=>1,1730647205=>1,1730647210=>1,1730647207=>1,1730647436=>1,1730647437=>1,1730647460=>1,1730647457=>1,1730647465=>1,1730647472=>1,1730647483=>1,1730647477=>1,1730647455=>1,1730647454=>1,1730647442=>1,1730647441=>1,1730647447=>1,1730647450=>1,1730647451=>1,1730647183=>1,1730647179=>1,1730130530=>1,1730130177=>1,1730130546=>1,1730130657=>1,1730149236=>1,1730149148=>1,1730069201=>1,1730066010=>1,1729946029=>1,1729946025=>1,1729946036=>1,1729991686=>1,1730042314=>1,1730030169=>1,1730415106=>1,1730415382=>1,1730628967=>1,1730628912=>1,1730636936=>1,1730647170=>1,1730647178=>1,1730647171=>1,1730569558=>1,1730554605=>1,1730511101=>1,1730421610=>1,1730516157=>1,1730521187=>1,1730521273=>1,1731741027=>1,);?>
1
+ <?php return array(1807123316=>1807123317,1805874556=>1805874557,1805115376=>1805115377,1805097178=>1805097181,1805097170=>1805097173,1805094522=>1805094525,1805094514=>1805094517,1805093082=>1805093085,1805093074=>1805093077,1805093066=>1805093069,1805093058=>1805093061,1783332952=>1783332953,1761503730=>1761503731,1759513164=>1759513165,1759148240=>1759148241,1757437148=>1757437149,1744712712=>1744712713,1744024410=>1744024411,1743453794=>1743453795,1742387518=>1742387519,1742387378=>1742387379,1742387354=>1742387355,1742387216=>1742387217,1731778712=>1731778713,1731740884=>1731740885,1760552085=>1,1760468979=>1,1760469406=>1,1760470895=>1,1760468927=>1,1760627336=>1,1760764868=>1,1760466587=>1,1760466813=>1,1760470942=>1,1760471312=>1,1760476703=>1,1760476610=>1,1760476258=>1,1760484639=>1,1760473222=>1,1760466322=>1,1760471918=>1,1760484803=>1,1760476243=>1,1760401603=>1,1760342830=>1,1760341963=>1,1760343757=>1,1760356293=>1,1760360410=>1,1760341565=>1,1760341411=>1,1760335828=>1,1760335776=>1,1760336856=>1,1760337562=>1,1760338111=>1,1760361641=>1,1760362632=>1,1760461468=>1,1760420870=>1,1760461774=>1,1760462520=>1,1760463608=>1,1760402646=>1,1760840047=>1,1760363236=>1,1760363028=>1,1760393270=>1,1760399711=>1,1760401582=>1,1760465263=>1,1760946560=>1,1778434980=>1,1777069482=>1,1778545533=>1,1778563305=>1,1780704688=>1,1780511083=>1,1777059555=>1,1777035835=>1,1776399966=>1,1776369268=>1,1776476406=>1,1776476604=>1,1776614258=>1,1776588353=>1,1780712257=>1,1780720533=>1,1781053793=>1,1781040254=>1,1781053807=>1,1781054188=>1,1781095558=>1,1781054274=>1,1781039242=>1,1780939582=>1,1780733858=>1,1780732325=>1,1780855291=>1,1780856138=>1,1780923611=>1,1780922590=>1,1776361521=>1,1776297076=>1,1761558607=>1,1761551108=>1,1761601302=>1,1768236482=>1,1768247918=>1,1768244777=>1,1761491844=>1,1761344292=>1,1760878540=>1,1760877709=>1,1760899591=>1,1760946049=>1,1761253691=>1,1760335350=>1,1768258735=>1,1768268227=>1,1773713837=>1,1773713681=>1,1773820518=>1,1773823327=>1,1775500816=>1,1774642363=>1,1768949282=>1,1768948142=>1,1768274829=>1,1768272799=>1,1768288817=>1,1768289396=>1,1768947898=>1,1760840365=>1,1760330664=>1,1759480597=>1,1759480595=>1,1759480599=>1,1759480601=>1,1759513110=>1,1759481112=>1,1759476459=>1,1759476339=>1,1759451516=>1,1759449239=>1,1759468699=>1,1759470860=>1,1759476293=>1,1759470958=>1,1759513116=>1,1759513129=>1,1759545844=>1,1759513207=>1,1759547313=>1,1759547628=>1,1759552969=>1,1759548957=>1,1759513184=>1,1759513179=>1,1759513141=>1,1759513131=>1,1759513143=>1,1759513158=>1,1759513168=>1,1759513163=>1,1759448297=>1,1759445304=>1,1759253283=>1,1759250694=>1,1759253481=>1,1759254074=>1,1759255207=>1,1759254895=>1,1759249850=>1,1759248869=>1,1759158117=>1,1759148241=>1,1759177253=>1,1759211618=>1,1759248713=>1,1759211634=>1,1759256265=>1,1759257106=>1,1759294906=>1,1759294379=>1,1759295007=>1,1759295699=>1,1759409005=>1,1759295986=>1,1759293611=>1,1759293381=>1,1759259409=>1,1759257397=>1,1759261053=>1,1759282657=>1,1759293329=>1,1759290595=>1,1759553529=>1,1759553796=>1,1760310939=>1,1760310288=>1,1760310980=>1,1760311088=>1,1760318291=>1,1760316441=>1,1760310181=>1,1760309964=>1,1760304703=>1,1760301515=>1,1760306919=>1,1760309065=>1,1760309658=>1,1760309426=>1,1760319017=>1,1760319322=>1,1781112926=>1,1760330511=>1,1760330816=>1,1760330862=>1,1760334195=>1,1760333405=>1,1760329319=>1,1760326782=>1,1760321359=>1,1760320134=>1,1760321689=>1,1760322924=>1,1760325179=>1,1760323495=>1,1760300971=>1,1760235451=>1,1760121609=>1,1760120856=>1,1760121806=>1,1760122149=>1,1760122601=>1,1760122409=>1,1760120847=>1,1760120677=>1,1759917364=>1,1759555554=>1,1759960498=>1,1760035617=>1,1760117078=>1,1760044456=>1,1760122665=>1,1760123105=>1,1760130330=>1,1760130009=>1,1760131180=>1,1760131318=>1,1760230147=>1,1760132039=>1,1760129842=>1,1760129616=>1,1760124597=>1,1760123212=>1,1760124721=>1,1760125043=>1,1760128157=>1,1760335271=>1,1782112712=>1,1806332188=>1,1806331977=>1,1806333916=>1,1806334157=>1,1806339957=>1,1806335107=>1,1806331714=>1,1806331603=>1,1806327072=>1,1806327053=>1,1806328043=>1,1806329127=>1,1806331176=>1,1806331102=>1,1806341639=>1,1806342480=>1,1806363053=>1,1806362699=>1,1806364095=>1,1806364943=>1,1806365862=>1,1806365851=>1,1806362537=>1,1806361201=>1,1806351515=>1,1806343892=>1,1806352654=>1,1806356996=>1,1806359115=>1,1806327021=>1,1806326554=>1,1805874686=>1,1805874619=>1,1806303757=>1,1806305018=>1,1806311050=>1,1806307195=>1,1805874615=>1,1805874610=>1,1805874560=>1,1805874545=>1,1805874576=>1,1805874580=>1,1805874608=>1,1806311495=>1,1806312384=>1,1806323603=>1,1806323283=>1,1806323652=>1,1806324850=>1,1806325679=>1,1806325444=>1,1806323242=>1,1806321749=>1,1806313960=>1,1806313378=>1,1806316084=>1,1806319627=>1,1806321675=>1,1806366331=>1,1806366497=>1,1807695271=>1,1807693078=>1,1807695274=>1,1807695864=>1,1807705898=>1,1807704645=>1,1807692953=>1,1807691616=>1,1807690023=>1,1807649196=>1,1807690220=>1,1807691468=>1,1807691607=>1,1807709867=>1,1807711669=>1,1807732198=>1,1807731719=>1,1807732221=>1,1807732594=>1,1808274746=>1,1808012334=>1,1807731593=>1,1807731391=>1,1807730580=>1,1807711928=>1,1807730630=>1,1807731244=>1,1807731303=>1,1807626065=>1,1807583775=>1,1807039991=>1,1807039496=>1,1807063183=>1,1807066635=>1,1807068694=>1,1807067555=>1,1806975884=>1,1806975097=>1,1806499174=>1,1806440224=>1,1806827836=>1,1806828314=>1,1806855649=>1,1807068756=>1,1807068899=>1,1807123336=>1,1807123317=>1,1807332262=>1,1807531065=>1,1807558688=>1,1807540806=>1,1807117624=>1,1807116435=>1,1807106951=>1,1807072199=>1,1807112856=>1,1807115053=>1,1807115678=>1,1805874542=>1,1805874490=>1,1790515558=>1,1790445222=>1,1790516249=>1,1790516379=>1,1790518659=>1,1790516394=>1,1790444174=>1,1786628450=>1,1786259911=>1,1786258140=>1,1786262101=>1,1786296185=>1,1786622688=>1,1786301794=>1,1790519586=>1,1790520104=>1,1790581710=>1,1790580882=>1,1790581713=>1,1790581771=>1,1790581807=>1,1790581793=>1,1790580273=>1,1790579813=>1,1790522564=>1,1790521700=>1,1790522828=>1,1790523022=>1,1790578842=>1,1785960892=>1,1785287224=>1,1781771831=>1,1781743780=>1,1781772561=>1,1782197052=>1,1782873643=>1,1782249514=>1,1781743696=>1,1781742633=>1,1781437712=>1,1781192110=>1,1781740850=>1,1781742494=>1,1781742615=>1,1782893503=>1,1782905806=>1,1783351294=>1,1783351292=>1,1784208138=>1,1785209708=>1,1785221979=>1,1785209803=>1,1783350076=>1,1783335621=>1,1782925316=>1,1782913441=>1,1782969985=>1,1783332951=>1,1783332954=>1,1790605697=>1,1790605791=>1,1805094518=>1,1805093086=>1,1805094526=>1,1805097174=>1,1805109881=>1,1805097182=>1,1805093078=>1,1805093070=>1,1804601142=>1,1804601026=>1,1804601154=>1,1805018006=>1,1805093062=>1,1805112985=>1,1805333734=>1,1805734106=>1,1805734083=>1,1805745292=>1,1805764511=>1,1805874437=>1,1805773689=>1,1805721521=>1,1805720632=>1,1805582101=>1,1805339783=>1,1805582102=>1,1805718129=>1,1805720532=>1,1804431089=>1,1804309749=>1,1790663329=>1,1790662884=>1,1790664686=>1,1790664786=>1,1790665903=>1,1790665620=>1,1790662741=>1,1790654447=>1,1790649701=>1,1790606682=>1,1790652056=>1,1790652177=>1,1790653037=>1,1794634014=>1,1794748629=>1,1795881669=>1,1795844415=>1,1796180759=>1,1796183269=>1,1803808203=>1,1796187958=>1,1795836568=>1,1795761845=>1,1795294820=>1,1795196637=>1,1795432303=>1,1795541452=>1,1795565194=>1,1781152112=>1,1758523893=>1,1743890866=>1,1743890693=>1,1743890868=>1,1743890880=>1,1743890900=>1,1743890897=>1,1743853796=>1,1743805191=>1,1743724508=>1,1743713036=>1,1743781874=>1,1743783938=>1,1743785998=>1,1743785997=>1,1743890911=>1,1743924908=>1,1743992460=>1,1743992366=>1,1744074840=>1,1744075179=>1,1744128145=>1,1744091330=>1,1743992365=>1,1743984715=>1,1743932882=>1,1743928026=>1,1743932898=>1,1743939870=>1,1743966549=>1,1743594374=>1,1743571310=>1,1743142482=>1,1743128277=>1,1743166638=>1,1743193475=>1,1743209009=>1,1743193661=>1,1743082483=>1,1743081561=>1,1742896688=>1,1742877797=>1,1742915957=>1,1743015619=>1,1743058454=>1,1743029109=>1,1743227187=>1,1743244051=>1,1743395338=>1,1743360533=>1,1743395446=>1,1743398032=>1,1743463018=>1,1743423988=>1,1743329593=>1,1743320711=>1,1743274179=>1,1743248238=>1,1743274180=>1,1743298409=>1,1743316012=>1,1744129336=>1,1744175461=>1,1744823183=>1,1744822290=>1,1744840586=>1,1744911494=>1,1745871132=>1,1744977762=>1,1744768792=>1,1744727077=>1,1744671276=>1,1744671192=>1,1744676865=>1,1744677121=>1,1744712710=>1,1744687947=>1,1746933041=>1,1746942491=>1,1747241232=>1,1747241197=>1,1747298587=>1,1747304604=>1,1747452303=>1,1747304951=>1,1747236354=>1,1747236124=>1,1747177753=>1,1747076347=>1,1747223487=>1,1747236108=>1,1747236116=>1,1744640413=>1,1744640372=>1,1744392794=>1,1744365658=>1,1744394244=>1,1744395009=>1,1744397425=>1,1744397330=>1,1744330026=>1,1744314536=>1,1744266598=>1,1744179693=>1,1744282330=>1,1744296001=>1,1744296865=>1,1744296802=>1,1744397466=>1,1744404652=>1,1744548866=>1,1744524094=>1,1744559539=>1,1744565522=>1,1744625125=>1,1744595988=>1,1744524081=>1,1744517172=>1,1744433372=>1,1744432728=>1,1744441300=>1,1744452148=>1,1744513845=>1,1742843625=>1,1742797112=>1,1741512466=>1,1741453078=>1,1741616750=>1,1741616790=>1,1741698097=>1,1741636966=>1,1741168439=>1,1741168373=>1,1740833662=>1,1740833658=>1,1740846850=>1,1740869208=>1,1741099066=>1,1740909446=>1,1741705593=>1,1741737733=>1,1742387209=>1,1742387202=>1,1742387215=>1,1742387224=>1,1742387239=>1,1742387228=>1,1742332156=>1,1742196182=>1,1741800698=>1,1741737737=>1,1742095571=>1,1742095809=>1,1742129490=>1,1740817272=>1,1740778356=>1,1731752249=>1,1731740918=>1,1731776340=>1,1731776376=>1,1731778710=>1,1731778653=>1,1731740912=>1,1731740907=>1,1731740875=>1,1731740870=>1,1731740879=>1,1731740881=>1,1731740897=>1,1731740890=>1,1731778714=>1,1731778716=>1,1732222627=>1,1732046852=>1,1732222842=>1,1740681967=>1,1740778339=>1,1740753146=>1,1732041737=>1,1731965457=>1,1731799709=>1,1731799697=>1,1731799713=>1,1731799725=>1,1731880375=>1,1742387257=>1,1742387259=>1,1742387632=>1,1742387619=>1,1742387638=>1,1742387641=>1,1742387672=>1,1742387642=>1,1742387613=>1,1742387610=>1,1742387589=>1,1742387556=>1,1742387596=>1,1742387600=>1,1742387605=>1,1742387602=>1,1742387684=>1,1742387691=>1,1742754449=>1,1742754166=>1,1742754463=>1,1742754478=>1,1742780870=>1,1742776074=>1,1742745756=>1,1742740762=>1,1742387705=>1,1742387695=>1,1742387832=>1,1742387897=>1,1742740590=>1,1742387550=>1,1742387537=>1,1742387358=>1,1742387348=>1,1742387361=>1,1742387362=>1,1742387397=>1,1742387365=>1,1742387334=>1,1742387329=>1,1742387273=>1,1742387271=>1,1742387276=>1,1742387278=>1,1742387301=>1,1742387297=>1,1742387410=>1,1742387412=>1,1742387492=>1,1742387488=>1,1742387501=>1,1742387503=>1,1742387529=>1,1742387507=>1,1742387477=>1,1742387468=>1,1742387425=>1,1742387419=>1,1742387427=>1,1742387448=>1,1742387459=>1,1747487398=>1,1747492670=>1,1755119133=>1,1755117417=>1,1755186062=>1,1755324745=>1,1755461782=>1,1755325681=>1,1755116857=>1,1755113798=>1,1755080392=>1,1755069603=>1,1755111507=>1,1755112089=>1,1755113096=>1,1755112942=>1,1755800159=>1,1755800431=>1,1755802377=>1,1755802197=>1,1755802957=>1,1755803801=>1,1755804617=>1,1755804042=>1,1755802078=>1,1755801466=>1,1755801055=>1,1755800811=>1,1755801192=>1,1755801332=>1,1755801374=>1,1755062161=>1,1755062071=>1,1755059290=>1,1755058721=>1,1755059477=>1,1755059487=>1,1755059688=>1,1755059565=>1,1755055161=>1,1754982941=>1,1754364697=>1,1754364011=>1,1754861732=>1,1754862495=>1,1754949048=>1,1754865206=>1,1755060030=>1,1755060127=>1,1755061825=>1,1755061692=>1,1755061868=>1,1755061877=>1,1755062009=>1,1755061887=>1,1755061648=>1,1755061492=>1,1755060896=>1,1755060598=>1,1755060976=>1,1755061135=>1,1755061141=>1,1755804777=>1,1755804906=>1,1758079414=>1,1757976400=>1,1758270779=>1,1758373948=>1,1758429226=>1,1758381918=>1,1757943873=>1,1757942926=>1,1757910908=>1,1757706906=>1,1757911006=>1,1757912579=>1,1757942516=>1,1757941987=>1,1758429289=>1,1758429843=>1,1731740865=>1,1758445796=>1,1758539000=>1,1758882983=>1,1758891378=>1,1758890197=>1,1758445794=>1,1758433894=>1,1758430828=>1,1758430484=>1,1758433080=>1,1758433265=>1,1758433301=>1,1757706017=>1,1757685920=>1,1755880006=>1,1755879942=>1,1755880646=>1,1755882190=>1,1755884243=>1,1755883298=>1,1755879673=>1,1755862951=>1,1755805037=>1,1755805003=>1,1755823453=>1,1755856558=>1,1755856593=>1,1755856591=>1,1755885421=>1,1755911911=>1,1757437171=>1,1757437147=>1,1757504790=>1,1757545723=>1,1757677905=>1,1757615117=>1,1757430531=>1,1757324460=>1,1756188204=>1,1756092892=>1,1756256921=>1,1756327456=>1,1756961457=>1,1754363549=>1,1754363538=>1,1753446493=>1,1753444936=>1,1753447184=>1,1753448695=>1,1753449090=>1,1753448734=>1,1753443531=>1,1753443335=>1,1753432595=>1,1753432545=>1,1753432770=>1,1753435431=>1,1753441787=>1,1753436038=>1,1753449538=>1,1753450869=>1,1753462190=>1,1753461194=>1,1753465506=>1,1753468051=>1,1753468439=>1,1753468352=>1,1753459151=>1,1753455205=>1,1753453052=>1,1753450911=>1,1753453654=>1,1753453908=>1,1753453979=>1,1753431622=>1,1753430461=>1,1753270688=>1,1753260521=>1,1753270979=>1,1753270980=>1,1753280412=>1,1753277592=>1,1753260351=>1,1748711650=>1,1747508050=>1,1747497189=>1,1747532228=>1,1747569757=>1,1747856439=>1,1747570233=>1,1753393529=>1,1753402683=>1,1753423791=>1,1753422902=>1,1753426080=>1,1753426581=>1,1753430143=>1,1753427302=>1,1753421695=>1,1753420663=>1,1753415969=>1,1753409333=>1,1753416941=>1,1753418710=>1,1753418891=>1,1753478455=>1,1754010761=>1,1754355812=>1,1754355657=>1,1754355932=>1,1754356529=>1,1754358489=>1,1754358068=>1,1754355216=>1,1754355059=>1,1754354516=>1,1754354413=>1,1754354542=>1,1754354580=>1,1754354636=>1,1754354604=>1,1754359018=>1,1754361042=>1,1754362562=>1,1754362309=>1,1754362644=>1,1754362699=>1,1754363522=>1,1754363250=>1,1754361777=>1,1754361711=>1,1754361123=>1,1754361047=>1,1754361252=>1,1754361291=>1,1754361699=>1,1754354368=>1,1754354292=>1,1754351860=>1,1754351641=>1,1754351919=>1,1754352217=>1,1754352327=>1,1754352244=>1,1754351557=>1,1754351500=>1,1754350684=>1,1754350618=>1,1754350931=>1,1754351363=>1,1754351435=>1,1754352346=>1,1754352673=>1,1754353969=>1,1754353961=>1,1754353986=>1,1754354223=>1,1754354281=>1,1754354228=>1,1754353950=>1,1754353930=>1,1754352850=>1,1754352833=>1,1754353692=>1,1754353845=>1,1754353903=>1,1758986048=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-19.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1815957824=>1815957887,1815951408=>1815951423,1815951248=>1815951263,1815950192=>1815950207,1815940112=>1815940127,1824103962=>1,1824302614=>1,1823790283=>1,1823621949=>1,1823369696=>1,1823357376=>1,1823081068=>1,1823373786=>1,1823390552=>1,1823503770=>1,1823390613=>1,1824337292=>1,1824526635=>1,1827806633=>1,1827714700=>1,1827497812=>1,1827941180=>1,1828005465=>1,1828214770=>1,1828212865=>1,1826716304=>1,1826665305=>1,1824784991=>1,1824778397=>1,1825196899=>1,1825327272=>1,1825976327=>1,1825825768=>1,1823074510=>1,1822949558=>1,1815991036=>1,1815990578=>1,1815991398=>1,1815991697=>1,1816000503=>1,1815994346=>1,1815990039=>1,1815988174=>1,1815987058=>1,1815986079=>1,1815987540=>1,1815987919=>1,1815988170=>1,1816001110=>1,1816001462=>1,1822874642=>1,1822861470=>1,1822874643=>1,1828344313=>1,1822966067=>1,1822761223=>1,1822592626=>1,1816591798=>1,1816277101=>1,1816843885=>1,1816876693=>1,1822524861=>1,1822993678=>1,1828389835=>1,1833660197=>1,1833642227=>1,1833678925=>1,1834371235=>1,1834377678=>1,1834373984=>1,1833642226=>1,1833624474=>1,1833615996=>1,1833615943=>1,1833616318=>1,1833616741=>1,1833619177=>1,1833618965=>1,1834400977=>1,1834403367=>1,1834685402=>1,1834684398=>1,1834703255=>1,1834705242=>1,1834709021=>1,1834705548=>1,1834681120=>1,1834658287=>1,1834500386=>1,1834430565=>1,1834626253=>1,1834626774=>1,1834655957=>1,1834653424=>1,1833605013=>1,1833585637=>1,1832830995=>1,1832684492=>1,1832878407=>1,1832896344=>1,1832935024=>1,1832896372=>1,1831936541=>1,1830733278=>1,1829296394=>1,1828760109=>1,1829548467=>1,1830339032=>1,1830618322=>1,1830345735=>1,1832944920=>1,1833121088=>1,1833377626=>1,1833355872=>1,1833415666=>1,1833446211=>1,1833517338=>1,1833493658=>1,1833292790=>1,1833257070=>1,1833222020=>1,1833217596=>1,1833222021=>1,1833239102=>1,1833255697=>1,1833239165=>1,1815983915=>1,1815981954=>1,1807704645=>1,1807695864=>1,1807705898=>1,1807709867=>1,1807711928=>1,1807711669=>1,1807695274=>1,1807695271=>1,1807692953=>1,1807691616=>1,1807693078=>1,1807694400=>1,1807695245=>1,1807695101=>1,1807730580=>1,1807730630=>1,1808274746=>1,1808012334=>1,1808465185=>1,1808478795=>1,1809383817=>1,1808627745=>1,1807732594=>1,1807732221=>1,1807731244=>1,1807730685=>1,1807731391=>1,1807731719=>1,1807732198=>1,1807691607=>1,1807691468=>1,1807068756=>1,1807068694=>1,1807068899=>1,1807072199=>1,1807112856=>1,1807106951=>1,1807067555=>1,1807066635=>1,1806975097=>1,1806855649=>1,1806975884=>1,1807039496=>1,1807063183=>1,1807039991=>1,1807115053=>1,1807116435=>1,1807558688=>1,1807540806=>1,1807626065=>1,1807649196=>1,1807690220=>1,1807690023=>1,1807531065=>1,1807332262=>1,1807118317=>1,1807117624=>1,1807123316=>1,1807123317=>1,1807123336=>1,1809616709=>1,1812085194=>1,1815927080=>1,1815851652=>1,1815956002=>1,1815958548=>1,1815962517=>1,1815961639=>1,1815808993=>1,1815808653=>1,1815747842=>1,1815660435=>1,1815777514=>1,1815808641=>1,1815808650=>1,1815808647=>1,1815963566=>1,1815967563=>1,1815980456=>1,1815979893=>1,1815981116=>1,1834713616=>1,1815983064=>1,1815982446=>1,1815979837=>1,1815979659=>1,1815969601=>1,1815968344=>1,1815978480=>1,1815979264=>1,1815979433=>1,1815551247=>1,1815466141=>1,1813342471=>1,1813299513=>1,1813771831=>1,1813811434=>1,1813971970=>1,1813910659=>1,1813196906=>1,1813147132=>1,1812777941=>1,1812328602=>1,1813015474=>1,1813071410=>1,1813146307=>1,1813981189=>1,1813997074=>1,1815066364=>1,1815007412=>1,1815112634=>1,1815160815=>1,1815309597=>1,1815170531=>1,1814912348=>1,1814912338=>1,1814049044=>1,1814025623=>1,1814293566=>1,1814912324=>1,1814912336=>1,1815983302=>1,1834729464=>1,1844181892=>1,1844181891=>1,1844181893=>1,1844205577=>1,1844251250=>1,1844206289=>1,1844181890=>1,1844091445=>1,1844018980=>1,1843948174=>1,1844019177=>1,1844061380=>1,1844062162=>1,1844061816=>1,1844251321=>1,1844251341=>1,1844587151=>1,1844392088=>1,1844588995=>1,1844975182=>1,1844981264=>1,1844977696=>1,1844391964=>1,1844391962=>1,1844271873=>1,1844251418=>1,1844325031=>1,1844337748=>1,1844382730=>1,1844367602=>1,1843927995=>1,1843886705=>1,1842619346=>1,1842506334=>1,1842954001=>1,1843040803=>1,1843403044=>1,1843401251=>1,1842298326=>1,1842298320=>1,1842298256=>1,1842298228=>1,1842298259=>1,1842298278=>1,1842298302=>1,1842298279=>1,1843410450=>1,1843488066=>1,1843823118=>1,1843822771=>1,1843845578=>1,1843850329=>1,1843854318=>1,1843850917=>1,1843818498=>1,1843799005=>1,1843699278=>1,1843660921=>1,1843702350=>1,1843706004=>1,1843736068=>1,1845006419=>1,1845006613=>1,1850280466=>1,1850279350=>1,1850285410=>1,1850323521=>1,1850574448=>1,1850324492=>1,1850278638=>1,1850277996=>1,1848928649=>1,1848928494=>1,1848934370=>1,1848958282=>1,1849878261=>1,1849791271=>1,1850575202=>1,1850576210=>1,1850589416=>1,1850589260=>1,1850590450=>1,1850592441=>1,1850592745=>1,1850592490=>1,1850588975=>1,1850587406=>1,1850579816=>1,1850578264=>1,1850580267=>1,1850585944=>1,1850587268=>1,1847974396=>1,1847974078=>1,1845294450=>1,1845207559=>1,1845399303=>1,1845410035=>1,1845482553=>1,1845429447=>1,1845167596=>1,1845029982=>1,1845014622=>1,1845007196=>1,1845029947=>1,1845029979=>1,1845029981=>1,1845029980=>1,1845484068=>1,1845768075=>1,1847732194=>1,1847730860=>1,1847900369=>1,1847906462=>1,1847908866=>1,1847908766=>1,1847730858=>1,1846735113=>1,1845848298=>1,1845847730=>1,1846122762=>1,1846622495=>1,1846652054=>1,1842180618=>1,1842156752=>1,1839525095=>1,1839458825=>1,1839544705=>1,1839685974=>1,1839719266=>1,1839717521=>1,1839458824=>1,1839458823=>1,1838983734=>1,1838906751=>1,1839135432=>1,1839458818=>1,1839458821=>1,1839458820=>1,1839800739=>1,1839951374=>1,1840069521=>1,1840069408=>1,1840069804=>1,1840069805=>1,1840069981=>1,1840069925=>1,1840069376=>1,1840069233=>1,1840015875=>1,1840003517=>1,1840068626=>1,1840068790=>1,1840069205=>1,1840068995=>1,1838229729=>1,1837447875=>1,1835738010=>1,1835699004=>1,1835796925=>1,1835844827=>1,1836623882=>1,1835869856=>1,1835676276=>1,1835625890=>1,1834901827=>1,1834882781=>1,1834962111=>1,1835535452=>1,1835574741=>1,1835544224=>1,1836627189=>1,1836683935=>1,1837048626=>1,1836976612=>1,1837110877=>1,1837297369=>1,1837417679=>1,1837368618=>1,1836890841=>1,1836889790=>1,1836798142=>1,1836767323=>1,1836867405=>1,1836878291=>1,1836881179=>1,1840082642=>1,1840187072=>1,1841711996=>1,1841692397=>1,1841712017=>1,1841857086=>1,1841894339=>1,1841870774=>1,1841676821=>1,1841659648=>1,1841570355=>1,1841566262=>1,1841594147=>1,1841615470=>1,1841656873=>1,1841656837=>1,1841894345=>1,1841913712=>1,1841928880=>1,1841928862=>1,1841940745=>1,1841954983=>1,1842134735=>1,1842120462=>1,1841928861=>1,1841928857=>1,1841922827=>1,1841917227=>1,1841923428=>1,1841927176=>1,1841928432=>1,1841542271=>1,1841541894=>1,1840976810=>1,1840886871=>1,1841024247=>1,1841056216=>1,1841059046=>1,1841058141=>1,1840883314=>1,1840824260=>1,1840187449=>1,1840187445=>1,1840192915=>1,1840192918=>1,1840791138=>1,1840785909=>1,1841143517=>1,1841147167=>1,1841496558=>1,1841458834=>1,1841501711=>1,1841525706=>1,1841529807=>1,1841529360=>1,1841435317=>1,1841428476=>1,1841196516=>1,1841186645=>1,1841219681=>1,1841377588=>1,1841418868=>1,1806828314=>1,1806827836=>1,1760360410=>1,1760356293=>1,1760361641=>1,1760362632=>1,1760363236=>1,1760363028=>1,1760344890=>1,1760343757=>1,1760338111=>1,1760336856=>1,1760341411=>1,1760341565=>1,1760342830=>1,1760341963=>1,1760393270=>1,1760399711=>1,1760468559=>1,1760466813=>1,1760468927=>1,1760469406=>1,1760470942=>1,1760470895=>1,1760465263=>1,1760462520=>1,1760401603=>1,1760401582=>1,1760402646=>1,1760420870=>1,1760461774=>1,1760461468=>1,1760335828=>1,1760335776=>1,1760316441=>1,1760311088=>1,1760318291=>1,1760319017=>1,1760320134=>1,1760319322=>1,1760310980=>1,1760310939=>1,1760309426=>1,1760309065=>1,1760309658=>1,1760309964=>1,1760310288=>1,1760310181=>1,1760320834=>1,1760321359=>1,1760330816=>1,1760330511=>1,1760333405=>1,1760334195=>1,1760335350=>1,1760335271=>1,1760329319=>1,1760326782=>1,1760322924=>1,1760321689=>1,1760323495=>1,1760325179=>1,1760326258=>1,1760471312=>1,1760471353=>1,1774645551=>1,1774642363=>1,1775500816=>1,1776297076=>1,1776361521=>1,1776297769=>1,1773823327=>1,1773820518=>1,1768947898=>1,1768274829=>1,1768948142=>1,1768949282=>1,1773713837=>1,1773713681=>1,1776369268=>1,1776399966=>1,1778437654=>1,1778434980=>1,1778537752=>1,1778545533=>1,1778707026=>1,1778545861=>1,1778386123=>1,1777069482=>1,1776477544=>1,1776476406=>1,1776588353=>1,1776614258=>1,1777035835=>1,1768247918=>1,1767899226=>1,1760764868=>1,1760627336=>1,1760840047=>1,1760840365=>1,1760878540=>1,1760877709=>1,1760552085=>1,1760533967=>1,1760473222=>1,1760471918=>1,1760476258=>1,1760476610=>1,1760484803=>1,1760484639=>1,1760889038=>1,1760899591=>1,1761551108=>1,1761503731=>1,1761558607=>1,1761601302=>1,1763469226=>1,1763402434=>1,1761503730=>1,1761491844=>1,1760946560=>1,1760946049=>1,1760961278=>1,1761253691=>1,1761344292=>1,1760308357=>1,1760306919=>1,1759261053=>1,1759259409=>1,1759282657=>1,1759290595=>1,1759293381=>1,1759293329=>1,1759257397=>1,1759257106=>1,1759253481=>1,1759253283=>1,1759254074=>1,1759254895=>1,1759256265=>1,1759255207=>1,1759293611=>1,1759294379=>1,1759468699=>1,1759451516=>1,1759470860=>1,1759470958=>1,1759476339=>1,1759476293=>1,1759449239=>1,1759448297=>1,1759295007=>1,1759294906=>1,1759295699=>1,1759295986=>1,1759445304=>1,1759410223=>1,1759250694=>1,1759249850=>1,1758433301=>1,1758433265=>1,1758433555=>1,1758433894=>1,1758436738=>1,1758433922=>1,1758430828=>1,1758430484=>1,1758381918=>1,1758373948=>1,1758429226=>1,1758429289=>1,1758429843=>1,1758429330=>1,1758445794=>1,1758445796=>1,1759177253=>1,1759158117=>1,1759211618=>1,1759211634=>1,1759248869=>1,1759248713=>1,1759148241=>1,1759148240=>1,1758539000=>1,1758523893=>1,1758863892=>1,1758890197=>1,1758891378=>1,1759476459=>1,1759480595=>1,1760123212=>1,1760123105=>1,1760123977=>1,1760124597=>1,1760125043=>1,1760124721=>1,1760122665=>1,1760122409=>1,1760120847=>1,1760120677=>1,1760120856=>1,1760121609=>1,1760122149=>1,1760121806=>1,1760128157=>1,1760129616=>1,1760235451=>1,1760229939=>1,1760300083=>1,1760301463=>1,1760304703=>1,1760301515=>1,1760132340=>1,1760132039=>1,1760130009=>1,1760129842=>1,1760130330=>1,1760131180=>1,1760131318=>1,1760117078=>1,1760044456=>1,1759513158=>1,1759513143=>1,1759513163=>1,1759513164=>1,1759513168=>1,1759513165=>1,1759513141=>1,1759513131=>1,1759480599=>1,1759480597=>1,1759480601=>1,1759481112=>1,1759513129=>1,1759513110=>1,1759513184=>1,1759513189=>1,1759555554=>1,1759553796=>1,1759917364=>1,1759960498=>1,1760043292=>1,1760035617=>1,1759553529=>1,1759552969=>1,1759547313=>1,1759545844=>1,1759547628=>1,1759548730=>1,1759548957=>1,1780511083=>1,1780704688=>1,1805745292=>1,1805734106=>1,1805773689=>1,1805874437=>1,1805874481=>1,1805874473=>1,1805721521=>1,1805720532=>1,1805339783=>1,1805333734=>1,1805347675=>1,1805582101=>1,1805718129=>1,1805582102=>1,1805874490=>1,1805874513=>1,1805874592=>1,1805874580=>1,1805874608=>1,1805874610=>1,1805874619=>1,1805874615=>1,1805874576=>1,1805874562=>1,1805874542=>1,1805874540=>1,1805874545=>1,1805874556=>1,1805874560=>1,1805874557=>1,1805115376=>1,1805112985=>1,1805094515=>1,1805094514=>1,1805094516=>1,1805094517=>1,1805094522=>1,1805094518=>1,1805093086=>1,1805093085=>1,1805093077=>1,1805093076=>1,1805093078=>1,1805093082=>1,1805093084=>1,1805093083=>1,1805094523=>1,1805094524=>1,1805097179=>1,1805097178=>1,1805097180=>1,1805097181=>1,1805109881=>1,1805097182=>1,1805097174=>1,1805097173=>1,1805094526=>1,1805094525=>1,1805097170=>1,1805097171=>1,1805097172=>1,1805874639=>1,1805874649=>1,1806341639=>1,1806339957=>1,1806342480=>1,1806343892=>1,1806352654=>1,1806351515=>1,1806335107=>1,1806334157=>1,1806331603=>1,1806331176=>1,1806331714=>1,1806331977=>1,1806333916=>1,1806332188=>1,1806356996=>1,1806359115=>1,1806366242=>1,1806365862=>1,1806366331=>1,1806366497=>1,1806499174=>1,1806440224=>1,1806365851=>1,1806364943=>1,1806362537=>1,1806361201=>1,1806362699=>1,1806363053=>1,1806364095=>1,1806331102=>1,1806329127=>1,1806307195=>1,1806305018=>1,1806311050=>1,1806311495=>1,1806313378=>1,1806312384=>1,1806303757=>1,1806153520=>1,1805874662=>1,1805874651=>1,1805874683=>1,1805874685=>1,1805896202=>1,1805874686=>1,1806313960=>1,1806316084=>1,1806326554=>1,1806325679=>1,1806327021=>1,1806327053=>1,1806328043=>1,1806327072=>1,1806325444=>1,1806323652=>1,1806321675=>1,1806319627=>1,1806323242=>1,1806323283=>1,1806323603=>1,1805093075=>1,1805093074=>1,1786262101=>1,1786259911=>1,1786262923=>1,1786278104=>1,1786622688=>1,1786301794=>1,1785209708=>1,1784208138=>1,1783335621=>1,1783335209=>1,1783350076=>1,1783350712=>1,1783351294=>1,1783351292=>1,1786628450=>1,1790444174=>1,1790522564=>1,1790521700=>1,1790522828=>1,1790523022=>1,1790579813=>1,1790578842=>1,1790520104=>1,1790519586=>1,1790515558=>1,1790445222=>1,1790516249=>1,1790516379=>1,1790518659=>1,1790516394=>1,1783335117=>1,1783332954=>1,1781054274=>1,1781054188=>1,1781095558=>1,1781192110=>1,1781742494=>1,1781437712=>1,1781053807=>1,1781040254=>1,1780732325=>1,1780712257=>1,1780855291=>1,1780856138=>1,1781039242=>1,1780939582=>1,1781742633=>1,1781743696=>1,1782913441=>1,1782905806=>1,1782969985=>1,1783332951=>1,1783332953=>1,1783332952=>1,1782893503=>1,1782873643=>1,1781772561=>1,1781743780=>1,1782112712=>1,1782197052=>1,1782249514=>1,1790580273=>1,1790580882=>1,1796643954=>1,1796535159=>1,1803808203=>1,1804431089=>1,1804601142=>1,1804601026=>1,1796523607=>1,1796187958=>1,1795844415=>1,1795761845=>1,1795881669=>1,1796137578=>1,1796183269=>1,1796180759=>1,1804601154=>1,1804697342=>1,1805093066=>1,1805093062=>1,1805093067=>1,1805093068=>1,1805093070=>1,1805093069=>1,1805093061=>1,1805093060=>1,1804996042=>1,1804855719=>1,1805018006=>1,1805093058=>1,1805093059=>1,1795593758=>1,1795593757=>1,1790653037=>1,1790652177=>1,1790654447=>1,1790662741=>1,1790663329=>1,1790662884=>1,1790649701=>1,1790606682=>1,1790581710=>1,1790581077=>1,1790581713=>1,1790581771=>1,1790605697=>1,1790581793=>1,1790664686=>1,1790664786=>1,1795541452=>1,1795432303=>1,1795565194=>1,1795593754=>1,1795593756=>1,1795593755=>1,1795294820=>1,1795267602=>1,1790665903=>1,1790665620=>1,1794634014=>1,1794748629=>1,1795196637=>1,1758270779=>1,);?>
1
+ <?php return array(1896580554=>1896580555,1884197308=>1884197309,1878731550=>1878731551,1877278252=>1877278253,1872854634=>1872854637,1865949254=>1865949257,1865944486=>1865944489,1864942862=>1864942865,1863780002=>1863780003,1863779980=>1863779981,1863012504=>1863012505,1863012498=>1863012499,1856799314=>1856799315,1856510030=>1856510031,1845029980=>1845029981,1844181890=>1844181893,1841894338=>1841894339,1840069804=>1840069805,1839458824=>1839458825,1839458820=>1839458821,1833642226=>1833642227,1833222020=>1833222021,1822874642=>1822874643,1815957824=>1815957887,1815951408=>1815951423,1815951248=>1815951263,1815950192=>1815950207,1815940112=>1815940127,1870273469=>1,1870049637=>1,1870044156=>1,1870140350=>1,1870173610=>1,1870512666=>1,1870587472=>1,1870587442=>1,1870588711=>1,1856510139=>1,1872931171=>1,1872883690=>1,1856510143=>1,1870587329=>1,1870042829=>1,1870499434=>1,1870587141=>1,1870587276=>1,1870587288=>1,1870485303=>1,1868418586=>1,1867113677=>1,1867062708=>1,1867115980=>1,1867135220=>1,1867231683=>1,1867135224=>1,1866759126=>1,1866759091=>1,1865949258=>1,1856510200=>1,1865951366=>1,1866588960=>1,1866756346=>1,1866752829=>1,1867432749=>1,1867562338=>1,1873221826=>1,1868399286=>1,1868431518=>1,1868463578=>1,1869625173=>1,1868487350=>1,1868382710=>1,1868217718=>1,1868146761=>1,1867834768=>1,1868206812=>1,1868207282=>1,1868209965=>1,1870042628=>1,1874074864=>1,1878171367=>1,1878171268=>1,1878178004=>1,1878182454=>1,1878222788=>1,1878222324=>1,1878160547=>1,1878154469=>1,1878060615=>1,1878000540=>1,1878064832=>1,1878071738=>1,1878153834=>1,1878153826=>1,1878257834=>1,1878428107=>1,1856510089=>1,1878560321=>1,1878596769=>1,1878625778=>1,1878629097=>1,1878628914=>1,1878554939=>1,1878550237=>1,1878540107=>1,1878524990=>1,1878540212=>1,1878542026=>1,1878549723=>1,1877278255=>1,1856510113=>1,1874877745=>1,1874439107=>1,1874893212=>1,1874920639=>1,1875136302=>1,1874921374=>1,1874186437=>1,1874081673=>1,1873880865=>1,1873879397=>1,1874025166=>1,1874067686=>1,1865948046=>1,1875143740=>1,1875231743=>1,1875822585=>1,1875820188=>1,1875822586=>1,1876954343=>1,1877278249=>1,1877015768=>1,1875820187=>1,1875793669=>1,1875282130=>1,1875247706=>1,1875352785=>1,1875792376=>1,1875792389=>1,1873276305=>1,1865523800=>1,1857417199=>1,1857338415=>1,1857451050=>1,1857483699=>1,1857923243=>1,1857492215=>1,1857268849=>1,1857214363=>1,1857168335=>1,1857113461=>1,1857210222=>1,1857210245=>1,1857213777=>1,1859132070=>1,1860444953=>1,1860720610=>1,1860718766=>1,1860722478=>1,1860747826=>1,1861224113=>1,1860896542=>1,1860718244=>1,1860718141=>1,1860690831=>1,1860679817=>1,1860716676=>1,1860717718=>1,1860717778=>1,1857112790=>1,1857108757=>1,1856510632=>1,1856510583=>1,1856510634=>1,1856510655=>1,1856510693=>1,1856510681=>1,1856510579=>1,1856510520=>1,1856510358=>1,1856510298=>1,1856510478=>1,1856510492=>1,1856510503=>1,1856510696=>1,1856511243=>1,1856811860=>1,1856804922=>1,1856813889=>1,1856871692=>1,1856965610=>1,1856908168=>1,1856803393=>1,1856803332=>1,1856677691=>1,1856562600=>1,1856707093=>1,1856739365=>1,1856800370=>1,1861387279=>1,1861642602=>1,1863779987=>1,1863779983=>1,1863779995=>1,1863779996=>1,1863780006=>1,1863780004=>1,1863779976=>1,1863779975=>1,1863248638=>1,1863150904=>1,1863274171=>1,1863399982=>1,1863779973=>1,1864108761=>1,1864109555=>1,1865640588=>1,1856510246=>1,1865944470=>1,1865944477=>1,1865944482=>1,1865944481=>1,1865395093=>1,1864942889=>1,1864913993=>1,1864254557=>1,1864942855=>1,1878650686=>1,1864942870=>1,1863126413=>1,1863126232=>1,1862342578=>1,1862342563=>1,1862342583=>1,1862342594=>1,1862344828=>1,1862344755=>1,1862342553=>1,1862342550=>1,1861980739=>1,1861848054=>1,1862049585=>1,1862213453=>1,1862342543=>1,1862345755=>1,1862350611=>1,1863012527=>1,1863012506=>1,1863012585=>1,1863017018=>1,1863078721=>1,1863050317=>1,1863012502=>1,1863012501=>1,1862872210=>1,1862842308=>1,1862998978=>1,1862998980=>1,1863012497=>1,1856510227=>1,1878748012=>1,1887876920=>1,1887875840=>1,1887877022=>1,1887879666=>1,1887882303=>1,1887881745=>1,1887871710=>1,1887869608=>1,1887813770=>1,1887701043=>1,1887815882=>1,1887816078=>1,1887866454=>1,1887864650=>1,1887882582=>1,1887883824=>1,1888422489=>1,1888422476=>1,1888422538=>1,1888422654=>1,1889720342=>1,1889573308=>1,1887906253=>1,1887893923=>1,1887885292=>1,1887884877=>1,1887885375=>1,1887885894=>1,1887892950=>1,1887324261=>1,1887323342=>1,1885949221=>1,1885948291=>1,1885993537=>1,1886215504=>1,1886406262=>1,1886406259=>1,1885905379=>1,1885900546=>1,1885891098=>1,1885890314=>1,1885899596=>1,1885900036=>1,1885900492=>1,1885900342=>1,1886638695=>1,1886640424=>1,1887187469=>1,1887184870=>1,1887187541=>1,1887189471=>1,1887322394=>1,1887203739=>1,1887184611=>1,1887184151=>1,1887100835=>1,1886793066=>1,1887175073=>1,1887182036=>1,1887183781=>1,1889720395=>1,1889720409=>1,1895035303=>1,1895001139=>1,1895142414=>1,1895306194=>1,1895629373=>1,1895316996=>1,1894985243=>1,1894894747=>1,1894723111=>1,1894586829=>1,1894730595=>1,1894749142=>1,1894771482=>1,1894765836=>1,1895768600=>1,1895769669=>1,1896337994=>1,1896310155=>1,1896359455=>1,1896522171=>1,1896568751=>1,1896542871=>1,1896134649=>1,1896086660=>1,1895922508=>1,1895770207=>1,1895923496=>1,1896008466=>1,1896045349=>1,1894467318=>1,1894450067=>1,1890080415=>1,1890080404=>1,1890080435=>1,1890080444=>1,1890439192=>1,1890080452=>1,1890080375=>1,1890080372=>1,1889720493=>1,1889720488=>1,1890061303=>1,1890080295=>1,1890080355=>1,1890080327=>1,1890577112=>1,1891113669=>1,1893032920=>1,1893032261=>1,1893211683=>1,1893873887=>1,1894144061=>1,1893994316=>1,1892110186=>1,1892106686=>1,1891818212=>1,1891636900=>1,1891845143=>1,1891853323=>1,1891895381=>1,1885888152=>1,1885887855=>1,1880164563=>1,1880119900=>1,1880164564=>1,1880390044=>1,1880583518=>1,1880555943=>1,1880119670=>1,1880119427=>1,1880116412=>1,1879432391=>1,1880119064=>1,1880119117=>1,1880119330=>1,1880119200=>1,1880583911=>1,1880659800=>1,1883366377=>1,1883359443=>1,1883464022=>1,1883568459=>1,1883920791=>1,1883904377=>1,1883330755=>1,1883330732=>1,1881557675=>1,1880747017=>1,1883289929=>1,1883330651=>1,1883330682=>1,1879314840=>1,1879045576=>1,1878833970=>1,1878833690=>1,1878842252=>1,1878842489=>1,1878865993=>1,1878843091=>1,1878822880=>1,1878806704=>1,1878692539=>1,1878668468=>1,1878693105=>1,1878697213=>1,1878782831=>1,1878731720=>1,1878889568=>1,1878889606=>1,1878953441=>1,1878953236=>1,1878959803=>1,1878985332=>1,1879044916=>1,1879034151=>1,1878890424=>1,1878890410=>1,1878890151=>1,1878889700=>1,1878890158=>1,1878890180=>1,1878890368=>1,1883922600=>1,1883926448=>1,1885865201=>1,1885864646=>1,1885870581=>1,1885880396=>1,1885880589=>1,1885880549=>1,1885798117=>1,1885796601=>1,1885302544=>1,1885302347=>1,1885687979=>1,1885781455=>1,1885796367=>1,1885791225=>1,1885880822=>1,1885881200=>1,1885883149=>1,1885883133=>1,1885883276=>1,1885883309=>1,1885883935=>1,1885883387=>1,1885883096=>1,1885883057=>1,1885881827=>1,1885881571=>1,1885882718=>1,1885882721=>1,1885882871=>1,1885301809=>1,1885301027=>1,1884205577=>1,1884198322=>1,1884205580=>1,1884205587=>1,1884306366=>1,1884207323=>1,1884197310=>1,1884170191=>1,1883951044=>1,1883950651=>1,1883952981=>1,1883953523=>1,1884170180=>1,1884307283=>1,1884565757=>1,1885191684=>1,1885131570=>1,1885194257=>1,1885206576=>1,1885300797=>1,1885288832=>1,1885131487=>1,1885131380=>1,1884783580=>1,1884715886=>1,1884803742=>1,1884964947=>1,1885065294=>1,1878651337=>1,1855489438=>1,1833618965=>1,1833616318=>1,1833619177=>1,1833624474=>1,1833678925=>1,1833660197=>1,1833615996=>1,1833615943=>1,1833446211=>1,1833415666=>1,1833493658=>1,1833517460=>1,1833605013=>1,1833585637=>1,1834160204=>1,1834371235=>1,1834626774=>1,1834626253=>1,1834653424=>1,1834655957=>1,1834677061=>1,1834658287=>1,1834500386=>1,1834436336=>1,1834377678=>1,1834373984=>1,1834400977=>1,1834403367=>1,1834430565=>1,1833355872=>1,1833292790=>1,1830345735=>1,1830339032=>1,1830422703=>1,1830618322=>1,1831936541=>1,1830733278=>1,1829548467=>1,1829324677=>1,1828214770=>1,1828212865=>1,1828344313=>1,1828480414=>1,1829296394=>1,1828760109=>1,1832684492=>1,1832821191=>1,1833222021=>1,1833217596=>1,1833239102=>1,1833239165=>1,1833257070=>1,1833255697=>1,1833121088=>1,1832944920=>1,1832878407=>1,1832830995=>1,1832896344=>1,1832896372=>1,1832935024=>1,1834681120=>1,1834684398=>1,1837375714=>1,1837368618=>1,1837417679=>1,1837447875=>1,1838635113=>1,1838229729=>1,1837297369=>1,1837133851=>1,1836890841=>1,1836889790=>1,1836894824=>1,1836895404=>1,1837110877=>1,1836976612=>1,1838906751=>1,1838983734=>1,1839811261=>1,1839800739=>1,1839951374=>1,1840003517=>1,1840068626=>1,1840015875=>1,1839719266=>1,1839525095=>1,1839458818=>1,1839135432=>1,1839458821=>1,1839458823=>1,1839458825=>1,1836881179=>1,1836878291=>1,1834882781=>1,1834729464=>1,1834901827=>1,1834962111=>1,1835544224=>1,1835535452=>1,1834728937=>1,1834716657=>1,1834703255=>1,1834685402=>1,1834705242=>1,1834705548=>1,1834713616=>1,1834709021=>1,1835574741=>1,1835625890=>1,1836634640=>1,1836627189=>1,1836683935=>1,1836767323=>1,1836867405=>1,1836798142=>1,1836623882=>1,1835869856=>1,1835699004=>1,1835676276=>1,1835738010=>1,1835796925=>1,1835844827=>1,1828005465=>1,1827951653=>1,1815466141=>1,1815309597=>1,1815551247=>1,1815660435=>1,1815777514=>1,1815747842=>1,1815170531=>1,1815160815=>1,1814912338=>1,1814912336=>1,1814912341=>1,1815007412=>1,1815110948=>1,1815066364=>1,1815808993=>1,1815836715=>1,1815967563=>1,1815963566=>1,1815967618=>1,1815968344=>1,1815978480=>1,1815969601=>1,1815962517=>1,1815961639=>1,1815881796=>1,1815851652=>1,1815927080=>1,1815956002=>1,1815958548=>1,1814912324=>1,1814637420=>1,1812777941=>1,1812578171=>1,1812794794=>1,1812794815=>1,1813015474=>1,1812808202=>1,1812563523=>1,1812345131=>1,1808999192=>1,1808627745=>1,1809254607=>1,1809383817=>1,1812328602=>1,1809616709=>1,1813071410=>1,1813147132=>1,1813996036=>1,1813981189=>1,1813997074=>1,1814025623=>1,1814293566=>1,1814049044=>1,1813971970=>1,1813910659=>1,1813342471=>1,1813299513=>1,1813771831=>1,1813795196=>1,1813811434=>1,1815979264=>1,1815979433=>1,1823369696=>1,1823357376=>1,1823373786=>1,1823390552=>1,1823503770=>1,1823390613=>1,1823081068=>1,1823074510=>1,1822861470=>1,1822592626=>1,1822894897=>1,1822949558=>1,1822993678=>1,1822966067=>1,1823621949=>1,1823790283=>1,1827714700=>1,1826722416=>1,1827806633=>1,1827887004=>1,1827941180=>1,1827915808=>1,1826665305=>1,1825976327=>1,1824526635=>1,1824103962=>1,1824784991=>1,1825196899=>1,1825327272=>1,1822524861=>1,1816900003=>1,1815983915=>1,1815983302=>1,1815986079=>1,1815987058=>1,1815988170=>1,1815987919=>1,1815983064=>1,1815982446=>1,1815979837=>1,1815979659=>1,1815979893=>1,1815980456=>1,1815981954=>1,1815988174=>1,1815990039=>1,1816001462=>1,1816001110=>1,1816277101=>1,1816591798=>1,1816894193=>1,1816876693=>1,1816000509=>1,1815994346=>1,1815991036=>1,1815990578=>1,1815991398=>1,1815991697=>1,1815994158=>1,1840068790=>1,1840068995=>1,1850278638=>1,1849878261=>1,1850279350=>1,1850280466=>1,1850324492=>1,1850323521=>1,1849791271=>1,1848958282=>1,1847974078=>1,1847908866=>1,1847974396=>1,1848928494=>1,1848934370=>1,1848928649=>1,1850574448=>1,1850576003=>1,1850592441=>1,1850590450=>1,1850592490=>1,1850593730=>1,1850594001=>1,1850593933=>1,1850589416=>1,1850589260=>1,1850578264=>1,1850576210=>1,1850580267=>1,1850585944=>1,1850587268=>1,1847908766=>1,1847906462=>1,1845029982=>1,1845029979=>1,1845167596=>1,1845201434=>1,1845294450=>1,1845207559=>1,1845029947=>1,1845014622=>1,1844975182=>1,1844588995=>1,1844981264=>1,1845006419=>1,1845007196=>1,1845006613=>1,1845399303=>1,1845410035=>1,1846735113=>1,1846652054=>1,1847730858=>1,1847730860=>1,1847900369=>1,1847732194=>1,1846622495=>1,1846182229=>1,1845482553=>1,1845429447=>1,1845768075=>1,1845849718=>1,1846122762=>1,1850594010=>1,1850594108=>1,1854466529=>1,1854466116=>1,1854468659=>1,1854468833=>1,1854482247=>1,1854471882=>1,1854466006=>1,1854465078=>1,1851644714=>1,1851639956=>1,1852192407=>1,1854437030=>1,1854465065=>1,1854440770=>1,1854490637=>1,1854562877=>1,1855683047=>1,1855523322=>1,1855915561=>1,1856292220=>1,1856510010=>1,1856292626=>1,1808478795=>1,1855475372=>1,1854831663=>1,1854591486=>1,1854853291=>1,1854919513=>1,1855471021=>1,1851594666=>1,1851134810=>1,1850598678=>1,1850598641=>1,1850599103=>1,1850599515=>1,1850599608=>1,1850599554=>1,1850598410=>1,1850597908=>1,1850595635=>1,1850594125=>1,1850596781=>1,1850597823=>1,1850597837=>1,1850601193=>1,1850601525=>1,1850752622=>1,1850653829=>1,1850815236=>1,1850863277=>1,1851126394=>1,1851068156=>1,1850647939=>1,1850644849=>1,1850642245=>1,1850603534=>1,1850642397=>1,1850642403=>1,1850644415=>1,1844556662=>1,1844395136=>1,1841496558=>1,1841458834=>1,1841501711=>1,1841525706=>1,1841529807=>1,1841529360=>1,1841435317=>1,1841428476=>1,1841219681=>1,1841196516=>1,1841341064=>1,1841377588=>1,1841418868=>1,1841408526=>1,1841530758=>1,1841541894=>1,1841676821=>1,1841659648=>1,1841677264=>1,1841692397=>1,1841712017=>1,1841711996=>1,1841656897=>1,1841656873=>1,1841570355=>1,1841566262=>1,1841594147=>1,1841615470=>1,1841656837=>1,1841186645=>1,1841147167=>1,1840069981=>1,1840069925=>1,1840082642=>1,1840187072=>1,1840187449=>1,1840187445=>1,1840069630=>1,1840069521=>1,1840069233=>1,1840069205=>1,1840069321=>1,1840069376=>1,1840069514=>1,1840069408=>1,1840192915=>1,1840192918=>1,1840972540=>1,1840886871=>1,1841033036=>1,1841056216=>1,1841143517=>1,1841058141=>1,1840883314=>1,1840871239=>1,1840791138=>1,1840785909=>1,1840817721=>1,1840818653=>1,1840824260=>1,1841857086=>1,1841870774=>1,1843886705=>1,1843854318=>1,1843927995=>1,1843948174=>1,1844019177=>1,1844018980=>1,1843850917=>1,1843850329=>1,1843799005=>1,1843736068=>1,1843818498=>1,1843822771=>1,1843845578=>1,1843823118=>1,1844061380=>1,1844061816=>1,1844337748=>1,1844325031=>1,1844367602=>1,1844382730=>1,1844392088=>1,1844391962=>1,1844251418=>1,1844251321=>1,1844091445=>1,1844062162=>1,1844205577=>1,1844206289=>1,1844251250=>1,1843706004=>1,1843699278=>1,1841928857=>1,1841928432=>1,1841928861=>1,1841928862=>1,1841954983=>1,1841928880=>1,1841927176=>1,1841923428=>1,1841907151=>1,1841894345=>1,1841907978=>1,1841917227=>1,1841922827=>1,1842120462=>1,1842134735=>1,1842625045=>1,1842506334=>1,1843401251=>1,1843410450=>1,1843660921=>1,1843488066=>1,1842298326=>1,1842298320=>1,1842180618=>1,1842156752=>1,1842298256=>1,1842298259=>1,1842298278=>1,1856510014=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-2.php CHANGED
@@ -1 +1 @@
1
- <?php return array(662880408=>662880415,654386560=>654386567,654386456=>654386463,654386336=>654386343,654386320=>654386327,654386304=>654386311,654386216=>654386223,635284480=>635284991,654386228=>1,654386194=>1,654386227=>1,654386232=>1,654386196=>1,654386204=>1,654386224=>1,654386198=>1,654386197=>1,654386210=>1,654386238=>1,654386258=>1,654386255=>1,654386260=>1,654386264=>1,654386268=>1,654386267=>1,654386250=>1,654386246=>1,654386189=>1,654386236=>1,654386239=>1,654386240=>1,654386244=>1,654386242=>1,654386235=>1,654386179=>1,646194210=>1,646177637=>1,646218380=>1,646220880=>1,646229289=>1,646221011=>1,646076522=>1,646074966=>1,645671109=>1,645647737=>1,645676089=>1,645676373=>1,646074400=>1,645688664=>1,646230494=>1,646230711=>1,652559933=>1,652559926=>1,652562178=>1,654386177=>1,654386180=>1,654386271=>1,652559925=>1,652559924=>1,652541980=>1,646232287=>1,652541981=>1,652559905=>1,652559923=>1,652559906=>1,654386183=>1,654386280=>1,654386400=>1,654386394=>1,654386401=>1,654386403=>1,654386405=>1,654386404=>1,654386391=>1,654386387=>1,654386375=>1,654386369=>1,654386377=>1,654386378=>1,654386379=>1,654386406=>1,654386413=>1,654386430=>1,654386428=>1,654386433=>1,654386434=>1,654386438=>1,654386437=>1,654386426=>1,654386425=>1,654386416=>1,654386415=>1,654386417=>1,654386419=>1,654386424=>1,654386367=>1,654386362=>1,654386300=>1,654386295=>1,654386301=>1,654386303=>1,654386315=>1,654386313=>1,654386294=>1,654386292=>1,654386275=>1,654386273=>1,645647633=>1,654386282=>1,654386283=>1,654386319=>1,654386328=>1,654386353=>1,654386351=>1,654386356=>1,654386358=>1,654386361=>1,654386359=>1,654386350=>1,654386349=>1,654386333=>1,654386332=>1,654386344=>1,654386345=>1,654386347=>1,654386272=>1,645400241=>1,636171331=>1,636171279=>1,636172115=>1,636173389=>1,636174668=>1,636173831=>1,636170634=>1,636170620=>1,636053240=>1,636053189=>1,636053325=>1,636163335=>1,636170487=>1,636164143=>1,636175186=>1,636235019=>1,636283751=>1,636283735=>1,636286428=>1,636292524=>1,636293985=>1,636293561=>1,636269927=>1,636268464=>1,636236484=>1,636235383=>1,636244868=>1,636247195=>1,636261619=>1,636247758=>1,636053157=>1,636053147=>1,635181602=>1,635179561=>1,635183619=>1,635183896=>1,635184073=>1,635183908=>1,635177096=>1,635105381=>1,634475972=>1,634469382=>1,634976630=>1,635082908=>1,635105330=>1,635088780=>1,635184074=>1,635184144=>1,635860773=>1,635860256=>1,636041722=>1,636041990=>1,636053116=>1,636052381=>1,635818880=>1,635733607=>1,635282146=>1,635184368=>1,635284458=>1,635284460=>1,635291063=>1,636297059=>1,636303754=>1,641910256=>1,637320880=>1,641994376=>1,642462514=>1,642835000=>1,642582863=>1,637295172=>1,637272142=>1,636472539=>1,636470597=>1,636955257=>1,636956744=>1,636970914=>1,636958555=>1,642835217=>1,642838760=>1,643895428=>1,643884245=>1,644521524=>1,644567780=>1,654386439=>1,644626145=>1,643408017=>1,643318795=>1,642879970=>1,642839032=>1,643000770=>1,643073687=>1,643194952=>1,636469685=>1,636469161=>1,636360117=>1,636356178=>1,636363428=>1,636364333=>1,636367757=>1,636365904=>1,636355454=>1,636354614=>1,636311384=>1,636304172=>1,636314264=>1,636335703=>1,636353764=>1,636336122=>1,636367938=>1,636369635=>1,636413785=>1,636410410=>1,636466306=>1,636466373=>1,636469154=>1,636468052=>1,636380252=>1,636377991=>1,636371942=>1,636371304=>1,636373286=>1,636374304=>1,636374749=>1,645401945=>1,654386443=>1,690039668=>1,690035077=>1,690068690=>1,690075331=>1,690077558=>1,690077556=>1,690012026=>1,689970416=>1,678883683=>1,678838988=>1,679031015=>1,679034654=>1,680288059=>1,679684914=>1,690089636=>1,690089642=>1,690368138=>1,690367442=>1,690374778=>1,690410958=>1,690654218=>1,690516384=>1,690298374=>1,690297808=>1,690109627=>1,690109163=>1,690291426=>1,690293398=>1,690296540=>1,690293923=>1,678634661=>1,678615636=>1,666021274=>1,665992107=>1,666204931=>1,666205462=>1,666327960=>1,666305635=>1,665984266=>1,665597801=>1,662880422=>1,662880416=>1,664669768=>1,665066701=>1,665222269=>1,665176438=>1,666392294=>1,666666274=>1,678477532=>1,676595032=>1,678518242=>1,678524590=>1,678562236=>1,678561158=>1,675974441=>1,675967081=>1,675575890=>1,666860976=>1,675586663=>1,675617706=>1,675620566=>1,690654515=>1,690655466=>1,690678615=>1,690678359=>1,690679195=>1,690679989=>1,690680011=>1,690679992=>1,690678207=>1,690677294=>1,690674572=>1,690674324=>1,690675026=>1,690675696=>1,690676487=>1,690676150=>1,690680830=>1,690681642=>1,690784878=>1,690774972=>1,690795061=>1,690795297=>1,690796634=>1,690795436=>1,690757503=>1,690753911=>1,690682180=>1,690681899=>1,690683384=>1,690683531=>1,690751489=>1,690673618=>1,690673581=>1,690662343=>1,690661852=>1,690662544=>1,690662550=>1,690663899=>1,690662602=>1,690661592=>1,690659355=>1,690656680=>1,690656147=>1,690658244=>1,690658863=>1,690659200=>1,690659084=>1,690663950=>1,690664100=>1,690668699=>1,690668332=>1,690668714=>1,690668793=>1,690670813=>1,690670088=>1,690668147=>1,690667824=>1,690666586=>1,690664570=>1,690667346=>1,690667388=>1,690667554=>1,662880407=>1,662152275=>1,654386554=>1,654386552=>1,654386555=>1,654386572=>1,654386587=>1,654386578=>1,654386547=>1,654386546=>1,654386526=>1,654386524=>1,654386527=>1,654386532=>1,654386543=>1,654386534=>1,654386588=>1,654386591=>1,654386608=>1,654386607=>1,654386609=>1,654386610=>1,654386613=>1,654386612=>1,654386606=>1,654386605=>1,654386593=>1,654386592=>1,654386595=>1,654386596=>1,654386597=>1,654386523=>1,654386518=>1,654386455=>1,654386453=>1,654386464=>1,654386466=>1,654386468=>1,654386467=>1,654386452=>1,654386451=>1,634464245=>1,654386442=>1,654386445=>1,654386447=>1,654386450=>1,654386449=>1,654386469=>1,654386471=>1,654386493=>1,654386492=>1,654386494=>1,654386500=>1,654386512=>1,654386504=>1,654386487=>1,654386486=>1,654386478=>1,654386473=>1,654386479=>1,654386482=>1,654386483=>1,654386616=>1,654386624=>1,659219654=>1,658922321=>1,659272262=>1,659272378=>1,659395912=>1,659293824=>1,658902542=>1,658899636=>1,658733305=>1,657358713=>1,658742887=>1,658748459=>1,658812797=>1,658810730=>1,659548482=>1,659548947=>1,661456034=>1,660259118=>1,661457893=>1,661459231=>1,661546965=>1,661502693=>1,660253916=>1,660249057=>1,659780378=>1,659723623=>1,659835160=>1,659925595=>1,660140902=>1,657344033=>1,657342163=>1,654386653=>1,654386652=>1,654386654=>1,654386656=>1,654386659=>1,654386658=>1,654386643=>1,654386641=>1,654386634=>1,654386627=>1,654386637=>1,654386638=>1,654386640=>1,654386639=>1,654386660=>1,654386663=>1,654386678=>1,654386675=>1,654386684=>1,656531996=>1,657329924=>1,657327613=>1,654386673=>1,654386672=>1,654386665=>1,654386664=>1,654386667=>1,654386669=>1,654386670=>1,654386441=>1,634462862=>1,623934581=>1,623934580=>1,623972171=>1,624000268=>1,624267409=>1,624252156=>1,623933636=>1,623933585=>1,623931497=>1,623930956=>1,623931498=>1,623931499=>1,623932384=>1,623931500=>1,624370047=>1,624496234=>1,624627401=>1,624626997=>1,624633147=>1,624634049=>1,624634423=>1,624634182=>1,624624316=>1,624624167=>1,624512693=>1,624512692=>1,624513965=>1,624513966=>1,624573409=>1,624538370=>1,623930731=>1,623930647=>1,622865417=>1,622865413=>1,622865817=>1,622865865=>1,623078382=>1,622998646=>1,622865409=>1,622863686=>1,622573801=>1,622555724=>1,622639121=>1,622676978=>1,622863409=>1,622859465=>1,623651851=>1,623919124=>1,623923483=>1,623923438=>1,623924417=>1,623924422=>1,623928769=>1,623924896=>1,623923380=>1,623923301=>1,623919436=>1,623919431=>1,623919883=>1,623921706=>1,623921708=>1,624634483=>1,624634764=>1,626177787=>1,626177726=>1,626181058=>1,626183871=>1,626193471=>1,626188371=>1,626177663=>1,626170857=>1,626142944=>1,626113429=>1,626145448=>1,626145898=>1,626158807=>1,626157207=>1,626212568=>1,626238249=>1,626299629=>1,626296175=>1,626306428=>1,626306504=>1,626335701=>1,626335332=>1,626296093=>1,626293832=>1,626270362=>1,626262197=>1,626273246=>1,626275150=>1,626280592=>1,626105570=>1,626096242=>1,624650030=>1,624648582=>1,624651611=>1,624652224=>1,624654070=>1,624652295=>1,624648383=>1,624644165=>1,624635675=>1,624635551=>1,624636727=>1,624639934=>1,624642183=>1,624642180=>1,624654198=>1,624655246=>1,625885719=>1,625816108=>1,625903033=>1,625998804=>1,626065168=>1,625999556=>1,625788341=>1,625675908=>1,624818588=>1,624686022=>1,624818700=>1,624819019=>1,625675906=>1,622530174=>1,622529867=>1,618728334=>1,618696241=>1,618731573=>1,618739265=>1,618781400=>1,618781271=>1,618696183=>1,618696016=>1,618680464=>1,616564158=>1,618686878=>1,618689107=>1,618695433=>1,618693597=>1,618781562=>1,618782231=>1,618899756=>1,618835098=>1,618999166=>1,619008508=>1,619057209=>1,619040125=>1,618834648=>1,618834548=>1,618800369=>1,618790649=>1,618819610=>1,618820550=>1,618834466=>1,618833432=>1,611216940=>1,611146778=>1,609573539=>1,609551580=>1,609597433=>1,609597924=>1,609598309=>1,609598275=>1,609517735=>1,609507856=>1,609478551=>1,609462901=>1,609478759=>1,609480223=>1,609506985=>1,609499937=>1,609599801=>1,609610790=>1,610520952=>1,610390162=>1,610619559=>1,610620556=>1,610975571=>1,610651687=>1,610386236=>1,610373917=>1,609614660=>1,609613767=>1,609634660=>1,609639676=>1,609659443=>1,619084177=>1,619084185=>1,621078602=>1,620839300=>1,621098980=>1,621126015=>1,621333657=>1,621130060=>1,620835575=>1,620830630=>1,620436087=>1,620435971=>1,620789548=>1,620825716=>1,620828560=>1,620827191=>1,621362498=>1,621389885=>1,622190951=>1,622162307=>1,622191498=>1,622372682=>1,622477391=>1,622477330=>1,622159151=>1,621936353=>1,621771480=>1,621725228=>1,621786425=>1,621786748=>1,621883790=>1,620404488=>1,620381444=>1,619206817=>1,619183194=>1,619214957=>1,619216648=>1,619279288=>1,619268146=>1,619179112=>1,619178353=>1,619127250=>1,619125358=>1,619132156=>1,619154217=>1,619162839=>1,619156822=>1,619294187=>1,619324566=>1,619462245=>1,619396535=>1,619511276=>1,619541918=>1,620274077=>1,619659898=>1,619394555=>1,619394211=>1,619339673=>1,619324797=>1,619349407=>1,619356270=>1,619362425=>1,626345066=>1,626345150=>1,633058675=>1,633058416=>1,633066280=>1,633066281=>1,633073416=>1,633073007=>1,633058322=>1,633058308=>1,633045414=>1,633043833=>1,633045730=>1,633049984=>1,633057344=>1,633056037=>1,633076457=>1,633096314=>1,633311410=>1,633311307=>1,633312394=>1,633312813=>1,633315991=>1,633313558=>1,633310899=>1,633308867=>1,633306126=>1,633284977=>1,633307236=>1,633307568=>1,633308123=>1,633308104=>1,633043658=>1,633043167=>1,633038538=>1,633038522=>1,633038893=>1,633038959=>1,633039169=>1,633039147=>1,633038444=>1,633038398=>1,633037151=>1,633037138=>1,633037497=>1,633037761=>1,633038306=>1,633038223=>1,633039172=>1,633039208=>1,633041776=>1,633041711=>1,633041821=>1,633041828=>1,633043092=>1,633042488=>1,633040830=>1,633040600=>1,633039707=>1,633039693=>1,633039952=>1,633040150=>1,633040188=>1,633316446=>1,633316464=>1,633446379=>1,633436275=>1,633455643=>1,633484555=>1,633889285=>1,633486127=>1,633410841=>1,633369623=>1,633330301=>1,633330036=>1,633330516=>1,633330792=>1,633331566=>1,633331155=>1,633889787=>1,633970449=>1,634194837=>1,634194572=>1,634206422=>1,634208019=>1,634316738=>1,634302650=>1,634194307=>1,634181747=>1,634069577=>1,634069576=>1,634069578=>1,634139509=>1,634159951=>1,633329165=>1,633328837=>1,633324039=>1,633324017=>1,633324418=>1,633324521=>1,633325485=>1,633324820=>1,633323949=>1,633323948=>1,633317941=>1,633316857=>1,633318398=>1,633318549=>1,633319364=>1,633318716=>1,633325637=>1,633325851=>1,633327761=>1,633327684=>1,633328001=>1,633328377=>1,633328682=>1,633328442=>1,633327291=>1,633327080=>1,633326387=>1,633325952=>1,633326600=>1,633326975=>1,633327003=>1,633037087=>1,633036884=>1,629852564=>1,629549335=>1,629866883=>1,629867495=>1,629869631=>1,629868264=>1,629401261=>1,629334918=>1,628851386=>1,628851376=>1,628855372=>1,628860184=>1,629334917=>1,628864556=>1,629869902=>1,629870892=>1,630293743=>1,630215130=>1,630408200=>1,630440129=>1,630495344=>1,630495330=>1,630130758=>1,629992444=>1,629872238=>1,629871059=>1,629874424=>1,629958568=>1,629991960=>1,629961121=>1,628846877=>1,628805852=>1,628156027=>1,628154169=>1,628158768=>1,628164720=>1,628176282=>1,628175597=>1,628153891=>1,628152435=>1,627238842=>1,627150063=>1,627632341=>1,627999278=>1,628144710=>1,628112825=>1,628203187=>1,628209431=>1,628651106=>1,628643206=>1,628662284=>1,628665482=>1,628670038=>1,628667071=>1,628641652=>1,628640757=>1,628365006=>1,628325756=>1,628632751=>1,628637073=>1,628638427=>1,630495696=>1,630495895=>1,633016980=>1,633016941=>1,633017012=>1,633017228=>1,633017423=>1,633017403=>1,633016671=>1,633016643=>1,633013835=>1,633013256=>1,633014090=>1,633014147=>1,633016495=>1,633014229=>1,633017576=>1,633017611=>1,633020199=>1,633018344=>1,633023346=>1,633027322=>1,633036877=>1,633032362=>1,633018211=>1,633018042=>1,633017757=>1,633017628=>1,633017780=>1,633017943=>1,633017987=>1,633013254=>1,633013098=>1,630742600=>1,630497805=>1,630784266=>1,630794547=>1,630812369=>1,630797701=>1,630497050=>1,630497022=>1,630496208=>1,630495974=>1,630496268=>1,630496446=>1,630496753=>1,630496722=>1,631082503=>1,631094330=>1,633012509=>1,633012332=>1,633012629=>1,633012769=>1,633012966=>1,633012909=>1,632998295=>1,631226530=>1,631095659=>1,631095417=>1,631095988=>1,631096147=>1,631096151=>1,609462850=>1,);?>
1
+ <?php return array(690077558=>690077559,662880408=>662880415,654386680=>654386681,654386672=>654386673,654386664=>654386665,654386658=>654386659,654386652=>654386653,654386638=>654386647,654386606=>654386609,654386596=>654386597,654386588=>654386589,654386582=>654386583,654386552=>654386561,654386546=>654386547,654386526=>654386527,654386492=>654386493,654386486=>654386487,654386482=>654386483,654386478=>654386479,654386466=>654386469,654386450=>654386451,654386438=>654386439,654386424=>654386425,654386416=>654386417,654386404=>654386405,654386400=>654386401,654386394=>654386395,654386378=>654386379,654386358=>654386361,654386342=>654386345,654386332=>654386333,654386320=>654386327,654386304=>654386311,654386300=>654386301,654386294=>654386295,654386290=>654386291,654386284=>654386285,654386272=>654386273,654386238=>654386239,654386216=>654386223,654386202=>654386203,652559924=>652559925,652541980=>652541981,635284480=>635284991,634069576=>634069577,633323948=>633323949,633066280=>633066281,624512692=>624512693,623934580=>623934581,623931498=>623931499,654386242=>1,654386347=>1,654386244=>1,654386341=>1,654386246=>1,654386353=>1,654386240=>1,654386367=>1,654386232=>1,654386362=>1,654386235=>1,654386250=>1,654386236=>1,654386356=>1,654386328=>1,654386268=>1,654386267=>1,654386271=>1,654386369=>1,654386275=>1,654386292=>1,654386264=>1,654386260=>1,654386319=>1,654386255=>1,654386315=>1,654386313=>1,654386303=>1,654386258=>1,654386287=>1,654386427=>1,654386562=>1,654386543=>1,654386572=>1,654386578=>1,654386580=>1,654386534=>1,654386532=>1,654386514=>1,654386518=>1,654386523=>1,654386524=>1,654386587=>1,654386591=>1,654386634=>1,654386627=>1,654386637=>1,654386654=>1,654386656=>1,654386624=>1,654386616=>1,654386605=>1,654386610=>1,654386613=>1,654386614=>1,654386512=>1,654386504=>1,654386419=>1,654386415=>1,654386228=>1,654386428=>1,654386430=>1,654386413=>1,654386406=>1,654386377=>1,654386387=>1,654386391=>1,654386403=>1,654386433=>1,654386434=>1,654386473=>1,654386471=>1,654386476=>1,654386494=>1,654386500=>1,654386464=>1,654386452=>1,654386437=>1,654386445=>1,654386447=>1,654386449=>1,654386375=>1,654386210=>1,636374749=>1,636374304=>1,636375255=>1,636377991=>1,636410410=>1,636380252=>1,636373286=>1,636369635=>1,636353764=>1,636353002=>1,636355454=>1,636364333=>1,636367757=>1,636365904=>1,636466306=>1,636466373=>1,636958555=>1,636956744=>1,636970914=>1,637272142=>1,637320880=>1,637295172=>1,636955257=>1,636477853=>1,636469154=>1,636468052=>1,636469161=>1,636469685=>1,636470597=>1,636336122=>1,636335703=>1,636173831=>1,636173389=>1,636174668=>1,636175186=>1,636238666=>1,636236484=>1,636172468=>1,636172115=>1,636170620=>1,636170487=>1,636170634=>1,636171331=>1,636171895=>1,636171848=>1,636244868=>1,636247195=>1,636297498=>1,636297059=>1,636303374=>1,636303754=>1,636314264=>1,636304172=>1,636293561=>1,636283751=>1,636257884=>1,636247758=>1,636261619=>1,636268464=>1,636283735=>1,641910256=>1,641994376=>1,646231422=>1,646230711=>1,646232287=>1,652541981=>1,652559906=>1,652559905=>1,646230494=>1,646229289=>1,646194210=>1,646177637=>1,646218380=>1,646218524=>1,646221011=>1,646220880=>1,652559923=>1,652559925=>1,654386194=>1,654386189=>1,654386201=>1,654386204=>1,654386224=>1,654386660=>1,654386183=>1,654386180=>1,652559933=>1,652559926=>1,652562178=>1,654386177=>1,654386179=>1,646076522=>1,646076468=>1,643000770=>1,642879970=>1,643073687=>1,643194952=>1,643408017=>1,643318795=>1,642839032=>1,642838760=>1,642585381=>1,642462514=>1,642835000=>1,642835217=>1,642835360=>1,643895428=>1,644521524=>1,645688664=>1,645676373=>1,645824070=>1,645824072=>1,646074966=>1,646074400=>1,645676089=>1,645671109=>1,644626145=>1,644567780=>1,645400241=>1,645401945=>1,645498380=>1,654386227=>1,654386670=>1,690795061=>1,690784878=>1,690795297=>1,690795436=>1,690797122=>1,690796634=>1,690774972=>1,690757503=>1,690682180=>1,690682006=>1,690683384=>1,690683531=>1,690753911=>1,690751489=>1,690797134=>1,690797253=>1,690801637=>1,690801560=>1,690803201=>1,690803372=>1,690805139=>1,690804106=>1,690801172=>1,690798511=>1,690797395=>1,690797383=>1,690797887=>1,690798389=>1,690798432=>1,690681899=>1,690681642=>1,690668714=>1,690668699=>1,690668793=>1,690670088=>1,690674572=>1,690670813=>1,690668332=>1,690668147=>1,690663899=>1,690662602=>1,690664570=>1,690666586=>1,690667824=>1,690667346=>1,690674705=>1,690675026=>1,690678615=>1,690678515=>1,690679195=>1,690679989=>1,690680830=>1,690680011=>1,690678359=>1,690678207=>1,690676150=>1,690675696=>1,690676487=>1,690677294=>1,690677932=>1,690805463=>1,690805492=>1,692040855=>1,692035850=>1,692135649=>1,692254490=>1,692547606=>1,692277285=>1,691741062=>1,691609384=>1,690960373=>1,690814968=>1,691006315=>1,691557764=>1,691566823=>1,691564856=>1,692618670=>1,692623284=>1,692867187=>1,692857932=>1,692867478=>1,692905411=>1,692932675=>1,692915946=>1,692798448=>1,692735690=>1,692638547=>1,692635982=>1,692712284=>1,692718173=>1,692735368=>1,690814630=>1,690814594=>1,690809226=>1,690809044=>1,690809329=>1,690809358=>1,690809844=>1,690809807=>1,690808641=>1,690808124=>1,690806689=>1,690806465=>1,690806722=>1,690806925=>1,690807502=>1,690807489=>1,690809919=>1,690809954=>1,690813734=>1,690813720=>1,690813779=>1,690813944=>1,690814528=>1,690814427=>1,690813223=>1,690813003=>1,690811047=>1,690810182=>1,690811559=>1,690812316=>1,690812398=>1,690662550=>1,690662544=>1,661459231=>1,661457893=>1,661502693=>1,661546965=>1,662880407=>1,662152275=>1,661456034=>1,661455054=>1,659925595=>1,659850680=>1,660140902=>1,660249057=>1,660259118=>1,660253916=>1,662880416=>1,662880422=>1,666081704=>1,666021274=>1,666204931=>1,666205462=>1,666327960=>1,666305635=>1,665992107=>1,665984266=>1,665176438=>1,665066701=>1,665222269=>1,665597801=>1,665599244=>1,659835160=>1,659780378=>1,657327613=>1,656613335=>1,657329924=>1,657342163=>1,658077201=>1,657344033=>1,654387935=>1,654386684=>1,654386669=>1,654386667=>1,636164143=>1,654386675=>1,654386682=>1,654386678=>1,658733305=>1,658742887=>1,659293824=>1,659272378=>1,659395912=>1,659548482=>1,659723623=>1,659548947=>1,659272262=>1,659219654=>1,658810730=>1,658748459=>1,658812797=>1,658899636=>1,658902542=>1,666392294=>1,666666274=>1,690374778=>1,690368138=>1,690410958=>1,690458643=>1,690654218=>1,690652666=>1,690367442=>1,690296540=>1,690089642=>1,690089636=>1,690109627=>1,690293398=>1,690294743=>1,690293923=>1,690655466=>1,690655899=>1,690660521=>1,690659355=>1,690661104=>1,690661592=>1,690661899=>1,690661852=>1,690659200=>1,690659084=>1,690656680=>1,690656147=>1,690658244=>1,690658546=>1,690658863=>1,690077556=>1,690075331=>1,676748014=>1,676595032=>1,678477532=>1,678524590=>1,678562236=>1,678561158=>1,676531672=>1,675974441=>1,666860976=>1,666754349=>1,675575890=>1,675586663=>1,675967081=>1,675617706=>1,678615636=>1,678634661=>1,689994285=>1,680288059=>1,690012026=>1,690035077=>1,690068690=>1,690039668=>1,679684914=>1,679034654=>1,678838203=>1,678673544=>1,678838988=>1,678883683=>1,679031015=>1,654386663=>1,636041722=>1,624650030=>1,624648582=>1,624651193=>1,624651528=>1,624652224=>1,624651611=>1,624648383=>1,624644165=>1,624636634=>1,624635675=>1,624636727=>1,624639934=>1,624642183=>1,624642180=>1,624652295=>1,624654070=>1,625788341=>1,625675908=>1,625816108=>1,625903033=>1,625999556=>1,625998804=>1,625675906=>1,624819149=>1,624655246=>1,624654198=>1,624686022=>1,624818504=>1,624819019=>1,624818588=>1,624635551=>1,624634483=>1,623972171=>1,623934581=>1,624187820=>1,624252156=>1,624342707=>1,624341817=>1,623933636=>1,623933585=>1,623930731=>1,623930647=>1,623931497=>1,623931500=>1,623932384=>1,623931729=>1,624370047=>1,624496234=>1,624627401=>1,624626997=>1,624633147=>1,624634049=>1,624634423=>1,624634182=>1,624624316=>1,624624167=>1,624513965=>1,624510260=>1,624513966=>1,624538370=>1,624573272=>1,626096242=>1,626105570=>1,628144710=>1,628112825=>1,628152435=>1,628153891=>1,628158768=>1,628154169=>1,627999278=>1,627632341=>1,626345150=>1,626345066=>1,626377031=>1,627148794=>1,627238842=>1,627150063=>1,628164720=>1,628175597=>1,628638427=>1,628637073=>1,628640757=>1,628641652=>1,628651106=>1,628643206=>1,628632751=>1,628365006=>1,628203187=>1,628176282=>1,628209431=>1,628325756=>1,628346506=>1,626335701=>1,626335332=>1,626177787=>1,626177726=>1,626181058=>1,626183871=>1,626193471=>1,626188371=>1,626177663=>1,626170857=>1,626142944=>1,626113429=>1,626145898=>1,626157207=>1,626166636=>1,626158807=>1,626212568=>1,626262197=>1,626299629=>1,626296175=>1,626306428=>1,626306462=>1,626314403=>1,626306504=>1,626296093=>1,626293832=>1,626273246=>1,626270362=>1,626275150=>1,626280592=>1,626284561=>1,623928769=>1,623924422=>1,619154048=>1,619125358=>1,619156604=>1,619156822=>1,619183194=>1,619179112=>1,619105243=>1,619084185=>1,619008305=>1,618899756=>1,619008508=>1,619040125=>1,619084177=>1,619057209=>1,619214957=>1,619263710=>1,619361330=>1,619356715=>1,619394211=>1,619394555=>1,619462245=>1,619396535=>1,619356453=>1,619356270=>1,619279288=>1,619268146=>1,619324566=>1,619324797=>1,619339673=>1,618898824=>1,618893744=>1,616564158=>1,611216940=>1,618680464=>1,618686878=>1,618693597=>1,618689107=>1,611146778=>1,610975571=>1,610386236=>1,610373917=>1,610390162=>1,610520952=>1,610651687=>1,610619559=>1,618695433=>1,618696183=>1,618820923=>1,618820550=>1,618833432=>1,618834466=>1,618834648=>1,618834548=>1,618790649=>1,618781562=>1,618739265=>1,618731573=>1,618767655=>1,618781271=>1,618781400=>1,619511276=>1,619541918=>1,622863686=>1,622863409=>1,622865409=>1,622865413=>1,622865817=>1,622865417=>1,622676978=>1,622639121=>1,622477330=>1,622372682=>1,622477391=>1,622555724=>1,622573801=>1,622572892=>1,622865865=>1,622998646=>1,623923301=>1,623921708=>1,623923380=>1,623923438=>1,623924417=>1,623923483=>1,623921706=>1,623919883=>1,623651851=>1,623078382=>1,623919124=>1,623919431=>1,623919436=>1,622352434=>1,622190951=>1,620827191=>1,620825716=>1,620828560=>1,620830630=>1,621078602=>1,620839300=>1,620789548=>1,620436087=>1,620274077=>1,619660020=>1,620274158=>1,620381444=>1,620435971=>1,620404488=>1,621119912=>1,621126015=>1,621883790=>1,621786748=>1,621936353=>1,622159151=>1,622184251=>1,622162307=>1,621786425=>1,621771480=>1,621333657=>1,621164307=>1,621362498=>1,621389885=>1,621725228=>1,628662284=>1,628665482=>1,633318549=>1,633318398=>1,633318716=>1,633319364=>1,633324039=>1,633324017=>1,633317941=>1,633316857=>1,633312813=>1,633311307=>1,633313558=>1,633315991=>1,633316464=>1,633316446=>1,633324418=>1,633324521=>1,633327003=>1,633326975=>1,633327080=>1,633327291=>1,633327761=>1,633327684=>1,633326600=>1,633326387=>1,633325485=>1,633324820=>1,633325637=>1,633325851=>1,633325952=>1,633310899=>1,633308867=>1,633045414=>1,633043833=>1,633045730=>1,633049984=>1,633056037=>1,633053745=>1,633043658=>1,633043167=>1,633041776=>1,633041711=>1,633041821=>1,633041828=>1,633043092=>1,633042488=>1,633057344=>1,633058308=>1,633306126=>1,633284977=>1,633307236=>1,633307568=>1,633308123=>1,633308104=>1,633096314=>1,633076457=>1,633058416=>1,633058322=>1,633058675=>1,633073007=>1,633073416=>1,633328001=>1,633328377=>1,635183619=>1,635179561=>1,635183896=>1,635183908=>1,635184074=>1,635184073=>1,635177096=>1,635105381=>1,634464245=>1,634462862=>1,634469382=>1,634475972=>1,635105330=>1,634976630=>1,635184144=>1,635184368=>1,635860773=>1,635860256=>1,609798131=>1,636041990=>1,636053325=>1,636052381=>1,635818880=>1,635817334=>1,635284458=>1,635282146=>1,635284460=>1,635291063=>1,635733607=>1,634316738=>1,634208019=>1,633369623=>1,633331566=>1,633410841=>1,633436275=>1,633455643=>1,633446379=>1,633330792=>1,633330516=>1,633328682=>1,633328442=>1,633328837=>1,633329165=>1,633330301=>1,633330036=>1,633484371=>1,633484555=>1,634191533=>1,634181747=>1,634194307=>1,634194572=>1,634206422=>1,634194837=>1,634159951=>1,634139509=>1,633889787=>1,633889285=>1,633970449=>1,634069577=>1,634069578=>1,633041225=>1,633040600=>1,630495696=>1,630495344=>1,630495895=>1,630496208=>1,630496446=>1,630496268=>1,630495330=>1,630440129=>1,630215130=>1,630130758=>1,630293743=>1,630302233=>1,630408200=>1,630307693=>1,630496687=>1,630496753=>1,631095417=>1,631094330=>1,631095659=>1,631095988=>1,631096151=>1,631096147=>1,631082503=>1,630812369=>1,630742600=>1,630497022=>1,630784266=>1,630794547=>1,630797701=>1,629992444=>1,629991960=>1,629334917=>1,628864556=>1,629334918=>1,629386972=>1,629401261=>1,629386974=>1,628860184=>1,628855372=>1,628670038=>1,628667071=>1,628805852=>1,628846877=>1,628851386=>1,628851376=>1,629499539=>1,629530043=>1,629871059=>1,629870892=>1,629872238=>1,629874424=>1,629961121=>1,629958568=>1,629869902=>1,629869631=>1,629827460=>1,629549335=>1,629858886=>1,629867495=>1,629868264=>1,631226530=>1,632998295=>1,633037151=>1,633037138=>1,633037497=>1,633037761=>1,633038306=>1,633038223=>1,633037087=>1,633036884=>1,633020199=>1,633018344=>1,633023016=>1,633027322=>1,633036877=>1,633032362=>1,633038398=>1,633038444=>1,633039693=>1,633039208=>1,633039707=>1,633039952=>1,633040188=>1,633040150=>1,633039172=>1,633039169=>1,633038538=>1,633038522=>1,633038893=>1,633038959=>1,633039147=>1,633018211=>1,633018042=>1,633014090=>1,633013835=>1,633014147=>1,633014229=>1,633016643=>1,633016495=>1,633013256=>1,633013254=>1,633012509=>1,633012332=>1,633012629=>1,633012909=>1,633013098=>1,633012966=>1,633016671=>1,633016875=>1,633017628=>1,633017611=>1,633017757=>1,633017780=>1,633017987=>1,633017943=>1,633017576=>1,633017423=>1,633016980=>1,633016941=>1,633017012=>1,633017228=>1,633017403=>1,636163335=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-20.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1903037185=>1,1902968259=>1,1903087620=>1,1903087697=>1,1903137191=>1,1903098628=>1,1902939490=>1,1902924317=>1,1902796438=>1,1902795463=>1,1902826914=>1,1902852428=>1,1902923960=>1,1902877938=>1,1903137691=>1,1903137760=>1,1903676473=>1,1903592173=>1,1903716916=>1,1903773529=>1,1904377147=>1,1903856254=>1,1903554320=>1,1903514960=>1,1903138205=>1,1903137992=>1,1903138293=>1,1903138399=>1,1903510205=>1,1903138487=>1,1902787606=>1,1902627012=>1,1900756425=>1,1900667730=>1,1900900870=>1,1901000130=>1,1901013699=>1,1901009638=>1,1900665748=>1,1900663564=>1,1900394858=>1,1900314716=>1,1900522970=>1,1900550971=>1,1900660800=>1,1900572733=>1,1901018582=>1,1901022781=>1,1902014750=>1,1901996028=>1,1902361643=>1,1902361652=>1,1902575431=>1,1902471317=>1,1901662697=>1,1901579416=>1,1901326230=>1,1901205351=>1,1901490427=>1,1901505386=>1,1901535366=>1,1904838719=>1,1904995662=>1,1911814156=>1,1911614982=>1,1911909091=>1,1912107724=>1,1912258312=>1,1912145653=>1,1911516774=>1,1911483976=>1,1911205603=>1,1911036768=>1,1911232209=>1,1911352714=>1,1911361390=>1,1911358966=>1,1912330445=>1,1912343322=>1,1912590523=>1,1912561345=>1,1912932594=>1,1912933438=>1,1913004738=>1,1912933554=>1,1912549681=>1,1912536587=>1,1912379111=>1,1912366089=>1,1912384729=>1,1912386173=>1,1912505368=>1,1912386897=>1,1910974660=>1,1910970319=>1,1907642221=>1,1907032110=>1,1908341811=>1,1908774343=>1,1908940042=>1,1908939603=>1,1906466695=>1,1906427264=>1,1905011507=>1,1905010507=>1,1905048364=>1,1906314330=>1,1906385775=>1,1906385203=>1,1908952595=>1,1908973467=>1,1910311049=>1,1910122744=>1,1910501027=>1,1910501056=>1,1910953760=>1,1910869842=>1,1909485594=>1,1909336632=>1,1908987555=>1,1908987554=>1,1908996631=>1,1909189682=>1,1909278514=>1,1900271739=>1,1900197599=>1,1892039972=>1,1891895381=>1,1892106686=>1,1892110186=>1,1893032261=>1,1892608366=>1,1891854132=>1,1891853323=>1,1890577112=>1,1890439192=>1,1891113669=>1,1891636900=>1,1891845143=>1,1891818212=>1,1893032920=>1,1893211683=>1,1894765836=>1,1894749142=>1,1894771482=>1,1894985243=>1,1895035303=>1,1895001139=>1,1894730595=>1,1894586829=>1,1893873887=>1,1893836528=>1,1893994316=>1,1894144061=>1,1894467318=>1,1894450067=>1,1890080452=>1,1890080444=>1,1887892950=>1,1887885375=>1,1888421349=>1,1888422476=>1,1889573308=>1,1888422654=>1,1887885292=>1,1887882582=>1,1887815882=>1,1887813770=>1,1887816078=>1,1887876920=>1,1887882303=>1,1887877022=>1,1889720080=>1,1889720342=>1,1890080372=>1,1890080355=>1,1890080375=>1,1890080404=>1,1890080435=>1,1890080415=>1,1890080327=>1,1890080295=>1,1889720409=>1,1889720395=>1,1889720488=>1,1889720493=>1,1890061303=>1,1895142414=>1,1895306194=>1,1897784534=>1,1897784462=>1,1897784574=>1,1898326445=>1,1899322189=>1,1899320167=>1,1897716589=>1,1897624110=>1,1897260350=>1,1897260342=>1,1897369352=>1,1897375512=>1,1897573615=>1,1897421502=>1,1899337634=>1,1899357895=>1,1900143025=>1,1900092475=>1,1900166773=>1,1900166786=>1,1900197505=>1,1900166902=>1,1899715163=>1,1899715162=>1,1899364338=>1,1899358565=>1,1899510006=>1,1899511989=>1,1899643204=>1,1897219868=>1,1897219586=>1,1896086660=>1,1896045349=>1,1896134649=>1,1896310155=>1,1896359455=>1,1896337994=>1,1896008466=>1,1895923496=>1,1895629373=>1,1895316996=>1,1895768600=>1,1895769669=>1,1895922508=>1,1895770207=>1,1896522171=>1,1896542871=>1,1896716960=>1,1896672589=>1,1897165094=>1,1897218680=>1,1897219292=>1,1897218711=>1,1896663757=>1,1896600940=>1,1896580554=>1,1896568751=>1,1896580555=>1,1896580556=>1,1896595746=>1,1913004740=>1,1913007466=>1,1921061830=>1,1921061750=>1,1921125689=>1,1921133361=>1,1921158445=>1,1921135091=>1,1920402862=>1,1920066759=>1,1919971784=>1,1919971742=>1,1919971789=>1,1919971809=>1,1919971833=>1,1919971821=>1,1921432546=>1,1921856003=>1,1925670574=>1,1925667258=>1,1925673506=>1,1925935204=>1,1926714500=>1,1926537218=>1,1925040378=>1,1924727762=>1,1921866702=>1,1921856516=>1,1921974905=>1,1922021058=>1,1922410869=>1,1922383979=>1,1919971736=>1,1919971716=>1,1918865689=>1,1918863176=>1,1918877586=>1,1918887437=>1,1919063468=>1,1918924408=>1,1918851152=>1,1918583134=>1,1917868981=>1,1917864110=>1,1917880432=>1,1917903431=>1,1918408087=>1,1917907012=>1,1919352354=>1,1919470350=>1,1919971652=>1,1919971633=>1,1919971656=>1,1919971660=>1,1919971697=>1,1919971695=>1,1919971613=>1,1919971608=>1,1919665386=>1,1919581682=>1,1919971586=>1,1919971599=>1,1919971601=>1,1926716269=>1,1926717122=>1,1929134412=>1,1929128546=>1,1929135359=>1,1929250585=>1,1929302953=>1,1929288009=>1,1928935384=>1,1928908397=>1,1928647704=>1,1928488873=>1,1928699386=>1,1928753072=>1,1928887766=>1,1928862014=>1,1929303458=>1,1929313329=>1,1931236630=>1,1931230716=>1,1931238063=>1,1931238944=>1,1931255068=>1,1931254340=>1,1931229517=>1,1931229124=>1,1931053813=>1,1930909303=>1,1931223003=>1,1931223472=>1,1931224849=>1,1928406027=>1,1928378509=>1,1926920040=>1,1926850292=>1,1926960722=>1,1927115228=>1,1927304315=>1,1927283685=>1,1926833901=>1,1926804707=>1,1926731277=>1,1926727897=>1,1926734858=>1,1926737087=>1,1926772121=>1,1926737439=>1,1927365906=>1,1927452423=>1,1927770374=>1,1927708622=>1,1927775184=>1,1927800702=>1,1928311119=>1,1927858000=>1,1927700882=>1,1927660466=>1,1927611354=>1,1927582201=>1,1927652034=>1,1927652095=>1,1927655981=>1,1917820958=>1,1917568342=>1,1914921511=>1,1914918219=>1,1914983356=>1,1914992402=>1,1915045851=>1,1915037939=>1,1914846066=>1,1914843412=>1,1914637859=>1,1914377956=>1,1914717957=>1,1914728970=>1,1914840422=>1,1914735987=>1,1915045943=>1,1915046021=>1,1915191696=>1,1915191512=>1,1915204648=>1,1915204908=>1,1915205719=>1,1915205329=>1,1915186736=>1,1915182041=>1,1915046798=>1,1915046579=>1,1915047295=>1,1915051134=>1,1915172199=>1,1915118031=>1,1914377116=>1,1914376029=>1,1914226422=>1,1914213634=>1,1914226904=>1,1914297104=>1,1914304358=>1,1914303721=>1,1914190180=>1,1914188792=>1,1913011566=>1,1913010098=>1,1913013220=>1,1913029323=>1,1914188732=>1,1913771055=>1,1914307862=>1,1914309698=>1,1914365974=>1,1914352976=>1,1914366597=>1,1914372287=>1,1914376002=>1,1914375629=>1,1914334663=>1,1914326995=>1,1914323009=>1,1914320229=>1,1914323840=>1,1914326713=>1,1914326927=>1,1915206018=>1,1915206021=>1,1915506208=>1,1915504266=>1,1915507605=>1,1915533710=>1,1915546046=>1,1915534352=>1,1915504176=>1,1915481620=>1,1915423939=>1,1915423580=>1,1915449358=>1,1915451797=>1,1915478847=>1,1915459003=>1,1915548956=>1,1915571270=>1,1916216128=>1,1915742868=>1,1916346322=>1,1916929932=>1,1917188109=>1,1917005658=>1,1915742408=>1,1915741608=>1,1915607052=>1,1915585100=>1,1915607176=>1,1915607236=>1,1915609182=>1,1915423518=>1,1915423509=>1,1915250380=>1,1915247781=>1,1915251549=>1,1915252030=>1,1915285018=>1,1915252604=>1,1915247732=>1,1915243374=>1,1915228059=>1,1915219605=>1,1915240656=>1,1915241539=>1,1915242269=>1,1915241620=>1,1915289313=>1,1915303535=>1,1915391146=>1,1915390813=>1,1915421341=>1,1915423064=>1,1915423306=>1,1915423208=>1,1915390471=>1,1915361932=>1,1915305298=>1,1915305128=>1,1915307154=>1,1915324844=>1,1915355604=>1,1887701043=>1,1887324261=>1,1863050317=>1,1863017018=>1,1863078721=>1,1863126232=>1,1863150904=>1,1863126413=>1,1863012585=>1,1863012506=>1,1863012499=>1,1863012498=>1,1863012501=>1,1863012502=>1,1863012505=>1,1863012504=>1,1863159693=>1,1863248638=>1,1863779995=>1,1863779987=>1,1863779996=>1,1863780002=>1,1863780004=>1,1863780003=>1,1863779983=>1,1863779981=>1,1863399982=>1,1863274171=>1,1863779973=>1,1863779975=>1,1863779980=>1,1863779976=>1,1863012497=>1,1862998980=>1,1860896542=>1,1860747826=>1,1861224113=>1,1861387279=>1,1861848054=>1,1861642602=>1,1860722478=>1,1860720610=>1,1860717718=>1,1860716676=>1,1860717778=>1,1860718141=>1,1860718766=>1,1860718244=>1,1861980739=>1,1862049585=>1,1862344828=>1,1862344755=>1,1862345755=>1,1862350611=>1,1862998978=>1,1862842308=>1,1862342594=>1,1862342583=>1,1862342543=>1,1862213453=>1,1862342550=>1,1862342553=>1,1862342578=>1,1863780006=>1,1864108761=>1,1867135220=>1,1867115980=>1,1867135224=>1,1867231683=>1,1867562338=>1,1867432749=>1,1867113677=>1,1867062708=>1,1866588960=>1,1866409508=>1,1866752829=>1,1866756346=>1,1866759126=>1,1866759091=>1,1867834768=>1,1868146761=>1,1868487350=>1,1868463578=>1,1869625173=>1,1870042628=>1,1870044156=>1,1870042829=>1,1868431518=>1,1868399286=>1,1868207282=>1,1868206812=>1,1868209965=>1,1868217718=>1,1868382710=>1,1866146308=>1,1865951366=>1,1864942889=>1,1864942870=>1,1865395093=>1,1865523800=>1,1865944470=>1,1865640588=>1,1864942865=>1,1864942864=>1,1864254557=>1,1864109555=>1,1864913993=>1,1864942855=>1,1864942863=>1,1864942862=>1,1865944477=>1,1865944481=>1,1865949254=>1,1865948046=>1,1865949255=>1,1865949256=>1,1865949258=>1,1865949257=>1,1865944489=>1,1865944488=>1,1865944483=>1,1865944482=>1,1865944484=>1,1865944486=>1,1865944487=>1,1860690831=>1,1860679817=>1,1854440312=>1,1854437030=>1,1854440770=>1,1854465065=>1,1854465405=>1,1854465078=>1,1854413606=>1,1853212330=>1,1851126394=>1,1851068156=>1,1851134810=>1,1851594666=>1,1851644714=>1,1851639956=>1,1854465712=>1,1854466006=>1,1855475372=>1,1854919513=>1,1855489438=>1,1855523322=>1,1855915561=>1,1855683047=>1,1854853291=>1,1854831663=>1,1854471882=>1,1854468659=>1,1854482247=>1,1854490637=>1,1854591486=>1,1854562877=>1,1850863277=>1,1850815236=>1,1850598410=>1,1850597908=>1,1850598512=>1,1850598597=>1,1850598678=>1,1850598641=>1,1850597823=>1,1850597814=>1,1850594010=>1,1850594001=>1,1850594108=>1,1850595635=>1,1850596781=>1,1850596612=>1,1850599103=>1,1850599515=>1,1850642397=>1,1850642245=>1,1850642403=>1,1850644849=>1,1850752622=>1,1850647939=>1,1850604111=>1,1850603534=>1,1850599608=>1,1850599554=>1,1850601193=>1,1850601287=>1,1850601525=>1,1856292220=>1,1856292626=>1,1856871692=>1,1856813889=>1,1856908168=>1,1856965610=>1,1857112790=>1,1857108757=>1,1856811860=>1,1856809404=>1,1856800370=>1,1856799315=>1,1856803332=>1,1856803393=>1,1856809391=>1,1856804922=>1,1857113461=>1,1857168335=>1,1857483699=>1,1857451050=>1,1857492215=>1,1857923243=>1,1860444953=>1,1859132070=>1,1857417199=>1,1857338415=>1,1857210245=>1,1857210222=>1,1857213777=>1,1857214363=>1,1857268849=>1,1856799314=>1,1856739365=>1,1856510227=>1,1856510200=>1,1856510246=>1,1856510298=>1,1856510478=>1,1856510358=>1,1856510143=>1,1856510139=>1,1856510014=>1,1856510010=>1,1856510030=>1,1856510031=>1,1856510113=>1,1856510089=>1,1856510492=>1,1856510503=>1,1856511243=>1,1856510696=>1,1856562600=>1,1856645456=>1,1856707093=>1,1856677691=>1,1856510693=>1,1856510681=>1,1856510583=>1,1856510520=>1,1856510632=>1,1856510634=>1,1856510655=>1,1870049637=>1,1870140350=>1,1884565757=>1,1884307283=>1,1884715886=>1,1884803742=>1,1885065294=>1,1884964947=>1,1884306366=>1,1884207323=>1,1884198322=>1,1884197310=>1,1884205577=>1,1884205580=>1,1884205587=>1,1884205581=>1,1885130661=>1,1885130999=>1,1885301027=>1,1885300797=>1,1885301809=>1,1885302347=>1,1885687979=>1,1885302544=>1,1885288832=>1,1885288792=>1,1885131487=>1,1885131380=>1,1885131570=>1,1885191684=>1,1885206576=>1,1885194257=>1,1884197309=>1,1884197308=>1,1883289929=>1,1883255890=>1,1883330651=>1,1883330682=>1,1883330732=>1,1883330694=>1,1881557675=>1,1880747017=>1,1880390044=>1,1880164564=>1,1880555943=>1,1880583518=>1,1880659800=>1,1880583911=>1,1883330755=>1,1883359443=>1,1883951044=>1,1883950651=>1,1883952981=>1,1883953523=>1,1884170191=>1,1884170180=>1,1883926448=>1,1883922600=>1,1883423251=>1,1883366377=>1,1883464022=>1,1883904377=>1,1883920791=>1,1885781455=>1,1885796367=>1,1886406259=>1,1886215504=>1,1886406262=>1,1886638695=>1,1887020789=>1,1886640424=>1,1885993165=>1,1885949221=>1,1885891098=>1,1885890314=>1,1885899596=>1,1885900492=>1,1885905379=>1,1885900546=>1,1887020790=>1,1887100835=>1,1887189471=>1,1887187541=>1,1887203739=>1,1887322268=>1,1887323342=>1,1887322561=>1,1887187469=>1,1887184870=>1,1887182036=>1,1887175073=>1,1887183781=>1,1887184151=>1,1887184611=>1,1885888152=>1,1885887855=>1,1885870581=>1,1885870293=>1,1885880396=>1,1885880549=>1,1885880906=>1,1885880822=>1,1885870200=>1,1885869946=>1,1885798117=>1,1885796601=>1,1885864646=>1,1885864881=>1,1885869933=>1,1885865201=>1,1885881200=>1,1885881571=>1,1885883133=>1,1885883096=>1,1885883276=>1,1885883309=>1,1885883935=>1,1885883387=>1,1885883057=>1,1885882871=>1,1885881827=>1,1885881633=>1,1885882718=>1,1885882721=>1,1885882828=>1,1880164563=>1,1880119900=>1,1875356633=>1,1875352785=>1,1875792376=>1,1875792389=>1,1875820187=>1,1875793669=>1,1875282130=>1,1875247706=>1,1874920639=>1,1874893212=>1,1874921374=>1,1875136302=>1,1875231743=>1,1875143740=>1,1875820188=>1,1875822585=>1,1878064832=>1,1878060615=>1,1878071738=>1,1878074663=>1,1878153834=>1,1878153826=>1,1878000540=>1,1877278255=>1,1876911431=>1,1875822586=>1,1876954343=>1,1877278249=>1,1877278253=>1,1877278252=>1,1874890579=>1,1874877745=>1,1870588711=>1,1870587442=>1,1872854634=>1,1872854635=>1,1872854637=>1,1872854636=>1,1870587288=>1,1870587276=>1,1870273469=>1,1870173610=>1,1870499434=>1,1870512666=>1,1870587188=>1,1870587141=>1,1872883690=>1,1872931171=>1,1874076096=>1,1874074864=>1,1874080253=>1,1874081673=>1,1874439107=>1,1874186437=>1,1874071697=>1,1874067686=>1,1873276305=>1,1873221826=>1,1873879397=>1,1873880865=>1,1874025166=>1,1878154429=>1,1878154469=>1,1878890180=>1,1878890158=>1,1878890368=>1,1878890410=>1,1878890454=>1,1878890424=>1,1878890151=>1,1878889700=>1,1878842489=>1,1878833690=>1,1878843091=>1,1878865993=>1,1878889606=>1,1878889568=>1,1878953236=>1,1878959803=>1,1880119064=>1,1880116412=>1,1880119117=>1,1880119200=>1,1880119670=>1,1880119427=>1,1879432391=>1,1879314840=>1,1878985332=>1,1878979960=>1,1879034151=>1,1879044916=>1,1879045576=>1,1878782831=>1,1878748084=>1,1878540107=>1,1878257834=>1,1878540212=>1,1878549723=>1,1878554939=>1,1878550237=>1,1878222788=>1,1878222324=>1,1878171268=>1,1878160547=>1,1878171367=>1,1878171860=>1,1878182454=>1,1878178004=>1,1878560321=>1,1878596769=>1,1878692539=>1,1878668468=>1,1878697213=>1,1878729513=>1,1878748012=>1,1878731550=>1,1878663392=>1,1878662844=>1,1878628914=>1,1878625778=>1,1878650686=>1,1878651337=>1,1878651543=>1,1850593510=>1,);?>
1
+ <?php return array(1935146776=>1935146777,1935146726=>1935146727,1935146672=>1935146673,1935146616=>1935146617,1935146364=>1935146365,1935146336=>1935146337,1935141302=>1935141303,1935138106=>1935138107,1935137808=>1935137809,1935137302=>1935137303,1935136970=>1935136971,1935136844=>1935136845,1935135986=>1935135987,1935134254=>1935134255,1935097672=>1935097673,1908987554=>1908987555,1899715162=>1899715163,1935138276=>1,1935142802=>1,1935138293=>1,1935142895=>1,1935138263=>1,1935138253=>1,1935143055=>1,1935138174=>1,1935138190=>1,1935138225=>1,1935142961=>1,1935138237=>1,1935140891=>1,1935140923=>1,1935140997=>1,1935142758=>1,1935141011=>1,1935141017=>1,1935141115=>1,1935141048=>1,1935140995=>1,1935140984=>1,1935140927=>1,1935138139=>1,1935140952=>1,1935140968=>1,1935140970=>1,1935142881=>1,1935138110=>1,1935142819=>1,1935137803=>1,1935137817=>1,1935137821=>1,1935137850=>1,1935137800=>1,1935137795=>1,1935137737=>1,1935137734=>1,1935137765=>1,1935137770=>1,1935137790=>1,1935137916=>1,1935137922=>1,1935138067=>1,1935138031=>1,1935138104=>1,1935142809=>1,1935141158=>1,1935138028=>1,1935138022=>1,1935137969=>1,1935137931=>1,1935142812=>1,1935137988=>1,1935137990=>1,1935138134=>1,1935142757=>1,1935142157=>1,1935142116=>1,1935142187=>1,1935142254=>1,1935142321=>1,1935142314=>1,1935142098=>1,1935142090=>1,1935142015=>1,1935141994=>1,1935142018=>1,1935142046=>1,1935142080=>1,1935142343=>1,1935142363=>1,1935142574=>1,1935142525=>1,1935142593=>1,1935142600=>1,1935142701=>1,1935142518=>1,1935142509=>1,1935142414=>1,1935142377=>1,1935142461=>1,1935142500=>1,1935142505=>1,1935141960=>1,1935141923=>1,1935142752=>1,1935137702=>1,1935141325=>1,1935141335=>1,1935141398=>1,1935141366=>1,1935141281=>1,1935141264=>1,1935141203=>1,1935142733=>1,1935141229=>1,1935141237=>1,1935142879=>1,1935141424=>1,1935141456=>1,1935141750=>1,1935141717=>1,1935141757=>1,1935141803=>1,1935141901=>1,1935141683=>1,1935141641=>1,1935141512=>1,1935141488=>1,1935141534=>1,1935141540=>1,1935141562=>1,1935141176=>1,1935137604=>1,1935135602=>1,1935135599=>1,1935135611=>1,1935135622=>1,1935135660=>1,1935135625=>1,1935135570=>1,1935135569=>1,1935135505=>1,1935135493=>1,1935135516=>1,1935135532=>1,1935135567=>1,1935135557=>1,1935135671=>1,1935135676=>1,1935135829=>1,1935135796=>1,1935135837=>1,1935135842=>1,1935135872=>1,1935135870=>1,1935135795=>1,1935135766=>1,1935135698=>1,1935135680=>1,1935135709=>1,1935135735=>1,1935135761=>1,1935135480=>1,1935135446=>1,1935134285=>1,1935134280=>1,1935134369=>1,1935134382=>1,1935134430=>1,1935134387=>1,1935134253=>1,1935131699=>1,1935120979=>1,1935097774=>1,1935121017=>1,1935121037=>1,1935131694=>1,1935126627=>1,1935135243=>1,1935135266=>1,1935135355=>1,1935135336=>1,1935135391=>1,1935135416=>1,1935135427=>1,1935135421=>1,1935135332=>1,1935135320=>1,1935135276=>1,1935135275=>1,1935135282=>1,1935135297=>1,1935135302=>1,1935135906=>1,1935135911=>1,1935137160=>1,1935137145=>1,1935137163=>1,1935137167=>1,1935137301=>1,1935137176=>1,1935137139=>1,1935137130=>1,1935137043=>1,1935137035=>1,1935137044=>1,1935137047=>1,1935137128=>1,1935137123=>1,1935137315=>1,1935137317=>1,1935137591=>1,1935137576=>1,1935143061=>1,1935137626=>1,1935137651=>1,1935137649=>1,1935137519=>1,1935137421=>1,1935137347=>1,1935137321=>1,1935137348=>1,1935137354=>1,1935137356=>1,1935137029=>1,1935137027=>1,1935136783=>1,1935136778=>1,1935136810=>1,1935136815=>1,1935136826=>1,1935136822=>1,1935136773=>1,1935135971=>1,1935135932=>1,1935135920=>1,1935135934=>1,1935135951=>1,1935135959=>1,1935136848=>1,1935136857=>1,1935136961=>1,1935136952=>1,1935136993=>1,1935137004=>1,1935137011=>1,1935137007=>1,1935136951=>1,1935136946=>1,1935136881=>1,1935136870=>1,1935136896=>1,1935136909=>1,1935136936=>1,1935137662=>1,1935143195=>1,1939839562=>1,1939838612=>1,1939839683=>1,1939841325=>1,1939848014=>1,1939846451=>1,1939831758=>1,1939831668=>1,1939827560=>1,1939827428=>1,1939828875=>1,1939829092=>1,1939831485=>1,1939830377=>1,1939848392=>1,1939848488=>1,1939853232=>1,1939852927=>1,1939853253=>1,1939854672=>1,1939855492=>1,1939854922=>1,1939851422=>1,1939851324=>1,1939850072=>1,1939848869=>1,1939850155=>1,1939850514=>1,1939850936=>1,1939827385=>1,1939826098=>1,1939252606=>1,1939225476=>1,1939286152=>1,1939362547=>1,1939477996=>1,1939476045=>1,1938980832=>1,1938979803=>1,1937726594=>1,1937721450=>1,1938084352=>1,1938095282=>1,1938104945=>1,1938102071=>1,1939507851=>1,1939645699=>1,1939819364=>1,1939817431=>1,1939820150=>1,1939821299=>1,1939825683=>1,1939821522=>1,1939817278=>1,1939813659=>1,1939808138=>1,1939800932=>1,1939812110=>1,1939812574=>1,1939813051=>1,1939855503=>1,1939856750=>1,1944522890=>1,1944485764=>1,1944543671=>1,1944560344=>1,1944820591=>1,1944575979=>1,1944339073=>1,1944313875=>1,1943732762=>1,1943732233=>1,1943766986=>1,1944058594=>1,1944277049=>1,1944220315=>1,1944827961=>1,1944848306=>1,1945653246=>1,1945296984=>1,1945659957=>1,1945661658=>1,1945683185=>1,1945681051=>1,1945035785=>1,1945016844=>1,1944872534=>1,1944848619=>1,1944888346=>1,1944888957=>1,1944939891=>1,1943667682=>1,1943639103=>1,1940601968=>1,1940290846=>1,1940769842=>1,1940770128=>1,1941307504=>1,1941058022=>1,1940090713=>1,1939930763=>1,1939857909=>1,1939857108=>1,1939858317=>1,1939858355=>1,1939923078=>1,1939900850=>1,1941375902=>1,1941572097=>1,1942226478=>1,1942105845=>1,1942528942=>1,1942548157=>1,1943349594=>1,1943147638=>1,1942073091=>1,1941990644=>1,1941578010=>1,1941577767=>1,1941608706=>1,1941698232=>1,1941977624=>1,1937719275=>1,1937711546=>1,1935144460=>1,1935144444=>1,1935144473=>1,1935144482=>1,1935144508=>1,1935144487=>1,1935144428=>1,1935144409=>1,1935144201=>1,1935144178=>1,1935144298=>1,1935144317=>1,1935144355=>1,1935144333=>1,1935144556=>1,1935144603=>1,1935146264=>1,1935146259=>1,1935146295=>1,1935146298=>1,1935146310=>1,1935146306=>1,1935144953=>1,1935144888=>1,1935144659=>1,1935144657=>1,1935144761=>1,1935144775=>1,1935144859=>1,1935144167=>1,1935144161=>1,1935143362=>1,1935143318=>1,1935143430=>1,1935143449=>1,1935143545=>1,1935143462=>1,1935143312=>1,1935143286=>1,1935143180=>1,1935143110=>1,1935143182=>1,1935097765=>1,1935143220=>1,1935143217=>1,1935143562=>1,1935143594=>1,1935143912=>1,1935143905=>1,1935143946=>1,1935144011=>1,1935144129=>1,1935144095=>1,1935143842=>1,1935143834=>1,1935143686=>1,1935143601=>1,1935143688=>1,1935143691=>1,1935143723=>1,1935146335=>1,1935146341=>1,1935146997=>1,1935146973=>1,1935171435=>1,1936678456=>1,1936804879=>1,1936796631=>1,1935146946=>1,1935146942=>1,1935146870=>1,1935146863=>1,1935146875=>1,1935146888=>1,1935146932=>1,1935146909=>1,1936834810=>1,1936974733=>1,1937708450=>1,1937641579=>1,1937708452=>1,1937708964=>1,1937711274=>1,1937710546=>1,1937641559=>1,1937535211=>1,1937210306=>1,1937059076=>1,1937525114=>1,1937525534=>1,1937526326=>1,1935146844=>1,1935146842=>1,1935146462=>1,1935146433=>1,1935146484=>1,1935146522=>1,1935146530=>1,1935146524=>1,1935146421=>1,1935146408=>1,1935146366=>1,1935146357=>1,1935146383=>1,1935146398=>1,1935146406=>1,1935146539=>1,1935146546=>1,1935146731=>1,1935146722=>1,1935146735=>1,1935146772=>1,1935146786=>1,1935146779=>1,1935146713=>1,1935146711=>1,1935146557=>1,1935146550=>1,1935146583=>1,1935146645=>1,1935146650=>1,1935143106=>1,1935097710=>1,1913013220=>1,1913011566=>1,1913029323=>1,1913046070=>1,1914188732=>1,1913771055=>1,1913007466=>1,1913004740=>1,1912590915=>1,1912590523=>1,1912932594=>1,1912933438=>1,1913004738=>1,1912933554=>1,1914190180=>1,1914213634=>1,1914323009=>1,1914320229=>1,1914323840=>1,1914326713=>1,1914334663=>1,1914326927=>1,1914309698=>1,1914307862=>1,1914297104=>1,1914226904=>1,1914302732=>1,1914303721=>1,1914307822=>1,1914304428=>1,1912560981=>1,1912549681=>1,1911352714=>1,1911232209=>1,1911358966=>1,1911361390=>1,1911516774=>1,1911483976=>1,1911205603=>1,1911036768=>1,1910501056=>1,1910501027=>1,1910869842=>1,1910953760=>1,1910974660=>1,1910970319=>1,1911614982=>1,1911814156=>1,1912386173=>1,1912384729=>1,1912386897=>1,1912386944=>1,1912536587=>1,1912505368=>1,1912366089=>1,1912343322=>1,1912107724=>1,1911909091=>1,1912145653=>1,1912258312=>1,1912330445=>1,1914352976=>1,1914365471=>1,1915243374=>1,1915241620=>1,1915247687=>1,1915247732=>1,1915250380=>1,1915247799=>1,1915241539=>1,1915240656=>1,1915205719=>1,1915205329=>1,1915206018=>1,1915219605=>1,1915228059=>1,1915226488=>1,1915251549=>1,1915252030=>1,1915355604=>1,1915324844=>1,1915361506=>1,1915390471=>1,1915423208=>1,1915421341=>1,1915307154=>1,1915305298=>1,1915285018=>1,1915252604=>1,1915289313=>1,1915303535=>1,1915305128=>1,1915204908=>1,1915204648=>1,1914735987=>1,1914717957=>1,1914840422=>1,1914843412=>1,1914918219=>1,1914846066=>1,1914637859=>1,1914377956=>1,1914366597=>1,1914365974=>1,1914375629=>1,1914376002=>1,1914377116=>1,1914376029=>1,1914921511=>1,1914983356=>1,1915053580=>1,1915051134=>1,1915118031=>1,1915186736=>1,1915191696=>1,1915191512=>1,1915047295=>1,1915046798=>1,1915037939=>1,1915037920=>1,1915045661=>1,1915045943=>1,1915046021=>1,1910122744=>1,1909336632=>1,1900271739=>1,1900197599=>1,1900307776=>1,1900314716=>1,1900394926=>1,1900394858=>1,1900166902=>1,1900166786=>1,1899511989=>1,1899510006=>1,1899643204=>1,1900092475=>1,1900166773=>1,1900143025=>1,1900522970=>1,1900550971=>1,1901009638=>1,1901000130=>1,1901013699=>1,1901018582=>1,1901205351=>1,1901085083=>1,1900900870=>1,1900882706=>1,1900660800=>1,1900572733=>1,1900663564=>1,1900665748=>1,1900756425=>1,1900667730=>1,1899364338=>1,1899358565=>1,1897219868=>1,1897219292=>1,1897260342=>1,1897260350=>1,1897375512=>1,1897369352=>1,1897218711=>1,1897218680=>1,1896600940=>1,1896595746=>1,1896663757=>1,1896672589=>1,1897165094=>1,1896716960=>1,1897399916=>1,1897421502=>1,1899322173=>1,1899320167=>1,1899322189=>1,1899337634=>1,1899357895=>1,1899337960=>1,1898556976=>1,1898326445=>1,1897716589=>1,1897573615=>1,1897784462=>1,1897784534=>1,1897784574=>1,1901490427=>1,1901505386=>1,1904838719=>1,1904377147=>1,1904995662=>1,1905011507=>1,1906314330=>1,1905048364=>1,1903955479=>1,1903856254=>1,1903554320=>1,1903514960=>1,1903592173=>1,1903676473=>1,1903773529=>1,1903716916=>1,1906385203=>1,1906427264=>1,1908973467=>1,1908940042=>1,1908996631=>1,1909189682=>1,1909278514=>1,1909265478=>1,1908939603=>1,1908774343=>1,1907032110=>1,1906466695=>1,1907642168=>1,1907642221=>1,1908341811=>1,1903510205=>1,1903138487=>1,1902575411=>1,1902575368=>1,1902575431=>1,1902627012=>1,1902795463=>1,1902787606=>1,1902471317=>1,1902361652=>1,1901579416=>1,1901535366=>1,1901662697=>1,1901883483=>1,1902361643=>1,1901996028=>1,1902796438=>1,1902826914=>1,1903098628=>1,1903087697=>1,1903137191=>1,1903137691=>1,1903138293=>1,1903137992=>1,1903037185=>1,1902968259=>1,1902920507=>1,1902852428=>1,1902923960=>1,1902924317=>1,1902939490=>1,1915423306=>1,1915423509=>1,1933497379=>1,1933384119=>1,1933631758=>1,1933727749=>1,1933982064=>1,1933957386=>1,1933089161=>1,1933079101=>1,1932417871=>1,1932417085=>1,1932678076=>1,1932988400=>1,1933064022=>1,1933010497=>1,1934015082=>1,1934020625=>1,1935094053=>1,1935094024=>1,1935094058=>1,1935094074=>1,1935094131=>1,1935094094=>1,1935094021=>1,1935091213=>1,1934179238=>1,1934020762=>1,1934549459=>1,1934911934=>1,1934970098=>1,1934952203=>1,1931458398=>1,1931333261=>1,1931254340=>1,1931238944=>1,1931255068=>1,1931257967=>1,1931277429=>1,1931266581=>1,1931238063=>1,1931236630=>1,1931223472=>1,1931223003=>1,1931224849=>1,1931229124=>1,1931230716=>1,1931229517=>1,1931289090=>1,1931290105=>1,1931322531=>1,1931321767=>1,1931329579=>1,1931329730=>1,1931330596=>1,1931329911=>1,1931321703=>1,1931309743=>1,1931292292=>1,1931291452=>1,1931293935=>1,1931305609=>1,1931305611=>1,1935094141=>1,1935094159=>1,1935097388=>1,1935097386=>1,1935097416=>1,1935097446=>1,1935097469=>1,1935097467=>1,1935097356=>1,1935096460=>1,1935096255=>1,1935095914=>1,1935096257=>1,1935096270=>1,1935096405=>1,1935096380=>1,1935097480=>1,1935097546=>1,1935097653=>1,1935097645=>1,1935097679=>1,1935097708=>1,1935097737=>1,1896580556=>1,1935097628=>1,1935097609=>1,1935097571=>1,1935097560=>1,1935097579=>1,1935097585=>1,1935097597=>1,1935095909=>1,1935095878=>1,1935094404=>1,1935094398=>1,1935094418=>1,1935094421=>1,1935094456=>1,1935094454=>1,1935094365=>1,1935094362=>1,1935094220=>1,1935094184=>1,1935094275=>1,1935094279=>1,1935094340=>1,1935094320=>1,1935094461=>1,1935094492=>1,1935095602=>1,1935095512=>1,1935095686=>1,1935095697=>1,1935095781=>1,1935095699=>1,1935095343=>1,1935094702=>1,1935094547=>1,1935094519=>1,1935094574=>1,1935094628=>1,1935094680=>1,1931053813=>1,1930909303=>1,1918865689=>1,1918851152=>1,1918887437=>1,1918924408=>1,1919352354=>1,1919063468=>1,1918583134=>1,1918408087=>1,1917864110=>1,1917820958=>1,1917868981=>1,1917880432=>1,1917907012=>1,1917903431=>1,1919470350=>1,1919581682=>1,1921158445=>1,1921135091=>1,1921432546=>1,1921856516=>1,1921866805=>1,1921866702=>1,1921133361=>1,1921125689=>1,1920066759=>1,1919665386=>1,1920402862=>1,1921061750=>1,1921061830=>1,1917568342=>1,1917188109=>1,1915504266=>1,1915504176=>1,1915506208=>1,1915507605=>1,1915546046=>1,1915534352=>1,1915481620=>1,1915478847=>1,1915423580=>1,1915423518=>1,1915423939=>1,1915449358=>1,1915459003=>1,1915451797=>1,1915548956=>1,1915571270=>1,1915742868=>1,1915742408=>1,1916216128=>1,1916346322=>1,1917005658=>1,1916929932=>1,1915731796=>1,1915647198=>1,1915607052=>1,1915585100=>1,1915607236=>1,1915609094=>1,1915609182=>1,1921974905=>1,1922383979=>1,1928311119=>1,1928181256=>1,1928378509=>1,1928406027=>1,1928699386=>1,1928647704=>1,1928170302=>1,1928170301=>1,1927655981=>1,1927652095=>1,1927660466=>1,1927775184=>1,1927858000=>1,1927800702=>1,1928748507=>1,1928753072=>1,1929250585=>1,1929144723=>1,1929265433=>1,1929302953=>1,1929313329=>1,1929303458=>1,1929135359=>1,1929134412=>1,1928887766=>1,1928862014=>1,1928908397=>1,1928935384=>1,1929128546=>1,1927652034=>1,1927611354=>1,1926716269=>1,1926714500=>1,1926717122=>1,1926727897=>1,1926734858=>1,1926731277=>1,1926537218=>1,1925935204=>1,1924727762=>1,1924049956=>1,1925040378=>1,1925667258=>1,1925673506=>1,1925670574=>1,1926737439=>1,1926740935=>1,1927304315=>1,1927115228=>1,1927365906=>1,1927450756=>1,1927582201=>1,1927452423=>1,1926960722=>1,1926850292=>1,1926804707=>1,1926772121=>1,1926833901=>1,1926846110=>1,1926846193=>1,1935097743=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-21.php CHANGED
@@ -1 +1 @@
1
- <?php return array(1974011024=>1974011031,1966593040=>1966593047,1959924157=>1,1959920694=>1,1959921287=>1,1959938146=>1,1960090203=>1,1959990217=>1,1959803576=>1,1959102090=>1,1958861914=>1,1958823462=>1,1958861994=>1,1959100650=>1,1960091036=>1,1959600772=>1,1960099267=>1,1960985606=>1,1960972819=>1,1960994451=>1,1960995024=>1,1961002409=>1,1960996270=>1,1960972721=>1,1960971915=>1,1960968380=>1,1958745429=>1,1960968889=>1,1960970779=>1,1960970980=>1,1960970797=>1,1960091432=>1,1958742248=>1,1950023641=>1,1950021032=>1,1950678775=>1,1951023309=>1,1951141367=>1,1951080670=>1,1950020972=>1,1950018440=>1,1949700481=>1,1949612940=>1,1949780669=>1,1949817319=>1,1950016829=>1,1949967362=>1,1951206489=>1,1951221420=>1,1953616626=>1,1953522890=>1,1953786981=>1,1954356956=>1,1958741103=>1,1954364329=>1,1953522730=>1,1952283679=>1,1952109452=>1,1952109385=>1,1952114002=>1,1952115570=>1,1952266753=>1,1961092991=>1,1961136072=>1,1967466927=>1,1967075721=>1,1967571590=>1,1967604749=>1,1968056950=>1,1967604879=>1,1967007115=>1,1966911435=>1,1965804549=>1,1965344311=>1,1966798435=>1,1966858298=>1,1966910163=>1,1966885002=>1,1968134053=>1,1968180716=>1,1968679855=>1,1968446194=>1,1968710757=>1,1968741353=>1,1968759186=>1,1968752960=>1,1968387395=>1,1968387164=>1,1968270595=>1,1968199143=>1,1968274292=>1,1968295364=>1,1968335021=>1,1965344152=>1,1965190612=>1,1961673864=>1,1961369370=>1,1961685923=>1,1962658305=>1,1963396130=>1,1962719498=>1,1961350578=>1,1961345634=>1,1961280237=>1,1961159899=>1,1961302392=>1,1961302420=>1,1961336621=>1,1961309264=>1,1963885447=>1,1964133355=>1,1964605934=>1,1964576379=>1,1964630391=>1,1965079003=>1,1965190576=>1,1965190540=>1,1964403791=>1,1964357230=>1,1964259458=>1,1964139513=>1,1964260417=>1,1964323597=>1,1964357229=>1,1949494299=>1,1949441265=>1,1940769842=>1,1940601968=>1,1940770128=>1,1941058022=>1,1941375902=>1,1941307504=>1,1940290846=>1,1940090713=>1,1939858355=>1,1939858317=>1,1939900850=>1,1939905627=>1,1939930763=>1,1939923078=>1,1941572097=>1,1941577767=>1,1942777968=>1,1942528942=>1,1942876245=>1,1943147638=>1,1943639103=>1,1943349594=>1,1942226478=>1,1942105845=>1,1941608706=>1,1941578010=>1,1941698232=>1,1941977624=>1,1942073091=>1,1941990644=>1,1939857909=>1,1939857108=>1,1939846451=>1,1939846181=>1,1939848014=>1,1939848392=>1,1939848869=>1,1939848488=>1,1939841325=>1,1939839683=>1,1939831758=>1,1939831668=>1,1939838105=>1,1939838612=>1,1939839562=>1,1939839389=>1,1939850072=>1,1939850155=>1,1939855358=>1,1939854922=>1,1939855492=>1,1939855503=>1,1939856846=>1,1939856749=>1,1939853232=>1,1939852927=>1,1939850936=>1,1939850514=>1,1939851324=>1,1939851422=>1,1939852915=>1,1943667682=>1,1943732233=>1,1946052078=>1,1946032297=>1,1946293909=>1,1946297957=>1,1946426945=>1,1946391956=>1,1945949371=>1,1945935293=>1,1945683185=>1,1945681051=>1,1945748046=>1,1945748047=>1,1945920757=>1,1945762482=>1,1946510493=>1,1946569210=>1,1948111627=>1,1948040812=>1,1948127497=>1,1948162285=>1,1949401017=>1,1948208291=>1,1947828005=>1,1947753971=>1,1947744310=>1,1946697544=>1,1947753625=>1,1947753649=>1,1947753705=>1,1945661658=>1,1945659957=>1,1944542966=>1,1944522890=>1,1944543671=>1,1944559155=>1,1944575979=>1,1944560344=>1,1944485764=>1,1944349848=>1,1943766986=>1,1943732762=>1,1944220315=>1,1944277049=>1,1944339073=>1,1944313875=>1,1944820591=>1,1944827961=>1,1944995774=>1,1944939891=>1,1945016844=>1,1945035785=>1,1945653246=>1,1945093135=>1,1944888957=>1,1944888346=>1,1944848619=>1,1944848306=>1,1944865835=>1,1944865836=>1,1944872534=>1,1968784934=>1,1969001331=>1,1978695330=>1,1978687346=>1,1978710051=>1,1978710052=>1,1978714691=>1,1978710819=>1,1978687139=>1,1978687114=>1,1978659875=>1,1978659363=>1,1978659878=>1,1978661645=>1,1978687083=>1,1978687066=>1,1978719444=>1,1978743087=>1,1979628732=>1,1979186706=>1,1981123972=>1,1981466630=>1,1981473437=>1,1981466632=>1,1979156692=>1,1979156691=>1,1978929139=>1,1978777949=>1,1979156680=>1,1979156682=>1,1979156690=>1,1979156684=>1,1978659346=>1,1978648509=>1,1977234145=>1,1977234054=>1,1977248850=>1,1977555509=>1,1977689891=>1,1977556079=>1,1976979468=>1,1976959833=>1,1976783428=>1,1976783418=>1,1976783429=>1,1976783433=>1,1976913938=>1,1976804236=>1,1978164116=>1,1978599371=>1,1978611025=>1,1978610024=>1,1978634970=>1,1978647581=>1,1978648508=>1,1978648506=>1,1978608219=>1,1978604275=>1,1978601328=>1,1978601327=>1,1978601586=>1,1978602054=>1,1978604161=>1,1984250431=>1,1984286153=>1,1986103941=>1,1986103762=>1,1986107363=>1,1986112076=>1,1986112078=>1,1986112077=>1,1986103634=>1,1986103326=>1,1986093674=>1,1986088311=>1,1986095918=>1,1986097578=>1,1986101283=>1,1986101050=>1,1986117172=>1,1986120761=>1,1986194504=>1,1986165187=>1,1986220464=>1,1986226522=>1,1986226524=>1,1986226523=>1,1986133866=>1,1986132314=>1,1986122214=>1,1986121301=>1,1986122780=>1,1986129810=>1,1986130218=>1,1986084626=>1,1986079386=>1,1985762288=>1,1985760092=>1,1985763180=>1,1985763771=>1,1985868035=>1,1985783186=>1,1985011409=>1,1984998863=>1,1984331783=>1,1984317482=>1,1984349395=>1,1984652327=>1,1984985325=>1,1984801566=>1,1986007788=>1,1986013846=>1,1986072538=>1,1986072060=>1,1986075474=>1,1986076274=>1,1986078186=>1,1986076898=>1,1986072058=>1,1986071323=>1,1986033882=>1,1986020665=>1,1986036867=>1,1986038279=>1,1986043733=>1,1976783404=>1,1976783368=>1,1973312213=>1,1973289426=>1,1973326646=>1,1973327833=>1,1973581557=>1,1973332035=>1,1973161852=>1,1973161811=>1,1971907076=>1,1971907073=>1,1971907078=>1,1971907080=>1,1973161810=>1,1973161809=>1,1973619793=>1,1973646763=>1,1974011012=>1,1974011011=>1,1974011013=>1,1974011014=>1,1974011021=>1,1974011018=>1,1974011010=>1,1973995445=>1,1973692637=>1,1973659212=>1,1973737431=>1,1973742652=>1,1973976653=>1,1973894028=>1,1971846024=>1,1971846019=>1,1969641683=>1,1969641682=>1,1969641827=>1,1969644290=>1,1969659913=>1,1969650394=>1,1969640290=>1,1969639447=>1,1969038291=>1,1939831485=>1,1969149585=>1,1969176881=>1,1969638778=>1,1969631276=>1,1969728866=>1,1970639108=>1,1971822012=>1,1971575002=>1,1971843509=>1,1971845765=>1,1971845962=>1,1971845766=>1,1970923513=>1,1970923505=>1,1970917166=>1,1970916581=>1,1970922315=>1,1970922445=>1,1970923494=>1,1974011022=>1,1974011023=>1,1975849714=>1,1975690489=>1,1976087043=>1,1976087206=>1,1976303591=>1,1976135119=>1,1975654484=>1,1975651378=>1,1975194646=>1,1975194634=>1,1975195943=>1,1975195944=>1,1975195946=>1,1975195945=>1,1976375765=>1,1976407368=>1,1976769347=>1,1976769342=>1,1976769390=>1,1976769391=>1,1976769434=>1,1976769406=>1,1976769341=>1,1976769340=>1,1976769287=>1,1976576367=>1,1976769320=>1,1976769321=>1,1976769336=>1,1975089874=>1,1975089873=>1,1974011059=>1,1974011051=>1,1974011060=>1,1974011064=>1,1974011073=>1,1974011069=>1,1974011050=>1,1974011049=>1,1974011036=>1,1974011032=>1,1974011037=>1,1974011042=>1,1974011046=>1,1974011044=>1,1974026857=>1,1974026858=>1,1974484628=>1,1974324744=>1,1974598295=>1,1974598296=>1,1975089869=>1,1975023077=>1,1974180656=>1,1974175663=>1,1974026862=>1,1974026859=>1,1974026982=>1,1974117876=>1,1974151689=>1,1968970502=>1,1939830377=>1,1935135795=>1,1935135772=>1,1935135796=>1,1935135829=>1,1935135842=>1,1935135837=>1,1935135766=>1,1935135761=>1,1935135625=>1,1935135622=>1,1935135660=>1,1935135676=>1,1935135712=>1,1935135680=>1,1935135870=>1,1935135872=>1,1935135978=>1,1935135971=>1,1935135986=>1,1935136773=>1,1935136783=>1,1935136778=>1,1935135960=>1,1935135959=>1,1935135911=>1,1935135906=>1,1935135920=>1,1935135932=>1,1935135951=>1,1935135934=>1,1935135611=>1,1935135602=>1,1935135332=>1,1935135320=>1,1935135336=>1,1935135352=>1,1935135368=>1,1935135355=>1,1935135302=>1,1935135291=>1,1935135243=>1,1935134430=>1,1935135259=>1,1935135266=>1,1935135282=>1,1935135276=>1,1935135369=>1,1935135391=>1,1935135557=>1,1935135532=>1,1935135564=>1,1935135567=>1,1935135570=>1,1935135569=>1,1935135516=>1,1935135505=>1,1935135421=>1,1935135410=>1,1935135427=>1,1935135446=>1,1935135493=>1,1935136801=>1,1935136810=>1,1935137315=>1,1935137303=>1,1935137317=>1,1935137321=>1,1935137348=>1,1935137347=>1,1935137302=>1,1935137197=>1,1935137145=>1,1935137139=>1,1935137160=>1,1935137163=>1,1935137176=>1,1935137167=>1,1935137354=>1,1935137421=>1,1935137662=>1,1935137651=>1,1935137702=>1,1935137734=>1,1935137743=>1,1935137737=>1,1935137645=>1,1935137626=>1,1935137519=>1,1935137454=>1,1935137576=>1,1935137591=>1,1935137604=>1,1935137128=>1,1935137123=>1,1935136898=>1,1935136896=>1,1935136909=>1,1935136936=>1,1935136951=>1,1935136937=>1,1935136894=>1,1935136870=>1,1935136822=>1,1935136815=>1,1935136826=>1,1935136845=>1,1935136857=>1,1935136848=>1,1935136961=>1,1935136970=>1,1935137043=>1,1935137035=>1,1935137044=>1,1935137047=>1,1935137110=>1,1935137064=>1,1935137029=>1,1935137027=>1,1935136993=>1,1935136971=>1,1935137004=>1,1935137007=>1,1935137011=>1,1935134410=>1,1935134387=>1,1935091213=>1,1934970098=>1,1935091395=>1,1935094021=>1,1935094053=>1,1935094024=>1,1934952203=>1,1934911934=>1,1933957386=>1,1933727749=>1,1934015082=>1,1934020625=>1,1934179238=>1,1934020762=>1,1935094058=>1,1935094074=>1,1935094320=>1,1935094279=>1,1935094335=>1,1935094340=>1,1935094365=>1,1935094362=>1,1935094275=>1,1935094239=>1,1935094131=>1,1935094094=>1,1935094141=>1,1935094159=>1,1935094220=>1,1935094184=>1,1933631758=>1,1933497379=>1,1931293935=>1,1931292292=>1,1931305609=>1,1931305611=>1,1931316208=>1,1931309743=>1,1931291452=>1,1931290105=>1,1931257967=>1,1931256952=>1,1931266581=>1,1931276847=>1,1931289090=>1,1931277429=>1,1931321703=>1,1931321767=>1,1933010497=>1,1932988400=>1,1933064022=>1,1933079101=>1,1933384119=>1,1933089161=>1,1932678076=>1,1931458398=>1,1931329579=>1,1931322531=>1,1931329730=>1,1931329911=>1,1931333261=>1,1935094398=>1,1935094404=>1,1935097645=>1,1935097628=>1,1935097653=>1,1935097660=>1,1935097698=>1,1935097679=>1,1935097609=>1,1935097585=>1,1935097474=>1,1935097469=>1,1935097480=>1,1935097546=>1,1935097571=>1,1935097560=>1,1935097708=>1,1935097737=>1,1935134253=>1,1935134225=>1,1935134255=>1,1935134280=>1,1935134382=>1,1935134285=>1,1935134211=>1,1935131694=>1,1935097774=>1,1935097765=>1,1935121017=>1,1935121037=>1,1935126627=>1,1935097467=>1,1935097416=>1,1935094628=>1,1935094574=>1,1935094680=>1,1935094698=>1,1935094744=>1,1935094702=>1,1935094547=>1,1935094531=>1,1935094421=>1,1935094418=>1,1935094454=>1,1935094456=>1,1935094519=>1,1935094492=>1,1935095343=>1,1935095512=>1,1935096270=>1,1935096257=>1,1935096460=>1,1935097356=>1,1935097410=>1,1935097388=>1,1935096255=>1,1935096197=>1,1935095781=>1,1935095686=>1,1935095878=>1,1935095909=>1,1935095914=>1,1935137765=>1,1935137770=>1,1935146616=>1,1935146583=>1,1935146617=>1,1935146650=>1,1935146673=>1,1935146672=>1,1935146557=>1,1935146550=>1,1935146522=>1,1935146515=>1,1935146524=>1,1935146530=>1,1935146546=>1,1935146539=>1,1935146711=>1,1935146713=>1,1935146842=>1,1935146786=>1,1935146863=>1,1935146873=>1,1935146906=>1,1935146888=>1,1935146779=>1,1935146777=>1,1935146726=>1,1935146722=>1,1935146727=>1,1935146731=>1,1935146776=>1,1935146735=>1,1935146470=>1,1935146462=>1,1935144888=>1,1935144859=>1,1935144953=>1,1935146289=>1,1935146320=>1,1935146310=>1,1935144775=>1,1935144761=>1,1935144508=>1,1935144487=>1,1935144542=>1,1935144556=>1,1935144657=>1,1935144603=>1,1935146335=>1,1935146336=>1,1935146406=>1,1935146398=>1,1935146408=>1,1935146416=>1,1935146433=>1,1935146421=>1,1935146383=>1,1935146366=>1,1935146341=>1,1935146337=>1,1935146357=>1,1935146364=>1,1935146365=>1,1935146909=>1,1935146932=>1,1939800932=>1,1939645699=>1,1939800933=>1,1939808138=>1,1939812574=>1,1939812110=>1,1939507851=>1,1939477996=>1,1939225476=>1,1938980832=>1,1939252606=>1,1939286152=>1,1939476045=>1,1939362547=>1,1939813051=>1,1939813659=>1,1939827385=>1,1939827350=>1,1939827428=>1,1939827560=>1,1939829092=>1,1939828875=>1,1939826098=>1,1939821522=>1,1939817278=>1,1939814161=>1,1939819364=>1,1939820425=>1,1939821299=>1,1938979803=>1,1938844532=>1,1937059076=>1,1936974733=>1,1937525114=>1,1937525534=>1,1937535211=>1,1937526326=>1,1936834810=>1,1936804879=>1,1935146946=>1,1935146942=>1,1935146973=>1,1935146997=>1,1936796631=>1,1935171435=>1,1937641559=>1,1937641579=>1,1937721450=>1,1937720330=>1,1938084352=>1,1938095282=>1,1938104945=>1,1938102071=>1,1937719275=>1,1937711274=>1,1937708452=>1,1937708450=>1,1937708964=>1,1937709018=>1,1937710546=>1,1935144482=>1,1935144444=>1,1935141158=>1,1935141048=>1,1935141176=>1,1935141203=>1,1935141264=>1,1935141229=>1,1935141017=>1,1935141011=>1,1935140928=>1,1935140891=>1,1935140968=>1,1935140970=>1,1935140997=>1,1935140995=>1,1935141281=>1,1935141302=>1,1935141641=>1,1935141562=>1,1935141683=>1,1935141717=>1,1935141901=>1,1935141757=>1,1935141534=>1,1935141512=>1,1935141366=>1,1935141335=>1,1935141398=>1,1935141424=>1,1935141488=>1,1935141456=>1,1935138294=>1,1935138293=>1,1935137931=>1,1935137922=>1,1935137950=>1,1935137988=>1,1935137992=>1,1935137990=>1,1935137916=>1,1935137850=>1,1935137800=>1,1935137795=>1,1935137803=>1,1935137808=>1,1935137821=>1,1935137809=>1,1935138031=>1,1935138067=>1,1935138225=>1,1935138197=>1,1935138237=>1,1935138253=>1,1935138276=>1,1935138263=>1,1935138190=>1,1935138174=>1,1935138107=>1,1935138104=>1,1935138110=>1,1935138134=>1,1935138139=>1,1935141960=>1,1935141993=>1,1935143545=>1,1935143462=>1,1935143562=>1,1935143578=>1,1935143686=>1,1935143594=>1,1935143430=>1,1935143362=>1,1935143180=>1,1935142961=>1,1935143217=>1,1935143220=>1,1935143286=>1,1935143232=>1,1935143688=>1,1935143691=>1,1935144161=>1,1935144129=>1,1935144178=>1,1935144201=>1,1935144355=>1,1935144298=>1,1935144095=>1,1935144011=>1,1935143834=>1,1935143723=>1,1935143842=>1,1935143905=>1,1935143912=>1,1935142895=>1,1935142881=>1,1935142314=>1,1935142254=>1,1935142321=>1,1935142363=>1,1935142414=>1,1935142377=>1,1935142187=>1,1935142157=>1,1935142015=>1,1935141994=>1,1935142046=>1,1935142080=>1,1935142116=>1,1935142090=>1,1935142505=>1,1935142509=>1,1935142757=>1,1935142752=>1,1935142802=>1,1935142810=>1,1935142879=>1,1935142812=>1,1935142733=>1,1935142701=>1,1935142525=>1,1935142518=>1,1935142574=>1,1935142593=>1,1935142600=>1,1931255591=>1,);?>
1
+ <?php return array(2016692282=>2016692283,2016692278=>2016692279,2006191526=>2006191527,2001503750=>2001503751,1999026162=>1999026163,1999026146=>1999026147,1999026056=>1999026057,1995766178=>1995766179,1994130766=>1994130767,1986522356=>1986522357,1986226522=>1986226523,1986112076=>1986112077,1978648508=>1978648509,1976783428=>1976783429,1976769390=>1976769391,1976769370=>1976769371,1976769340=>1976769341,1976769320=>1976769321,1975195944=>1975195945,1974026858=>1974026859,1974011058=>1974011059,1974011050=>1974011051,1974011036=>1974011037,1974011022=>1974011031,1974011010=>1974011011,1973161810=>1973161811,1969641682=>1969641683,1966593040=>1966593047,1945748046=>1945748047,1999592305=>1,1999592306=>1,1999678755=>1,1999273770=>1,1999273927=>1,1999510674=>1,1999270833=>1,1999550502=>1,1999688351=>1,1999937538=>1,1999950093=>1,2000036481=>1,2000035548=>1,1999867720=>1,1999263213=>1,2000262436=>1,2000250906=>1,2000133009=>1,1999715919=>1,1999683196=>1,1999026165=>1,1999024349=>1,1999024344=>1,1999024351=>1,1999024360=>1,1999026073=>1,1999024337=>1,1999024331=>1,1999024291=>1,1999024279=>1,1999024304=>1,1999024316=>1,1999024328=>1,1999026142=>1,1999026153=>1,1999026174=>1,1999026173=>1,1999134554=>1,1999134811=>1,1999135394=>1,1999026170=>1,1999026166=>1,1999026156=>1,1999026159=>1,1999026161=>1,2000387944=>1,1999212895=>1,2001503769=>1,2001507908=>1,2001507819=>1,2001508048=>1,2001509743=>1,2001513461=>1,2001513390=>1,2001507805=>1,2001507791=>1,2001506486=>1,2001506469=>1,2001506500=>1,2001506512=>1,2001507570=>1,2001588096=>1,2001818226=>1,2002533494=>1,2002452001=>1,2002594189=>1,2002604692=>1,2002861749=>1,2002655057=>1,2002443691=>1,2002422560=>1,2001921874=>1,2001920583=>1,2001923978=>1,2001924122=>1,2002107759=>1,2001506449=>1,2001506406=>1,2001503921=>1,2001503914=>1,2001504003=>1,2001504006=>1,2001504046=>1,2001504034=>1,2001503820=>1,2001503787=>1,2000656476=>1,2000491333=>1,2000656587=>1,1999024271=>1,2001503779=>1,2001504172=>1,2001504175=>1,2001504686=>1,2001504681=>1,2001506385=>1,2001506391=>1,2001506396=>1,2001504653=>1,2001504640=>1,2001504184=>1,2001504177=>1,2001504210=>1,2001504521=>1,2001504618=>1,2000491290=>1,1999024227=>1,1996803051=>1,1996802702=>1,1996792803=>1,1996912964=>1,1996964327=>1,1996969592=>1,1996968202=>1,1996792665=>1,1996792233=>1,1996615712=>1,1996164736=>1,1996618245=>1,1996618367=>1,1996787270=>1,1996632602=>1,1997003124=>1,1997005237=>1,1997658120=>1,1997511634=>1,1997706931=>1,1997707316=>1,1998328855=>1,1998327519=>1,1997495538=>1,1997493050=>1,1997106239=>1,1997097430=>1,1997144725=>1,1997188782=>1,1997188993=>1,1997188978=>1,1995763458=>1,1995751608=>1,1992333350=>1,1992332163=>1,1992334672=>1,1992366262=>1,1992398101=>1,1992367046=>1,1992332048=>1,1992331619=>1,1991905627=>1,1991777430=>1,1991969835=>1,1992099467=>1,1992137993=>1,1992100618=>1,1992398104=>1,1992406321=>1,1992953796=>1,1992476090=>1,1993413280=>1,1994130777=>1,1995037716=>1,1994943779=>1,1992475498=>1,1992422097=>1,1992411669=>1,1992410546=>1,1992411683=>1,1992411686=>1,1992419645=>1,1992419044=>1,1998336549=>1,1998391599=>1,1998452004=>1,1998449556=>1,1998452007=>1,1998452561=>1,1998453923=>1,1998452642=>1,1998449009=>1,1998448859=>1,1998442928=>1,1998442853=>1,1998446767=>1,1998446981=>1,1998447407=>1,1998447162=>1,1998883459=>1,1998888706=>1,1999024218=>1,1999024214=>1,1999024222=>1,2003068977=>1,1999024235=>1,1999024230=>1,1999024210=>1,1999024208=>1,1999024137=>1,1999024133=>1,1999024142=>1,1999024146=>1,1999024199=>1,1999024161=>1,1998442062=>1,1998441069=>1,1998412556=>1,1998411739=>1,1998414249=>1,1998415189=>1,1998432023=>1,1998418009=>1,1998410477=>1,1998404395=>1,1998393417=>1,1998391856=>1,1998396318=>1,1998403063=>1,1998403707=>1,1998403312=>1,1998432966=>1,1998433114=>1,1998438856=>1,1998438721=>1,1998439358=>1,1998439670=>1,1998440337=>1,1998440033=>1,1998438712=>1,1998437834=>1,1998433307=>1,1998433277=>1,1998433531=>1,1998434737=>1,1998435777=>1,1998434746=>1,1999024265=>1,2004431033=>1,2016978814=>1,2016978615=>1,2016978824=>1,2016978864=>1,2016979191=>1,2016979094=>1,2016978609=>1,2016978520=>1,2016978208=>1,2016978192=>1,2016978243=>1,2016978299=>1,2016978480=>1,2016978470=>1,2016979303=>1,2016979439=>1,2016980203=>1,2016980173=>1,2016980313=>1,2016980316=>1,2016980550=>1,2016980440=>1,2016980164=>1,2016979851=>1,2016979555=>1,2016979497=>1,2016979714=>1,2016979787=>1,2016979828=>1,2016977894=>1,2016977810=>1,2016692271=>1,2016692248=>1,2016692272=>1,2016692276=>1,2016692289=>1,2016692280=>1,2016692243=>1,2016680722=>1,2015417400=>1,2015222062=>1,2015616759=>1,2015848908=>1,2016680721=>1,2016556867=>1,2016692290=>1,2016692301=>1,2016977353=>1,2016977106=>1,2016977422=>1,2016977576=>1,2016977636=>1,2016977613=>1,2016977034=>1,2016976942=>1,2016718968=>1,2016692576=>1,2016911470=>1,2016920843=>1,2016933167=>1,2016980566=>1,2016980696=>1,2017141188=>1,2017141020=>1,2017141690=>1,2017141795=>1,2017142124=>1,2017141926=>1,2017140945=>1,2017140841=>1,2017033876=>1,2017033806=>1,2017033924=>1,2017034039=>1,2017034052=>1,2017034041=>1,2017142430=>1,2017142568=>1,2017143442=>1,2017143255=>1,2017143448=>1,2017143644=>1,2017143738=>1,2017143729=>1,2017143122=>1,2017143091=>1,2017142737=>1,2017142694=>1,2017142763=>1,2017142934=>1,2017143019=>1,2017033747=>1,2017033645=>1,2017031874=>1,2017031829=>1,2017031905=>1,2017031994=>1,2017032112=>1,2017032003=>1,2017031827=>1,2017031679=>1,2017031169=>1,2016980933=>1,2017031298=>1,2017031494=>1,2017031542=>1,2017032245=>1,2017032406=>1,2017032840=>1,2017032823=>1,2017033030=>1,2017033262=>1,2017033520=>1,2017033493=>1,2017032770=>1,2017032765=>1,2017032518=>1,2017032429=>1,2017032625=>1,2017032674=>1,2017032722=>1,2015206686=>1,2015152582=>1,2007024136=>1,2007020260=>1,2007024523=>1,2007024551=>1,2007081404=>1,2007077026=>1,2007020231=>1,2007020193=>1,2006163767=>1,2006151966=>1,2006191528=>1,2006195657=>1,2006561137=>1,2006511767=>1,2007202170=>1,2007374462=>1,2008363115=>1,2008351047=>1,2008418091=>1,2008419069=>1,2008653011=>1,2008648986=>1,2008345519=>1,2008282091=>1,2007425581=>1,2007378601=>1,2008112017=>1,2008217797=>1,2008248860=>1,2006151942=>1,2006144724=>1,1991777205=>1,2004255401=>1,2004505657=>1,2004619530=>1,2004622911=>1,2004619655=>1,2004060310=>1,2004022334=>1,2003072402=>1,2003072197=>1,2003072726=>1,2003415401=>1,2003715926=>1,2003583117=>1,2004637125=>1,2004757740=>1,2005941704=>1,2005760296=>1,2005941827=>1,2005943506=>1,2006126730=>1,2006110193=>1,2005672480=>1,2005410493=>1,2005207649=>1,2004918900=>1,2005353722=>1,2005354391=>1,2005383522=>1,2008762728=>1,2008833681=>1,2014895601=>1,2014887512=>1,2014919997=>1,2014923958=>1,2014948279=>1,2014926035=>1,2014886470=>1,2014859298=>1,2014298459=>1,2014176040=>1,2014842522=>1,2014848541=>1,2014858986=>1,2014853186=>1,2014954122=>1,2014956233=>1,2015068344=>1,2015060100=>1,2015068966=>1,2015075024=>1,2015112650=>1,2015085268=>1,2015059948=>1,2015045919=>1,2014962252=>1,2014958173=>1,2014964476=>1,2015003766=>1,2015037186=>1,2014114226=>1,2014103950=>1,2011902626=>1,2011823896=>1,2011902646=>1,2011953544=>1,2012618233=>1,2011954405=>1,2011492136=>1,2011242534=>1,2008838940=>1,2008838935=>1,2008856221=>1,2008902131=>1,2009221739=>1,2012619217=>1,2012694692=>1,2013210025=>1,2013157429=>1,2013425592=>1,2013890800=>1,2014042603=>1,2013896746=>1,2013156442=>1,2013048532=>1,2013002678=>1,2012717651=>1,2013044770=>1,2013045338=>1,2013047941=>1,2003072112=>1,1991160802=>1,1971907080=>1,1971907078=>1,1973161809=>1,1973161852=>1,1973312213=>1,1973289426=>1,1971907076=>1,1971907073=>1,1971822012=>1,1970923513=>1,1971843509=>1,1971845765=>1,1971845962=>1,1971845766=>1,1973326646=>1,1973327833=>1,1973742652=>1,1973737431=>1,1973894028=>1,1973976653=>1,1973998863=>1,1973995445=>1,1973692637=>1,1973678534=>1,1973581557=>1,1973332035=>1,1973619793=>1,1973646763=>1,1973659212=>1,1970923505=>1,1970923494=>1,1968755949=>1,1968752960=>1,1968759186=>1,1968784934=>1,1969001331=>1,1968970502=>1,1968679855=>1,1968446194=>1,1968199143=>1,1968180716=>1,1968270595=>1,1968335021=>1,1968387395=>1,1968387164=>1,1969038291=>1,1969149585=>1,1969728866=>1,1969659913=>1,1970639108=>1,1970916581=>1,1970922445=>1,1970922315=>1,1969650394=>1,1969644290=>1,1969638778=>1,1969176881=>1,1969639447=>1,1969640290=>1,1969641827=>1,1974011013=>1,1974011014=>1,1976375765=>1,1976303591=>1,1976407368=>1,1976769287=>1,1976769406=>1,1976769342=>1,1976135119=>1,1976087206=>1,1975526213=>1,1975195946=>1,1975654484=>1,1975690489=>1,1976087043=>1,1975849714=>1,1976769420=>1,1976769434=>1,1977234145=>1,1977234054=>1,1977248850=>1,1977267155=>1,1977556079=>1,1977555509=>1,1976979468=>1,1976959833=>1,1976783404=>1,1976783368=>1,1976783418=>1,1976783433=>1,1976804236=>1,1975195943=>1,1975194646=>1,1974011060=>1,1974011055=>1,1974011064=>1,1974011069=>1,1974026857=>1,1974011073=>1,1974011049=>1,1974011046=>1,1974011021=>1,1974011018=>1,1974011032=>1,1974011042=>1,1974011044=>1,1974026862=>1,1974026982=>1,1975023077=>1,1974598296=>1,1975089869=>1,1975089873=>1,1975194634=>1,1975089874=>1,1974598295=>1,1974484628=>1,1974151689=>1,1974117876=>1,1974180656=>1,1974324739=>1,1974324744=>1,1968134053=>1,1968056950=>1,1951206489=>1,1951141367=>1,1951221420=>1,1952109452=>1,1952115570=>1,1952114002=>1,1951080670=>1,1951023309=>1,1949817319=>1,1949780669=>1,1949967362=>1,1950016829=>1,1950678775=>1,1950023641=>1,1952266753=>1,1952283679=>1,1958741103=>1,1954364329=>1,1958742248=>1,1958745429=>1,1959100650=>1,1958861994=>1,1954356956=>1,1954265964=>1,1953522730=>1,1952862483=>1,1953522890=>1,1953616626=>1,1953786981=>1,1949701022=>1,1949700481=>1,1946391956=>1,1946297957=>1,1946426945=>1,1946510493=>1,1946697544=>1,1946569210=>1,1946293909=>1,1946052078=>1,1945920757=>1,1945762482=>1,1945935293=>1,1945949371=>1,1946032297=>1,1947744310=>1,1947753625=>1,1948208324=>1,1948208291=>1,1949401017=>1,1949441265=>1,1949612940=>1,1949494299=>1,1948162285=>1,1948111627=>1,1947753705=>1,1947753649=>1,1947753971=>1,1947828005=>1,1948040812=>1,1959100787=>1,1959100790=>1,1964357229=>1,1964260417=>1,1964357230=>1,1964403791=>1,1964576379=>1,1964571599=>1,1964259458=>1,1964139513=>1,1962719498=>1,1961685923=>1,1963396130=>1,1963678713=>1,1964133355=>1,1963885447=>1,1964605934=>1,1964630391=>1,1967075721=>1,1967007115=>1,1967466927=>1,1967571590=>1,1967604879=>1,1967604749=>1,1966911435=>1,1966910163=>1,1965344152=>1,1965190612=>1,1965344311=>1,1965804549=>1,1966858298=>1,1961673864=>1,1961350578=>1,1960091036=>1,1959990217=>1,1960091432=>1,1960099267=>1,1960968889=>1,1960968380=>1,1959938146=>1,1959924157=>1,1959490247=>1,1959102090=>1,1959600772=>1,1959920694=>1,1959921287=>1,1960970779=>1,1960970980=>1,1961159899=>1,1961136072=>1,1961280237=>1,1961302420=>1,1961336621=>1,1961309264=>1,1961092991=>1,1961002409=>1,1960972721=>1,1960971915=>1,1960972819=>1,1960985606=>1,1960994451=>1,1978164116=>1,1978599050=>1,1990280679=>1,1990280069=>1,1990281774=>1,1990282067=>1,1990282828=>1,1990282329=>1,1990279916=>1,1990279808=>1,1990267660=>1,1990267097=>1,1990274751=>1,1990275296=>1,1990279304=>1,1990275481=>1,1990282946=>1,1990287933=>1,1990421972=>1,1990421608=>1,1990428337=>1,1990449320=>1,1990534037=>1,1990533007=>1,1990412961=>1,1990412957=>1,1990311944=>1,1990301337=>1,1990311978=>1,1990326574=>1,1990410555=>1,1990266882=>1,1990245275=>1,1989176048=>1,1989175550=>1,1989187016=>1,1989187326=>1,1989188349=>1,1989187473=>1,1989161692=>1,1989154680=>1,1988715221=>1,1988495708=>1,1988906198=>1,1988962644=>1,1989150706=>1,1989008711=>1,1989188610=>1,1989190643=>1,1989203289=>1,1989203285=>1,1989427302=>1,1990226281=>1,1990241372=>1,1990227635=>1,1989197795=>1,1989194238=>1,1989192701=>1,1989190652=>1,1989193697=>1,1989193733=>1,1989193734=>1,1990534098=>1,1990534920=>1,1991022902=>1,1991007186=>1,1991022935=>1,1991026522=>1,1991031172=>1,1991031093=>1,1991005083=>1,1991000034=>1,1990998775=>1,1990998738=>1,1990998800=>1,1990998929=>1,1990999830=>1,1990998990=>1,1991105879=>1,1991109552=>1,1991242556=>1,1991241741=>1,1991485641=>1,1991498938=>1,1991752780=>1,1991654910=>1,1991204131=>1,1991185570=>1,1991136298=>1,1991125878=>1,1991144328=>1,1945695093=>1,1991180986=>1,1990998727=>1,1990998594=>1,1990729834=>1,1990666025=>1,1990729882=>1,1990861219=>1,1990864484=>1,1990861335=>1,1990602869=>1,1990597029=>1,1990574874=>1,1990574808=>1,1990574913=>1,1990575199=>1,1990575684=>1,1990879528=>1,1990938887=>1,1990987917=>1,1990983136=>1,1990988144=>1,1990988787=>1,1990998583=>1,1990995049=>1,1990957596=>1,1990957112=>1,1990942212=>1,1990941455=>1,1990945185=>1,1990951653=>1,1990956611=>1,1988486469=>1,1988461611=>1,1979156692=>1,1979156690=>1,1979171654=>1,1979628732=>1,1981083463=>1,1980712345=>1,1979156684=>1,1979156682=>1,1978743087=>1,1978719444=>1,1978777949=>1,1978929139=>1,1979156680=>1,1979156666=>1,1981123972=>1,1981466630=>1,1984652327=>1,1984349395=>1,1984801566=>1,1984985325=>1,1985011409=>1,1984998863=>1,1984331783=>1,1984317482=>1,1981473437=>1,1981466632=>1,1982483023=>1,1984250431=>1,1984286153=>1,1978714691=>1,1978710819=>1,1978610024=>1,1978608219=>1,1978611025=>1,1978621890=>1,1978647581=>1,1978634970=>1,1978604275=>1,1978604161=>1,1978601327=>1,1978599371=>1,1978601328=>1,1978601586=>1,1978602054=>1,1978648506=>1,1978659346=>1,1978687178=>1,1978687139=>1,1978687346=>1,1978695330=>1,1978710052=>1,1978710051=>1,1978687114=>1,1978687083=>1,1978659875=>1,1978659363=>1,1978659878=>1,1978661645=>1,1978687066=>1,1985760092=>1,1985762288=>1,1986165187=>1,1986153352=>1,1986165245=>1,1986194504=>1,1986226524=>1,1986220464=>1,1986133866=>1,1986132314=>1,1986107363=>1,1986103762=>1,1986120761=>1,1986122214=>1,1986129810=>1,1986122780=>1,1986228879=>1,1986241649=>1,1987760100=>1,1987729637=>1,1987774620=>1,1988005585=>1,1988414218=>1,1988379064=>1,1987541756=>1,1987244650=>1,1986329759=>1,1986244763=>1,1986356843=>1,1986455194=>1,1987202351=>1,1986103634=>1,1986103326=>1,1986036867=>1,1986033882=>1,1986038279=>1,1986043733=>1,1986071323=>1,1986047202=>1,1986020665=>1,1986013846=>1,1985763771=>1,1985763180=>1,1985783186=>1,1985868035=>1,1986007788=>1,1986072058=>1,1986072060=>1,1986093674=>1,1986088311=>1,1986095918=>1,1986097578=>1,1986101283=>1,1986101050=>1,1986084626=>1,1986079386=>1,1986075147=>1,1986072538=>1,1986075474=>1,1986076274=>1,1986076898=>1,1991776195=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-22.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2017173694=>1,2017173626=>1,2017173695=>1,2017173840=>1,2017174216=>1,2017174133=>1,2017144476=>1,2017144446=>1,2017143729=>1,2017143644=>1,2017143738=>1,2017143792=>1,2017144443=>1,2017143956=>1,2017174771=>1,2017174871=>1,2017991945=>1,2017983743=>1,2018265898=>1,2018283088=>1,2018765312=>1,2018755615=>1,2017786297=>1,2017779119=>1,2017175924=>1,2017175541=>1,2017176471=>1,2017176712=>1,2017177427=>1,2017177409=>1,2017143442=>1,2017143255=>1,2017034039=>1,2017033747=>1,2017034041=>1,2017034052=>1,2017140818=>1,2017034172=>1,2017033695=>1,2017033645=>1,2017032770=>1,2017032765=>1,2017032840=>1,2017033030=>1,2017033493=>1,2017033262=>1,2017140945=>1,2017141690=>1,2017142763=>1,2017142694=>1,2017142934=>1,2017143002=>1,2017143122=>1,2017143091=>1,2017142568=>1,2017142495=>1,2017141926=>1,2017141795=>1,2017142124=>1,2017142430=>1,2017142462=>1,2018769172=>1,2018830459=>1,2026823087=>1,2026816733=>1,2026825838=>1,2026983720=>1,2027347410=>1,2027160893=>1,2026657053=>1,2026634454=>1,2026579592=>1,2026571766=>1,2026612254=>1,2026622621=>1,2026624696=>1,2026624668=>1,2027427708=>1,2028602930=>1,2030719173=>1,2030610997=>1,2030743925=>1,2030753874=>1,2030846155=>1,2030815634=>1,2030599210=>1,2030575065=>1,2028605315=>1,2028605314=>1,2028607074=>1,2028767771=>1,2028819034=>1,2028768742=>1,2026310834=>1,2026304541=>1,2021074811=>1,2018919380=>1,2021868402=>1,2021884115=>1,2021956597=>1,2021945890=>1,2018919314=>1,2018919307=>1,2018830708=>1,2018830508=>1,2018831199=>1,2018831996=>1,2018870506=>1,2018832299=>1,2022901153=>1,2022993377=>1,2026191348=>1,2026190098=>1,2026280450=>1,2026301186=>1,2026301907=>1,2026301250=>1,2026072223=>1,2026015368=>1,2023168016=>1,2023051970=>1,2025856452=>1,2025872482=>1,2025984602=>1,2017032722=>1,2017032674=>1,2016680721=>1,2016556867=>1,2016680722=>1,2016692243=>1,2016692246=>1,2016692244=>1,2015616759=>1,2015465242=>1,2015152582=>1,2015112650=>1,2015206193=>1,2015206686=>1,2015417400=>1,2015222062=>1,2016692248=>1,2016692271=>1,2016692292=>1,2016692290=>1,2016692301=>1,2016692576=>1,2016911470=>1,2016718968=>1,2016692289=>1,2016692283=>1,2016692276=>1,2016692272=>1,2016692278=>1,2016692279=>1,2016692282=>1,2016692280=>1,2015085268=>1,2015075133=>1,2014859298=>1,2014858986=>1,2014886470=>1,2014887512=>1,2014919997=>1,2014895601=>1,2014853186=>1,2014849888=>1,2014103950=>1,2014042603=>1,2014114226=>1,2014176040=>1,2014848541=>1,2014842522=>1,2014923958=>1,2014926035=>1,2015059948=>1,2015045919=>1,2015060100=>1,2015068344=>1,2015075024=>1,2015068966=>1,2015037186=>1,2015031314=>1,2014954122=>1,2014948279=>1,2014956233=>1,2014962252=>1,2014964476=>1,2016920843=>1,2016933167=>1,2016980933=>1,2016980696=>1,2017031169=>1,2017031298=>1,2017031542=>1,2017031494=>1,2016980566=>1,2016980550=>1,2016980173=>1,2016980164=>1,2016980202=>1,2016980203=>1,2016980316=>1,2016980313=>1,2017031679=>1,2017031827=>1,2017032245=>1,2017032208=>1,2017032406=>1,2017032429=>1,2017032625=>1,2017032518=>1,2017032182=>1,2017032118=>1,2017031874=>1,2017031829=>1,2017031905=>1,2017032003=>1,2017032112=>1,2016979851=>1,2016979828=>1,2016978192=>1,2016977894=>1,2016978208=>1,2016978243=>1,2016978470=>1,2016978299=>1,2016977856=>1,2016977806=>1,2016977106=>1,2016977034=>1,2016977422=>1,2016977576=>1,2016977636=>1,2016977613=>1,2016978480=>1,2016978520=>1,2016979191=>1,2016979094=>1,2016979303=>1,2016979555=>1,2016979787=>1,2016979714=>1,2016978864=>1,2016978824=>1,2016978609=>1,2016978604=>1,2016978615=>1,2016978808=>1,2016978814=>1,2030963020=>1,2031061323=>1,2050311685=>1,2048610933=>1,2050319724=>1,2050323509=>1,2050326085=>1,2050323511=>1,2047850321=>1,2047810081=>1,2047486427=>1,2047327723=>1,2047499753=>1,2047771394=>1,2047809883=>1,2047806007=>1,2050339428=>1,2050366338=>1,2050678495=>1,2050677888=>1,2050736493=>1,2050737400=>1,2051434034=>1,2050928386=>1,2050661835=>1,2050659092=>1,2050449491=>1,2050396932=>1,2050496442=>1,2050647727=>1,2050658980=>1,2050658828=>1,2047211289=>1,2047210513=>1,2044970790=>1,2044965164=>1,2044970910=>1,2045030461=>1,2045088385=>1,2045065297=>1,2044927514=>1,2044770409=>1,2043539119=>1,2043232144=>1,2043610522=>1,2043610750=>1,2044745291=>1,2043672510=>1,2045097969=>1,2045119169=>1,2045770667=>1,2045764231=>1,2045791464=>1,2047083618=>1,2047139923=>1,2047100614=>1,2045610974=>1,2045598771=>1,2045138834=>1,2045121936=>1,2045188803=>1,2045471761=>1,2045503318=>1,2051454858=>1,2052589184=>1,2056951682=>1,2056935970=>1,2056971078=>1,2057035362=>1,2057332615=>1,2057098906=>1,2056931121=>1,2056921545=>1,2056219593=>1,2056178921=>1,2056258870=>1,2056261035=>1,2056795312=>1,2056460391=>1,2057390736=>1,2057879278=>1,2061536626=>1,2061513651=>1,2061547434=>1,2061554018=>1,2061593123=>1,2061558730=>1,2059928065=>1,2059620334=>1,2057991825=>1,2057989601=>1,2058374691=>1,2059335268=>1,2059411533=>1,2056079986=>1,2055973931=>1,2053127014=>1,2053127012=>1,2053127016=>1,2053127018=>1,2053516274=>1,2053127019=>1,2053127011=>1,2053022189=>1,2052982862=>1,2052687079=>1,2052985397=>1,2052987518=>1,2052988163=>1,2052987801=>1,2053833000=>1,2053907198=>1,2055214442=>1,2055214378=>1,2055296308=>1,2055325254=>1,2055967340=>1,2055886683=>1,2054807492=>1,2054806372=>1,2054303917=>1,2054303878=>1,2054504489=>1,2054522116=>1,2054797302=>1,2043232068=>1,2043223225=>1,2032798044=>1,2032771306=>1,2032807012=>1,2032833683=>1,2032835271=>1,2032834350=>1,2032758345=>1,2032754631=>1,2032718054=>1,2032716651=>1,2032726294=>1,2032736379=>1,2032750692=>1,2032744393=>1,2032835909=>1,2032848453=>1,2033509683=>1,2033488838=>1,2033512726=>1,2033512845=>1,2033626930=>1,2033515079=>1,2033488501=>1,2033466742=>1,2032898756=>1,2032898691=>1,2032904772=>1,2032909315=>1,2033083816=>1,2032937867=>1,2032715122=>1,2032714928=>1,2031549688=>1,2031549681=>1,2031656169=>1,2031713418=>1,2032036366=>1,2031744941=>1,2031490250=>1,2031462743=>1,2031157574=>1,2031091349=>1,2031162005=>1,2031235354=>1,2031286168=>1,2031242506=>1,2032092850=>1,2032100700=>1,2032690887=>1,2032679502=>1,2032692180=>1,2032692300=>1,2032709188=>1,2032700370=>1,2032373893=>1,2032263847=>1,2032103501=>1,2032103498=>1,2032103502=>1,2032103507=>1,2032103510=>1,2033714919=>1,2033715083=>1,2039250682=>1,2039192634=>1,2039576741=>1,2040881231=>1,2041642621=>1,2041402146=>1,2038965720=>1,2038430364=>1,2038002644=>1,2038002163=>1,2038082887=>1,2038083015=>1,2038427945=>1,2038427933=>1,2042068583=>1,2042634461=>1,2043155490=>1,2043104602=>1,2043217959=>1,2043219505=>1,2043222264=>1,2043220554=>1,2043100512=>1,2043100208=>1,2042938647=>1,2042728441=>1,2042945627=>1,2042948618=>1,2043087686=>1,2037719185=>1,2037446465=>1,2034571002=>1,2034570758=>1,2034571578=>1,2034572550=>1,2034574254=>1,2034573726=>1,2034566922=>1,2034566798=>1,2033797656=>1,2033790629=>1,2033797802=>1,2033827917=>1,2034018486=>1,2033867226=>1,2034574458=>1,2034574830=>1,2036589582=>1,2036379860=>1,2036600898=>1,2036602859=>1,2037259818=>1,2036686503=>1,2036250270=>1,2035113954=>1,2034575962=>1,2034574994=>1,2034576802=>1,2034576806=>1,2034848704=>1,2013896746=>1,2013890800=>1,1995751608=>1,1995037716=>1,1995763458=>1,1995766178=>1,1996615712=>1,1995766179=>1,1994943779=>1,1994130767=>1,1992476090=>1,1992475498=>1,1992953796=>1,1993454470=>1,1994130762=>1,1993595681=>1,1996618245=>1,1996632602=>1,1996968202=>1,1996964327=>1,1997003124=>1,1997005237=>1,1997106239=>1,1997097430=>1,1996912964=>1,1996872035=>1,1996792233=>1,1996787270=>1,1996792665=>1,1996792803=>1,1996803051=>1,1996802702=>1,1992422097=>1,1992419645=>1,1991776195=>1,1991752780=>1,1991777205=>1,1991905627=>1,1992099467=>1,1991969835=>1,1991654910=>1,1991498938=>1,1991204131=>1,1991185570=>1,1991241741=>1,1991242416=>1,1991485641=>1,1991242556=>1,1992100618=>1,1992137993=>1,1992410383=>1,1992406321=>1,1992411669=>1,1992411683=>1,1992419044=>1,1992411686=>1,1992403596=>1,1992398104=>1,1992332163=>1,1992331619=>1,1992366262=>1,1992367046=>1,1992398101=>1,1997144725=>1,1997188782=>1,1998433531=>1,1998433307=>1,1998434737=>1,1998434746=>1,1998435777=>1,1998435040=>1,1998433277=>1,1998433114=>1,1998418009=>1,1998415189=>1,1998418594=>1,1998432023=>1,1998432966=>1,1998432845=>1,1998436043=>1,1998436393=>1,1998439697=>1,1998439670=>1,1998440033=>1,1998440232=>1,1998440485=>1,1998440337=>1,1998439358=>1,1998438905=>1,1998438033=>1,1998437834=>1,1998438712=>1,1998438721=>1,1998438856=>1,1998414721=>1,1998414249=>1,1997707538=>1,1997707316=>1,1998327519=>1,1998328086=>1,1998336549=>1,1998328855=>1,1997706931=>1,1997658120=>1,1997188982=>1,1997188978=>1,1997188993=>1,1997493050=>1,1997511634=>1,1997495538=>1,1998391174=>1,1998391599=>1,1998411238=>1,1998410477=>1,1998411739=>1,1998412174=>1,1998413602=>1,1998412556=>1,1998404395=>1,1998403707=>1,1998393417=>1,1998391856=>1,1998396318=>1,1998403063=>1,1998403312=>1,1991180986=>1,1991144328=>1,1989196798=>1,1989194238=>1,1989203285=>1,1989203289=>1,1990241372=>1,1990226281=>1,1989193734=>1,1989193733=>1,1989188610=>1,1989188349=>1,1989190643=>1,1989190652=>1,1989193697=>1,1989192701=>1,1990245275=>1,1990266882=>1,1990279415=>1,1990279304=>1,1990279808=>1,1990279916=>1,1990280679=>1,1990280069=>1,1990275796=>1,1990275597=>1,1990267660=>1,1990267097=>1,1990274751=>1,1990275040=>1,1990275481=>1,1990275296=>1,1989187473=>1,1989187326=>1,1987729637=>1,1987541756=>1,1987760100=>1,1987774620=>1,1988379064=>1,1988005585=>1,1987244650=>1,1987202351=>1,1986356843=>1,1986241649=>1,1986455194=>1,1986490264=>1,1986522357=>1,1986522356=>1,1988414218=>1,1988461611=>1,1989154680=>1,1989150706=>1,1989161692=>1,1989175550=>1,1989187016=>1,1989176048=>1,1989008711=>1,1988962644=>1,1988495708=>1,1988486469=>1,1988715221=>1,1988906002=>1,1988906198=>1,1990280693=>1,1990281487=>1,1990988787=>1,1990988624=>1,1990995049=>1,1990998583=>1,1990998727=>1,1990998594=>1,1990988144=>1,1990988068=>1,1990956611=>1,1990951653=>1,1990957112=>1,1990983081=>1,1990987917=>1,1990983136=>1,1990998738=>1,1990998775=>1,1991102858=>1,1991031172=>1,1991105879=>1,1991109552=>1,1991136989=>1,1991136298=>1,1991022935=>1,1991022902=>1,1990999863=>1,1990998800=>1,1991000034=>1,1991005083=>1,1991007186=>1,1990945185=>1,1990942212=>1,1990412957=>1,1990410555=>1,1990412961=>1,1990421608=>1,1990428337=>1,1990421972=>1,1990327034=>1,1990326574=>1,1990282067=>1,1990281774=>1,1990282828=>1,1990282946=>1,1990306434=>1,1990287933=>1,1990449320=>1,1990533007=>1,1990861219=>1,1990729834=>1,1990861335=>1,1990864484=>1,1990941455=>1,1990938887=>1,1990666025=>1,1990602869=>1,1990534098=>1,1990534037=>1,1990534920=>1,1990574874=>1,1990575199=>1,1998441069=>1,1998441379=>1,2004431033=>1,2004401834=>1,2004505657=>1,2004619530=>1,2004622911=>1,2004619655=>1,2004255401=>1,2004060310=>1,2003072726=>1,2003072402=>1,2003415401=>1,2003583117=>1,2004022334=>1,2003715926=>1,2004637125=>1,2004757740=>1,2005754972=>1,2005721233=>1,2005760296=>1,2005841604=>1,2005943506=>1,2005941827=>1,2005672480=>1,2005410493=>1,2004981464=>1,2004918900=>1,2005207649=>1,2005353722=>1,2005383522=>1,2005354391=>1,2003072197=>1,2003072112=>1,2001513390=>1,2001509743=>1,2001513461=>1,2001588096=>1,2001830402=>1,2001818226=>1,2001507908=>1,2001507819=>1,2001506500=>1,2001506486=>1,2001506512=>1,2001507570=>1,2001507805=>1,2001507791=>1,2001837076=>1,2001920583=>1,2002594189=>1,2002533494=>1,2002604692=>1,2002655057=>1,2003068977=>1,2002861749=>1,2002452001=>1,2002443691=>1,2001923978=>1,2001921874=>1,2001924122=>1,2002107759=>1,2002422560=>1,2006029479=>1,2006110193=>1,2011902626=>1,2011902393=>1,2011902646=>1,2011953544=>1,2012420751=>1,2011954405=>1,2011823896=>1,2011492136=>1,2008838940=>1,2008838935=>1,2008856221=>1,2008902131=>1,2011242534=>1,2009221739=>1,2012618233=>1,2012619217=>1,2013077509=>1,2013048532=>1,2013156442=>1,2013157429=>1,2013425592=>1,2013210025=>1,2013047941=>1,2013045338=>1,2012717651=>1,2012694692=>1,2012797207=>1,2013002678=>1,2013044770=>1,2008833681=>1,2008653011=>1,2006513503=>1,2006511767=>1,2007020165=>1,2007020193=>1,2007024523=>1,2007024136=>1,2006195657=>1,2006191528=>1,2006151942=>1,2006144724=>1,2006151966=>1,2006163767=>1,2006191527=>1,2006191526=>1,2007077026=>1,2007081404=>1,2008282091=>1,2008248860=>1,2008351047=>1,2008363115=>1,2008419069=>1,2008418091=>1,2008217797=>1,2008112017=>1,2007263812=>1,2007202170=>1,2007374462=>1,2007378601=>1,2007425581=>1,2001506469=>1,2001506449=>1,1999024331=>1,1999024328=>1,1999024337=>1,1999024344=>1,1999024351=>1,1999024349=>1,1999024316=>1,1999024304=>1,1999024235=>1,1999024230=>1,1999024265=>1,1999024271=>1,1999024291=>1,1999024279=>1,1999024360=>1,1999026056=>1,1999026162=>1,1999026161=>1,1999026163=>1,1999026165=>1,1999026170=>1,1999026166=>1,1999026159=>1,1999026156=>1,1999026073=>1,1999026057=>1,1999026142=>1,1999026146=>1,1999026153=>1,1999026147=>1,1999024227=>1,1999024222=>1,1998448859=>1,1998448572=>1,1998449556=>1,1998450411=>1,1998452004=>1,1998451371=>1,1998447407=>1,1998447257=>1,1998442062=>1,1998442007=>1,1998442853=>1,1998442928=>1,1998447162=>1,1998446981=>1,1998452561=>1,1998452642=>1,1999024199=>1,1999024161=>1,1999024208=>1,1999024210=>1,1999024218=>1,1999024214=>1,1999024146=>1,1999024142=>1,1998883459=>1,1998453923=>1,1998888706=>1,1999024133=>1,1999024137=>1,1999026173=>1,1999026174=>1,2001503975=>1,2001503921=>1,2001504003=>1,2001504006=>1,2001504046=>1,2001504034=>1,2001503884=>1,2001503820=>1,2000656476=>1,2000653981=>1,2001503750=>1,2001503751=>1,2001503779=>1,2001503769=>1,2001504172=>1,2001504175=>1,2001504681=>1,2001504653=>1,2001504686=>1,2001506385=>1,2001506406=>1,2001506396=>1,2001504640=>1,2001504618=>1,2001504184=>1,2001504177=>1,2001504210=>1,2001504240=>1,2001504521=>1,2000653980=>1,2000491333=>1,1999279035=>1,1999279034=>1,1999279036=>1,1999279038=>1,1999550502=>1,1999510674=>1,1999273927=>1,1999270833=>1,1999134811=>1,1999134554=>1,1999135394=>1,1999212895=>1,1999263213=>1,1999262194=>1,1999592305=>1,1999592306=>1,2000133009=>1,2000036481=>1,2000250906=>1,2000262436=>1,2000387944=>1,2000266334=>1,2000035548=>1,1999950093=>1,1999683196=>1,1999678755=>1,1999688351=>1,1999867720=>1,1999937538=>1,1986228879=>1,);?>
1
+ <?php return array(2088239302=>2088239303,2086159124=>2086159125,2081215150=>2081215151,2081146086=>2081146087,2081145702=>2081145703,2081145392=>2081145393,2079935534=>2079935535,2074261062=>2074261063,2073392080=>2073392081,2073391998=>2073391999,2073391958=>2073391961,2073391904=>2073391905,2073391608=>2073391609,2073391542=>2073391543,2073391426=>2073391427,2073391400=>2073391401,2073391368=>2073391369,2073391294=>2073391295,2073391202=>2073391203,2067024374=>2067024375,2053127018=>2053127019,2028605314=>2028605315,2017173694=>2017173695,2074106915=>1,2074106925=>1,2074106896=>1,2074106895=>1,2074106886=>1,2074106900=>1,2074106907=>1,2074106913=>1,2074106988=>1,2074220565=>1,2074222702=>1,2074227058=>1,2074284796=>1,2074126255=>1,2074125915=>1,2074106939=>1,2074106984=>1,2074118543=>1,2074106926=>1,2073955159=>1,2073871054=>1,2073870660=>1,2073903766=>1,2073912203=>1,2073921838=>1,2073912204=>1,2073806229=>1,2073805749=>1,2073392092=>1,2073392088=>1,2073392111=>1,2073392114=>1,2073640805=>1,2073541366=>1,2073922582=>1,2073922902=>1,2073946506=>1,2073940286=>1,2074291743=>1,2073961100=>1,2074063573=>1,2074063434=>1,2073927314=>1,2073926458=>1,2073923566=>1,2073923434=>1,2073925410=>1,2073925442=>1,2073925602=>1,2074106885=>1,2074428294=>1,2076473462=>1,2076394624=>1,2076708830=>1,2076774781=>1,2076815563=>1,2076792466=>1,2076374543=>1,2076117858=>1,2075857000=>1,2075666434=>1,2075875784=>1,2075942573=>1,2076084343=>1,2076032666=>1,2076815718=>1,2076819017=>1,2076999476=>1,2076999463=>1,2076999493=>1,2076999607=>1,2076999711=>1,2076999654=>1,2076999329=>1,2076999312=>1,2076831227=>1,2076828933=>1,2076971887=>1,2076977165=>1,2076999227=>1,2076996175=>1,2075476121=>1,2075431508=>1,2074535751=>1,2074522296=>1,2074536460=>1,2074536958=>1,2074734113=>1,2074733110=>1,2074495780=>1,2074494070=>1,2074427907=>1,2074412033=>1,2074460280=>1,2074466158=>1,2074486732=>1,2074466181=>1,2074822377=>1,2074945265=>1,2075079986=>1,2075076466=>1,2075158093=>1,2075344735=>1,2075419604=>1,2075366288=>1,2075071919=>1,2075056583=>1,2074952858=>1,2074952321=>1,2075019661=>1,2075026821=>1,2075054739=>1,2074405084=>1,2073391995=>1,2073391212=>1,2073391210=>1,2073391221=>1,2073391222=>1,2073391245=>1,2073391233=>1,2073391191=>1,2073391188=>1,2073391160=>1,2073391146=>1,2073391162=>1,2073391166=>1,2073391183=>1,2073391255=>1,2073391274=>1,2073391339=>1,2073391316=>1,2073391362=>1,2073391373=>1,2073391383=>1,2073391381=>1,2073391308=>1,2073391306=>1,2073391278=>1,2073391276=>1,2073391282=>1,2073391293=>1,2073391305=>1,2073391134=>1,2073391130=>1,2072428406=>1,2072299425=>1,2072517034=>1,2072518218=>1,2072651034=>1,2072528796=>1,2072130082=>1,2072124684=>1,2072077947=>1,2072034087=>1,2072091025=>1,2072113325=>1,2072113326=>1,2072664450=>1,2072696923=>1,2072729684=>1,2072722418=>1,2073188767=>1,2073198607=>1,2073391128=>1,2073391113=>1,2072722274=>1,2072722261=>1,2072696926=>1,2072696925=>1,2072719044=>1,2072721642=>1,2072722164=>1,2073391389=>1,2073391391=>1,2073391834=>1,2073391687=>1,2073391879=>1,2073391884=>1,2073391900=>1,2073391896=>1,2073391650=>1,2073391614=>1,2073391587=>1,2073391585=>1,2073391593=>1,2073391602=>1,2073391612=>1,2073391907=>1,2073391940=>1,2073392022=>1,2073392016=>1,2073392024=>1,2073392045=>1,2073392063=>1,2073392053=>1,2076999813=>1,2073391992=>1,2073391954=>1,2073391952=>1,2073391956=>1,2073391964=>1,2073391974=>1,2073391568=>1,2073391567=>1,2073391436=>1,2073391430=>1,2073391439=>1,2073391443=>1,2073391466=>1,2073391452=>1,2073391428=>1,2073391423=>1,2073391397=>1,2073391392=>1,2073391406=>1,2073391412=>1,2073391416=>1,2073391473=>1,2073391478=>1,2073391532=>1,2073391528=>1,2073391534=>1,2073391539=>1,2073391553=>1,2073391527=>1,2073391512=>1,2073391487=>1,2073391485=>1,2073391489=>1,2073391490=>1,2073391492=>1,2073392071=>1,2077011367=>1,2081216490=>1,2081216469=>1,2081216495=>1,2081216503=>1,2081271977=>1,2081271830=>1,2081216454=>1,2081216406=>1,2081215076=>1,2081215053=>1,2081215188=>1,2081216258=>1,2081216396=>1,2081216324=>1,2081272069=>1,2081462310=>1,2083126477=>1,2083124115=>1,2083129191=>1,2083456681=>1,2083456806=>1,2083456682=>1,2083113095=>1,2083113019=>1,2082328258=>1,2082043022=>1,2082668406=>1,2083060098=>1,2083060490=>1,2081215049=>1,2081215004=>1,2081145989=>1,2081145943=>1,2081145994=>1,2081146010=>1,2081146051=>1,2081146032=>1,2081145941=>1,2081145918=>1,2081145793=>1,2081145773=>1,2081145814=>1,2081145821=>1,2081145848=>1,2081145828=>1,2081146060=>1,2081146067=>1,2081150439=>1,2081150245=>1,2081173663=>1,2081214506=>1,2081214708=>1,2081214611=>1,2081149938=>1,2081149914=>1,2081146100=>1,2081146077=>1,2081149728=>1,2081149762=>1,2081149801=>1,2083456813=>1,2084584874=>1,2088239204=>1,2088239199=>1,2088239222=>1,2088239224=>1,2088239286=>1,2088239270=>1,2088239193=>1,2088239175=>1,2087983798=>1,2087968652=>1,2088039143=>1,2088160430=>1,2088239118=>1,2088239114=>1,2088239297=>1,2088239298=>1,2088239576=>1,2088239565=>1,2088239581=>1,2088239590=>1,2088239595=>1,2088239592=>1,2088239553=>1,2088239464=>1,2088239366=>1,2088239341=>1,2088239390=>1,2088239410=>1,2088239446=>1,2087965470=>1,2087395766=>1,2086159113=>1,2085743385=>1,2086159118=>1,2086159136=>1,2086159143=>1,2086159139=>1,2085736692=>1,2085434433=>1,2084588053=>1,2084587863=>1,2084588399=>1,2084741166=>1,2084820740=>1,2084783002=>1,2086159156=>1,2086159158=>1,2086633181=>1,2086631922=>1,2086633402=>1,2087260449=>1,2087342376=>1,2087281308=>1,2086622019=>1,2086526559=>1,2086216654=>1,2086215996=>1,2086313282=>1,2086370226=>1,2086483918=>1,2081145769=>1,2081145764=>1,2078817881=>1,2078804718=>1,2078898202=>1,2078989186=>1,2079077778=>1,2078995322=>1,2078798491=>1,2078798370=>1,2077148063=>1,2077148051=>1,2077149555=>1,2077691878=>1,2078798218=>1,2078752957=>1,2079095358=>1,2079114580=>1,2079211644=>1,2079188426=>1,2079241274=>1,2079255075=>1,2079344651=>1,2079259560=>1,2079177844=>1,2079175240=>1,2079119099=>1,2079116558=>1,2079119336=>1,2079121449=>1,2079155589=>1,2077147695=>1,2077122463=>1,2077104835=>1,2077104224=>1,2077105480=>1,2077105691=>1,2077114555=>1,2077111391=>1,2077104031=>1,2077019886=>1,2077009472=>1,2077008725=>1,2077009766=>1,2077010185=>1,2077011446=>1,2071863398=>1,2077114667=>1,2077114848=>1,2077118560=>1,2077117519=>1,2077119683=>1,2077120298=>1,2077122352=>1,2077120695=>1,2077117256=>1,2077117091=>1,2077115671=>1,2077115458=>1,2077115880=>1,2077115949=>1,2077116668=>1,2079354932=>1,2079532809=>1,2081145513=>1,2081145462=>1,2081145530=>1,2081145535=>1,2081145575=>1,2081145572=>1,2081145448=>1,2081145435=>1,2081145388=>1,2081145387=>1,2081145402=>1,2081145416=>1,2081145433=>1,2081145429=>1,2081145577=>1,2081145601=>1,2081145718=>1,2081145715=>1,2081145722=>1,2081145734=>1,2081145752=>1,2081145740=>1,2081145711=>1,2081145699=>1,2081145647=>1,2081145606=>1,2081145679=>1,2081145685=>1,2081145687=>1,2081145364=>1,2081145319=>1,2080372882=>1,2080158735=>1,2080768999=>1,2080802730=>1,2081129803=>1,2080958186=>1,2079935532=>1,2079935531=>1,2079670336=>1,2079629136=>1,2079674435=>1,2079935521=>1,2079935529=>1,2081129845=>1,2081139714=>1,2081145123=>1,2081145098=>1,2081145182=>1,2081145236=>1,2081145287=>1,2081145259=>1,2081144957=>1,2081144870=>1,2081143981=>1,2081139811=>1,2081144643=>1,2081144790=>1,2081144856=>1,2076999906=>1,2071767157=>1,2036379860=>1,2036250270=>1,2036589582=>1,2036600898=>1,2036686503=>1,2036602859=>1,2035113954=>1,2034848704=>1,2034574830=>1,2034574458=>1,2034574994=>1,2034575962=>1,2034576806=>1,2034576802=>1,2037259818=>1,2038001915=>1,2039250682=>1,2039192634=>1,2039576741=>1,2040881231=>1,2041192440=>1,2040883446=>1,2038965720=>1,2038955856=>1,2038083117=>1,2038002644=>1,2038083332=>1,2038427933=>1,2038430364=>1,2038427945=>1,2034574254=>1,2034573726=>1,2033488501=>1,2033466742=>1,2033488838=>1,2033509683=>1,2033515079=>1,2033512845=>1,2033083816=>1,2032967292=>1,2032848453=>1,2032835909=>1,2032898691=>1,2032898756=>1,2032909315=>1,2032904772=>1,2033626930=>1,2033714919=>1,2034566922=>1,2034566798=>1,2034570758=>1,2034571002=>1,2034572550=>1,2034571578=>1,2034018486=>1,2033827917=>1,2033790629=>1,2033715083=>1,2033797656=>1,2033797802=>1,2033797890=>1,2041402146=>1,2041642621=>1,2047100614=>1,2047083618=>1,2047139923=>1,2047210513=>1,2047270935=>1,2047211289=>1,2045791464=>1,2045770667=>1,2045503318=>1,2045471761=>1,2045534722=>1,2045549502=>1,2045764231=>1,2045610974=>1,2047327723=>1,2047486427=>1,2048610933=>1,2047850321=>1,2050311685=>1,2050319724=>1,2050323511=>1,2050323509=>1,2047845250=>1,2047810081=>1,2047504899=>1,2047499753=>1,2047771394=>1,2047806007=>1,2047809883=>1,2045188803=>1,2045138834=>1,2043217959=>1,2043157791=>1,2043218353=>1,2043222264=>1,2043232068=>1,2043223225=>1,2043155490=>1,2043104602=>1,2042634461=>1,2042068583=>1,2042938647=>1,2042948618=>1,2043100512=>1,2043100208=>1,2043232144=>1,2043447940=>1,2044970910=>1,2044965164=>1,2045065297=>1,2045088385=>1,2045121936=>1,2045119169=>1,2044927514=>1,2044770409=>1,2043610522=>1,2043539119=>1,2043610750=>1,2043672510=>1,2044745291=>1,2032835271=>1,2032834350=>1,2023168016=>1,2023051970=>1,2025856452=>1,2025872482=>1,2026015368=>1,2025984602=>1,2022993377=>1,2022901153=>1,2020147335=>1,2018919314=>1,2021868402=>1,2021884115=>1,2021956597=>1,2021945890=>1,2026072223=>1,2026190098=>1,2026579592=>1,2026571766=>1,2026612254=>1,2026622621=>1,2026624696=>1,2026624668=>1,2026310834=>1,2026304541=>1,2026280450=>1,2026191348=>1,2026301186=>1,2026301250=>1,2026301907=>1,2018870506=>1,2018832299=>1,2017174646=>1,2017174629=>1,2017174771=>1,2017174871=>1,2017176471=>1,2017175541=>1,2017174216=>1,2017174133=>1,2017143991=>1,2017143956=>1,2017144443=>1,2017144476=>1,2017173917=>1,2017173626=>1,2017177084=>1,2017177402=>1,2018830459=>1,2018769172=>1,2018830508=>1,2018830708=>1,2018831996=>1,2018831199=>1,2018755615=>1,2018283088=>1,2017786297=>1,2017779119=>1,2017983743=>1,2017991945=>1,2018265898=>1,2026634454=>1,2026657053=>1,2032690887=>1,2032679502=>1,2032692180=>1,2032692300=>1,2032700370=>1,2032696385=>1,2032263847=>1,2032103510=>1,2032036366=>1,2031744941=>1,2032092850=>1,2032103498=>1,2032103502=>1,2032103501=>1,2032709188=>1,2032714928=>1,2032758345=>1,2032754631=>1,2032771306=>1,2032798044=>1,2032833683=>1,2032807012=>1,2032750692=>1,2032744393=>1,2032716651=>1,2032715122=>1,2032718054=>1,2032726294=>1,2032736379=>1,2031713418=>1,2031656169=>1,2028819034=>1,2028767771=>1,2030599210=>1,2030610997=>1,2030743925=>1,2030719173=>1,2028607074=>1,2028602930=>1,2026823087=>1,2026816733=>1,2026825838=>1,2026983720=>1,2027427708=>1,2027160893=>1,2030753874=>1,2030815634=>1,2031462743=>1,2031242506=>1,2031490250=>1,2031535132=>1,2031549688=>1,2031549681=>1,2031235354=>1,2031162005=>1,2030963020=>1,2030846155=>1,2031061323=>1,2031091349=>1,2031157574=>1,2050339428=>1,2050366178=>1,2067024339=>1,2067024330=>1,2067024642=>1,2067024644=>1,2067024669=>1,2067024654=>1,2067024324=>1,2067024322=>1,2067008885=>1,2067006358=>1,2067010541=>1,2067024209=>1,2067024317=>1,2067024264=>1,2067024680=>1,2067024726=>1,2067045117=>1,2067038723=>1,2067091320=>1,2067194208=>1,2067209925=>1,2067200617=>1,2067024878=>1,2067024833=>1,2067024776=>1,2067024766=>1,2067024785=>1,2067024819=>1,2067024827=>1,2067024820=>1,2066824438=>1,2066821746=>1,2064501869=>1,2064448909=>1,2064501911=>1,2064502331=>1,2064523030=>1,2064521750=>1,2064433420=>1,2064338408=>1,2064167329=>1,2064167240=>1,2064183466=>1,2064185561=>1,2064304706=>1,2064276008=>1,2064544468=>1,2064562784=>1,2065611822=>1,2065601172=>1,2065612195=>1,2065612685=>1,2066817539=>1,2065641223=>1,2065598535=>1,2065582963=>1,2064591912=>1,2064575507=>1,2064594652=>1,2065187227=>1,2065210069=>1,2067210132=>1,2067270525=>1,2070850561=>1,2070829670=>1,2070851493=>1,2070863579=>1,2071191885=>1,2071073167=>1,2070411414=>1,2070351775=>1,2067913111=>1,2067913080=>1,2068330166=>1,2068688642=>1,2070266406=>1,2069738193=>1,2071216706=>1,2071220605=>1,2071602644=>1,2071529704=>1,2071618346=>1,2071767147=>1,2071767189=>1,2017143792=>1,2071473874=>1,2071468243=>1,2071302155=>1,2071292227=>1,2071304409=>1,2071354310=>1,2071421844=>1,2067898254=>1,2067898138=>1,2067322588=>1,2067318859=>1,2067326176=>1,2067331025=>1,2067332510=>1,2067331483=>1,2067318731=>1,2067318680=>1,2067274948=>1,2067274860=>1,2067289291=>1,2067290799=>1,2067303756=>1,2067295971=>1,2067338812=>1,2067339122=>1,2067369154=>1,2067367997=>1,2067380540=>1,2067386283=>1,2067433762=>1,2067387853=>1,2067367945=>1,2067367280=>1,2067345321=>1,2067343868=>1,2067346603=>1,2067348132=>1,2067367251=>1,2064167000=>1,2064091548=>1,2055967340=>1,2055886683=>1,2056079986=>1,2056178921=>1,2056258870=>1,2056219593=>1,2055624358=>1,2055325254=>1,2054806710=>1,2054797302=>1,2054807492=>1,2054807519=>1,2055296308=>1,2055214442=>1,2056261035=>1,2056460391=>1,2057332615=>1,2057098906=>1,2057390736=>1,2057879278=>1,2057991825=>1,2057989601=>1,2057035362=>1,2056971078=>1,2056921545=>1,2056795312=>1,2056931121=>1,2056935970=>1,2056951682=>1,2054522116=>1,2054504489=>1,2050677888=>1,2050661835=>1,2050678495=>1,2050736493=>1,2050928386=>1,2050737400=>1,2050659092=>1,2050658980=>1,2050396932=>1,2050366338=>1,2050398479=>1,2050449491=>1,2050658828=>1,2050646691=>1,2051433884=>1,2051434034=>1,2053516274=>1,2053127016=>1,2053833000=>1,2053907198=>1,2054303917=>1,2054303878=>1,2053127014=>1,2053127012=>1,2052687079=>1,2051454858=>1,2052982862=>1,2052987518=>1,2053127011=>1,2058374691=>1,2058722568=>1,2063075685=>1,2062367141=>1,2063104057=>1,2063104440=>1,2063562762=>1,2063120613=>1,2062316081=>1,2062311788=>1,2061814983=>1,2061782133=>1,2062032970=>1,2062033089=>1,2062038782=>1,2062038724=>1,2063563002=>1,2063661539=>1,2064072346=>1,2064066079=>1,2064076445=>1,2064077332=>1,2064085901=>1,2064079019=>1,2063925322=>1,2063886944=>1,2063706845=>1,2063703920=>1,2063709038=>1,2063771710=>1,2063863280=>1,2061748146=>1,2061740822=>1,2061593124=>1,2061593123=>1,2061593489=>1,2061637060=>1,2061662212=>1,2061647450=>1,2061558730=>1,2061554018=>1,2059411533=>1,2059335268=>1,2059620334=>1,2059928065=>1,2061547434=>1,2061536626=>1,2061664507=>1,2061665419=>1,2061677875=>1,2061675274=>1,2061683526=>1,2061711498=>1,2061740006=>1,2061739023=>1,2061674676=>1,2061674215=>1,2061667892=>1,2061667651=>1,2061668781=>1,2061670402=>1,2061671644=>1,2071847556=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-23.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2088239175=>1,2088239173=>1,2088239193=>1,2088239199=>1,2088239270=>1,2088239255=>1,2088239118=>1,2088239114=>1,2087965470=>1,2087342376=>1,2087968652=>1,2087983798=>1,2088160430=>1,2088039143=>1,2088239286=>1,2088239297=>1,2088239576=>1,2088239565=>1,2088239581=>1,2088239590=>1,2088239595=>1,2088239592=>1,2088239464=>1,2088239410=>1,2088239303=>1,2088239298=>1,2088239318=>1,2088239341=>1,2088239390=>1,2088239366=>1,2087281308=>1,2087260449=>1,2086159113=>1,2085743385=>1,2086159118=>1,2086159124=>1,2086159126=>1,2086159125=>1,2085736692=>1,2085701797=>1,2084588053=>1,2084587863=>1,2084588399=>1,2084741166=>1,2084820740=>1,2084783002=>1,2086159136=>1,2086159139=>1,2086526559=>1,2086483918=>1,2086622019=>1,2086631922=>1,2086633402=>1,2086633181=>1,2086370226=>1,2086313282=>1,2086159156=>1,2086159143=>1,2086159158=>1,2086215996=>1,2086216654=>1,2088239597=>1,2088239602=>1,2088240321=>1,2088240311=>1,2088240417=>1,2088240433=>1,2088240463=>1,2088240451=>1,2088240306=>1,2088240265=>1,2088240171=>1,2088240159=>1,2088240175=>1,2088240187=>1,2088240251=>1,2088240223=>1,2088240482=>1,2088240486=>1,2088240707=>1,2088240696=>1,2088240709=>1,2088240731=>1,2088240778=>1,2088240742=>1,2088240623=>1,2088240558=>1,2088240504=>1,2088240497=>1,2088240507=>1,2088240512=>1,2088240538=>1,2088240535=>1,2088240152=>1,2088240145=>1,2088239744=>1,2088239737=>1,2088239768=>1,2088239821=>1,2088239892=>1,2088239845=>1,2088239732=>1,2088239716=>1,2088239646=>1,2088239644=>1,2088239661=>1,2088239663=>1,2088239685=>1,2088239678=>1,2088239911=>1,2088239912=>1,2088240094=>1,2088240092=>1,2088240102=>1,2088240111=>1,2088240140=>1,2088240112=>1,2088240009=>1,2088239998=>1,2088239935=>1,2088239917=>1,2088239942=>1,2088239967=>1,2088239980=>1,2084584874=>1,2083456813=>1,2081145715=>1,2081145711=>1,2081145718=>1,2081145722=>1,2081145741=>1,2081145740=>1,2081145705=>1,2081145703=>1,2081145685=>1,2081145679=>1,2081145687=>1,2081145698=>1,2081145702=>1,2081145699=>1,2081145752=>1,2081145754=>1,2081145918=>1,2081145848=>1,2081145941=>1,2081145943=>1,2081145994=>1,2081145989=>1,2081145828=>1,2081145821=>1,2081145764=>1,2081145758=>1,2081145769=>1,2081145773=>1,2081145814=>1,2081145793=>1,2081145672=>1,2081145647=>1,2081145269=>1,2081145259=>1,2081145287=>1,2081145319=>1,2081145367=>1,2081145364=>1,2081145236=>1,2081145182=>1,2081144957=>1,2081144870=>1,2081145041=>1,2081145098=>1,2081145128=>1,2081145123=>1,2081145387=>1,2081145388=>1,2081145535=>1,2081145530=>1,2081145572=>1,2081145575=>1,2081145601=>1,2081145577=>1,2081145513=>1,2081145462=>1,2081145416=>1,2081145392=>1,2081145429=>1,2081145433=>1,2081145435=>1,2081145996=>1,2081146010=>1,2081272109=>1,2081272069=>1,2081272140=>1,2081272182=>1,2082043022=>1,2081462310=>1,2081271977=>1,2081271900=>1,2081216483=>1,2081216463=>1,2081216486=>1,2081216490=>1,2081271830=>1,2081216496=>1,2082328258=>1,2082668406=>1,2083126477=>1,2083124663=>1,2083129191=>1,2083456681=>1,2083456806=>1,2083456682=>1,2083124115=>1,2083113095=>1,2083060490=>1,2083060098=>1,2083113002=>1,2083113019=>1,2083113038=>1,2081216454=>1,2081216406=>1,2081149914=>1,2081149889=>1,2081149938=>1,2081150245=>1,2081173663=>1,2081150439=>1,2081149801=>1,2081149728=>1,2081146051=>1,2081146032=>1,2081146067=>1,2081146077=>1,2081146100=>1,2081146086=>1,2081214506=>1,2081214708=>1,2081216287=>1,2081216273=>1,2081216324=>1,2081216326=>1,2081216396=>1,2081216335=>1,2081216258=>1,2081215151=>1,2081215053=>1,2081215049=>1,2081215076=>1,2081215145=>1,2081215150=>1,2088240839=>1,2088240851=>1,2088243643=>1,2088243592=>1,2088243661=>1,2088243669=>1,2088243699=>1,2088243673=>1,2088243590=>1,2088243582=>1,2088243510=>1,2088243509=>1,2088243519=>1,2088243548=>1,2088243563=>1,2088243552=>1,2088243700=>1,2088243715=>1,2088243881=>1,2088243862=>1,2088243890=>1,2088243891=>1,2088243893=>1,2088243892=>1,2088243786=>1,2088243785=>1,2088243764=>1,2088243750=>1,2088243766=>1,2088243768=>1,2088243780=>1,2088243774=>1,2088243467=>1,2088243453=>1,2088243192=>1,2088243176=>1,2088243253=>1,2088243264=>1,2088243273=>1,2088243271=>1,2088243087=>1,2088243086=>1,2088243041=>1,2088243035=>1,2088243055=>1,2088243063=>1,2088243081=>1,2088243074=>1,2088243286=>1,2088243303=>1,2088243405=>1,2088243398=>1,2088243406=>1,2088243429=>1,2088243451=>1,2088243434=>1,2088243395=>1,2088243385=>1,2088243309=>1,2088243307=>1,2088243313=>1,2088243348=>1,2088243361=>1,2088243899=>1,2088243905=>1,2088247870=>1,2088247828=>1,2088247897=>1,2088247979=>1,2088248004=>1,2088247990=>1,2088247796=>1,2088247792=>1,2088247740=>1,2088247720=>1,2088247749=>1,2088247760=>1,2088247782=>1,2088247778=>1,2088248020=>1,2088248080=>1,2088248330=>1,2088248298=>1,2088248369=>1,2088248388=>1,2088248420=>1,2088248419=>1,2088248238=>1,2088248234=>1,2088248117=>1,2088248104=>1,2088248136=>1,2088248177=>1,2088248224=>1,2088247717=>1,2088247699=>1,2088247409=>1,2088247400=>1,2088247411=>1,2088247441=>1,2088247481=>1,2088247444=>1,2088247359=>1,2088243951=>1,2088243922=>1,2088243919=>1,2088243927=>1,2088243940=>1,2088243950=>1,2088243946=>1,2088247500=>1,2088247515=>1,2088247633=>1,2088247608=>1,2088247634=>1,2088247640=>1,2088247679=>1,2088247658=>1,2088247603=>1,2088247573=>1,2088247538=>1,2088247535=>1,2088247542=>1,2088247545=>1,2088247549=>1,2088243026=>1,2088242981=>1,2088241743=>1,2088241673=>1,2088241752=>1,2088241753=>1,2088241844=>1,2088241843=>1,2088241671=>1,2088241668=>1,2088241539=>1,2088241536=>1,2088241578=>1,2088241585=>1,2088241653=>1,2088241645=>1,2088241869=>1,2088241878=>1,2088242013=>1,2088241972=>1,2088242044=>1,2088242057=>1,2088242083=>1,2088242071=>1,2088241962=>1,2088241961=>1,2088241883=>1,2088241882=>1,2088241931=>1,2088241946=>1,2088241956=>1,2088241952=>1,2088241516=>1,2088241509=>1,2088241109=>1,2088241076=>1,2088241182=>1,2088241222=>1,2088241227=>1,2088241223=>1,2088241069=>1,2088241045=>1,2088240902=>1,2088240872=>1,2088240906=>1,2088240917=>1,2088240986=>1,2088240944=>1,2088241248=>1,2088241262=>1,2088241414=>1,2088241402=>1,2088241421=>1,2088241431=>1,2088241486=>1,2088241477=>1,2088241389=>1,2088241386=>1,2088241321=>1,2088241267=>1,2088241323=>1,2088241350=>1,2088241367=>1,2088242122=>1,2088242133=>1,2088242685=>1,2088242681=>1,2088242694=>1,2088242699=>1,2088242740=>1,2088242703=>1,2088242675=>1,2088242672=>1,2088242621=>1,2088242613=>1,2088242637=>1,2088242648=>1,2088242658=>1,2088242656=>1,2088242766=>1,2088242784=>1,2088242906=>1,2088242890=>1,2088242912=>1,2088242921=>1,2088242973=>1,2088242965=>1,2088242875=>1,2088242857=>1,2088242806=>1,2088242793=>1,2088242822=>1,2088242831=>1,2088242850=>1,2088242599=>1,2088242577=>1,2088242214=>1,2088242213=>1,2088242219=>1,2088242227=>1,2088242309=>1,2088242293=>1,2088242210=>1,2088242209=>1,2088242147=>1,2088242143=>1,2088242152=>1,2088242190=>1,2088242208=>1,2088242194=>1,2088242316=>1,2088242318=>1,2088242501=>1,2088242454=>1,2088242502=>1,2088242511=>1,2088242574=>1,2088242513=>1,2088242414=>1,2088242398=>1,2088242344=>1,2088242343=>1,2088242361=>1,2088242365=>1,2088242381=>1,2081144856=>1,2081144790=>1,2071354310=>1,2071304409=>1,2071421844=>1,2071462429=>1,2071471324=>1,2071468243=>1,2071304407=>1,2071302155=>1,2070943042=>1,2070863579=>1,2071191885=>1,2071216706=>1,2071292227=>1,2071220605=>1,2071473874=>1,2071529704=>1,2072091025=>1,2072077947=>1,2072113325=>1,2072113326=>1,2072130082=>1,2072124684=>1,2071921365=>1,2071863398=>1,2071618346=>1,2071602644=>1,2071767147=>1,2071767157=>1,2071847556=>1,2071767189=>1,2070851493=>1,2070850561=>1,2067369154=>1,2067367945=>1,2067370567=>1,2067380540=>1,2067390762=>1,2067386283=>1,2067367280=>1,2067348132=>1,2067331483=>1,2067331025=>1,2067332510=>1,2067339122=>1,2067345321=>1,2067343868=>1,2067431499=>1,2067433762=>1,2070266406=>1,2069738193=>1,2070411291=>1,2070411414=>1,2070838761=>1,2070829670=>1,2068688642=>1,2068330166=>1,2067898138=>1,2067488360=>1,2067898266=>1,2067913080=>1,2067913111=>1,2072299425=>1,2072428406=>1,2073391305=>1,2073391295=>1,2073391306=>1,2073391308=>1,2073391339=>1,2073391316=>1,2073391294=>1,2073391293=>1,2073391222=>1,2073391221=>1,2073391233=>1,2073391245=>1,2073391282=>1,2073391274=>1,2073391368=>1,2073391369=>1,2073391406=>1,2073391401=>1,2073391412=>1,2073391416=>1,2073391426=>1,2073391423=>1,2073391400=>1,2073391397=>1,2073391381=>1,2073391373=>1,2073391383=>1,2073391391=>1,2073391392=>1,2073391212=>1,2073391210=>1,2072721642=>1,2072719044=>1,2072722164=>1,2072722259=>1,2072722274=>1,2072722261=>1,2072696926=>1,2072696925=>1,2072518218=>1,2072517034=>1,2072528796=>1,2072651034=>1,2072696923=>1,2072664450=>1,2072722418=>1,2072729684=>1,2073391166=>1,2073391162=>1,2073391183=>1,2073391191=>1,2073391203=>1,2073391202=>1,2073391160=>1,2073391134=>1,2073198607=>1,2073188767=>1,2073391120=>1,2073391128=>1,2073391130=>1,2067326176=>1,2067322588=>1,2063706845=>1,2063661539=>1,2063707180=>1,2063709038=>1,2063863280=>1,2063771710=>1,2063563002=>1,2063562762=>1,2063104440=>1,2063104057=>1,2063120611=>1,2063120613=>1,2063126889=>1,2063124755=>1,2063886944=>1,2063925322=>1,2064167329=>1,2064167240=>1,2064183466=>1,2064304706=>1,2064433420=>1,2064338408=>1,2064167000=>1,2064166979=>1,2064072346=>1,2064066079=>1,2064077332=>1,2064079019=>1,2064091548=>1,2064085901=>1,2063075685=>1,2062367141=>1,2061668781=>1,2061667892=>1,2061670402=>1,2061671644=>1,2061674676=>1,2061674215=>1,2061667651=>1,2061665419=>1,2061637060=>1,2061593489=>1,2061647450=>1,2061651426=>1,2061664507=>1,2061662212=>1,2061675274=>1,2061677875=>1,2062032970=>1,2061814983=>1,2062033089=>1,2062038724=>1,2062311788=>1,2062038782=>1,2061782133=>1,2061748146=>1,2061711498=>1,2061683526=>1,2061739023=>1,2061740006=>1,2061740822=>1,2064448909=>1,2064501869=>1,2067024827=>1,2067024820=>1,2067024833=>1,2067024878=>1,2067045117=>1,2067038723=>1,2067024819=>1,2067024785=>1,2067024644=>1,2067024375=>1,2067024669=>1,2067024726=>1,2067024776=>1,2067024766=>1,2067091320=>1,2067194208=>1,2067295971=>1,2067290799=>1,2067314603=>1,2067318680=>1,2067318859=>1,2067318731=>1,2067289291=>1,2067274948=>1,2067209925=>1,2067200617=>1,2067210132=>1,2067270525=>1,2067274860=>1,2067024374=>1,2067024339=>1,2065582963=>1,2065174989=>1,2065598535=>1,2065601172=>1,2065612195=>1,2065611822=>1,2065174663=>1,2064594652=>1,2064502331=>1,2064501911=>1,2064523030=>1,2064544468=>1,2064591912=>1,2064575507=>1,2065612685=>1,2065641223=>1,2067024317=>1,2067024264=>1,2067024324=>1,2067024330=>1,2067024337=>1,2067024336=>1,2067024203=>1,2067010541=>1,2066821746=>1,2066817539=>1,2066824438=>1,2067006358=>1,2067008885=>1,2073391427=>1,2073391428=>1,2076999573=>1,2076999511=>1,2076999607=>1,2076999654=>1,2076999906=>1,2076999711=>1,2076999493=>1,2076999476=>1,2076999227=>1,2076994676=>1,2076999277=>1,2076999312=>1,2076999463=>1,2076999329=>1,2077008725=>1,2077009472=>1,2077114555=>1,2077111391=>1,2077114667=>1,2077114848=>1,2077115671=>1,2077115458=>1,2077105691=>1,2077105480=>1,2077011367=>1,2077010185=>1,2077011446=>1,2077104031=>1,2077104835=>1,2077104224=>1,2076977165=>1,2076831227=>1,2075419604=>1,2075366288=>1,2075431508=>1,2075476121=>1,2075857000=>1,2075666434=>1,2075344735=>1,2075158093=>1,2075026821=>1,2075019661=>1,2075054739=>1,2075056583=>1,2075079986=>1,2075076466=>1,2075875784=>1,2075942573=>1,2076775035=>1,2076774781=>1,2076792466=>1,2076815718=>1,2076828933=>1,2076819017=>1,2076708830=>1,2076473462=>1,2076084343=>1,2076032666=>1,2076117858=>1,2076374543=>1,2076394624=>1,2077115880=>1,2077115949=>1,2079670336=>1,2079629136=>1,2079674435=>1,2079935521=>1,2079935531=>1,2079935529=>1,2079532809=>1,2079354932=>1,2079188426=>1,2079177844=>1,2079211644=>1,2079241274=>1,2079344651=>1,2079259560=>1,2079935532=>1,2079935534=>1,2081129845=>1,2081129803=>1,2081129919=>1,2081139714=>1,2081144628=>1,2081143981=>1,2080958186=>1,2080802730=>1,2080158735=>1,2079935535=>1,2080315159=>1,2080372882=>1,2080768999=>1,2079175240=>1,2079155589=>1,2077122352=>1,2077120695=>1,2077122463=>1,2077147695=>1,2077148063=>1,2077148051=>1,2077120407=>1,2077120298=>1,2077117091=>1,2077116668=>1,2077117256=>1,2077117519=>1,2077119683=>1,2077118560=>1,2077149555=>1,2077691878=>1,2079095358=>1,2079077778=>1,2079114580=>1,2079116558=>1,2079121449=>1,2079119099=>1,2078995322=>1,2078989186=>1,2078795190=>1,2078752957=>1,2078798218=>1,2078804718=>1,2078817881=>1,2074952858=>1,2074952321=>1,2073391956=>1,2073391954=>1,2073391958=>1,2073391959=>1,2073391961=>1,2073391960=>1,2073391952=>1,2073391940=>1,2073391900=>1,2073391896=>1,2073391904=>1,2073391905=>1,2073391925=>1,2073391907=>1,2073391964=>1,2073391974=>1,2073392063=>1,2073392053=>1,2073392071=>1,2073392080=>1,2073392111=>1,2073392088=>1,2073392045=>1,2073392024=>1,2073391995=>1,2073391992=>1,2073391998=>1,2073391999=>1,2073392022=>1,2073392016=>1,2073391884=>1,2073391879=>1,2073391490=>1,2073391489=>1,2073391492=>1,2073391527=>1,2073391532=>1,2073391528=>1,2073391487=>1,2073391485=>1,2073391443=>1,2073391436=>1,2073391450=>1,2073391466=>1,2073391478=>1,2073391473=>1,2073391534=>1,2073391539=>1,2073391605=>1,2073391593=>1,2073391608=>1,2073391609=>1,2073391614=>1,2073391612=>1,2073391587=>1,2073391585=>1,2073391553=>1,2073391542=>1,2073391567=>1,2073391574=>1,2073391575=>1,2073392114=>1,2073541366=>1,2074227058=>1,2074222702=>1,2074261062=>1,2074261063=>1,2074405084=>1,2074291743=>1,2074220565=>1,2074126255=>1,2074106926=>1,2074106925=>1,2074106939=>1,2074106988=>1,2074118543=>1,2074107034=>1,2074412033=>1,2074427907=>1,2074536460=>1,2074535751=>1,2074536958=>1,2074734113=>1,2074945265=>1,2074822377=>1,2074495780=>1,2074494070=>1,2074460280=>1,2074428294=>1,2074466158=>1,2074466181=>1,2074486732=>1,2074106913=>1,2074106900=>1,2073912204=>1,2073912203=>1,2073921838=>1,2073922582=>1,2073923434=>1,2073922902=>1,2073904242=>1,2073903766=>1,2073640805=>1,2073568916=>1,2073805749=>1,2073806229=>1,2073871054=>1,2073870660=>1,2073923566=>1,2073925410=>1,2074063573=>1,2074063434=>1,2074106885=>1,2074106886=>1,2074106896=>1,2074106895=>1,2073961100=>1,2073955159=>1,2073925602=>1,2073925442=>1,2073927314=>1,2073940286=>1,2073946506=>1,2061593124=>1,);?>
1
+ <?php return array(2088259812=>2088259813,2088259732=>2088259733,2088259364=>2088259365,2088258908=>2088258909,2088258712=>2088258713,2088258278=>2088258279,2088258004=>2088258005,2088257930=>2088257931,2088257864=>2088257865,2088257624=>2088257625,2088256196=>2088256197,2088255860=>2088255861,2088253708=>2088253709,2088253096=>2088253097,2088252618=>2088252619,2088252418=>2088252419,2088252310=>2088252311,2088251728=>2088251729,2088250540=>2088250541,2088249716=>2088249717,2088249628=>2088249629,2088243950=>2088243951,2088243892=>2088243893,2088241882=>2088241883,2088241752=>2088241753,2088241222=>2088241223,2088240696=>2088240697,2088240486=>2088240487,2088255508=>1,2088255376=>1,2088255577=>1,2088255723=>1,2088255701=>1,2088255352=>1,2088255364=>1,2088255410=>1,2088255428=>1,2088255491=>1,2088255336=>1,2088255545=>1,2088255486=>1,2088255472=>1,2088255426=>1,2088255499=>1,2088255445=>1,2088255424=>1,2088255240=>1,2088254939=>1,2088254916=>1,2088254947=>1,2088254966=>1,2088254978=>1,2088254974=>1,2088254909=>1,2088254904=>1,2088254714=>1,2088254686=>1,2088254774=>1,2088254796=>1,2088254867=>1,2088254854=>1,2088255028=>1,2088255090=>1,2088255731=>1,2088255218=>1,2088255243=>1,2088255267=>1,2088255291=>1,2088255275=>1,2088255189=>1,2088255172=>1,2088255105=>1,2088255093=>1,2088255110=>1,2088255138=>1,2088255152=>1,2088255148=>1,2088255324=>1,2088255854=>1,2088256595=>1,2088256573=>1,2088256605=>1,2088256610=>1,2088256632=>1,2088256630=>1,2088256533=>1,2088256523=>1,2088256439=>1,2088256410=>1,2088256479=>1,2088256493=>1,2088256518=>1,2088256496=>1,2088256650=>1,2088256698=>1,2088257048=>1,2088257027=>1,2088257059=>1,2088257063=>1,2088257084=>1,2088257079=>1,2088256998=>1,2088256979=>1,2088256761=>1,2088256719=>1,2088256843=>1,2088256957=>1,2088256973=>1,2088256368=>1,2088256314=>1,2088255883=>1,2088255881=>1,2088255884=>1,2088255891=>1,2088255964=>1,2088255931=>1,2088255870=>1,2088257094=>1,2088255839=>1,2088255824=>1,2088255853=>1,2088254676=>1,2088255862=>1,2088256030=>1,2088256042=>1,2088256231=>1,2088256227=>1,2088256232=>1,2088256238=>1,2088256273=>1,2088256246=>1,2088256215=>1,2088256191=>1,2088256075=>1,2088256049=>1,2088256113=>1,2088256122=>1,2088256174=>1,2088255737=>1,2088254480=>1,2088252964=>1,2088252962=>1,2088252972=>1,2088252983=>1,2088253048=>1,2088253023=>1,2088252957=>1,2088252935=>1,2088252874=>1,2088252851=>1,2088252880=>1,2088252904=>1,2088252922=>1,2088252921=>1,2088253069=>1,2088253088=>1,2088253298=>1,2088253257=>1,2088253307=>1,2088253311=>1,2088253325=>1,2088253320=>1,2088253240=>1,2088253202=>1,2088253099=>1,2088253091=>1,2088253107=>1,2088253121=>1,2088253144=>1,2088252835=>1,2088252796=>1,2088252403=>1,2088252396=>1,2088252427=>1,2088252456=>1,2088252475=>1,2088252461=>1,2088252393=>1,2088252374=>1,2088252321=>1,2088252277=>1,2088252342=>1,2088252350=>1,2088252357=>1,2088252477=>1,2088252515=>1,2088252702=>1,2088252676=>1,2088252722=>1,2088252730=>1,2088252763=>1,2088252748=>1,2088252661=>1,2088252646=>1,2088252528=>1,2088252517=>1,2088252537=>1,2088252544=>1,2088252616=>1,2088253341=>1,2088253363=>1,2088254090=>1,2088254084=>1,2088254103=>1,2088254108=>1,2088254262=>1,2088254122=>1,2088254031=>1,2088254023=>1,2088253958=>1,2088253877=>1,2088253990=>1,2088253999=>1,2088254002=>1,2088254289=>1,2088254317=>1,2088254565=>1,2088254550=>1,2088254583=>1,2088254600=>1,2088254658=>1,2088254630=>1,2088254526=>1,2088254482=>1,2088254367=>1,2088254320=>1,2088254399=>1,2088254468=>1,2088257110=>1,2088253874=>1,2088253862=>1,2088253577=>1,2088253558=>1,2088253586=>1,2088253619=>1,2088253642=>1,2088253635=>1,2088253549=>1,2088253546=>1,2088253408=>1,2088253375=>1,2088253411=>1,2088253446=>1,2088253490=>1,2088253706=>1,2088253722=>1,2088253823=>1,2088253818=>1,2088253827=>1,2088253831=>1,2088253857=>1,2088253852=>1,2088253810=>1,2088253808=>1,2088253728=>1,2088253724=>1,2088253734=>1,2088253770=>1,2088253779=>1,2088254664=>1,2088257181=>1,2088259487=>1,2088259478=>1,2088259509=>1,2088259514=>1,2088259529=>1,2088259523=>1,2088259475=>1,2088259469=>1,2088259382=>1,2088259381=>1,2088259389=>1,2088259390=>1,2088259411=>1,2088259401=>1,2088259535=>1,2088259568=>1,2088259777=>1,2088259704=>1,2088259779=>1,2088259794=>1,2088259886=>1,2088259846=>1,2088259696=>1,2088259641=>1,2088259597=>1,2088259590=>1,2088259600=>1,2088259608=>1,2088259611=>1,2088259379=>1,2088259373=>1,2088258999=>1,2088258990=>1,2088259024=>1,2088259063=>1,2088259083=>1,2088259064=>1,2088258965=>1,2088258934=>1,2088258845=>1,2088258827=>1,2088258854=>1,2088258858=>1,2088258884=>1,2088258864=>1,2088259098=>1,2088259102=>1,2088259279=>1,2088259271=>1,2088259315=>1,2088259319=>1,2088259358=>1,2088259334=>1,2088259252=>1,2088259224=>1,2088259184=>1,2088259153=>1,2088259191=>1,2088259214=>1,2088259221=>1,2088259908=>1,2088259949=>1,2088261221=>1,2088261202=>1,2088261227=>1,2088261234=>1,2088261268=>1,2088261244=>1,2088261162=>1,2088261114=>1,2088261005=>1,2088261003=>1,2088261042=>1,2088261097=>1,2088261105=>1,2088261101=>1,2088261306=>1,2088261331=>1,2088261536=>1,2088261514=>1,2088261538=>1,2088261547=>1,2088261577=>1,2088261553=>1,2088261478=>1,2088261449=>1,2088261390=>1,2088261384=>1,2088261397=>1,2088261408=>1,2088261414=>1,2088260977=>1,2088260901=>1,2088260280=>1,2088260185=>1,2088260348=>1,2088260364=>1,2088260444=>1,2088260367=>1,2088260124=>1,2088260045=>1,2088259998=>1,2088259968=>1,2088260007=>1,2088260028=>1,2088260039=>1,2088260454=>1,2088260507=>1,2088260716=>1,2088260713=>1,2088260733=>1,2088260808=>1,2088260868=>1,2088260859=>1,2088260641=>1,2088260611=>1,2088260544=>1,2088260533=>1,2088260559=>1,2088260561=>1,2088260588=>1,2088258810=>1,2088258806=>1,2088257630=>1,2088257622=>1,2088257632=>1,2088257637=>1,2088257649=>1,2088257645=>1,2088257576=>1,2088257565=>1,2088257473=>1,2088257460=>1,2088257490=>1,2088257503=>1,2088257543=>1,2088257540=>1,2088257685=>1,2088257688=>1,2088257826=>1,2088257807=>1,2088257836=>1,2088257846=>1,2088257911=>1,2088257889=>1,2088257803=>1,2088257771=>1,2088257725=>1,2088257717=>1,2088257736=>1,2088257747=>1,2088257759=>1,2088257449=>1,2088257437=>1,2088257234=>1,2088257186=>1,2088257249=>1,2088257272=>1,2088257289=>1,2088257282=>1,2088252253=>1,2088257164=>1,2088257131=>1,2088257122=>1,2088257139=>1,2088257141=>1,2088257162=>1,2088257290=>1,2088257302=>1,2088257375=>1,2088257372=>1,2088257377=>1,2088257419=>1,2088257430=>1,2088257429=>1,2088257370=>1,2088257363=>1,2088257310=>1,2088257308=>1,2088257330=>1,2088257339=>1,2088257341=>1,2088257935=>1,2088257945=>1,2088258578=>1,2088258576=>1,2088258581=>1,2088258604=>1,2088258617=>1,2088258612=>1,2088258555=>1,2088258553=>1,2088258469=>1,2088258461=>1,2088258473=>1,2088258482=>1,2088258517=>1,2088258507=>1,2088258618=>1,2088258641=>1,2088258737=>1,2088258728=>1,2088258753=>1,2088258761=>1,2088258797=>1,2088258788=>1,2088258726=>1,2088258725=>1,2088258682=>1,2088258672=>1,2088258694=>1,2088258703=>1,2088258704=>1,2088258447=>1,2088258414=>1,2088258127=>1,2088258115=>1,2088258129=>1,2088258165=>1,2088258186=>1,2088258179=>1,2088258101=>1,2088258056=>1,2088258012=>1,2088257962=>1,2088258029=>1,2088258035=>1,2088258044=>1,2088258200=>1,2088258216=>1,2088258337=>1,2088258333=>1,2088258361=>1,2088258370=>1,2088258381=>1,2088258379=>1,2088258330=>1,2088258320=>1,2088258257=>1,2088258240=>1,2088258264=>1,2088258285=>1,2088258311=>1,2088257114=>1,2088252055=>1,2088242574=>1,2088242513=>1,2088242599=>1,2088242613=>1,2088242642=>1,2088242621=>1,2088242511=>1,2088242502=>1,2088242398=>1,2088242385=>1,2088242414=>1,2088242417=>1,2088242498=>1,2088242454=>1,2088242648=>1,2088242656=>1,2088242740=>1,2088242703=>1,2088242743=>1,2088242766=>1,2088242782=>1,2088242780=>1,2088242699=>1,2088242694=>1,2088242672=>1,2088242658=>1,2088242675=>1,2088242681=>1,2088242685=>1,2088242381=>1,2088242365=>1,2088242122=>1,2088242100=>1,2088242133=>1,2088242143=>1,2088242152=>1,2088242147=>1,2088242083=>1,2088242057=>1,2088241956=>1,2088241952=>1,2088241961=>1,2088241972=>1,2088242044=>1,2088242013=>1,2088242190=>1,2088242194=>1,2088242318=>1,2088242316=>1,2088242343=>1,2088242344=>1,2088242361=>1,2088242354=>1,2088242309=>1,2088242293=>1,2088242210=>1,2088242209=>1,2088242213=>1,2088242214=>1,2088242227=>1,2088242784=>1,2088242791=>1,2088243385=>1,2088243361=>1,2088243398=>1,2088243405=>1,2088243429=>1,2088243406=>1,2088243348=>1,2088243327=>1,2088243286=>1,2088243273=>1,2088243303=>1,2088243309=>1,2088243324=>1,2088243313=>1,2088243433=>1,2088243434=>1,2088243552=>1,2088243548=>1,2088243582=>1,2088243585=>1,2088243600=>1,2088243592=>1,2088243519=>1,2088243510=>1,2088243451=>1,2088243438=>1,2088243453=>1,2088243467=>1,2088243509=>1,2088243271=>1,2088243264=>1,2088242890=>1,2088242880=>1,2088242905=>1,2088242906=>1,2088242921=>1,2088242912=>1,2088242875=>1,2088242867=>1,2088242822=>1,2088242806=>1,2088242831=>1,2088242850=>1,2088242864=>1,2088242857=>1,2088242949=>1,2088242965=>1,2088243109=>1,2088243087=>1,2088243113=>1,2088243176=>1,2088243253=>1,2088243192=>1,2088243081=>1,2088243074=>1,2088242981=>1,2088242973=>1,2088243026=>1,2088243035=>1,2088243063=>1,2088241946=>1,2088241931=>1,2088240171=>1,2088240159=>1,2088240175=>1,2088240187=>1,2088240251=>1,2088240223=>1,2088240152=>1,2088240146=>1,2088240102=>1,2088240094=>1,2088240111=>1,2088240112=>1,2088240145=>1,2088240140=>1,2088240265=>1,2088240306=>1,2088240441=>1,2088240433=>1,2088240446=>1,2088240451=>1,2088240482=>1,2088240463=>1,2088240425=>1,2088240417=>1,2088240321=>1,2088240311=>1,2088240325=>1,2088240339=>1,2088240356=>1,2088240092=>1,2088240091=>1,2088239737=>1,2088239732=>1,2088239744=>1,2088239768=>1,2088239827=>1,2088239821=>1,2088239720=>1,2088239685=>1,2088239644=>1,2088239602=>1,2088239646=>1,2088239661=>1,2088239678=>1,2088239663=>1,2088239892=>1,2088239911=>1,2088239967=>1,2088239960=>1,2088239980=>1,2088239998=>1,2088240020=>1,2088240009=>1,2088239959=>1,2088239948=>1,2088239917=>1,2088239912=>1,2088239935=>1,2088239942=>1,2088239944=>1,2088240497=>1,2088240504=>1,2088241421=>1,2088241414=>1,2088241477=>1,2088241486=>1,2088241536=>1,2088241509=>1,2088241402=>1,2088241389=>1,2088241262=>1,2088241248=>1,2088241267=>1,2088241323=>1,2088241386=>1,2088241350=>1,2088241539=>1,2088241578=>1,2088241843=>1,2088241824=>1,2088241844=>1,2088241869=>1,2088241915=>1,2088241878=>1,2088241801=>1,2088241743=>1,2088241645=>1,2088241585=>1,2088241653=>1,2088241668=>1,2088241671=>1,2088241227=>1,2088241182=>1,2088240707=>1,2088240652=>1,2088240709=>1,2088240716=>1,2088240742=>1,2088240731=>1,2088240623=>1,2088240578=>1,2088240512=>1,2088240507=>1,2088240535=>1,2088240538=>1,2088240558=>1,2088240540=>1,2088240778=>1,2088240839=>1,2088241018=>1,2088240986=>1,2088241045=>1,2088241069=>1,2088241109=>1,2088241076=>1,2088240944=>1,2088240917=>1,2088240861=>1,2088240851=>1,2088240872=>1,2088240902=>1,2088240906=>1,2088243643=>1,2088243669=>1,2088250593=>1,2088250571=>1,2088250600=>1,2088250605=>1,2088250619=>1,2088250613=>1,2088250556=>1,2088250539=>1,2088250428=>1,2088250425=>1,2088250447=>1,2088250493=>1,2088250517=>1,2088250508=>1,2088250625=>1,2088250655=>1,2088250753=>1,2088250746=>1,2088250784=>1,2088250802=>1,2088250839=>1,2088250824=>1,2088250741=>1,2088250724=>1,2088250694=>1,2088250685=>1,2088250707=>1,2088250711=>1,2088250718=>1,2088250412=>1,2088250405=>1,2088249653=>1,2088249636=>1,2088249671=>1,2088249678=>1,2088249711=>1,2088249706=>1,2088249633=>1,2088249627=>1,2088249510=>1,2088249506=>1,2088249518=>1,2088249555=>1,2088249610=>1,2088249575=>1,2088249742=>1,2088249749=>1,2088250375=>1,2088249854=>1,2088250385=>1,2088250387=>1,2088250403=>1,2088250392=>1,2088249848=>1,2088249838=>1,2088249807=>1,2088249768=>1,2088249810=>1,2088249823=>1,2088249825=>1,2088250909=>1,2088250966=>1,2088251829=>1,2088251624=>1,2088251832=>1,2088251854=>1,2088251877=>1,2088251862=>1,2088251623=>1,2088251612=>1,2088251528=>1,2088251514=>1,2088251536=>1,2088251550=>1,2088251585=>1,2088251559=>1,2088251885=>1,2088251913=>1,2088252060=>1,2088239597=>1,2088252115=>1,2088252124=>1,2088252171=>1,2088252140=>1,2088252050=>1,2088252026=>1,2088251949=>1,2088251943=>1,2088251980=>1,2088252002=>1,2088252016=>1,2088251506=>1,2088251503=>1,2088251181=>1,2088251121=>1,2088251188=>1,2088251201=>1,2088251206=>1,2088251205=>1,2088251108=>1,2088251107=>1,2088251027=>1,2088250999=>1,2088251036=>1,2088251060=>1,2088251088=>1,2088251065=>1,2088251209=>1,2088251233=>1,2088251454=>1,2088251399=>1,2088251460=>1,2088251471=>1,2088251486=>1,2088251482=>1,2088251369=>1,2088251354=>1,2088251282=>1,2088251259=>1,2088251304=>1,2088251317=>1,2088251321=>1,2088249497=>1,2088249484=>1,2088247556=>1,2088247549=>1,2088247573=>1,2088247603=>1,2088247633=>1,2088247608=>1,2088247545=>1,2088247542=>1,2088247499=>1,2088247483=>1,2088247500=>1,2088247515=>1,2088247538=>1,2088247535=>1,2088247634=>1,2088247640=>1,2088247778=>1,2088247760=>1,2088247782=>1,2088247792=>1,2088247870=>1,2088247796=>1,2088247749=>1,2088247740=>1,2088247679=>1,2088247658=>1,2088247700=>1,2088247717=>1,2088247720=>1,2088247481=>1,2088247474=>1,2088243768=>1,2088243766=>1,2088243774=>1,2088243785=>1,2088243855=>1,2088243786=>1,2088243764=>1,2088243750=>1,2088243673=>1,2088243671=>1,2088243690=>1,2088243699=>1,2088243715=>1,2088243700=>1,2088243862=>1,2088243881=>1,2088247400=>1,2088247359=>1,2088247409=>1,2088247411=>1,2088247444=>1,2088247441=>1,2088243949=>1,2088243946=>1,2088243905=>1,2088243890=>1,2088243919=>1,2088243927=>1,2088243940=>1,2088247897=>1,2088247979=>1,2088249004=>1,2088248983=>1,2088249042=>1,2088249064=>1,2088249187=>1,2088249111=>1,2088248970=>1,2088248915=>1,2088248811=>1,2088248806=>1,2088248829=>1,2088248896=>1,2088248910=>1,2088248900=>1,2088249189=>1,2088249202=>1,2088249399=>1,2088249384=>1,2088249400=>1,2088249432=>1,2088249468=>1,2088249440=>1,2088249368=>1,2088249366=>1,2088249251=>1,2088249237=>1,2088249267=>1,2088249298=>1,2088249336=>1,2088248790=>1,2088248780=>1,2088248298=>1,2088248177=>1,2088248330=>1,2088248369=>1,2088248388=>1,2088248387=>1,2088248136=>1,2088248117=>1,2088248004=>1,2088247990=>1,2088248020=>1,2088248080=>1,2088248104=>1,2088248419=>1,2088248420=>1,2088248632=>1,2088248628=>1,2088248695=>1,2088248713=>1,2088248778=>1,2088248726=>1,2088248583=>1,2088248557=>1,2088248454=>1,2088248424=>1,2088248477=>1,2088248521=>1,2088248531=>1,2088252214=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-24.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2088261680=>1,2088261640=>1,2088261759=>1,2088261760=>1,2088261856=>1,2088261825=>1,2088261635=>1,2088261619=>1,2088261577=>1,2088261574=>1,2088261578=>1,2088261583=>1,2088261590=>1,2088261589=>1,2088261872=>1,2088261894=>1,2088262086=>1,2088262083=>1,2088262125=>1,2088262173=>1,2088262207=>1,2088262202=>1,2088262070=>1,2088262020=>1,2088261908=>1,2088261895=>1,2088261930=>1,2088261973=>1,2088262005=>1,2088261994=>1,2088261553=>1,2088261547=>1,2088261221=>1,2088261202=>1,2088261227=>1,2088261234=>1,2088261247=>1,2088261244=>1,2088261163=>1,2088261162=>1,2088261091=>1,2088261042=>1,2088261097=>1,2088261101=>1,2088261114=>1,2088261105=>1,2088261268=>1,2088261306=>1,2088261479=>1,2088261478=>1,2088261514=>1,2088261532=>1,2088261538=>1,2088261536=>1,2088261449=>1,2088261414=>1,2088261384=>1,2088261331=>1,2088261390=>1,2088261397=>1,2088261408=>1,2088262240=>1,2088262286=>1,2088263176=>1,2088263165=>1,2088263207=>1,2088263218=>1,2088263234=>1,2088263232=>1,2088263059=>1,2088263053=>1,2088263006=>1,2088263002=>1,2088263012=>1,2088263016=>1,2088263044=>1,2088263028=>1,2088263239=>1,2088263287=>1,2088263644=>1,2088263636=>1,2088263647=>1,2088263659=>1,2088263688=>1,2088263666=>1,2088263635=>1,2088263616=>1,2088263379=>1,2088263319=>1,2088263428=>1,2088263461=>1,2088263478=>1,2088263477=>1,2088263000=>1,2088262988=>1,2088262648=>1,2088262545=>1,2088262650=>1,2088262666=>1,2088262687=>1,2088262683=>1,2088262542=>1,2088262516=>1,2088262364=>1,2088262288=>1,2088262370=>1,2088262385=>1,2088262494=>1,2088262487=>1,2088262692=>1,2088262720=>1,2088262897=>1,2088262896=>1,2088262910=>1,2088262919=>1,2088262956=>1,2088262943=>1,2088262890=>1,2088262875=>1,2088262768=>1,2088262739=>1,2088262791=>1,2088262827=>1,2088262868=>1,2088261005=>1,2088261003=>1,2088258999=>1,2088258990=>1,2088259063=>1,2088259064=>1,2088259098=>1,2088259083=>1,2088258965=>1,2088258934=>1,2088258858=>1,2088258854=>1,2088258864=>1,2088258884=>1,2088258909=>1,2088258908=>1,2088259102=>1,2088259153=>1,2088259334=>1,2088259279=>1,2088259358=>1,2088259364=>1,2088259366=>1,2088259365=>1,2088259271=>1,2088259252=>1,2088259191=>1,2088259184=>1,2088259214=>1,2088259221=>1,2088259241=>1,2088259224=>1,2088258845=>1,2088258827=>1,2088258578=>1,2088258576=>1,2088258586=>1,2088258594=>1,2088258612=>1,2088258604=>1,2088258563=>1,2088258555=>1,2088258482=>1,2088258473=>1,2088258507=>1,2088258515=>1,2088258553=>1,2088258517=>1,2088258617=>1,2088258672=>1,2088258737=>1,2088258728=>1,2088258761=>1,2088258788=>1,2088258810=>1,2088258797=>1,2088258726=>1,2088258725=>1,2088258694=>1,2088258682=>1,2088258704=>1,2088258712=>1,2088258713=>1,2088259373=>1,2088259381=>1,2088260452=>1,2088260444=>1,2088260454=>1,2088260507=>1,2088260553=>1,2088260533=>1,2088260367=>1,2088260280=>1,2088260037=>1,2088260028=>1,2088260039=>1,2088260045=>1,2088260185=>1,2088260124=>1,2088260559=>1,2088260588=>1,2088260866=>1,2088260859=>1,2088260868=>1,2088260901=>1,2088260977=>1,2088260961=>1,2088260808=>1,2088260780=>1,2088260641=>1,2088260611=>1,2088260713=>1,2088260716=>1,2088260733=>1,2088260008=>1,2088260007=>1,2088259523=>1,2088259514=>1,2088259535=>1,2088259536=>1,2088259597=>1,2088259568=>1,2088259509=>1,2088259475=>1,2088259389=>1,2088259382=>1,2088259390=>1,2088259401=>1,2088259469=>1,2088259411=>1,2088259600=>1,2088259607=>1,2088259812=>1,2088259779=>1,2088259846=>1,2088259908=>1,2088259968=>1,2088259949=>1,2088259777=>1,2088259733=>1,2088259641=>1,2088259611=>1,2088259696=>1,2088259704=>1,2088259732=>1,2088263700=>1,2088263740=>1,2088268016=>1,2088268008=>1,2088268033=>1,2088268040=>1,2088268106=>1,2088268042=>1,2088267991=>1,2088267990=>1,2088267908=>1,2088267895=>1,2088267926=>1,2088267948=>1,2088267963=>1,2088267952=>1,2088268122=>1,2088268149=>1,2088268272=>1,2088268260=>1,2088268274=>1,2088268292=>1,2088268375=>1,2088268302=>1,2088268255=>1,2088268237=>1,2088268155=>1,2088268150=>1,2088268172=>1,2088268188=>1,2088268215=>1,2088268207=>1,2088267872=>1,2088267863=>1,2088267361=>1,2088267321=>1,2088267370=>1,2088267443=>1,2088267470=>1,2088267449=>1,2088267320=>1,2088267298=>1,2088267238=>1,2088267231=>1,2088267240=>1,2088267251=>1,2088267294=>1,2088267277=>1,2088267489=>1,2088267513=>1,2088267811=>1,2088267755=>1,2088267818=>1,2088267821=>1,2088267851=>1,2088267832=>1,2088267738=>1,2088267725=>1,2088267534=>1,2088267515=>1,2088267575=>1,2088267711=>1,2088267718=>1,2088268381=>1,2088268384=>1,2088269524=>1,2088269523=>1,2088269541=>1,2088269577=>1,2088269596=>1,2088269590=>1,2088269491=>1,2088269487=>1,2088269399=>1,2088269369=>1,2088269447=>1,2088269462=>1,2088269479=>1,2088269477=>1,2088269619=>1,2088269667=>1,2088269867=>1,2088269852=>1,2088269870=>1,2088269876=>1,2088269908=>1,2088269877=>1,2088269808=>1,2088269796=>1,2088269723=>1,2088269676=>1,2088269731=>1,2088269783=>1,2088269788=>1,2088269367=>1,2088269327=>1,2088268669=>1,2088268646=>1,2088268808=>1,2088268814=>1,2088268839=>1,2088268828=>1,2088268531=>1,2088268528=>1,2088268427=>1,2088268402=>1,2088268448=>1,2088268472=>1,2088268522=>1,2088268520=>1,2088268847=>1,2088268872=>1,2088269172=>1,2088269165=>1,2088269254=>1,2088269284=>1,2088269324=>1,2088269320=>1,2088269155=>1,2088269150=>1,2088268931=>1,2088268916=>1,2088269009=>1,2088269137=>1,2088269138=>1,2088267166=>1,2088267120=>1,2088264670=>1,2088264618=>1,2088264673=>1,2088264695=>1,2088264757=>1,2088264721=>1,2088264597=>1,2088264588=>1,2088264469=>1,2088264434=>1,2088264509=>1,2088264510=>1,2088264566=>1,2088264536=>1,2088264769=>1,2088264808=>1,2088265002=>1,2088264975=>1,2088265019=>1,2088265036=>1,2088265107=>1,2088265084=>1,2088264947=>1,2088264940=>1,2088264841=>1,2088264840=>1,2088264843=>1,2088264888=>1,2088264900=>1,2088264890=>1,2088264415=>1,2088264391=>1,2088264013=>1,2088264009=>1,2088264042=>1,2088264058=>1,2088264113=>1,2088264063=>1,2088263976=>1,2088263972=>1,2088263767=>1,2088263758=>1,2088263791=>1,2088263842=>1,2088263908=>1,2088263853=>1,2088264124=>1,2088264132=>1,2088264284=>1,2088264280=>1,2088264289=>1,2088264295=>1,2088264356=>1,2088264326=>1,2088264258=>1,2088264245=>1,2088264158=>1,2088264155=>1,2088264176=>1,2088264189=>1,2088264236=>1,2088265154=>1,2088265166=>1,2088266548=>1,2088266535=>1,2088266576=>1,2088266625=>1,2088266719=>1,2088266671=>1,2088266526=>1,2088266464=>1,2088266320=>1,2088266300=>1,2088266353=>1,2088266357=>1,2088266455=>1,2088266398=>1,2088266728=>1,2088266733=>1,2088266918=>1,2088266899=>1,2088266946=>1,2088266962=>1,2088267075=>1,2088267066=>1,2088266883=>1,2088266881=>1,2088266781=>1,2088266737=>1,2088266840=>1,2088266845=>1,2088266853=>1,2088266215=>1,2088266202=>1,2088265406=>1,2088265393=>1,2088265435=>1,2088265445=>1,2088265458=>1,2088265452=>1,2088265384=>1,2088265374=>1,2088265177=>1,2088265175=>1,2088265250=>1,2088265280=>1,2088265306=>1,2088265299=>1,2088265489=>1,2088265498=>1,2088265908=>1,2088265853=>1,2088265942=>1,2088265945=>1,2088266117=>1,2088266104=>1,2088265821=>1,2088265819=>1,2088265608=>1,2088265508=>1,2088265619=>1,2088265710=>1,2088265815=>1,2088258469=>1,2088258461=>1,2088252055=>1,2088252037=>1,2088252060=>1,2088252101=>1,2088252140=>1,2088252115=>1,2088252026=>1,2088252016=>1,2088251913=>1,2088251885=>1,2088251943=>1,2088251980=>1,2088252002=>1,2088251996=>1,2088252171=>1,2088252214=>1,2088252393=>1,2088252374=>1,2088252403=>1,2088252418=>1,2088252456=>1,2088252419=>1,2088252357=>1,2088252350=>1,2088252265=>1,2088252253=>1,2088252277=>1,2088252310=>1,2088252321=>1,2088252311=>1,2088251862=>1,2088251832=>1,2088251321=>1,2088251317=>1,2088251354=>1,2088251369=>1,2088251399=>1,2088251374=>1,2088251304=>1,2088251282=>1,2088251205=>1,2088251201=>1,2088251206=>1,2088251209=>1,2088251259=>1,2088251233=>1,2088251454=>1,2088251482=>1,2088251612=>1,2088251585=>1,2088251623=>1,2088251624=>1,2088251829=>1,2088251728=>1,2088251559=>1,2088251550=>1,2088251503=>1,2088251486=>1,2088251506=>1,2088251514=>1,2088251536=>1,2088252461=>1,2088252475=>1,2088253240=>1,2088253202=>1,2088253298=>1,2088253307=>1,2088253314=>1,2088253311=>1,2088253121=>1,2088253107=>1,2088253088=>1,2088253069=>1,2088253091=>1,2088253096=>1,2088253099=>1,2088253097=>1,2088253320=>1,2088253325=>1,2088253490=>1,2088253477=>1,2088253494=>1,2088253546=>1,2088253586=>1,2088253549=>1,2088253455=>1,2088253446=>1,2088253375=>1,2088253341=>1,2088253408=>1,2088253411=>1,2088253431=>1,2088253048=>1,2088253023=>1,2088252665=>1,2088252661=>1,2088252676=>1,2088252683=>1,2088252722=>1,2088252702=>1,2088252646=>1,2088252619=>1,2088252515=>1,2088252477=>1,2088252528=>1,2088252537=>1,2088252618=>1,2088252544=>1,2088252730=>1,2088252748=>1,2088252922=>1,2088252921=>1,2088252935=>1,2088252957=>1,2088252983=>1,2088252964=>1,2088252904=>1,2088252880=>1,2088252796=>1,2088252763=>1,2088252835=>1,2088252851=>1,2088252874=>1,2088251188=>1,2088251181=>1,2088249366=>1,2088249336=>1,2088249368=>1,2088249384=>1,2088249399=>1,2088249393=>1,2088249298=>1,2088249251=>1,2088249187=>1,2088249183=>1,2088249189=>1,2088249202=>1,2088249237=>1,2088249219=>1,2088249400=>1,2088249450=>1,2088249602=>1,2088249555=>1,2088249607=>1,2088249610=>1,2088249628=>1,2088249627=>1,2088249527=>1,2088249518=>1,2088249484=>1,2088249468=>1,2088249497=>1,2088249506=>1,2088249511=>1,2088249510=>1,2088249111=>1,2088249064=>1,2088248632=>1,2088248628=>1,2088248695=>1,2088248713=>1,2088248744=>1,2088248726=>1,2088248583=>1,2088248557=>1,2088248468=>1,2088248454=>1,2088248477=>1,2088248485=>1,2088248543=>1,2088248531=>1,2088248780=>1,2088248790=>1,2088248932=>1,2088248915=>1,2088248970=>1,2088248983=>1,2088249042=>1,2088249004=>1,2088248906=>1,2088248900=>1,2088248829=>1,2088248806=>1,2088248856=>1,2088248891=>1,2088248896=>1,2088249629=>1,2088249636=>1,2088250707=>1,2088250694=>1,2088250711=>1,2088250718=>1,2088250741=>1,2088250740=>1,2088250685=>1,2088250684=>1,2088250571=>1,2088250556=>1,2088250605=>1,2088250613=>1,2088250648=>1,2088250625=>1,2088250746=>1,2088250784=>1,2088251060=>1,2088251036=>1,2088251065=>1,2088251088=>1,2088251108=>1,2088251107=>1,2088251027=>1,2088250999=>1,2088250839=>1,2088250824=>1,2088250897=>1,2088250909=>1,2088250966=>1,2088250540=>1,2088250508=>1,2088249768=>1,2088249749=>1,2088249807=>1,2088249810=>1,2088249823=>1,2088249812=>1,2088249742=>1,2088249717=>1,2088249671=>1,2088249653=>1,2088249678=>1,2088249706=>1,2088249716=>1,2088249711=>1,2088249825=>1,2088249838=>1,2088250412=>1,2088250405=>1,2088250425=>1,2088250428=>1,2088250493=>1,2088250447=>1,2088250403=>1,2088250395=>1,2088249854=>1,2088249848=>1,2088250385=>1,2088250387=>1,2088250392=>1,2088253619=>1,2088253635=>1,2088257139=>1,2088257131=>1,2088257141=>1,2088257162=>1,2088257181=>1,2088257164=>1,2088257122=>1,2088257119=>1,2088257059=>1,2088257048=>1,2088257063=>1,2088257084=>1,2088257110=>1,2088257094=>1,2088257186=>1,2088257244=>1,2088257339=>1,2088257330=>1,2088257341=>1,2088257363=>1,2088257372=>1,2088257370=>1,2088257310=>1,2088257308=>1,2088257264=>1,2088257249=>1,2088257282=>1,2088257289=>1,2088257302=>1,2088257290=>1,2088257027=>1,2088256998=>1,2088256479=>1,2088256439=>1,2088256493=>1,2088256518=>1,2088256533=>1,2088256523=>1,2088256410=>1,2088256368=>1,2088256232=>1,2088256231=>1,2088256238=>1,2088256275=>1,2088256314=>1,2088256279=>1,2088256573=>1,2088256595=>1,2088256809=>1,2088256761=>1,2088256906=>1,2088256957=>1,2088256979=>1,2088256973=>1,2088256750=>1,2088256719=>1,2088256630=>1,2088256605=>1,2088256632=>1,2088256650=>1,2088256698=>1,2088257375=>1,2088257419=>1,2088258101=>1,2088258056=>1,2088258129=>1,2088258165=>1,2088258179=>1,2088258169=>1,2088258044=>1,2088258038=>1,2088257945=>1,2088257935=>1,2088257994=>1,2088258005=>1,2088258035=>1,2088258029=>1,2088258200=>1,2088258216=>1,2088258337=>1,2088258333=>1,2088258361=>1,2088258370=>1,2088258381=>1,2088258379=>1,2088258320=>1,2088258311=>1,2088258257=>1,2088258240=>1,2088258264=>1,2088258278=>1,2088258285=>1,2088257930=>1,2088257911=>1,2088257565=>1,2088257546=>1,2088257576=>1,2088257624=>1,2088257632=>1,2088257630=>1,2088257543=>1,2088257540=>1,2088257429=>1,2088257421=>1,2088257430=>1,2088257449=>1,2088257503=>1,2088257490=>1,2088257645=>1,2088257685=>1,2088257836=>1,2088257826=>1,2088257846=>1,2088257860=>1,2088257889=>1,2088257865=>1,2088257807=>1,2088257771=>1,2088257725=>1,2088257688=>1,2088257736=>1,2088257747=>1,2088257759=>1,2088256227=>1,2088256215=>1,2088254482=>1,2088254480=>1,2088254526=>1,2088254550=>1,2088254565=>1,2088254559=>1,2088254468=>1,2088254453=>1,2088254320=>1,2088254317=>1,2088254367=>1,2088254399=>1,2088254442=>1,2088254405=>1,2088254583=>1,2088254600=>1,2088254854=>1,2088254796=>1,2088254867=>1,2088254877=>1,2088254909=>1,2088254904=>1,2088254774=>1,2088254686=>1,2088254630=>1,2088254601=>1,2088254646=>1,2088254658=>1,2088254676=>1,2088254673=>1,2088254287=>1,2088254138=>1,2088253810=>1,2088253808=>1,2088253818=>1,2088253823=>1,2088253857=>1,2088253827=>1,2088253779=>1,2088253734=>1,2088253706=>1,2088253642=>1,2088253709=>1,2088253722=>1,2088253728=>1,2088253724=>1,2088253862=>1,2088253874=>1,2088254084=>1,2088254031=>1,2088254090=>1,2088254103=>1,2088254122=>1,2088254108=>1,2088254023=>1,2088254002=>1,2088253935=>1,2088253877=>1,2088253950=>1,2088253958=>1,2088253990=>1,2088254916=>1,2088254939=>1,2088255737=>1,2088255723=>1,2088255824=>1,2088255853=>1,2088255862=>1,2088255860=>1,2088255701=>1,2088255618=>1,2088255508=>1,2088255499=>1,2088255545=>1,2088255570=>1,2088255577=>1,2088255572=>1,2088255866=>1,2088255870=>1,2088256075=>1,2088256049=>1,2088256113=>1,2088256122=>1,2088256197=>1,2088256174=>1,2088256042=>1,2088256031=>1,2088255884=>1,2088255881=>1,2088255891=>1,2088255964=>1,2088256030=>1,2088255486=>1,2088255472=>1,2088255110=>1,2088255105=>1,2088255138=>1,2088255148=>1,2088255172=>1,2088255152=>1,2088255093=>1,2088255090=>1,2088254966=>1,2088254947=>1,2088254974=>1,2088254978=>1,2088255047=>1,2088255028=>1,2088255189=>1,2088255218=>1,2088255376=>1,2088255364=>1,2088255410=>1,2088255424=>1,2088255445=>1,2088255428=>1,2088255336=>1,2088255324=>1,2088255240=>1,2088255226=>1,2088255267=>1,2088255275=>1,2088255291=>1,2088248424=>1,);?>
1
+ <?php return array(2088286978=>2088286979,2088284412=>2088284413,2088283150=>2088283151,2088279540=>2088279541,2088279422=>2088279423,2088279312=>2088279313,2088279100=>2088279101,2088278982=>2088278983,2088278706=>2088278707,2088278166=>2088278167,2088277984=>2088277985,2088277868=>2088277869,2088273530=>2088273531,2088273226=>2088273227,2088271376=>2088271377,2088270766=>2088270767,2088270594=>2088270595,2088270368=>2088270369,2088269876=>2088269877,2088269202=>2088269203,2088267990=>2088267991,2088265942=>2088265943,2088264840=>2088264841,2088261894=>2088261895,2088278905=>1,2088278732=>1,2088278745=>1,2088279018=>1,2088278583=>1,2088278624=>1,2088278796=>1,2088278806=>1,2088278833=>1,2088278866=>1,2088278875=>1,2088278810=>1,2088279008=>1,2088278576=>1,2088279017=>1,2088278883=>1,2088278926=>1,2088278463=>1,2088278191=>1,2088278184=>1,2088278193=>1,2088278194=>1,2088278256=>1,2088278201=>1,2088278178=>1,2088278175=>1,2088278090=>1,2088278057=>1,2088278093=>1,2088278108=>1,2088278152=>1,2088278273=>1,2088278295=>1,2088278467=>1,2088279026=>1,2088278481=>1,2088278488=>1,2088278572=>1,2088278570=>1,2088278421=>1,2088278408=>1,2088278358=>1,2088278303=>1,2088278377=>1,2088278389=>1,2088278391=>1,2088278574=>1,2088279178=>1,2088280453=>1,2088280451=>1,2088280505=>1,2088280550=>1,2088280648=>1,2088280634=>1,2088280435=>1,2088280362=>1,2088280208=>1,2088280200=>1,2088280212=>1,2088280229=>1,2088280267=>1,2088280240=>1,2088280687=>1,2088280705=>1,2088280888=>1,2088280848=>1,2088280909=>1,2088280939=>1,2088281002=>1,2088280954=>1,2088280843=>1,2088280839=>1,2088280758=>1,2088280742=>1,2088280770=>1,2088280803=>1,2088280815=>1,2088280136=>1,2088280115=>1,2088279274=>1,2088279250=>1,2088279284=>1,2088279294=>1,2088279373=>1,2088279301=>1,2088279248=>1,2088279226=>1,2088279157=>1,2088279043=>1,2088279169=>1,2088278011=>1,2088279213=>1,2088279374=>1,2088279382=>1,2088279675=>1,2088279656=>1,2088279762=>1,2088279792=>1,2088280067=>1,2088279806=>1,2088279587=>1,2088279544=>1,2088279411=>1,2088279403=>1,2088279419=>1,2088279483=>1,2088279500=>1,2088279032=>1,2088277959=>1,2088275914=>1,2088275898=>1,2088275921=>1,2088275932=>1,2088275953=>1,2088275944=>1,2088275852=>1,2088275821=>1,2088275753=>1,2088275747=>1,2088275757=>1,2088275765=>1,2088275819=>1,2088275810=>1,2088275980=>1,2088275986=>1,2088276209=>1,2088276177=>1,2088276251=>1,2088276308=>1,2088276395=>1,2088276324=>1,2088276155=>1,2088276152=>1,2088276048=>1,2088276002=>1,2088276056=>1,2088276059=>1,2088276084=>1,2088275718=>1,2088274925=>1,2088274166=>1,2088274157=>1,2088274183=>1,2088274191=>1,2088274321=>1,2088274195=>1,2088274131=>1,2088274088=>1,2088273854=>1,2088273790=>1,2088273909=>1,2088273924=>1,2088274036=>1,2088273952=>1,2088274366=>1,2088274373=>1,2088274710=>1,2088274646=>1,2088274733=>1,2088274786=>1,2088274906=>1,2088274904=>1,2088274642=>1,2088274559=>1,2088274500=>1,2088274434=>1,2088274514=>1,2088274530=>1,2088274539=>1,2088276413=>1,2088276477=>1,2088277514=>1,2088277510=>1,2088277523=>1,2088277527=>1,2088277567=>1,2088277540=>1,2088277509=>1,2088277501=>1,2088277396=>1,2088277392=>1,2088277414=>1,2088277435=>1,2088277465=>1,2088277436=>1,2088277606=>1,2088277634=>1,2088277883=>1,2088277845=>1,2088281043=>1,2088277971=>1,2088277983=>1,2088277978=>1,2088277842=>1,2088277835=>1,2088277708=>1,2088277698=>1,2088277715=>1,2088277804=>1,2088277806=>1,2088277388=>1,2088277369=>1,2088276739=>1,2088276731=>1,2088276763=>1,2088276818=>1,2088276871=>1,2088276852=>1,2088276697=>1,2088276689=>1,2088276535=>1,2088276510=>1,2088276577=>1,2088276613=>1,2088276667=>1,2088276641=>1,2088276929=>1,2088276997=>1,2088277250=>1,2088277219=>1,2088277253=>1,2088277329=>1,2088277358=>1,2088277342=>1,2088277182=>1,2088277154=>1,2088277090=>1,2088277019=>1,2088277120=>1,2088277135=>1,2088277147=>1,2088278005=>1,2088281117=>1,2088286306=>1,2088286292=>1,2088286323=>1,2088286337=>1,2088286428=>1,2088286386=>1,2088286276=>1,2088286220=>1,2088286175=>1,2088286159=>1,2088286177=>1,2088286184=>1,2088286203=>1,2088286197=>1,2088286430=>1,2088286438=>1,2088286631=>1,2088286608=>1,2088286731=>1,2088286752=>1,2088286782=>1,2088286767=>1,2088286588=>1,2088286545=>1,2088286460=>1,2088286443=>1,2088286462=>1,2088286503=>1,2088286528=>1,2088286512=>1,2088286143=>1,2088286054=>1,2088285412=>1,2088285398=>1,2088285459=>1,2088285467=>1,2088285486=>1,2088285479=>1,2088285363=>1,2088285358=>1,2088285248=>1,2088285213=>1,2088285307=>1,2088285326=>1,2088285336=>1,2088285332=>1,2088285509=>1,2088285548=>1,2088285828=>1,2088285814=>1,2088285878=>1,2088285910=>1,2088286031=>1,2088285938=>1,2088285812=>1,2088285772=>1,2088285607=>1,2088285588=>1,2088285616=>1,2088285709=>1,2088285745=>1,2088286785=>1,2088286793=>1,2088287530=>1,2088287498=>1,2088287561=>1,2088287587=>1,2088287657=>1,2088287643=>1,2088287447=>1,2088287441=>1,2088287343=>1,2088287319=>1,2088287347=>1,2088287354=>1,2088287370=>1,2088287363=>1,2088287673=>1,2088287686=>1,2088287883=>1,2088287873=>1,2088287920=>1,2088287923=>1,2088287947=>1,2088287928=>1,2088287860=>1,2088287849=>1,2088287751=>1,2088287724=>1,2088287757=>1,2088287817=>1,2088287824=>1,2088287311=>1,2088287284=>1,2088287008=>1,2088286982=>1,2088287010=>1,2088287017=>1,2088287042=>1,2088287027=>1,2088286929=>1,2088286916=>1,2088286832=>1,2088286798=>1,2088286844=>1,2088286853=>1,2088286871=>1,2088286859=>1,2088287098=>1,2088287102=>1,2088287215=>1,2088287206=>1,2088287228=>1,2088287257=>1,2088287282=>1,2088287258=>1,2088287180=>1,2088287179=>1,2088287118=>1,2088287105=>1,2088287126=>1,2088287158=>1,2088287175=>1,2088285203=>1,2088285199=>1,2088282551=>1,2088282545=>1,2088282570=>1,2088282605=>1,2088282633=>1,2088282618=>1,2088282457=>1,2088282451=>1,2088282296=>1,2088282278=>1,2088282315=>1,2088282349=>1,2088282370=>1,2088282364=>1,2088282660=>1,2088282670=>1,2088282943=>1,2088282893=>1,2088282969=>1,2088283000=>1,2088283139=>1,2088283098=>1,2088282882=>1,2088282845=>1,2088282752=>1,2088282694=>1,2088282755=>1,2088282801=>1,2088282836=>1,2088282829=>1,2088282276=>1,2088282268=>1,2088281352=>1,2088281339=>1,2088281388=>1,2088281395=>1,2088281414=>1,2088281409=>1,2088281335=>1,2088281262=>1,2088281111=>1,2088281100=>1,2088273728=>1,2088281124=>1,2088281255=>1,2088281224=>1,2088281437=>1,2088281445=>1,2088282120=>1,2088281565=>1,2088282140=>1,2088282208=>1,2088282247=>1,2088282220=>1,2088281556=>1,2088281543=>1,2088281454=>1,2088281448=>1,2088281503=>1,2088281515=>1,2088281541=>1,2088283177=>1,2088283214=>1,2088284587=>1,2088284457=>1,2088284611=>1,2088284622=>1,2088284671=>1,2088284653=>1,2088284453=>1,2088284399=>1,2088284302=>1,2088284246=>1,2088284344=>1,2088284347=>1,2088284391=>1,2088284385=>1,2088284683=>1,2088284690=>1,2088285034=>1,2088284995=>1,2088285075=>1,2088285157=>1,2088285165=>1,2088285161=>1,2088284951=>1,2088284908=>1,2088284766=>1,2088284732=>1,2088284806=>1,2088284861=>1,2088284893=>1,2088284236=>1,2088284186=>1,2088283369=>1,2088283363=>1,2088283449=>1,2088283525=>1,2088283583=>1,2088283555=>1,2088283354=>1,2088283352=>1,2088283303=>1,2088283234=>1,2088283312=>1,2088283315=>1,2088283343=>1,2088283319=>1,2088283711=>1,2088283734=>1,2088283915=>1,2088283907=>1,2088283982=>1,2088284027=>1,2088284140=>1,2088284089=>1,2088283885=>1,2088283865=>1,2088283827=>1,2088283754=>1,2088283838=>1,2088283849=>1,2088283860=>1,2088281074=>1,2088273528=>1,2088265458=>1,2088265445=>1,2088265489=>1,2088265498=>1,2088265608=>1,2088265508=>1,2088265435=>1,2088265393=>1,2088265257=>1,2088265250=>1,2088265280=>1,2088265291=>1,2088265384=>1,2088265306=>1,2088265612=>1,2088265619=>1,2088266104=>1,2088266086=>1,2088266117=>1,2088266202=>1,2088266300=>1,2088266215=>1,2088266036=>1,2088265908=>1,2088265786=>1,2088265710=>1,2088265815=>1,2088265819=>1,2088265821=>1,2088265206=>1,2088265177=>1,2088264808=>1,2088264769=>1,2088264843=>1,2088264853=>1,2088264890=>1,2088264888=>1,2088264757=>1,2088264741=>1,2088264618=>1,2088264597=>1,2088264630=>1,2088264670=>1,2088264721=>1,2088264695=>1,2088264900=>1,2088264906=>1,2088265107=>1,2088265084=>1,2088265153=>1,2088265154=>1,2088265175=>1,2088265171=>1,2088265036=>1,2088265021=>1,2088264947=>1,2088264940=>1,2088264975=>1,2088265002=>1,2088265019=>1,2088266307=>1,2088266320=>1,2088267449=>1,2088267443=>1,2088267465=>1,2088267470=>1,2088267575=>1,2088267513=>1,2088267388=>1,2088267370=>1,2088267277=>1,2088267251=>1,2088267294=>1,2088267298=>1,2088267361=>1,2088267320=>1,2088267591=>1,2088267711=>1,2088267846=>1,2088267832=>1,2088267851=>1,2088267863=>1,2088267895=>1,2088267872=>1,2088267821=>1,2088267818=>1,2088267725=>1,2088267718=>1,2088267738=>1,2088267755=>1,2088267811=>1,2088267240=>1,2088267238=>1,2088266625=>1,2088266576=>1,2088266719=>1,2088266733=>1,2088266781=>1,2088266737=>1,2088266548=>1,2088266535=>1,2088266357=>1,2088266353=>1,2088266395=>1,2088266455=>1,2088266526=>1,2088266464=>1,2088266845=>1,2088266853=>1,2088267075=>1,2088267066=>1,2088267120=>1,2088267166=>1,2088267231=>1,2088267220=>1,2088266969=>1,2088266962=>1,2088266883=>1,2088266881=>1,2088266899=>1,2088266918=>1,2088266946=>1,2088264588=>1,2088264566=>1,2088262659=>1,2088262650=>1,2088262666=>1,2088262683=>1,2088262692=>1,2088262687=>1,2088262648=>1,2088262560=>1,2088262385=>1,2088262364=>1,2088262487=>1,2088262516=>1,2088262545=>1,2088262542=>1,2088262720=>1,2088262739=>1,2088262962=>1,2088262956=>1,2088262988=>1,2088263000=>1,2088263006=>1,2088263002=>1,2088262943=>1,2088262919=>1,2088262791=>1,2088262768=>1,2088262868=>1,2088262875=>1,2088262910=>1,2088262329=>1,2088262304=>1,2088261825=>1,2088261807=>1,2088261856=>1,2088261872=>1,2088261934=>1,2088261908=>1,2088261760=>1,2088261759=>1,2088261589=>1,2088261583=>1,2088261590=>1,2088261619=>1,2088261640=>1,2088261635=>1,2088261973=>1,2088261994=>1,2088262207=>1,2088262202=>1,2088262214=>1,2088262240=>1,2088262288=>1,2088262286=>1,2088262173=>1,2088262125=>1,2088262070=>1,2088262005=>1,2088262083=>1,2088262086=>1,2088262123=>1,2088263017=>1,2088263044=>1,2088264155=>1,2088264124=>1,2088264158=>1,2088264176=>1,2088264236=>1,2088264189=>1,2088264113=>1,2088264058=>1,2088263877=>1,2088263853=>1,2088263972=>1,2088263976=>1,2088264042=>1,2088264013=>1,2088264245=>1,2088264258=>1,2088264469=>1,2088264457=>1,2088264487=>1,2088264509=>1,2088264536=>1,2088264510=>1,2088264415=>1,2088264356=>1,2088264284=>1,2088264280=>1,2088264289=>1,2088264295=>1,2088264326=>1,2088263842=>1,2088263791=>1,2088263234=>1,2088263232=>1,2088263239=>1,2088263287=>1,2088263379=>1,2088263319=>1,2088263218=>1,2088263207=>1,2088263128=>1,2088263059=>1,2088263133=>1,2088263165=>1,2088263176=>1,2088263428=>1,2088263461=>1,2088263688=>1,2088263666=>1,2088263740=>1,2088263751=>1,2088263767=>1,2088263758=>1,2088263659=>1,2088263647=>1,2088263616=>1,2088263477=>1,2088263635=>1,2088263636=>1,2088263644=>1,2088267908=>1,2088267926=>1,2088271341=>1,2088271279=>1,2088271373=>1,2088271388=>1,2088271431=>1,2088271406=>1,2088271275=>1,2088271273=>1,2088271182=>1,2088271173=>1,2088271206=>1,2088271218=>1,2088271257=>1,2088271226=>1,2088271498=>1,2088271507=>1,2088271651=>1,2088271643=>1,2088271695=>1,2088271699=>1,2088271732=>1,2088271700=>1,2088271618=>1,2088271586=>1,2088271541=>1,2088271530=>1,2088271558=>1,2088271563=>1,2088271567=>1,2088271171=>1,2088271163=>1,2088270749=>1,2088270725=>1,2088270753=>1,2088270760=>1,2088270786=>1,2088270778=>1,2088270722=>1,2088270711=>1,2088270514=>1,2088270482=>1,2088270525=>1,2088270558=>1,2088270630=>1,2088270573=>1,2088270790=>1,2088270825=>1,2088271016=>1,2088271010=>1,2088271027=>1,2088271045=>1,2088271149=>1,2088271090=>1,2088271009=>1,2088270989=>1,2088270885=>1,2088270832=>1,2088270906=>1,2088270908=>1,2088270945=>1,2088271792=>1,2088271837=>1,2088273015=>1,2088272976=>1,2088273026=>1,2088273050=>1,2088273247=>1,2088273141=>1,2088272906=>1,2088272867=>1,2088272819=>1,2088272784=>1,2088272838=>1,2088272840=>1,2088272862=>1,2088272848=>1,2088273260=>1,2088273330=>1,2088261578=>1,2088273515=>1,2088273570=>1,2088273586=>1,2088273647=>1,2088273592=>1,2088273489=>1,2088273486=>1,2088273384=>1,2088273358=>1,2088273452=>1,2088273462=>1,2088273473=>1,2088272778=>1,2088272610=>1,2088272014=>1,2088271997=>1,2088272022=>1,2088272073=>1,2088272141=>1,2088272078=>1,2088271971=>1,2088271948=>1,2088271866=>1,2088271843=>1,2088271913=>1,2088271918=>1,2088271944=>1,2088271928=>1,2088272191=>1,2088272205=>1,2088272411=>1,2088272397=>1,2088272421=>1,2088272455=>1,2088272491=>1,2088272480=>1,2088272370=>1,2088272320=>1,2088272217=>1,2088272214=>1,2088272230=>1,2088272250=>1,2088272257=>1,2088270475=>1,2088270459=>1,2088268839=>1,2088268828=>1,2088268847=>1,2088268872=>1,2088268890=>1,2088268888=>1,2088268814=>1,2088268808=>1,2088268520=>1,2088268472=>1,2088268528=>1,2088268630=>1,2088268669=>1,2088268646=>1,2088268915=>1,2088268931=>1,2088269254=>1,2088269172=>1,2088269284=>1,2088269299=>1,2088269324=>1,2088269320=>1,2088269165=>1,2088269155=>1,2088269053=>1,2088269009=>1,2088269137=>1,2088269138=>1,2088269150=>1,2088268448=>1,2088268402=>1,2088268150=>1,2088268122=>1,2088268155=>1,2088268172=>1,2088268188=>1,2088268183=>1,2088268106=>1,2088268042=>1,2088267952=>1,2088267948=>1,2088267963=>1,2088268008=>1,2088268040=>1,2088268016=>1,2088268215=>1,2088268228=>1,2088268302=>1,2088268292=>1,2088268368=>1,2088268375=>1,2088268384=>1,2088268381=>1,2088268278=>1,2088268274=>1,2088268237=>1,2088268232=>1,2088268249=>1,2088268255=>1,2088268260=>1,2088269327=>1,2088269367=>1,2088270249=>1,2088270242=>1,2088270302=>1,2088270307=>1,2088270331=>1,2088270316=>1,2088270193=>1,2088270179=>1,2088270086=>1,2088270080=>1,2088270135=>1,2088270150=>1,2088270175=>1,2088270155=>1,2088270342=>1,2088270348=>1,2088270432=>1,2088270428=>1,2088270436=>1,2088270442=>1,2088270456=>1,2088270444=>1,2088270426=>1,2088270414=>1,2088270372=>1,2088270362=>1,2088270382=>1,2088270397=>1,2088270401=>1,2088270053=>1,2088270047=>1,2088269524=>1,2088269523=>1,2088269541=>1,2088269577=>1,2088269590=>1,2088269583=>1,2088269491=>1,2088269487=>1,2088269370=>1,2088269369=>1,2088269447=>1,2088269462=>1,2088269477=>1,2088269596=>1,2088269619=>1,2088269925=>1,2088269908=>1,2088269945=>1,2088269977=>1,2088270035=>1,2088270008=>1,2088269870=>1,2088269867=>1,2088269783=>1,2088269676=>1,2088269788=>1,2088269796=>1,2088269808=>1,2088273708=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-25.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2088289412=>1,2088289405=>1,2088289428=>1,2088289437=>1,2088289493=>1,2088289456=>1,2088289395=>1,2088289383=>1,2088289320=>1,2088289296=>1,2088289329=>1,2088289347=>1,2088289358=>1,2088289350=>1,2088289516=>1,2088289548=>1,2088289654=>1,2088289652=>1,2088289663=>1,2088289666=>1,2088289712=>1,2088289700=>1,2088289624=>1,2088289613=>1,2088289577=>1,2088289559=>1,2088289591=>1,2088289597=>1,2088289606=>1,2088289602=>1,2088289293=>1,2088289287=>1,2088288062=>1,2088288057=>1,2088288068=>1,2088288074=>1,2088288142=>1,2088288120=>1,2088288055=>1,2088288044=>1,2088287947=>1,2088287928=>1,2088287956=>1,2088287996=>1,2088288022=>1,2088288006=>1,2088288164=>1,2088288206=>1,2088289227=>1,2088289178=>1,2088289228=>1,2088289256=>1,2088289285=>1,2088289278=>1,2088289096=>1,2088289077=>1,2088288229=>1,2088288224=>1,2088288230=>1,2088289043=>1,2088289044=>1,2088289733=>1,2088289734=>1,2088292394=>1,2088292393=>1,2088292412=>1,2088292447=>1,2088292462=>1,2088292450=>1,2088290292=>1,2088290247=>1,2088290158=>1,2088290145=>1,2088290162=>1,2088290192=>1,2088290226=>1,2088290206=>1,2088292464=>1,2088292467=>1,2088292567=>1,2088292560=>1,2088292570=>1,2088292573=>1,2088292605=>1,2088292583=>1,2088292555=>1,2088292552=>1,2088292531=>1,2088292468=>1,2088292532=>1,2088292533=>1,2088292549=>1,2088292539=>1,2088290123=>1,2088290112=>1,2088289836=>1,2088289833=>1,2088289846=>1,2088289875=>1,2088289883=>1,2088289879=>1,2088289823=>1,2088289809=>1,2088289744=>1,2088289737=>1,2088289770=>1,2088289785=>1,2088289801=>1,2088289788=>1,2088289903=>1,2088289911=>1,2088290045=>1,2088290038=>1,2088290046=>1,2088290051=>1,2088290087=>1,2088290062=>1,2088290010=>1,2088290003=>1,2088289964=>1,2088289936=>1,2088289995=>1,2088289997=>1,2088290000=>1,2088287923=>1,2088287883=>1,2088286306=>1,2088286292=>1,2088286337=>1,2088286386=>1,2088286430=>1,2088286428=>1,2088286276=>1,2088286220=>1,2088286143=>1,2088286054=>1,2088286159=>1,2088286175=>1,2088286203=>1,2088286197=>1,2088286438=>1,2088286443=>1,2088286631=>1,2088286608=>1,2088286634=>1,2088286759=>1,2088286782=>1,2088286767=>1,2088286588=>1,2088286545=>1,2088286460=>1,2088286444=>1,2088286462=>1,2088286503=>1,2088286528=>1,2088286512=>1,2088285957=>1,2088285938=>1,2088285332=>1,2088285326=>1,2088285336=>1,2088285358=>1,2088285479=>1,2088285412=>1,2088285307=>1,2088285248=>1,2088285075=>1,2088285034=>1,2088285157=>1,2088285161=>1,2088285203=>1,2088285165=>1,2088285486=>1,2088285509=>1,2088285814=>1,2088285812=>1,2088285828=>1,2088285878=>1,2088285910=>1,2088285897=>1,2088285772=>1,2088285745=>1,2088285588=>1,2088285548=>1,2088285607=>1,2088285616=>1,2088285709=>1,2088286785=>1,2088286793=>1,2088287447=>1,2088287441=>1,2088287469=>1,2088287486=>1,2088287530=>1,2088287498=>1,2088287370=>1,2088287363=>1,2088287282=>1,2088287258=>1,2088287311=>1,2088287319=>1,2088287347=>1,2088287343=>1,2088287561=>1,2088287587=>1,2088287756=>1,2088287724=>1,2088287757=>1,2088287824=>1,2088287873=>1,2088287860=>1,2088287714=>1,2088287711=>1,2088287643=>1,2088287634=>1,2088287657=>1,2088287673=>1,2088287686=>1,2088287257=>1,2088287228=>1,2088286952=>1,2088286929=>1,2088286978=>1,2088286979=>1,2088286999=>1,2088286982=>1,2088286916=>1,2088286880=>1,2088286832=>1,2088286826=>1,2088286844=>1,2088286853=>1,2088286871=>1,2088286859=>1,2088287008=>1,2088287010=>1,2088287158=>1,2088287126=>1,2088287175=>1,2088287179=>1,2088287215=>1,2088287206=>1,2088287118=>1,2088287105=>1,2088287042=>1,2088287027=>1,2088287049=>1,2088287098=>1,2088287102=>1,2088292627=>1,2088292633=>1,2088296720=>1,2088296708=>1,2088296731=>1,2088296738=>1,2088296789=>1,2088296748=>1,2088296697=>1,2088296655=>1,2088295383=>1,2088295382=>1,2088295400=>1,2088295407=>1,2088296510=>1,2088296460=>1,2088296797=>1,2088296803=>1,2088297033=>1,2088297029=>1,2088297081=>1,2088297102=>1,2088297132=>1,2088297125=>1,2088297005=>1,2088297004=>1,2088296851=>1,2088296823=>1,2088296864=>1,2088296899=>1,2088296994=>1,2088296907=>1,2088295364=>1,2088295359=>1,2088294873=>1,2088294872=>1,2088294883=>1,2088294887=>1,2088294896=>1,2088294891=>1,2088294857=>1,2088294849=>1,2088294764=>1,2088294755=>1,2088294774=>1,2088294784=>1,2088294843=>1,2088294820=>1,2088294919=>1,2088294954=>1,2088295197=>1,2088295193=>1,2088295281=>1,2088295322=>1,2088295341=>1,2088295336=>1,2088295171=>1,2088295160=>1,2088295058=>1,2088295038=>1,2088295066=>1,2088295078=>1,2088295101=>1,2088297148=>1,2088297176=>1,2088298428=>1,2088298363=>1,2088298512=>1,2088298513=>1,2088298571=>1,2088298543=>1,2088298335=>1,2088298322=>1,2088298220=>1,2088298154=>1,2088298234=>1,2088298237=>1,2088298273=>1,2088298256=>1,2088298606=>1,2088298639=>1,2088298750=>1,2088298745=>1,2088298772=>1,2088298781=>1,2088298813=>1,2088298787=>1,2088298723=>1,2088298693=>1,2088298665=>1,2088298660=>1,2088298679=>1,2088298682=>1,2088298686=>1,2088298126=>1,2088298116=>1,2088297363=>1,2088297358=>1,2088297386=>1,2088297438=>1,2088297549=>1,2088297519=>1,2088297329=>1,2088297323=>1,2088297180=>1,2088297177=>1,2088297235=>1,2088297250=>1,2088297305=>1,2088297252=>1,2088297557=>1,2088297606=>1,2088298018=>1,2088298012=>1,2088298036=>1,2088298060=>1,2088298071=>1,2088298069=>1,2088297907=>1,2088297837=>1,2088297634=>1,2088297618=>1,2088297683=>1,2088297767=>1,2088297801=>1,2088294742=>1,2088294731=>1,2088293345=>1,2088293332=>1,2088293359=>1,2088293378=>1,2088293406=>1,2088293400=>1,2088293289=>1,2088293281=>1,2088293240=>1,2088293238=>1,2088293248=>1,2088293252=>1,2088293274=>1,2088293267=>1,2088293408=>1,2088293479=>1,2088293610=>1,2088293601=>1,2088293626=>1,2088293630=>1,2088293691=>1,2088293647=>1,2088293594=>1,2088293561=>1,2088293491=>1,2088293489=>1,2088293508=>1,2088293528=>1,2088293546=>1,2088293534=>1,2088293208=>1,2088293202=>1,2088292780=>1,2088292770=>1,2088292806=>1,2088292841=>1,2088292893=>1,2088292842=>1,2088292745=>1,2088292741=>1,2088292654=>1,2088292641=>1,2088292656=>1,2088292669=>1,2088292719=>1,2088292707=>1,2088292903=>1,2088292916=>1,2088293061=>1,2088293046=>1,2088293085=>1,2088293129=>1,2088293145=>1,2088293143=>1,2088293044=>1,2088293009=>1,2088292941=>1,2088292940=>1,2088292957=>1,2088292971=>1,2088292987=>1,2088293713=>1,2088293726=>1,2088294445=>1,2088294426=>1,2088294453=>1,2088294478=>1,2088294498=>1,2088294481=>1,2088294409=>1,2088294380=>1,2088294328=>1,2088294323=>1,2088294330=>1,2088294364=>1,2088294366=>1,2088294365=>1,2088294505=>1,2088294506=>1,2088294673=>1,2088294660=>1,2088294685=>1,2088294687=>1,2088294720=>1,2088294717=>1,2088294652=>1,2088294637=>1,2088294543=>1,2088294526=>1,2088294544=>1,2088294564=>1,2088294622=>1,2088294314=>1,2088294302=>1,2088293932=>1,2088293909=>1,2088293969=>1,2088293979=>1,2088293987=>1,2088293983=>1,2088293901=>1,2088293891=>1,2088293823=>1,2088293739=>1,2088293831=>1,2088293854=>1,2088293886=>1,2088293855=>1,2088294014=>1,2088294016=>1,2088294234=>1,2088294172=>1,2088294236=>1,2088294254=>1,2088294281=>1,2088294255=>1,2088294154=>1,2088294150=>1,2088294058=>1,2088294032=>1,2088294105=>1,2088294117=>1,2088294122=>1,2088284995=>1,2088284951=>1,2088274373=>1,2088274366=>1,2088274434=>1,2088274500=>1,2088274530=>1,2088274514=>1,2088274321=>1,2088274195=>1,2088274036=>1,2088273952=>1,2088274091=>1,2088274131=>1,2088274183=>1,2088274166=>1,2088274539=>1,2088274559=>1,2088275718=>1,2088274925=>1,2088275731=>1,2088275747=>1,2088275765=>1,2088275757=>1,2088274906=>1,2088274904=>1,2088274646=>1,2088274642=>1,2088274710=>1,2088274714=>1,2088274786=>1,2088274733=>1,2088273924=>1,2088273913=>1,2088273260=>1,2088273230=>1,2088273330=>1,2088273358=>1,2088273428=>1,2088273384=>1,2088273226=>1,2088273141=>1,2088272976=>1,2088272948=>1,2088273015=>1,2088273026=>1,2088273050=>1,2088273047=>1,2088273452=>1,2088273462=>1,2088273647=>1,2088273592=>1,2088273708=>1,2088273728=>1,2088273909=>1,2088273854=>1,2088273586=>1,2088273570=>1,2088273486=>1,2088273473=>1,2088273528=>1,2088273530=>1,2088273531=>1,2088275810=>1,2088275848=>1,2088276929=>1,2088276894=>1,2088276933=>1,2088276997=>1,2088277090=>1,2088277019=>1,2088276892=>1,2088276871=>1,2088276697=>1,2088276689=>1,2088276731=>1,2088276763=>1,2088276852=>1,2088276800=>1,2088277135=>1,2088277147=>1,2088277358=>1,2088277342=>1,2088277369=>1,2088277388=>1,2088277396=>1,2088277392=>1,2088277329=>1,2088277253=>1,2088277182=>1,2088277154=>1,2088277213=>1,2088277219=>1,2088277250=>1,2088276665=>1,2088276641=>1,2088276002=>1,2088275986=>1,2088276048=>1,2088276053=>1,2088276059=>1,2088276056=>1,2088275980=>1,2088275953=>1,2088275898=>1,2088275852=>1,2088275914=>1,2088275915=>1,2088275932=>1,2088275921=>1,2088276152=>1,2088276155=>1,2088276535=>1,2088276510=>1,2088276560=>1,2088276577=>1,2088276613=>1,2088276581=>1,2088276477=>1,2088276413=>1,2088276251=>1,2088276209=>1,2088276308=>1,2088276324=>1,2088276395=>1,2088272934=>1,2088272867=>1,2088270725=>1,2088270722=>1,2088270749=>1,2088270760=>1,2088270767=>1,2088270766=>1,2088270630=>1,2088270595=>1,2088270514=>1,2088270482=>1,2088270525=>1,2088270553=>1,2088270594=>1,2088270558=>1,2088270778=>1,2088270790=>1,2088271045=>1,2088271027=>1,2088271060=>1,2088271116=>1,2088271159=>1,2088271149=>1,2088271016=>1,2088271010=>1,2088270852=>1,2088270825=>1,2088270908=>1,2088270945=>1,2088271009=>1,2088270989=>1,2088270475=>1,2088270459=>1,2088270175=>1,2088270150=>1,2088270179=>1,2088270215=>1,2088270302=>1,2088270289=>1,2088270080=>1,2088270063=>1,2088269977=>1,2088269945=>1,2088270008=>1,2088270035=>1,2088270053=>1,2088270047=>1,2088270307=>1,2088270331=>1,2088270426=>1,2088270414=>1,2088270428=>1,2088270432=>1,2088270456=>1,2088270442=>1,2088270401=>1,2088270397=>1,2088270362=>1,2088270348=>1,2088270368=>1,2088270372=>1,2088270382=>1,2088271163=>1,2088271173=>1,2088272205=>1,2088272191=>1,2088272217=>1,2088272230=>1,2088272257=>1,2088272250=>1,2088272141=>1,2088272078=>1,2088271944=>1,2088271928=>1,2088271948=>1,2088271997=>1,2088272022=>1,2088272014=>1,2088272370=>1,2088272411=>1,2088272819=>1,2088272784=>1,2088272838=>1,2088272840=>1,2088272862=>1,2088272848=>1,2088272778=>1,2088272669=>1,2088272455=>1,2088272421=>1,2088272456=>1,2088272480=>1,2088272610=>1,2088271913=>1,2088271866=>1,2088271377=>1,2088271376=>1,2088271388=>1,2088271406=>1,2088271498=>1,2088271476=>1,2088271374=>1,2088271341=>1,2088271226=>1,2088271218=>1,2088271257=>1,2088271273=>1,2088271279=>1,2088271275=>1,2088271507=>1,2088271541=>1,2088271699=>1,2088271695=>1,2088271700=>1,2088271732=>1,2088271837=>1,2088271792=>1,2088271652=>1,2088271643=>1,2088271558=>1,2088271548=>1,2088271563=>1,2088271567=>1,2088271618=>1,2088277435=>1,2088277436=>1,2088282349=>1,2088282315=>1,2088282364=>1,2088282370=>1,2088282457=>1,2088282451=>1,2088282296=>1,2088282278=>1,2088282140=>1,2088282120=>1,2088282208=>1,2088282220=>1,2088282268=>1,2088282247=>1,2088282545=>1,2088282551=>1,2088282829=>1,2088282801=>1,2088282836=>1,2088282882=>1,2088282939=>1,2088282893=>1,2088282755=>1,2088282694=>1,2088282605=>1,2088282570=>1,2088282618=>1,2088282633=>1,2088282670=>1,2088282660=>1,2088281565=>1,2088281556=>1,2088281224=>1,2088281124=>1,2088281255=>1,2088281262=>1,2088281312=>1,2088281270=>1,2088281117=>1,2088281111=>1,2088281002=>1,2088280954=>1,2088281043=>1,2088281070=>1,2088281100=>1,2088281074=>1,2088281335=>1,2088281339=>1,2088281454=>1,2088281448=>1,2088281503=>1,2088281515=>1,2088281543=>1,2088281541=>1,2088281445=>1,2088281437=>1,2088281373=>1,2088281352=>1,2088281388=>1,2088281414=>1,2088281426=>1,2088282953=>1,2088282969=>1,2088284076=>1,2088284054=>1,2088284089=>1,2088284140=>1,2088284302=>1,2088284246=>1,2088284027=>1,2088283999=>1,2088283885=>1,2088283865=>1,2088283907=>1,2088283915=>1,2088283982=>1,2088283969=>1,2088284347=>1,2088284385=>1,2088284690=>1,2088284671=>1,2088284766=>1,2088284861=>1,2088284908=>1,2088284893=>1,2088284653=>1,2088284622=>1,2088284413=>1,2088284412=>1,2088284453=>1,2088284587=>1,2088284611=>1,2088283860=>1,2088283849=>1,2088283238=>1,2088283234=>1,2088283303=>1,2088283312=>1,2088283319=>1,2088283315=>1,2088283214=>1,2088283167=>1,2088283098=>1,2088283000=>1,2088283104=>1,2088283139=>1,2088283151=>1,2088283150=>1,2088283343=>1,2088283348=>1,2088283711=>1,2088283644=>1,2088283734=>1,2088283754=>1,2088283838=>1,2088283808=>1,2088283583=>1,2088283555=>1,2088283369=>1,2088283354=>1,2088283449=>1,2088283456=>1,2088283525=>1,2088280939=>1,2088280888=>1,2088278408=>1,2088278303=>1,2088278421=>1,2088278463=>1,2088278488=>1,2088278467=>1,2088278295=>1,2088278273=>1,2088278184=>1,2088278175=>1,2088278193=>1,2088278194=>1,2088278256=>1,2088278201=>1,2088278572=>1,2088278576=>1,2088278833=>1,2088278810=>1,2088278866=>1,2088278883=>1,2088278926=>1,2088278905=>1,2088278806=>1,2088278796=>1,2088278586=>1,2088278583=>1,2088278624=>1,2088278707=>1,2088278745=>1,2088278732=>1,2088278167=>1,2088278152=>1,2088277698=>1,2088277634=>1,2088277708=>1,2088277715=>1,2088277806=>1,2088277730=>1,2088277567=>1,2088277540=>1,2088277501=>1,2088277465=>1,2088277509=>1,2088277510=>1,2088277527=>1,2088277523=>1,2088277842=>1,2088277845=>1,2088278005=>1,2088277985=>1,2088278011=>1,2088278057=>1,2088278093=>1,2088278090=>1,2088277984=>1,2088277983=>1,2088277883=>1,2088277868=>1,2088277927=>1,2088277959=>1,2088277978=>1,2088278982=>1,2088279008=>1,2088280229=>1,2088280212=>1,2088280240=>1,2088280244=>1,2088280435=>1,2088280362=>1,2088280200=>1,2088280136=>1,2088279630=>1,2088279587=>1,2088279656=>1,2088279675=>1,2088279806=>1,2088279792=>1,2088280451=>1,2088280453=>1,2088280803=>1,2088280770=>1,2088280815=>1,2088280839=>1,2088280848=>1,2088280843=>1,2088280758=>1,2088280742=>1,2088280550=>1,2088280505=>1,2088280648=>1,2088280687=>1,2088280705=>1,2088279565=>1,2088279544=>1,2088279169=>1,2088279157=>1,2088279178=>1,2088279213=>1,2088279248=>1,2088279226=>1,2088279124=>1,2088279101=>1,2088279018=>1,2088279017=>1,2088279026=>1,2088279032=>1,2088279100=>1,2088279043=>1,2088279250=>1,2088279294=>1,2088279422=>1,2088279419=>1,2088279423=>1,2088279483=>1,2088279541=>1,2088279540=>1,2088279411=>1,2088279403=>1,2088279312=>1,2088279301=>1,2088279313=>1,2088279373=>1,2088279374=>1,2088269925=>1,);?>
1
+ <?php return array(2088379558=>2088379559,2088379544=>2088379545,2088379424=>2088379425,2088379238=>2088379239,2088378860=>2088378861,2088378546=>2088378547,2088378260=>2088378261,2088377212=>2088377213,2088376768=>2088376769,2088376304=>2088376305,2088376132=>2088376133,2088376120=>2088376121,2088375960=>2088375961,2088375290=>2088375291,2088374766=>2088374767,2088371600=>2088371601,2088371160=>2088371161,2088371100=>2088371101,2088314834=>2088314835,2088304226=>2088304227,2088303166=>2088303167,2088302056=>2088302057,2088302050=>2088302051,2088299932=>2088299933,2088299922=>2088299923,2088298512=>2088298513,2088297304=>2088297305,2088297004=>2088297005,2088295382=>2088295383,2088294872=>2088294873,2088294364=>2088294365,2088294302=>2088294303,2088294104=>2088294105,2088293854=>2088293855,2088292940=>2088292941,2088292532=>2088292533,2088289882=>2088289883,2088289652=>2088289653,2088289494=>2088289495,2088370604=>1,2088373877=>1,2088370623=>1,2088370658=>1,2088370730=>1,2088370661=>1,2088370831=>1,2088370894=>1,2088370913=>1,2088370923=>1,2088373846=>1,2088370887=>1,2088370851=>1,2088370822=>1,2088370582=>1,2088370847=>1,2088370795=>1,2088370183=>1,2088315482=>1,2088315444=>1,2088315499=>1,2088315515=>1,2088315529=>1,2088315520=>1,2088315424=>1,2088314805=>1,2088314461=>1,2088314433=>1,2088314541=>1,2088314699=>1,2088314751=>1,2088374103=>1,2088315546=>1,2088370282=>1,2088370939=>1,2088370353=>1,2088370418=>1,2088370429=>1,2088332372=>1,2088315893=>1,2088315564=>1,2088373885=>1,2088315613=>1,2088315835=>1,2088315860=>1,2088370569=>1,2088371054=>1,2088371625=>1,2088371619=>1,2088371640=>1,2088371657=>1,2088371693=>1,2088371674=>1,2088372151=>1,2088371609=>1,2088371575=>1,2088372222=>1,2088371583=>1,2088371587=>1,2088372213=>1,2088371736=>1,2088371749=>1,2088371998=>1,2088371864=>1,2088372004=>1,2088372114=>1,2088372029=>1,2088371857=>1,2088372117=>1,2088371801=>1,2088371756=>1,2088371804=>1,2088371810=>1,2088371830=>1,2088371568=>1,2088371566=>1,2088371149=>1,2088371133=>1,2088314411=>1,2088371163=>1,2088371179=>1,2088371096=>1,2088371086=>1,2088371004=>1,2088371000=>1,2088371039=>1,2088371047=>1,2088372081=>1,2088371221=>1,2088371239=>1,2088371443=>1,2088371438=>1,2088371445=>1,2088371505=>1,2088371506=>1,2088371427=>1,2088371408=>1,2088371282=>1,2088371243=>1,2088371288=>1,2088371335=>1,2088373762=>1,2088370954=>1,2088304853=>1,2088303190=>1,2088303188=>1,2088303208=>1,2088303211=>1,2088303216=>1,2088303214=>1,2088303186=>1,2088303180=>1,2088303046=>1,2088303029=>1,2088303077=>1,2088303101=>1,2088303157=>1,2088303149=>1,2088303218=>1,2088303224=>1,2088303357=>1,2088303355=>1,2088303379=>1,2088303402=>1,2088303422=>1,2088303409=>1,2088303347=>1,2088303342=>1,2088303313=>1,2088303244=>1,2088303322=>1,2088303328=>1,2088303332=>1,2088303003=>1,2088302995=>1,2088302404=>1,2088302332=>1,2088302418=>1,2088302459=>1,2088302479=>1,2088302476=>1,2088302264=>1,2088302228=>1,2088302025=>1,2088302010=>1,2088302043=>1,2088302101=>1,2088302227=>1,2088302191=>1,2088302504=>1,2088302582=>1,2088302810=>1,2088302790=>1,2088302842=>1,2088302855=>1,2088302911=>1,2088302899=>1,2088302767=>1,2088302764=>1,2088302633=>1,2088302595=>1,2088302699=>1,2088302749=>1,2088302751=>1,2088303489=>1,2088303506=>1,2088304323=>1,2088304301=>1,2088304344=>1,2088304644=>1,2088304669=>1,2088304646=>1,2088304279=>1,2088304277=>1,2088304167=>1,2088304152=>1,2088304168=>1,2088304182=>1,2088304252=>1,2088304195=>1,2088304721=>1,2088304730=>1,2088304960=>1,2088304946=>1,2088304974=>1,2088305005=>1,2088305080=>1,2088305075=>1,2088304925=>1,2088304867=>1,2088304794=>1,2088304791=>1,2088304829=>1,2088374149=>1,2088304854=>1,2088304132=>1,2088304130=>1,2088303763=>1,2088303752=>1,2088303817=>1,2088303822=>1,2088303894=>1,2088303841=>1,2088303744=>1,2088303738=>1,2088303547=>1,2088303518=>1,2088303566=>1,2088303592=>1,2088303670=>1,2088303669=>1,2088303901=>1,2088303925=>1,2088304064=>1,2088304063=>1,2088304072=>1,2088304077=>1,2088304120=>1,2088304084=>1,2088304060=>1,2088304037=>1,2088303950=>1,2088303940=>1,2088303976=>1,2088303992=>1,2088304007=>1,2088314398=>1,2088374745=>1,2088377804=>1,2088377687=>1,2088377831=>1,2088377839=>1,2088377887=>1,2088377867=>1,2088377671=>1,2088377654=>1,2088377496=>1,2088377483=>1,2088377552=>1,2088377564=>1,2088377644=>1,2088377568=>1,2088377935=>1,2088377940=>1,2088378165=>1,2088378107=>1,2088378280=>1,2088378315=>1,2088378417=>1,2088378399=>1,2088378087=>1,2088378059=>1,2088377961=>1,2088377943=>1,2088377967=>1,2088378010=>1,2088378017=>1,2088377474=>1,2088377455=>1,2088376780=>1,2088376776=>1,2088376796=>1,2088376813=>1,2088376841=>1,2088376822=>1,2088376764=>1,2088376756=>1,2088376724=>1,2088376704=>1,2088376735=>1,2088376737=>1,2088376745=>1,2088376883=>1,2088376916=>1,2088377277=>1,2088377176=>1,2088377316=>1,2088377403=>1,2088377450=>1,2088377433=>1,2088377167=>1,2088377109=>1,2088376955=>1,2088376940=>1,2088376978=>1,2088376983=>1,2088377020=>1,2088378441=>1,2088378452=>1,2088379247=>1,2088379203=>1,2088379265=>1,2088379282=>1,2088379338=>1,2088379313=>1,2088379191=>1,2088379181=>1,2088379123=>1,2088379063=>1,2088379138=>1,2088379140=>1,2088379142=>1,2088379360=>1,2088379371=>1,2088379519=>1,2088379497=>1,2088379521=>1,2088379561=>1,2088379650=>1,2088379591=>1,2088379490=>1,2088379468=>1,2088379394=>1,2088379389=>1,2088379417=>1,2088379419=>1,2088379438=>1,2088378968=>1,2088378944=>1,2088378600=>1,2088378561=>1,2088378605=>1,2088378606=>1,2088378635=>1,2088378628=>1,2088378557=>1,2088378538=>1,2088378474=>1,2088378466=>1,2088378478=>1,2088378518=>1,2088378523=>1,2088378640=>1,2088378669=>1,2088378827=>1,2088378802=>1,2088378842=>1,2088378885=>1,2088378904=>1,2088378901=>1,2088378790=>1,2088378783=>1,2088378696=>1,2088378679=>1,2088378712=>1,2088378729=>1,2088378746=>1,2088376700=>1,2088376694=>1,2088375425=>1,2088375392=>1,2088375452=>1,2088375467=>1,2088375485=>1,2088375470=>1,2088375356=>1,2088375322=>1,2088375205=>1,2088375176=>1,2088375224=>1,2088375244=>1,2088375314=>1,2088375260=>1,2088375509=>1,2088375520=>1,2088375660=>1,2088375648=>1,2088375668=>1,2088375713=>1,2088375804=>1,2088375722=>1,2088375644=>1,2088375636=>1,2088375554=>1,2088375547=>1,2088375565=>1,2088375572=>1,2088375617=>1,2088375154=>1,2088375098=>1,2088374596=>1,2088374570=>1,2088374624=>1,2088374642=>1,2088374772=>1,2088302000=>1,2088374559=>1,2088374557=>1,2088374203=>1,2088374171=>1,2088374442=>1,2088374454=>1,2088374501=>1,2088374779=>1,2088374802=>1,2088374999=>1,2088374992=>1,2088375069=>1,2088375079=>1,2088375094=>1,2088375082=>1,2088374978=>1,2088374965=>1,2088374824=>1,2088374814=>1,2088374857=>1,2088374921=>1,2088374928=>1,2088375821=>1,2088375823=>1,2088376393=>1,2088376383=>1,2088376396=>1,2088376421=>1,2088376436=>1,2088376434=>1,2088376340=>1,2088376316=>1,2088376285=>1,2088376277=>1,2088376287=>1,2088376306=>1,2088376308=>1,2088376442=>1,2088376448=>1,2088376608=>1,2088376585=>1,2088376626=>1,2088376633=>1,2088376686=>1,2088376642=>1,2088376574=>1,2088376553=>1,2088376485=>1,2088376465=>1,2088376508=>1,2088376517=>1,2088376538=>1,2088376274=>1,2088376264=>1,2088376019=>1,2088376010=>1,2088376022=>1,2088376044=>1,2088376056=>1,2088376052=>1,2088375971=>1,2088375934=>1,2088375836=>1,2088375830=>1,2088375880=>1,2088375887=>1,2088375917=>1,2088376101=>1,2088376141=>1,2088376228=>1,2088376211=>1,2088376231=>1,2088376235=>1,2088376263=>1,2088376244=>1,2088376202=>1,2088376192=>1,2088376146=>1,2088376143=>1,2088376152=>1,2088376177=>1,2088376182=>1,2088374164=>1,2088301858=>1,2088293289=>1,2088293281=>1,2088293322=>1,2088293345=>1,2088293378=>1,2088293359=>1,2088293274=>1,2088293268=>1,2088293202=>1,2088293182=>1,2088293208=>1,2088293238=>1,2088293248=>1,2088293240=>1,2088293400=>1,2088293406=>1,2088293534=>1,2088293528=>1,2088293546=>1,2088293561=>1,2088293630=>1,2088293601=>1,2088293520=>1,2088293508=>1,2088293422=>1,2088293408=>1,2088293479=>1,2088293489=>1,2088293491=>1,2088293177=>1,2088293165=>1,2088292780=>1,2088292770=>1,2088292806=>1,2088292827=>1,2088292842=>1,2088292841=>1,2088292745=>1,2088292723=>1,2088292656=>1,2088292654=>1,2088292669=>1,2088292688=>1,2088292719=>1,2088292707=>1,2088292893=>1,2088292903=>1,2088293046=>1,2088293044=>1,2088293061=>1,2088293085=>1,2088293145=>1,2088293129=>1,2088293035=>1,2088293009=>1,2088292952=>1,2088292916=>1,2088292957=>1,2088292971=>1,2088292987=>1,2088293647=>1,2088293691=>1,2088294380=>1,2088294366=>1,2088294387=>1,2088294407=>1,2088294426=>1,2088294409=>1,2088294330=>1,2088294328=>1,2088294250=>1,2088294236=>1,2088294254=>1,2088294281=>1,2088294323=>1,2088294314=>1,2088294445=>1,2088294453=>1,2088294544=>1,2088294543=>1,2088294564=>1,2088294571=>1,2088294637=>1,2088294622=>1,2088294532=>1,2088294526=>1,2088294481=>1,2088294478=>1,2088294498=>1,2088294505=>1,2088294506=>1,2088294234=>1,2088294217=>1,2088293891=>1,2088293886=>1,2088293901=>1,2088293909=>1,2088293942=>1,2088293932=>1,2088293831=>1,2088293826=>1,2088293780=>1,2088293739=>1,2088293797=>1,2088293805=>1,2088293823=>1,2088293954=>1,2088293969=>1,2088294122=>1,2088294117=>1,2088294145=>1,2088294150=>1,2088294172=>1,2088294154=>1,2088294058=>1,2088294032=>1,2088293987=>1,2088293983=>1,2088294001=>1,2088294014=>1,2088294016=>1,2088292641=>1,2088292633=>1,2088289548=>1,2088289516=>1,2088289559=>1,2088289577=>1,2088289597=>1,2088289591=>1,2088289493=>1,2088289482=>1,2088289405=>1,2088289395=>1,2088289412=>1,2088289428=>1,2088289456=>1,2088289437=>1,2088289606=>1,2088289613=>1,2088289744=>1,2088289737=>1,2088289770=>1,2088289782=>1,2088289788=>1,2088289785=>1,2088289734=>1,2088289733=>1,2088289634=>1,2088289624=>1,2088289666=>1,2088289700=>1,2088289712=>1,2088289383=>1,2088289361=>1,2088288142=>1,2088288120=>1,2088288164=>1,2088288224=>1,2088288230=>1,2088288229=>1,2088288074=>1,2088288062=>1,2088287996=>1,2088287990=>1,2088288022=>1,2088288044=>1,2088288057=>1,2088288050=>1,2088289044=>1,2088289096=>1,2088289296=>1,2088289293=>1,2088289320=>1,2088289329=>1,2088289350=>1,2088289349=>1,2088289287=>1,2088289285=>1,2088289178=>1,2088289142=>1,2088289227=>1,2088289256=>1,2088289278=>1,2088289801=>1,2088289809=>1,2088292393=>1,2088292389=>1,2088292394=>1,2088292409=>1,2088292447=>1,2088292412=>1,2088290292=>1,2088290247=>1,2088290158=>1,2088290145=>1,2088290162=>1,2088290192=>1,2088290226=>1,2088290206=>1,2088292450=>1,2088292456=>1,2088292567=>1,2088292560=>1,2088292570=>1,2088292573=>1,2088292627=>1,2088292583=>1,2088292549=>1,2088292531=>1,2088292464=>1,2088292462=>1,2088292467=>1,2088292468=>1,2088292521=>1,2088290123=>1,2088290119=>1,2088289909=>1,2088289903=>1,2088289911=>1,2088289919=>1,2088289936=>1,2088289928=>1,2088289881=>1,2088289879=>1,2088289833=>1,2088289823=>1,2088289836=>1,2088289846=>1,2088289875=>1,2088289964=>1,2088289995=>1,2088290062=>1,2088290051=>1,2088290087=>1,2088290096=>1,2088290112=>1,2088290101=>1,2088290046=>1,2088290045=>1,2088290000=>1,2088289997=>1,2088290003=>1,2088290010=>1,2088290038=>1,2088294652=>1,2088294673=>1,2088299762=>1,2088299756=>1,2088299821=>1,2088299853=>1,2088299929=>1,2088299905=>1,2088299738=>1,2088299723=>1,2088299645=>1,2088299639=>1,2088299661=>1,2088299666=>1,2088299714=>1,2088299681=>1,2088299950=>1,2088299993=>1,2088300069=>1,2088300055=>1,2088300091=>1,2088300127=>1,2088300172=>1,2088300154=>1,2088300053=>1,2088300049=>1,2088300005=>1,2088300003=>1,2088300024=>1,2088300028=>1,2088300030=>1,2088299627=>1,2088299592=>1,2088299036=>1,2088298975=>1,2088299073=>1,2088299083=>1,2088299178=>1,2088299143=>1,2088298970=>1,2088298951=>1,2088298787=>1,2088298772=>1,2088298813=>1,2088298819=>1,2088298909=>1,2088298904=>1,2088299182=>1,2088299186=>1,2088299325=>1,2088299260=>1,2088299453=>1,2088299499=>1,2088299567=>1,2088299511=>1,2088299233=>1,2088299229=>1,2088299195=>1,2088299193=>1,2088299206=>1,2088299212=>1,2088299224=>1,2088300179=>1,2088300249=>1,2088301564=>1,2088301523=>1,2088301647=>1,2088301664=>1,2088301693=>1,2088301684=>1,2088301478=>1,2088301450=>1,2088301324=>1,2088301322=>1,2088301369=>1,2088301410=>1,2088301437=>1,2088301434=>1,2088301709=>1,2088301720=>1,2088301884=>1,2088301868=>1,2088301898=>1,2088301912=>1,2088301935=>1,2088301929=>1,2088301862=>1,2088287956=>1,2088301810=>1,2088301776=>1,2088301814=>1,2088301840=>1,2088301851=>1,2088301271=>1,2088301234=>1,2088300655=>1,2088300632=>1,2088300672=>1,2088300738=>1,2088300816=>1,2088300785=>1,2088300596=>1,2088300531=>1,2088300343=>1,2088300300=>1,2088300362=>1,2088300405=>1,2088300414=>1,2088300834=>1,2088300843=>1,2088301162=>1,2088301136=>1,2088301165=>1,2088301196=>1,2088301230=>1,2088301209=>1,2088301134=>1,2088301079=>1,2088300878=>1,2088300873=>1,2088300944=>1,2088300962=>1,2088301068=>1,2088298750=>1,2088298735=>1,2088295364=>1,2088295359=>1,2088295368=>1,2088295400=>1,2088296510=>1,2088296460=>1,2088295357=>1,2088295345=>1,2088295285=>1,2088295281=>1,2088295300=>1,2088295322=>1,2088295341=>1,2088295336=>1,2088296655=>1,2088296697=>1,2088296810=>1,2088296803=>1,2088296823=>1,2088296830=>1,2088296851=>1,2088296843=>1,2088296797=>1,2088296789=>1,2088296720=>1,2088296708=>1,2088296731=>1,2088296738=>1,2088296748=>1,2088295193=>1,2088295171=>1,2088294792=>1,2088294784=>1,2088294820=>1,2088294834=>1,2088294849=>1,2088294843=>1,2088294764=>1,2088294755=>1,2088294687=>1,2088294685=>1,2088294717=>1,2088294720=>1,2088294742=>1,2088294731=>1,2088294857=>1,2088294887=>1,2088295066=>1,2088295058=>1,2088295078=>1,2088295101=>1,2088295160=>1,2088295111=>1,2088295038=>1,2088295015=>1,2088294896=>1,2088294891=>1,2088294919=>1,2088294954=>1,2088295004=>1,2088296885=>1,2088296899=>1,2088298154=>1,2088298126=>1,2088298220=>1,2088298234=>1,2088298256=>1,2088298237=>1,2088298116=>1,2088298071=>1,2088298018=>1,2088298012=>1,2088298027=>1,2088298036=>1,2088298060=>1,2088298054=>1,2088298335=>1,2088298363=>1,2088298679=>1,2088298660=>1,2088298682=>1,2088298686=>1,2088298723=>1,2088298693=>1,2088298606=>1,2088298571=>1,2088298392=>1,2088298390=>1,2088298428=>1,2088298478=>1,2088298543=>1,2088297908=>1,2088297907=>1,2088297148=>1,2088297125=>1,2088297180=>1,2088297250=>1,2088297263=>1,2088297252=>1,2088297102=>1,2088297081=>1,2088296994=>1,2088296907=>1,2088297029=>1,2088297033=>1,2088297076=>1,2088297323=>1,2088297332=>1,2088297683=>1,2088297634=>1,2088297767=>1,2088297771=>1,2088297837=>1,2088297801=>1,2088297618=>1,2088297606=>1,2088297358=>1,2088297340=>1,2088297438=>1,2088297519=>1,2088297549=>1,2088301973=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-26.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2088384170=>1,2088384150=>1,2088384205=>1,2088384206=>1,2088384275=>1,2088384222=>1,2088384148=>1,2088384146=>1,2088384069=>1,2088384066=>1,2088384084=>1,2088384118=>1,2088384123=>1,2088384120=>1,2088384280=>1,2088384289=>1,2088384414=>1,2088384397=>1,2088384435=>1,2088384442=>1,2088384505=>1,2088384458=>1,2088384387=>1,2088384379=>1,2088384318=>1,2088384302=>1,2088384329=>1,2088384331=>1,2088384351=>1,2088384339=>1,2088384052=>1,2088384045=>1,2088381258=>1,2088381213=>1,2088381359=>1,2088381458=>1,2088381549=>1,2088381527=>1,2088380768=>1,2088380155=>1,2088380109=>1,2088380101=>1,2088380122=>1,2088380128=>1,2088380143=>1,2088380132=>1,2088381624=>1,2088381642=>1,2088383622=>1,2088383608=>1,2088383789=>1,2088383908=>1,2088384021=>1,2088384020=>1,2088383333=>1,2088383219=>1,2088381763=>1,2088381759=>1,2088382030=>1,2088382365=>1,2088383087=>1,2088384527=>1,2088384539=>1,2088385360=>1,2088385359=>1,2088385382=>1,2088385389=>1,2088385439=>1,2088385431=>1,2088385353=>1,2088385327=>1,2088385196=>1,2088385169=>1,2088385266=>1,2088385285=>1,2088385304=>1,2088385292=>1,2088385483=>1,2088385490=>1,2088385820=>1,2088385760=>1,2088385834=>1,2088385873=>1,2088385946=>1,2088385943=>1,2088385725=>1,2088385711=>1,2088385526=>1,2088385506=>1,2088385634=>1,2088385649=>1,2088385700=>1,2088385697=>1,2088385120=>1,2088385088=>1,2088384729=>1,2088384695=>1,2088384745=>1,2088384748=>1,2088384758=>1,2088384756=>1,2088384683=>1,2088384681=>1,2088384578=>1,2088384573=>1,2088384635=>1,2088384637=>1,2088384675=>1,2088384651=>1,2088384762=>1,2088384787=>1,2088384925=>1,2088384922=>1,2088384933=>1,2088384944=>1,2088385075=>1,2088385058=>1,2088384910=>1,2088384887=>1,2088384829=>1,2088384788=>1,2088384832=>1,2088384840=>1,2088384876=>1,2088380100=>1,2088380076=>1,2088378561=>1,2088378557=>1,2088378600=>1,2088378606=>1,2088378628=>1,2088378617=>1,2088378547=>1,2088378546=>1,2088378474=>1,2088378466=>1,2088378478=>1,2088378510=>1,2088378538=>1,2088378523=>1,2088378635=>1,2088378640=>1,2088378827=>1,2088378802=>1,2088378842=>1,2088378860=>1,2088378885=>1,2088378861=>1,2088378790=>1,2088378783=>1,2088378679=>1,2088378669=>1,2088378696=>1,2088378712=>1,2088378746=>1,2088378729=>1,2088378452=>1,2088378441=>1,2088377940=>1,2088377935=>1,2088377943=>1,2088377961=>1,2088378010=>1,2088377967=>1,2088377887=>1,2088377867=>1,2088377654=>1,2088377644=>1,2088377671=>1,2088377804=>1,2088377839=>1,2088377831=>1,2088378017=>1,2088378040=>1,2088378261=>1,2088378260=>1,2088378280=>1,2088378315=>1,2088378417=>1,2088378399=>1,2088378248=>1,2088378165=>1,2088378083=>1,2088378059=>1,2088378087=>1,2088378107=>1,2088378160=>1,2088378901=>1,2088378904=>1,2088379733=>1,2088379726=>1,2088379744=>1,2088379747=>1,2088379790=>1,2088379748=>1,2088379717=>1,2088379706=>1,2088379607=>1,2088379591=>1,2088379650=>1,2088379661=>1,2088379695=>1,2088379676=>1,2088379803=>1,2088379808=>1,2088380003=>1,2088379975=>1,2088380020=>1,2088380036=>1,2088380049=>1,2088380040=>1,2088379943=>1,2088379922=>1,2088379860=>1,2088379841=>1,2088379879=>1,2088379887=>1,2088379906=>1,2088379586=>1,2088379559=>1,2088379225=>1,2088379203=>1,2088379239=>1,2088379265=>1,2088379313=>1,2088379282=>1,2088379181=>1,2088379142=>1,2088378968=>1,2088378944=>1,2088379063=>1,2088379123=>1,2088379140=>1,2088379138=>1,2088379338=>1,2088379371=>1,2088379493=>1,2088379490=>1,2088379519=>1,2088379521=>1,2088379558=>1,2088379544=>1,2088379468=>1,2088379438=>1,2088379394=>1,2088379389=>1,2088379417=>1,2088379424=>1,2088379425=>1,2088385962=>1,2088385989=>1,2088393423=>1,2088393414=>1,2088393448=>1,2088393460=>1,2088393499=>1,2088393472=>1,2088393379=>1,2088393372=>1,2088393225=>1,2088393214=>1,2088393228=>1,2088393261=>1,2088393364=>1,2088393299=>1,2088393502=>1,2088393525=>1,2088393703=>1,2088393688=>1,2088393736=>1,2088393780=>1,2088393854=>1,2088393787=>1,2088393657=>1,2088393636=>1,2088393587=>1,2088393553=>1,2088393593=>1,2088393600=>1,2088393625=>1,2088393622=>1,2088393182=>1,2088393180=>1,2088391949=>1,2088391948=>1,2088392005=>1,2088392023=>1,2088392123=>1,2088392071=>1,2088391942=>1,2088391408=>1,2088391248=>1,2088391232=>1,2088391259=>1,2088391261=>1,2088391347=>1,2088391287=>1,2088392126=>1,2088392148=>1,2088393122=>1,2088393103=>1,2088393135=>1,2088393163=>1,2088393174=>1,2088393164=>1,2088393083=>1,2088393037=>1,2088392183=>1,2088392157=>1,2088392971=>1,2088392978=>1,2088393021=>1,2088393886=>1,2088393908=>1,2088398971=>1,2088398945=>1,2088398980=>1,2088398981=>1,2088398991=>1,2088398982=>1,2088398929=>1,2088398918=>1,2088398855=>1,2088398854=>1,2088398883=>1,2088398892=>1,2088398905=>1,2088398901=>1,2088398996=>1,2088399015=>1,2088399078=>1,2088399073=>1,2088399120=>1,2088399135=>1,2088399159=>1,2088399142=>1,2088399051=>1,2088399050=>1,2088399030=>1,2088399017=>1,2088399036=>1,2088399039=>1,2088399041=>1,2088398853=>1,2088398851=>1,2088396686=>1,2088396606=>1,2088396707=>1,2088396769=>1,2088397338=>1,2088397232=>1,2088396448=>1,2088396431=>1,2088393965=>1,2088393936=>1,2088395670=>1,2088395721=>1,2088396097=>1,2088395989=>1,2088397502=>1,2088397577=>1,2088397973=>1,2088397893=>1,2088398013=>1,2088398197=>1,2088398327=>1,2088398264=>1,2088397873=>1,2088397849=>1,2088397781=>1,2088397580=>1,2088397784=>1,2088397787=>1,2088397830=>1,2088391223=>1,2088391192=>1,2088389060=>1,2088389049=>1,2088389108=>1,2088389135=>1,2088389144=>1,2088389136=>1,2088389047=>1,2088389039=>1,2088388982=>1,2088388980=>1,2088389001=>1,2088389006=>1,2088389033=>1,2088389024=>1,2088389154=>1,2088389183=>1,2088389440=>1,2088389439=>1,2088389450=>1,2088389458=>1,2088389481=>1,2088389465=>1,2088389415=>1,2088389367=>1,2088389224=>1,2088389207=>1,2088389235=>1,2088389241=>1,2088389323=>1,2088389321=>1,2088388956=>1,2088388954=>1,2088388635=>1,2088388618=>1,2088388654=>1,2088388686=>1,2088388716=>1,2088388712=>1,2088388611=>1,2088386584=>1,2088385995=>1,2088385993=>1,2088386025=>1,2088386035=>1,2088386046=>1,2088386040=>1,2088388745=>1,2088388773=>1,2088388920=>1,2088388904=>1,2088388921=>1,2088388936=>1,2088388952=>1,2088388945=>1,2088388891=>1,2088388877=>1,2088388805=>1,2088388796=>1,2088388811=>1,2088388815=>1,2088388852=>1,2088389485=>1,2088389493=>1,2088390831=>1,2088390813=>1,2088390850=>1,2088390871=>1,2088390902=>1,2088390876=>1,2088390809=>1,2088390793=>1,2088390702=>1,2088390693=>1,2088390761=>1,2088390765=>1,2088390774=>1,2088390771=>1,2088390903=>1,2088390937=>1,2088391137=>1,2088391135=>1,2088391146=>1,2088391153=>1,2088391163=>1,2088391159=>1,2088391129=>1,2088391106=>1,2088390982=>1,2088390971=>1,2088391066=>1,2088391082=>1,2088391099=>1,2088390653=>1,2088390642=>1,2088390404=>1,2088389621=>1,2088390413=>1,2088390419=>1,2088390450=>1,2088390420=>1,2088389620=>1,2088389575=>1,2088389520=>1,2088389504=>1,2088389531=>1,2088389539=>1,2088389569=>1,2088389566=>1,2088390456=>1,2088390465=>1,2088390599=>1,2088390592=>1,2088390611=>1,2088390614=>1,2088390623=>1,2088390615=>1,2088390585=>1,2088390555=>1,2088390496=>1,2088390481=>1,2088390512=>1,2088390515=>1,2088390519=>1,2088377568=>1,2088377564=>1,2088302842=>1,2088302830=>1,2088302855=>1,2088302884=>1,2088302911=>1,2088302899=>1,2088302810=>1,2088302792=>1,2088302749=>1,2088302699=>1,2088302751=>1,2088302764=>1,2088302790=>1,2088302767=>1,2088302995=>1,2088303003=>1,2088303186=>1,2088303180=>1,2088303188=>1,2088303190=>1,2088303211=>1,2088303210=>1,2088303167=>1,2088303166=>1,2088303046=>1,2088303029=>1,2088303077=>1,2088303101=>1,2088303157=>1,2088303149=>1,2088302633=>1,2088302604=>1,2088302025=>1,2088302010=>1,2088302043=>1,2088302050=>1,2088302056=>1,2088302051=>1,2088302000=>1,2088301973=>1,2088301868=>1,2088301862=>1,2088301884=>1,2088301898=>1,2088301935=>1,2088301912=>1,2088302057=>1,2088302101=>1,2088302476=>1,2088302459=>1,2088302479=>1,2088302504=>1,2088302595=>1,2088302582=>1,2088302418=>1,2088302404=>1,2088302227=>1,2088302191=>1,2088302228=>1,2088302264=>1,2088302332=>1,2088303220=>1,2088303224=>1,2088304279=>1,2088304277=>1,2088304323=>1,2088304344=>1,2088304646=>1,2088304644=>1,2088304252=>1,2088304195=>1,2088304064=>1,2088304063=>1,2088304077=>1,2088304120=>1,2088304182=>1,2088304130=>1,2088304829=>1,2088304853=>1,2088315444=>1,2088315424=>1,2088315499=>1,2088315515=>1,2088315529=>1,2088315520=>1,2088314805=>1,2088314699=>1,2088304946=>1,2088304867=>1,2088305075=>1,2088314398=>1,2088314433=>1,2088304060=>1,2088304037=>1,2088303402=>1,2088303379=>1,2088303409=>1,2088303422=>1,2088303506=>1,2088303489=>1,2088303355=>1,2088303342=>1,2088303265=>1,2088303244=>1,2088303313=>1,2088303322=>1,2088303332=>1,2088303328=>1,2088303518=>1,2088303547=>1,2088303841=>1,2088303822=>1,2088303894=>1,2088303901=>1,2088303950=>1,2088303925=>1,2088303817=>1,2088303763=>1,2088303592=>1,2088303566=>1,2088303670=>1,2088303738=>1,2088303744=>1,2088301858=>1,2088301851=>1,2088299821=>1,2088299762=>1,2088299853=>1,2088299878=>1,2088299922=>1,2088299905=>1,2088299756=>1,2088299738=>1,2088299666=>1,2088299661=>1,2088299681=>1,2088299714=>1,2088299737=>1,2088299723=>1,2088299932=>1,2088299933=>1,2088300053=>1,2088300049=>1,2088300055=>1,2088300069=>1,2088300088=>1,2088300087=>1,2088300042=>1,2088300030=>1,2088299993=>1,2088299950=>1,2088300003=>1,2088300005=>1,2088300028=>1,2088300024=>1,2088299645=>1,2088299639=>1,2088299182=>1,2088299178=>1,2088299186=>1,2088299193=>1,2088299206=>1,2088299195=>1,2088299143=>1,2088299083=>1,2088298909=>1,2088298904=>1,2088298951=>1,2088298970=>1,2088299073=>1,2088298975=>1,2088299207=>1,2088299212=>1,2088299571=>1,2088299567=>1,2088299592=>1,2088299627=>1,2088299635=>1,2088299631=>1,2088299511=>1,2088299499=>1,2088299260=>1,2088299233=>1,2088299325=>1,2088299453=>1,2088299490=>1,2088300091=>1,2088300099=>1,2088301410=>1,2088301369=>1,2088301434=>1,2088301437=>1,2088301478=>1,2088301450=>1,2088301324=>1,2088301322=>1,2088301196=>1,2088301165=>1,2088301209=>1,2088301230=>1,2088301271=>1,2088301234=>1,2088301486=>1,2088301496=>1,2088301720=>1,2088301709=>1,2088301776=>1,2088301810=>1,2088301840=>1,2088301814=>1,2088301705=>1,2088301693=>1,2088301564=>1,2088301523=>1,2088301647=>1,2088301664=>1,2088301684=>1,2088301162=>1,2088301136=>1,2088300362=>1,2088300350=>1,2088300405=>1,2088300414=>1,2088300596=>1,2088300531=>1,2088300343=>1,2088300300=>1,2088300154=>1,2088300127=>1,2088300179=>1,2088300181=>1,2088300249=>1,2088300202=>1,2088300632=>1,2088300655=>1,2088300944=>1,2088300916=>1,2088300962=>1,2088301068=>1,2088301134=>1,2088301079=>1,2088300873=>1,2088300843=>1,2088300738=>1,2088300672=>1,2088300810=>1,2088300816=>1,2088300834=>1,2088315546=>1,2088315564=>1,2088376120=>1,2088376101=>1,2088376121=>1,2088376127=>1,2088376133=>1,2088376132=>1,2088376056=>1,2088376052=>1,2088375971=>1,2088375961=>1,2088375981=>1,2088376019=>1,2088376044=>1,2088376022=>1,2088376141=>1,2088376143=>1,2088376263=>1,2088376244=>1,2088376273=>1,2088376274=>1,2088376287=>1,2088376285=>1,2088376235=>1,2088376231=>1,2088376152=>1,2088376146=>1,2088376192=>1,2088376202=>1,2088376230=>1,2088376211=>1,2088375960=>1,2088375934=>1,2088375547=>1,2088375520=>1,2088375554=>1,2088375564=>1,2088375572=>1,2088375565=>1,2088375509=>1,2088375492=>1,2088375425=>1,2088375392=>1,2088375452=>1,2088375467=>1,2088375485=>1,2088375470=>1,2088375617=>1,2088375636=>1,2088375830=>1,2088375823=>1,2088375836=>1,2088375880=>1,2088375917=>1,2088375887=>1,2088375821=>1,2088375804=>1,2088375648=>1,2088375644=>1,2088375668=>1,2088375713=>1,2088375722=>1,2088376304=>1,2088376305=>1,2088376822=>1,2088376813=>1,2088376841=>1,2088376883=>1,2088376978=>1,2088376955=>1,2088376796=>1,2088376780=>1,2088376764=>1,2088376745=>1,2088376768=>1,2088376769=>1,2088376776=>1,2088376770=>1,2088376995=>1,2088377020=>1,2088377433=>1,2088377405=>1,2088377440=>1,2088377483=>1,2088377552=>1,2088377496=>1,2088377403=>1,2088377316=>1,2088377167=>1,2088377109=>1,2088377212=>1,2088377213=>1,2088377277=>1,2088376737=>1,2088376735=>1,2088376442=>1,2088376440=>1,2088376453=>1,2088376464=>1,2088376473=>1,2088376465=>1,2088376436=>1,2088376434=>1,2088376308=>1,2088376306=>1,2088376340=>1,2088376393=>1,2088376421=>1,2088376396=>1,2088376485=>1,2088376508=>1,2088376642=>1,2088376637=>1,2088376686=>1,2088376694=>1,2088376724=>1,2088376704=>1,2088376633=>1,2088376626=>1,2088376538=>1,2088376517=>1,2088376553=>1,2088376585=>1,2088376596=>1,2088375356=>1,2088375322=>1,2088371283=>1,2088371282=>1,2088371302=>1,2088371306=>1,2088371337=>1,2088371335=>1,2088371239=>1,2088371221=>1,2088371149=>1,2088371101=>1,2088371160=>1,2088371161=>1,2088371179=>1,2088371163=>1,2088371408=>1,2088371427=>1,2088371619=>1,2088371609=>1,2088371640=>1,2088371657=>1,2088371695=>1,2088371693=>1,2088371601=>1,2088371587=>1,2088371443=>1,2088371438=>1,2088371445=>1,2088371505=>1,2088371583=>1,2088371566=>1,2088371100=>1,2088371076=>1,2088370604=>1,2088370582=>1,2088370623=>1,2088370658=>1,2088370730=>1,2088370661=>1,2088370569=>1,2088370429=>1,2088315893=>1,2088315613=>1,2088332372=>1,2088370183=>1,2088370353=>1,2088370282=>1,2088370736=>1,2088370743=>1,2088370939=>1,2088370923=>1,2088370954=>1,2088371004=>1,2088371054=>1,2088371047=>1,2088370913=>1,2088370894=>1,2088370831=>1,2088370822=>1,2088370847=>1,2088370851=>1,2088370887=>1,2088371749=>1,2088371756=>1,2088374824=>1,2088374814=>1,2088374857=>1,2088374885=>1,2088374928=>1,2088374908=>1,2088374802=>1,2088374791=>1,2088374624=>1,2088374617=>1,2088374642=>1,2088374745=>1,2088374779=>1,2088374766=>1,2088374978=>1,2088374999=>1,2088375205=>1,2088375176=>1,2088375224=>1,2088375260=>1,2088375314=>1,2088375291=>1,2088375154=>1,2088375103=>1,2088375079=>1,2088375069=>1,2088375082=>1,2088375094=>1,2088375098=>1,2088374597=>1,2088374570=>1,2088372029=>1,2088372026=>1,2088372114=>1,2088372117=>1,2088372213=>1,2088372151=>1,2088372004=>1,2088371998=>1,2088371804=>1,2088371801=>1,2088371810=>1,2088371830=>1,2088371864=>1,2088371857=>1,2088372222=>1,2088373846=>1,2088374448=>1,2088374443=>1,2088374454=>1,2088374501=>1,2088374559=>1,2088374557=>1,2088374442=>1,2088374203=>1,2088373885=>1,2088373877=>1,2088373902=>1,2088374149=>1,2088374164=>1,2088298819=>1,);?>
1
+ <?php return array(2088421840=>2088421841,2088421800=>2088421801,2088421496=>2088421497,2088421436=>2088421437,2088419208=>2088419209,2088413710=>2088413711,2088413340=>2088413341,2088410848=>2088410849,2088401890=>2088401891,2088400130=>2088400131,2088400000=>2088400001,2088399830=>2088399831,2088399326=>2088399327,2088399050=>2088399051,2088398980=>2088398981,2088398854=>2088398855,2088391158=>2088391159,2088390902=>2088390903,2088390614=>2088390615,2088390554=>2088390555,2088388920=>2088388921,2088385634=>2088385635,2088384330=>2088384331,2088384148=>2088384149,2088384020=>2088384021,2088380100=>2088380101,2088409187=>1,2088409346=>1,2088409265=>1,2088409081=>1,2088409245=>1,2088409552=>1,2088410306=>1,2088410229=>1,2088410340=>1,2088410347=>1,2088410373=>1,2088410361=>1,2088410211=>1,2088410200=>1,2088409546=>1,2088409502=>1,2088409597=>1,2088410159=>1,2088410172=>1,2088410165=>1,2088409410=>1,2088409053=>1,2088408889=>1,2088408874=>1,2088408893=>1,2088408894=>1,2088408924=>1,2088408921=>1,2088408870=>1,2088408856=>1,2088408779=>1,2088408766=>1,2088408797=>1,2088408822=>1,2088408850=>1,2088408926=>1,2088408963=>1,2088410455=>1,2088409030=>1,2088409059=>1,2088409061=>1,2088409069=>1,2088409065=>1,2088409029=>1,2088409025=>1,2088408970=>1,2088408969=>1,2088408984=>1,2088408999=>1,2088409015=>1,2088409073=>1,2088410736=>1,2088411794=>1,2088411731=>1,2088411921=>1,2088411932=>1,2088411996=>1,2088411935=>1,2088411708=>1,2088411677=>1,2088411479=>1,2088411476=>1,2088411508=>1,2088411551=>1,2088411638=>1,2088411611=>1,2088412036=>1,2088412054=>1,2088412370=>1,2088412351=>1,2088412381=>1,2088412398=>1,2088412444=>1,2088412442=>1,2088412308=>1,2088412299=>1,2088412081=>1,2088412063=>1,2088412101=>1,2088412211=>1,2088412237=>1,2088411473=>1,2088411396=>1,2088408755=>1,2088410635=>1,2088410755=>1,2088410761=>1,2088410795=>1,2088410787=>1,2088410633=>1,2088410595=>1,2088410484=>1,2088410476=>1,2088410490=>1,2088410538=>1,2088410556=>1,2088410812=>1,2088410888=>1,2088411256=>1,2088411233=>1,2088411260=>1,2088411316=>1,2088411386=>1,2088411359=>1,2088411190=>1,2088411185=>1,2088411036=>1,2088410924=>1,2088411050=>1,2088411139=>1,2088411154=>1,2088410470=>1,2088408674=>1,2088403985=>1,2088403972=>1,2088403993=>1,2088403996=>1,2088404118=>1,2088404117=>1,2088403926=>1,2088403871=>1,2088403379=>1,2088403245=>1,2088403569=>1,2088403783=>1,2088403825=>1,2088403807=>1,2088404247=>1,2088404320=>1,2088406508=>1,2088406491=>1,2088406523=>1,2088406551=>1,2088406601=>1,2088406584=>1,2088406420=>1,2088406412=>1,2088406325=>1,2088404382=>1,2088406329=>1,2088406351=>1,2088406411=>1,2088406355=>1,2088403216=>1,2088403131=>1,2088402372=>1,2088402367=>1,2088402412=>1,2088402416=>1,2088402508=>1,2088402504=>1,2088402353=>1,2088402302=>1,2088402196=>1,2088402194=>1,2088402231=>1,2088402245=>1,2088402280=>1,2088402250=>1,2088402539=>1,2088402561=>1,2088402877=>1,2088402791=>1,2088402939=>1,2088402951=>1,2088403051=>1,2088402969=>1,2088402764=>1,2088402755=>1,2088402632=>1,2088402629=>1,2088402651=>1,2088402691=>1,2088402729=>1,2088406692=>1,2088406713=>1,2088408454=>1,2088408449=>1,2088408461=>1,2088408466=>1,2088408490=>1,2088408489=>1,2088408421=>1,2088408378=>1,2088408149=>1,2088408103=>1,2088408170=>1,2088408247=>1,2088408363=>1,2088408353=>1,2088408543=>1,2088408632=>1,2088408689=>1,2088408677=>1,2088408701=>1,2088408707=>1,2088408732=>1,2088408710=>1,2088412484=>1,2088408667=>1,2088408637=>1,2088408634=>1,2088408638=>1,2088408652=>1,2088408658=>1,2088407751=>1,2088407742=>1,2088406954=>1,2088406910=>1,2088407088=>1,2088407163=>1,2088407256=>1,2088407225=>1,2088406902=>1,2088406886=>1,2088406744=>1,2088406741=>1,2088406746=>1,2088406794=>1,2088406854=>1,2088406797=>1,2088407276=>1,2088407328=>1,2088407582=>1,2088407542=>1,2088407606=>1,2088407668=>1,2088407687=>1,2088407682=>1,2088407523=>1,2088407457=>1,2088407352=>1,2088407343=>1,2088407360=>1,2088407437=>1,2088407440=>1,2088408735=>1,2088412663=>1,2088417069=>1,2088416913=>1,2088417079=>1,2088417100=>1,2088417222=>1,2088417111=>1,2088416831=>1,2088416822=>1,2088416715=>1,2088416650=>1,2088416729=>1,2088416739=>1,2088416790=>1,2088416765=>1,2088417231=>1,2088417234=>1,2088417834=>1,2088417492=>1,2088417844=>1,2088418011=>1,2088418104=>1,2088418053=>1,2088417364=>1,2088417328=>1,2088417284=>1,2088417275=>1,2088417290=>1,2088417324=>1,2088417326=>1,2088416617=>1,2088416596=>1,2088416266=>1,2088416265=>1,2088416291=>1,2088416298=>1,2088416312=>1,2088416310=>1,2088416248=>1,2088416239=>1,2088416173=>1,2088416150=>1,2088416180=>1,2088416195=>1,2088416229=>1,2088416201=>1,2088416326=>1,2088416333=>1,2088416501=>1,2088416471=>1,2088416502=>1,2088416522=>1,2088416589=>1,2088416575=>1,2088416462=>1,2088416459=>1,2088416383=>1,2088416377=>1,2088416406=>1,2088416415=>1,2088416451=>1,2088418142=>1,2088418152=>1,2088421544=>1,2088421527=>1,2088421571=>1,2088421586=>1,2088421650=>1,2088421633=>1,2088421523=>1,2088421516=>1,2088421418=>1,2088421379=>1,2088421426=>1,2088421460=>1,2088421499=>1,2088421479=>1,2088421665=>1,2088421702=>1,2088421810=>1,2088421775=>1,2088421843=>1,2088421876=>1,2088421908=>1,2088421897=>1,2088421769=>1,2088421756=>1,2088421731=>1,2088421729=>1,2088421734=>1,2088421736=>1,2088421751=>1,2088419320=>1,2088419308=>1,2088419110=>1,2088419083=>1,2088419119=>1,2088419122=>1,2088419141=>1,2088419133=>1,2088419076=>1,2088418259=>1,2088418167=>1,2088418163=>1,2088418186=>1,2088418211=>1,2088418242=>1,2088419143=>1,2088419155=>1,2088419248=>1,2088419244=>1,2088419271=>1,2088419293=>1,2088419306=>1,2088419296=>1,2088419236=>1,2088419214=>1,2088419180=>1,2088419170=>1,2088419195=>1,2088419197=>1,2088419199=>1,2088416137=>1,2088416133=>1,2088413891=>1,2088413866=>1,2088413923=>1,2088413931=>1,2088414096=>1,2088414067=>1,2088413847=>1,2088413793=>1,2088413703=>1,2088413683=>1,2088413726=>1,2088413728=>1,2088413757=>1,2088413740=>1,2088414127=>1,2088414234=>1,2088414675=>1,2088414673=>1,2088414693=>1,2088414703=>1,2088414765=>1,2088414752=>1,2088414603=>1,2088414565=>1,2088414261=>1,2088414239=>1,2088414398=>1,2088414426=>1,2088414462=>1,2088413671=>1,2088413648=>1,2088412776=>1,2088412725=>1,2088412874=>1,2088412924=>1,2088413197=>1,2088413191=>1,2088412718=>1,2088402174=>1,2088412556=>1,2088412552=>1,2088412574=>1,2088412590=>1,2088412599=>1,2088412597=>1,2088413252=>1,2088413254=>1,2088413466=>1,2088413436=>1,2088413521=>1,2088413568=>1,2088413636=>1,2088413579=>1,2088413429=>1,2088413403=>1,2088413319=>1,2088413298=>1,2088413348=>1,2088413376=>1,2088413378=>1,2088414803=>1,2088414847=>1,2088415939=>1,2088415885=>1,2088415944=>1,2088415948=>1,2088415976=>1,2088415966=>1,2088415873=>1,2088415809=>1,2088415680=>1,2088415677=>1,2088415735=>1,2088415781=>1,2088415806=>1,2088415786=>1,2088415979=>1,2088415980=>1,2088416097=>1,2088416070=>1,2088416099=>1,2088416103=>1,2088416130=>1,2088416107=>1,2088416069=>1,2088416041=>1,2088416006=>1,2088415992=>1,2088416012=>1,2088416016=>1,2088416029=>1,2088415665=>1,2088415610=>1,2088415116=>1,2088415095=>1,2088415161=>1,2088415176=>1,2088415290=>1,2088415224=>1,2088415037=>1,2088415024=>1,2088414951=>1,2088414869=>1,2088414967=>1,2088414969=>1,2088415020=>1,2088415299=>1,2088415338=>1,2088415509=>1,2088415504=>1,2088415515=>1,2088415570=>1,2088415592=>1,2088415584=>1,2088415477=>1,2088415417=>1,2088415371=>1,2088415354=>1,2088415379=>1,2088415386=>1,2088415402=>1,2088412536=>1,2088402076=>1,2088388982=>1,2088388980=>1,2088389001=>1,2088389006=>1,2088389024=>1,2088389021=>1,2088388963=>1,2088388961=>1,2088388936=>1,2088388904=>1,2088388945=>1,2088388952=>1,2088388956=>1,2088388954=>1,2088389033=>1,2088389039=>1,2088389207=>1,2088389154=>1,2088389224=>1,2088389235=>1,2088389321=>1,2088389241=>1,2088389144=>1,2088389136=>1,2088389047=>1,2088389042=>1,2088389058=>1,2088389060=>1,2088389135=>1,2088388895=>1,2088388891=>1,2088386040=>1,2088386025=>1,2088386046=>1,2088386584=>1,2088388618=>1,2088388611=>1,2088386014=>1,2088385995=>1,2088385888=>1,2088385873=>1,2088385943=>1,2088385946=>1,2088385989=>1,2088385962=>1,2088388621=>1,2088388635=>1,2088388811=>1,2088388805=>1,2088388815=>1,2088388849=>1,2088388877=>1,2088388852=>1,2088388796=>1,2088388773=>1,2088388654=>1,2088388642=>1,2088388712=>1,2088388716=>1,2088388745=>1,2088389323=>1,2088389367=>1,2088390679=>1,2088390653=>1,2088390693=>1,2088390702=>1,2088390765=>1,2088390761=>1,2088390642=>1,2088390627=>1,2088390585=>1,2088390542=>1,2088390592=>1,2088390599=>1,2088390623=>1,2088390611=>1,2088390771=>1,2088390774=>1,2088390910=>1,2088390876=>1,2088390937=>1,2088390971=>1,2088391066=>1,2088390982=>1,2088390871=>1,2088390850=>1,2088390793=>1,2088390778=>1,2088390809=>1,2088390813=>1,2088390831=>1,2088390519=>1,2088390515=>1,2088389485=>1,2088389481=>1,2088389490=>1,2088389493=>1,2088389520=>1,2088389504=>1,2088389465=>1,2088389458=>1,2088389415=>1,2088389383=>1,2088389439=>1,2088389440=>1,2088389450=>1,2088389531=>1,2088389539=>1,2088390463=>1,2088390456=>1,2088390465=>1,2088390481=>1,2088390512=>1,2088390496=>1,2088390450=>1,2088390420=>1,2088389575=>1,2088389569=>1,2088389620=>1,2088390404=>1,2088390419=>1,2088385846=>1,2088385834=>1,2088384150=>1,2088384146=>1,2088384170=>1,2088384205=>1,2088384222=>1,2088384206=>1,2088384120=>1,2088384118=>1,2088384045=>1,2088384019=>1,2088384052=>1,2088384066=>1,2088384084=>1,2088384069=>1,2088384275=>1,2088384280=>1,2088384414=>1,2088384397=>1,2088384442=>1,2088384458=>1,2088384573=>1,2088384505=>1,2088384387=>1,2088384379=>1,2088384302=>1,2088384289=>1,2088384318=>1,2088384329=>1,2088384351=>1,2088380155=>1,2088380143=>1,2088379813=>1,2088379803=>1,2088379841=>1,2088379860=>1,2088379887=>1,2088379879=>1,2088379748=>1,2088379747=>1,2088379717=>1,2088379706=>1,2088379718=>1,2088379726=>1,2088379744=>1,2088379733=>1,2088379906=>1,2088379922=>1,2088380076=>1,2088380054=>1,2088380107=>1,2088380122=>1,2088380132=>1,2088380128=>1,2088380049=>1,2088380036=>1,2088379975=>1,2088379943=>1,2088379995=>1,2088380003=>1,2088380020=>1,2088384578=>1,2088384581=>1,2088385304=>1,2088385292=>1,2088385327=>1,2088385353=>1,2088385360=>1,2088385359=>1,2088385285=>1,2088385266=>1,2088385088=>1,2088385075=>1,2088385120=>1,2088385169=>1,2088385239=>1,2088385196=>1,2088385365=>1,2088385382=>1,2088385700=>1,2088385697=>1,2088385711=>1,2088385725=>1,2088385820=>1,2088385760=>1,2088385649=>1,2088385526=>1,2088385431=>1,2088385389=>1,2088385433=>1,2088385483=>1,2088385490=>1,2088385058=>1,2088385027=>1,2088384709=>1,2088384695=>1,2088384729=>1,2088384745=>1,2088384756=>1,2088384748=>1,2088384683=>1,2088384681=>1,2088384635=>1,2088384613=>1,2088384637=>1,2088384651=>1,2088384675=>1,2088384758=>1,2088384762=>1,2088384910=>1,2088384887=>1,2088384922=>1,2088384925=>1,2088384944=>1,2088384933=>1,2088384867=>1,2088384840=>1,2088384790=>1,2088384787=>1,2088384798=>1,2088384829=>1,2088384832=>1,2088391099=>1,2088391106=>1,2088399993=>1,2088399971=>1,2088400013=>1,2088400022=>1,2088400058=>1,2088400026=>1,2088399946=>1,2088399935=>1,2088399900=>1,2088399896=>1,2088399902=>1,2088399923=>1,2088399928=>1,2088399924=>1,2088400074=>1,2088400078=>1,2088400184=>1,2088400158=>1,2088400189=>1,2088400197=>1,2088400223=>1,2088400219=>1,2088400149=>1,2088400139=>1,2088400104=>1,2088400085=>1,2088400107=>1,2088400125=>1,2088400135=>1,2088399875=>1,2088399824=>1,2088399590=>1,2088399547=>1,2088399601=>1,2088399605=>1,2088399617=>1,2088399610=>1,2088399530=>1,2088399520=>1,2088399462=>1,2088399426=>1,2088399490=>1,2088399493=>1,2088399516=>1,2088399498=>1,2088399626=>1,2088399644=>1,2088399746=>1,2088399745=>1,2088399751=>1,2088399754=>1,2088399804=>1,2088399790=>1,2088399743=>1,2088399738=>1,2088399687=>1,2088399669=>1,2088399701=>1,2088399709=>1,2088399727=>1,2088400226=>1,2088400229=>1,2088401852=>1,2088401850=>1,2088401856=>1,2088401878=>1,2088401933=>1,2088401909=>1,2088401825=>1,2088401816=>1,2088401715=>1,2088401713=>1,2088401750=>1,2088401771=>1,2088401801=>1,2088401799=>1,2088401937=>1,2088401940=>1,2088402103=>1,2088402083=>1,2088402109=>1,2088402139=>1,2088402162=>1,2088402157=>1,2088402080=>1,2088402079=>1,2088401979=>1,2088401947=>1,2088401991=>1,2088402005=>1,2088379661=>1,2088401707=>1,2088401679=>1,2088400339=>1,2088400336=>1,2088400342=>1,2088400344=>1,2088400366=>1,2088400364=>1,2088400300=>1,2088400299=>1,2088400268=>1,2088400232=>1,2088400275=>1,2088400283=>1,2088400295=>1,2088400386=>1,2088400443=>1,2088401557=>1,2088401548=>1,2088401560=>1,2088401579=>1,2088401622=>1,2088401611=>1,2088401495=>1,2088401418=>1,2088400549=>1,2088400505=>1,2088400569=>1,2088400637=>1,2088401410=>1,2088399409=>1,2088399405=>1,2088393182=>1,2088393180=>1,2088393214=>1,2088393225=>1,2088393261=>1,2088393228=>1,2088393174=>1,2088393164=>1,2088393103=>1,2088393083=>1,2088393122=>1,2088393135=>1,2088393163=>1,2088393152=>1,2088393299=>1,2088393358=>1,2088393472=>1,2088393460=>1,2088393499=>1,2088393502=>1,2088393553=>1,2088393525=>1,2088393448=>1,2088393445=>1,2088393379=>1,2088393364=>1,2088393414=>1,2088393417=>1,2088393423=>1,2088393076=>1,2088393062=>1,2088391248=>1,2088391211=>1,2088391259=>1,2088391261=>1,2088391389=>1,2088391287=>1,2088391186=>1,2088391163=>1,2088391135=>1,2088391129=>1,2088391137=>1,2088391144=>1,2088391146=>1,2088391408=>1,2088391942=>1,2088392183=>1,2088392157=>1,2088392971=>1,2088392978=>1,2088393037=>1,2088392997=>1,2088392148=>1,2088392126=>1,2088392005=>1,2088391948=>1,2088392023=>1,2088392071=>1,2088392123=>1,2088393587=>1,2088393593=>1,2088399142=>1,2088399135=>1,2088399144=>1,2088399159=>1,2088399165=>1,2088399160=>1,2088399085=>1,2088399078=>1,2088399030=>1,2088399017=>1,2088399036=>1,2088399039=>1,2088399073=>1,2088399041=>1,2088399169=>1,2088399176=>1,2088399366=>1,2088399352=>1,2088399378=>1,2088399381=>1,2088399395=>1,2088399383=>1,2088399340=>1,2088399339=>1,2088399205=>1,2088399195=>1,2088399251=>1,2088399316=>1,2088399333=>1,2088399015=>1,2088398991=>1,2088396431=>1,2088393936=>1,2088396448=>1,2088396606=>1,2088396707=>1,2088396686=>1,2088393908=>1,2088393703=>1,2088393622=>1,2088393600=>1,2088393625=>1,2088393657=>1,2088393688=>1,2088396769=>1,2088397830=>1,2088398905=>1,2088398901=>1,2088398945=>1,2088398963=>1,2088398982=>1,2088398971=>1,2088398892=>1,2088398883=>1,2088397873=>1,2088397849=>1,2088398013=>1,2088398851=>1,2088398853=>1,2088402166=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-27.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2088419236=>1,2088419214=>1,2088419244=>1,2088419248=>1,2088419271=>1,2088419253=>1,2088419209=>1,2088419208=>1,2088419170=>1,2088419155=>1,2088419180=>1,2088419195=>1,2088419199=>1,2088419197=>1,2088419296=>1,2088419306=>1,2088421497=>1,2088421496=>1,2088421499=>1,2088421516=>1,2088421582=>1,2088421523=>1,2088421479=>1,2088421460=>1,2088421379=>1,2088419308=>1,2088421418=>1,2088421426=>1,2088421437=>1,2088421436=>1,2088419143=>1,2088419141=>1,2088417364=>1,2088417328=>1,2088417492=>1,2088417834=>1,2088418011=>1,2088417844=>1,2088417326=>1,2088417324=>1,2088417231=>1,2088417222=>1,2088417234=>1,2088417275=>1,2088417290=>1,2088417284=>1,2088418053=>1,2088418104=>1,2088419076=>1,2088418293=>1,2088419083=>1,2088419110=>1,2088419133=>1,2088419119=>1,2088418259=>1,2088418242=>1,2088418152=>1,2088418142=>1,2088418167=>1,2088418186=>1,2088418211=>1,2088421586=>1,2088421633=>1,2088422265=>1,2088422227=>1,2088422275=>1,2088422287=>1,2088422315=>1,2088422305=>1,2088422226=>1,2088422225=>1,2088422187=>1,2088422185=>1,2088422198=>1,2088422202=>1,2088422219=>1,2088422204=>1,2088422337=>1,2088422347=>1,2088422463=>1,2088422456=>1,2088422475=>1,2088422511=>1,2088422546=>1,2088422532=>1,2088422453=>1,2088422425=>1,2088422372=>1,2088422360=>1,2088422388=>1,2088422390=>1,2088422396=>1,2088422395=>1,2088422184=>1,2088422180=>1,2088421769=>1,2088421756=>1,2088421775=>1,2088421810=>1,2088421869=>1,2088421843=>1,2088421751=>1,2088421737=>1,2088421665=>1,2088421650=>1,2088421702=>1,2088421729=>1,2088421734=>1,2088421731=>1,2088421876=>1,2088421900=>1,2088422117=>1,2088422047=>1,2088422130=>1,2088422133=>1,2088422171=>1,2088422152=>1,2088422017=>1,2088421975=>1,2088421910=>1,2088421908=>1,2088421926=>1,2088421938=>1,2088421944=>1,2088417152=>1,2088417111=>1,2088415786=>1,2088415781=>1,2088415806=>1,2088415809=>1,2088415873=>1,2088415861=>1,2088415735=>1,2088415680=>1,2088415550=>1,2088415515=>1,2088415592=>1,2088415610=>1,2088415677=>1,2088415665=>1,2088415885=>1,2088415918=>1,2088416012=>1,2088416006=>1,2088416016=>1,2088416029=>1,2088416069=>1,2088416041=>1,2088415992=>1,2088415980=>1,2088415944=>1,2088415939=>1,2088415948=>1,2088415966=>1,2088415979=>1,2088415976=>1,2088415509=>1,2088415504=>1,2088414969=>1,2088414967=>1,2088414991=>1,2088415020=>1,2088415037=>1,2088415024=>1,2088414951=>1,2088414938=>1,2088414803=>1,2088414765=>1,2088414847=>1,2088414869=>1,2088414901=>1,2088414884=>1,2088415095=>1,2088415116=>1,2088415386=>1,2088415379=>1,2088415402=>1,2088415417=>1,2088415490=>1,2088415477=>1,2088415354=>1,2088415338=>1,2088415176=>1,2088415161=>1,2088415224=>1,2088415290=>1,2088415299=>1,2088416070=>1,2088416093=>1,2088416587=>1,2088416575=>1,2088416589=>1,2088416596=>1,2088416635=>1,2088416617=>1,2088416540=>1,2088416522=>1,2088416459=>1,2088416451=>1,2088416462=>1,2088416471=>1,2088416502=>1,2088416501=>1,2088416650=>1,2088416715=>1,2088416913=>1,2088416832=>1,2088417032=>1,2088417069=>1,2088417100=>1,2088417079=>1,2088416831=>1,2088416822=>1,2088416732=>1,2088416729=>1,2088416739=>1,2088416765=>1,2088416790=>1,2088416415=>1,2088416408=>1,2088416180=>1,2088416176=>1,2088416195=>1,2088416199=>1,2088416229=>1,2088416201=>1,2088416155=>1,2088416137=>1,2088416099=>1,2088416097=>1,2088416103=>1,2088416107=>1,2088416133=>1,2088416130=>1,2088416239=>1,2088416248=>1,2088416326=>1,2088416312=>1,2088416333=>1,2088416377=>1,2088416383=>1,2088416381=>1,2088416310=>1,2088416298=>1,2088416265=>1,2088416252=>1,2088416266=>1,2088416272=>1,2088416291=>1,2088422556=>1,2088422573=>1,2088428876=>1,2088428870=>1,2088428878=>1,2088428880=>1,2088428954=>1,2088428939=>1,2088428842=>1,2088428838=>1,2088428805=>1,2088428783=>1,2088428810=>1,2088428813=>1,2088428835=>1,2088428833=>1,2088428957=>1,2088428959=>1,2088429114=>1,2088429085=>1,2088429130=>1,2088429153=>1,2088429205=>1,2088429168=>1,2088429077=>1,2088429048=>1,2088429021=>1,2088429003=>1,2088429030=>1,2088429037=>1,2088429043=>1,2088429039=>1,2088428761=>1,2088428712=>1,2088427738=>1,2088427461=>1,2088427848=>1,2088427888=>1,2088428092=>1,2088427957=>1,2088427449=>1,2088427377=>1,2088427196=>1,2088427059=>1,2088427243=>1,2088427313=>1,2088427349=>1,2088427314=>1,2088428129=>1,2088428190=>1,2088428416=>1,2088428406=>1,2088428480=>1,2088428507=>1,2088428658=>1,2088428617=>1,2088428388=>1,2088428380=>1,2088428280=>1,2088428206=>1,2088428307=>1,2088428351=>1,2088428369=>1,2088429220=>1,2088429230=>1,2088430544=>1,2088430529=>1,2088430562=>1,2088430586=>1,2088430597=>1,2088430595=>1,2088430516=>1,2088430515=>1,2088430252=>1,2088430251=>1,2088430305=>1,2088430342=>1,2088430436=>1,2088430400=>1,2088430623=>1,2088430676=>1,2088430901=>1,2088430899=>1,2088430948=>1,2088430998=>1,2088431009=>1,2088431004=>1,2088430857=>1,2088430787=>1,2088430710=>1,2088430704=>1,2088430722=>1,2088430734=>1,2088430778=>1,2088430245=>1,2088430233=>1,2088429499=>1,2088429479=>1,2088429572=>1,2088429646=>1,2088429840=>1,2088429692=>1,2088429474=>1,2088429437=>1,2088429238=>1,2088429232=>1,2088429262=>1,2088429295=>1,2088429310=>1,2088429305=>1,2088429844=>1,2088429868=>1,2088430173=>1,2088430168=>1,2088430187=>1,2088430193=>1,2088430227=>1,2088430208=>1,2088430161=>1,2088430090=>1,2088429963=>1,2088429878=>1,2088429981=>1,2088430027=>1,2088430082=>1,2088427037=>1,2088427027=>1,2088423248=>1,2088423247=>1,2088423255=>1,2088423258=>1,2088423317=>1,2088423271=>1,2088423211=>1,2088423210=>1,2088423075=>1,2088423027=>1,2088423096=>1,2088423098=>1,2088423139=>1,2088423123=>1,2088423334=>1,2088423338=>1,2088423427=>1,2088423409=>1,2088423446=>1,2088423463=>1,2088423467=>1,2088423465=>1,2088423407=>1,2088423386=>1,2088423348=>1,2088423340=>1,2088423352=>1,2088423366=>1,2088423375=>1,2088423374=>1,2088423003=>1,2088422980=>1,2088422680=>1,2088422666=>1,2088422723=>1,2088422726=>1,2088422752=>1,2088422742=>1,2088422650=>1,2088422644=>1,2088422579=>1,2088422574=>1,2088422594=>1,2088422629=>1,2088422635=>1,2088422634=>1,2088422754=>1,2088422765=>1,2088422842=>1,2088422838=>1,2088422886=>1,2088422917=>1,2088422975=>1,2088422941=>1,2088422835=>1,2088422820=>1,2088422802=>1,2088422771=>1,2088422803=>1,2088422809=>1,2088422815=>1,2088423474=>1,2088423476=>1,2088425146=>1,2088424921=>1,2088426025=>1,2088426057=>1,2088426212=>1,2088426154=>1,2088424843=>1,2088424742=>1,2088424609=>1,2088424600=>1,2088424611=>1,2088424627=>1,2088424732=>1,2088424640=>1,2088426230=>1,2088426262=>1,2088426869=>1,2088426844=>1,2088426875=>1,2088426898=>1,2088426953=>1,2088426951=>1,2088426591=>1,2088426499=>1,2088426328=>1,2088426282=>1,2088426409=>1,2088426419=>1,2088426486=>1,2088424533=>1,2088424499=>1,2088423595=>1,2088423573=>1,2088423600=>1,2088423623=>1,2088423666=>1,2088423637=>1,2088423564=>1,2088423559=>1,2088423519=>1,2088423511=>1,2088423524=>1,2088423525=>1,2088423544=>1,2088423543=>1,2088423713=>1,2088424046=>1,2088424239=>1,2088424187=>1,2088424309=>1,2088424371=>1,2088424405=>1,2088424380=>1,2088424175=>1,2088424141=>1,2088424078=>1,2088424054=>1,2088424098=>1,2088424100=>1,2088424118=>1,2088414752=>1,2088414703=>1,2088402561=>1,2088402544=>1,2088402629=>1,2088402632=>1,2088402691=>1,2088402651=>1,2088402539=>1,2088402508=>1,2088402372=>1,2088402353=>1,2088402416=>1,2088402484=>1,2088402507=>1,2088402504=>1,2088402717=>1,2088402729=>1,2088403051=>1,2088403039=>1,2088403131=>1,2088403216=>1,2088403379=>1,2088403245=>1,2088402969=>1,2088402951=>1,2088402764=>1,2088402755=>1,2088402791=>1,2088402820=>1,2088402939=>1,2088402877=>1,2088402302=>1,2088402280=>1,2088401909=>1,2088401890=>1,2088401933=>1,2088401937=>1,2088401947=>1,2088401940=>1,2088401878=>1,2088401856=>1,2088401799=>1,2088401771=>1,2088401801=>1,2088401816=>1,2088401850=>1,2088401825=>1,2088401979=>1,2088401991=>1,2088402157=>1,2088402139=>1,2088402166=>1,2088402196=>1,2088402250=>1,2088402231=>1,2088402109=>1,2088402103=>1,2088402076=>1,2088402005=>1,2088402079=>1,2088402080=>1,2088402083=>1,2088403569=>1,2088403783=>1,2088406904=>1,2088406902=>1,2088406910=>1,2088406954=>1,2088407072=>1,2088406997=>1,2088406886=>1,2088406854=>1,2088406741=>1,2088406713=>1,2088406744=>1,2088406746=>1,2088406797=>1,2088406794=>1,2088407088=>1,2088407163=>1,2088407343=>1,2088407328=>1,2088407352=>1,2088407360=>1,2088407437=>1,2088407407=>1,2088407276=>1,2088407256=>1,2088407201=>1,2088407188=>1,2088407225=>1,2088407234=>1,2088407247=>1,2088406692=>1,2088406601=>1,2088404117=>1,2088404024=>1,2088404118=>1,2088404238=>1,2088404320=>1,2088404247=>1,2088403996=>1,2088403993=>1,2088403825=>1,2088403807=>1,2088403871=>1,2088403926=>1,2088403985=>1,2088403972=>1,2088404332=>1,2088404382=>1,2088406491=>1,2088406434=>1,2088406508=>1,2088406523=>1,2088406584=>1,2088406551=>1,2088406420=>1,2088406412=>1,2088406329=>1,2088406325=>1,2088406351=>1,2088406355=>1,2088406411=>1,2088401750=>1,2088401715=>1,2088399709=>1,2088399701=>1,2088399727=>1,2088399738=>1,2088399746=>1,2088399745=>1,2088399687=>1,2088399669=>1,2088399605=>1,2088399601=>1,2088399610=>1,2088399617=>1,2088399644=>1,2088399626=>1,2088399751=>1,2088399754=>1,2088399924=>1,2088399912=>1,2088399928=>1,2088399935=>1,2088399971=>1,2088399946=>1,2088399902=>1,2088399889=>1,2088399804=>1,2088399790=>1,2088399824=>1,2088399830=>1,2088399875=>1,2088399831=>1,2088399581=>1,2088399547=>1,2088399333=>1,2088399327=>1,2088399339=>1,2088399340=>1,2088399366=>1,2088399352=>1,2088399326=>1,2088399316=>1,2088399169=>1,2088399165=>1,2088399176=>1,2088399195=>1,2088399251=>1,2088399205=>1,2088399378=>1,2088399381=>1,2088399498=>1,2088399493=>1,2088399516=>1,2088399520=>1,2088399546=>1,2088399530=>1,2088399490=>1,2088399481=>1,2088399405=>1,2088399395=>1,2088399409=>1,2088399426=>1,2088399462=>1,2088399993=>1,2088400000=>1,2088400549=>1,2088400505=>1,2088400569=>1,2088400637=>1,2088400979=>1,2088400779=>1,2088400443=>1,2088400386=>1,2088400299=>1,2088400295=>1,2088400339=>1,2088400344=>1,2088400366=>1,2088400364=>1,2088401125=>1,2088401374=>1,2088401611=>1,2088401579=>1,2088401622=>1,2088401679=>1,2088401707=>1,2088401694=>1,2088401560=>1,2088401557=>1,2088401418=>1,2088401410=>1,2088401495=>1,2088401542=>1,2088401548=>1,2088400283=>1,2088400275=>1,2088400085=>1,2088400078=>1,2088400104=>1,2088400107=>1,2088400125=>1,2088400115=>1,2088400074=>1,2088400058=>1,2088400008=>1,2088400001=>1,2088400013=>1,2088400022=>1,2088400045=>1,2088400026=>1,2088400131=>1,2088400135=>1,2088400198=>1,2088400197=>1,2088400219=>1,2088400226=>1,2088400232=>1,2088400229=>1,2088400189=>1,2088400184=>1,2088400138=>1,2088400136=>1,2088400139=>1,2088400149=>1,2088400158=>1,2088407440=>1,2088407457=>1,2088412101=>1,2088412092=>1,2088412204=>1,2088412211=>1,2088412299=>1,2088412237=>1,2088412081=>1,2088412063=>1,2088411932=>1,2088411921=>1,2088411935=>1,2088411996=>1,2088412054=>1,2088412036=>1,2088412302=>1,2088412308=>1,2088412552=>1,2088412536=>1,2088412556=>1,2088412574=>1,2088412597=>1,2088412590=>1,2088412484=>1,2088412444=>1,2088412351=>1,2088412310=>1,2088412370=>1,2088412381=>1,2088412442=>1,2088412398=>1,2088411911=>1,2088411794=>1,2088411260=>1,2088411256=>1,2088411316=>1,2088411341=>1,2088411377=>1,2088411359=>1,2088411233=>1,2088411190=>1,2088411086=>1,2088411050=>1,2088411139=>1,2088411148=>1,2088411185=>1,2088411154=>1,2088411386=>1,2088411396=>1,2088411677=>1,2088411638=>1,2088411679=>1,2088411708=>1,2088411772=>1,2088411731=>1,2088411611=>1,2088411551=>1,2088411473=>1,2088411432=>1,2088411476=>1,2088411479=>1,2088411508=>1,2088412599=>1,2088412663=>1,2088413931=>1,2088413923=>1,2088414041=>1,2088414067=>1,2088414096=>1,2088414087=>1,2088413866=>1,2088413847=>1,2088413726=>1,2088413711=>1,2088413728=>1,2088413753=>1,2088413793=>1,2088413757=>1,2088414127=>1,2088414234=>1,2088414581=>1,2088414565=>1,2088414603=>1,2088414673=>1,2088414693=>1,2088414675=>1,2088414462=>1,2088414426=>1,2088414261=>1,2088414239=>1,2088414358=>1,2088414398=>1,2088414399=>1,2088413710=>1,2088413703=>1,2088413252=>1,2088413239=>1,2088413254=>1,2088413272=>1,2088413300=>1,2088413298=>1,2088413211=>1,2088413197=>1,2088412725=>1,2088412718=>1,2088412776=>1,2088412857=>1,2088412924=>1,2088412874=>1,2088413319=>1,2088413341=>1,2088413568=>1,2088413521=>1,2088413636=>1,2088413648=>1,2088413683=>1,2088413671=>1,2088413466=>1,2088413436=>1,2088413376=>1,2088413348=>1,2088413378=>1,2088413403=>1,2088413429=>1,2088411036=>1,2088410924=>1,2088408689=>1,2088408677=>1,2088408701=>1,2088408707=>1,2088408732=>1,2088408710=>1,2088408674=>1,2088408667=>1,2088408634=>1,2088408632=>1,2088408637=>1,2088408638=>1,2088408658=>1,2088408652=>1,2088408735=>1,2088408752=>1,2088408856=>1,2088408850=>1,2088408870=>1,2088408874=>1,2088408893=>1,2088408889=>1,2088408822=>1,2088408815=>1,2088408766=>1,2088408755=>1,2088408779=>1,2088408797=>1,2088408807=>1,2088408801=>1,2088408628=>1,2088408606=>1,2088407742=>1,2088407732=>1,2088407751=>1,2088407803=>1,2088408103=>1,2088407805=>1,2088407687=>1,2088407682=>1,2088407523=>1,2088407459=>1,2088407542=>1,2088407582=>1,2088407668=>1,2088407606=>1,2088408127=>1,2088408149=>1,2088408454=>1,2088408449=>1,2088408461=>1,2088408466=>1,2088408543=>1,2088408489=>1,2088408421=>1,2088408378=>1,2088408206=>1,2088408170=>1,2088408247=>1,2088408286=>1,2088408353=>1,2088408894=>1,2088408921=>1,2088410476=>1,2088410470=>1,2088410484=>1,2088410490=>1,2088410538=>1,2088410528=>1,2088410455=>1,2088410373=>1,2088410200=>1,2088410172=>1,2088410211=>1,2088410229=>1,2088410347=>1,2088410306=>1,2088410544=>1,2088410556=>1,2088410795=>1,2088410787=>1,2088410812=>1,2088410848=>1,2088410888=>1,2088410849=>1,2088410762=>1,2088410761=>1,2088410633=>1,2088410595=>1,2088410635=>1,2088410736=>1,2088410755=>1,2088410159=>1,2088409597=>1,2088409053=>1,2088409030=>1,2088409059=>1,2088409061=>1,2088409069=>1,2088409065=>1,2088409025=>1,2088409015=>1,2088408963=>1,2088408924=>1,2088408969=>1,2088408970=>1,2088408999=>1,2088408984=>1,2088409073=>1,2088409081=>1,2088409486=>1,2088409410=>1,2088409502=>1,2088409546=>1,2088409595=>1,2088409552=>1,2088409354=>1,2088409346=>1,2088409245=>1,2088409187=>1,2088409265=>1,2088409320=>1,2088409339=>1,2088399160=>1,);?>
1
+ <?php return array(2113762286=>2113762287,2113762100=>2113762101,2105716712=>2105716713,2095621474=>2095621475,2093036536=>2093036537,2088435372=>2088435373,2088434146=>2088434147,2088433386=>2088433387,2088432706=>2088432707,2088432466=>2088432467,2088432380=>2088432381,2088431060=>2088431061,2088430948=>2088430949,2088423524=>2088423525,2088423474=>2088423475,2088423374=>2088423375,2088423210=>2088423211,2088422802=>2088422803,2088422634=>2088422635,2088422226=>2088422227,2088422184=>2088422185,2098753026=>1,2098751623=>1,2098754535=>1,2098756924=>1,2098753266=>1,2098750801=>1,2098750035=>1,2098738327=>1,2102956416=>1,2098750244=>1,2098761502=>1,2098750524=>1,2098750936=>1,2098774241=>1,2102794351=>1,2098831455=>1,2098832094=>1,2098834588=>1,2102793867=>1,2102793871=>1,2098829843=>1,2098809680=>1,2102794455=>1,2098738221=>1,2098793360=>1,2098800332=>1,2098802472=>1,2098771434=>1,2098344046=>1,2096021114=>1,2095938480=>1,2096151378=>1,2096151385=>1,2096376916=>1,2096374164=>1,2095924044=>1,2095832867=>1,2095767787=>1,2095749488=>1,2095787794=>1,2095788635=>1,2104317993=>1,2096383081=>1,2104228439=>1,2103665674=>1,2103665681=>1,2096688634=>1,2096834125=>1,2098842604=>1,2096676834=>1,2104122517=>1,2096407568=>1,2096385409=>1,2096670813=>1,2096673213=>1,2104146722=>1,2098423012=>1,2102793832=>1,2101349453=>1,2101349426=>1,2101352485=>1,2101440713=>1,2101866252=>1,2101857090=>1,2101349418=>1,2101347587=>1,2100123404=>1,2100121647=>1,2100132231=>1,2100992153=>1,2101218978=>1,2101880590=>1,2101902606=>1,2102788409=>1,2102791629=>1,2102789236=>1,2102789292=>1,2102790728=>1,2102788263=>1,2102788250=>1,2102259907=>1,2101959288=>1,2102305057=>1,2102779695=>1,2102788123=>1,2100106702=>1,2100059263=>1,2099357795=>1,2099311580=>1,2102793748=>1,2099367644=>1,2099559734=>1,2099280742=>1,2099280613=>1,2098871359=>1,2102791444=>1,2098905144=>1,2098905149=>1,2099277035=>1,2099636009=>1,2099636569=>1,2099934186=>1,2099907931=>1,2099957551=>1,2099957690=>1,2100030944=>1,2099860871=>1,2099860005=>1,2099765518=>1,2099725381=>1,2099765558=>1,2099765773=>1,2099765811=>1,2098851891=>1,2093985627=>1,2092959716=>1,2092958973=>1,2092959945=>1,2092959947=>1,2092967928=>1,2092964854=>1,2092958971=>1,2091607988=>1,2091261231=>1,2091259798=>1,2091261338=>1,2091317775=>1,2091427103=>1,2091337480=>1,2092968189=>1,2092969969=>1,2092987373=>1,2092985079=>1,2092989427=>1,2092989430=>1,2093012661=>1,2093000575=>1,2092982984=>1,2092982769=>1,2092976348=>1,2092973176=>1,2092979984=>1,2092980406=>1,2092981755=>1,2091251374=>1,2091182945=>1,2088826549=>1,2088823170=>1,2089016718=>1,2089050738=>1,2089145725=>1,2089093112=>1,2088819995=>1,2088724972=>1,2088435710=>1,2088435655=>1,2088591117=>1,2088591245=>1,2088664681=>1,2088655116=>1,2089150206=>1,2089279540=>1,2090946250=>1,2090910280=>1,2090974513=>1,2090987684=>1,2091121316=>1,2091034808=>1,2090893158=>1,2090869506=>1,2090095134=>1,2089282390=>1,2090135410=>1,2090561621=>1,2090868876=>1,2093014512=>1,2093016750=>1,2093918202=>1,2093917364=>1,2093922977=>1,2093924478=>1,2093934702=>1,2093927615=>1,2093913741=>1,2093909475=>1,2093880952=>1,2093862834=>1,2093889661=>1,2093893104=>1,2093905787=>1,2093903774=>1,2093937117=>1,2093939205=>1,2093988506=>1,2104325837=>1,2095231600=>1,2095300651=>1,2095537720=>1,2095435591=>1,2093974770=>1,2093965653=>1,2093940440=>1,2093939207=>1,2093944475=>1,2093953215=>1,2093959035=>1,2093670346=>1,2093667866=>1,2093033979=>1,2093032445=>1,2093035005=>1,2093036732=>1,2093038833=>1,2093038090=>1,2093031913=>1,2093030664=>1,2093022373=>1,2093021851=>1,2093025271=>1,2093025542=>1,2093030397=>1,2093029278=>1,2093045574=>1,2093058938=>1,2093655718=>1,2093647109=>1,2093655722=>1,2093659122=>1,2093659578=>1,2093659142=>1,2093529294=>1,2093528370=>1,2093305571=>1,2093078697=>1,2093490578=>1,2093491494=>1,2093506786=>1,2095538278=>1,2105234535=>1,2160539581=>1,2160539429=>1,2160539599=>1,2160539975=>1,2160541872=>1,2160541272=>1,2160538631=>1,2160537195=>1,2158202389=>1,2157547901=>1,2160534138=>1,2160534277=>1,2160536046=>1,2160535440=>1,2160541961=>1,2160542213=>1,2160546228=>1,2160546096=>1,2160546985=>1,2160547237=>1,2160547739=>1,2160547366=>1,2160544434=>1,2160544229=>1,2160542754=>1,2160542568=>1,2160542758=>1,2160543036=>1,2160543210=>1,2160543157=>1,2156055643=>1,2155817004=>1,2152020034=>1,2151955009=>1,2152056031=>1,2152083515=>1,2152164637=>1,2152140999=>1,2151790836=>1,2150932500=>1,2149470154=>1,2148315451=>1,2149473326=>1,2149515298=>1,2150924393=>1,2150041668=>1,2152164745=>1,2152164792=>1,2152410157=>1,2152404672=>1,2152611650=>1,2152678996=>1,2154979610=>1,2154882064=>1,2152388549=>1,2152301579=>1,2152164827=>1,2152164803=>1,2152206636=>1,2152219281=>1,2152286695=>1,2160547957=>1,2160547981=>1,2160567805=>1,2160567581=>1,2160567892=>1,2160569078=>1,2160570676=>1,2160570103=>1,2160566749=>1,2160564464=>1,2160562267=>1,2160561521=>1,2160562480=>1,2160563845=>1,2160564162=>1,2160564116=>1,2160571236=>1,2160571427=>1,2160575101=>1,2160575088=>1,2160575760=>1,2160576376=>1,2160578478=>1,2160578452=>1,2160574831=>1,2160574226=>1,2160572437=>1,2160571647=>1,2160572725=>1,2160573426=>1,2160573910=>1,2160561120=>1,2160560764=>1,2160550645=>1,2160549758=>1,2160550932=>1,2160551581=>1,2160552519=>1,2160552226=>1,2160549734=>1,2160549033=>1,2160548108=>1,2160548000=>1,2160548304=>1,2160548554=>1,2160548780=>1,2160548588=>1,2160552898=>1,2160553032=>1,2160559016=>1,2160558515=>1,2160559111=>1,2160559514=>1,2160559911=>1,2160559774=>1,2160558309=>1,2160556648=>1,2160554582=>1,2160553116=>1,2160555389=>1,2160555473=>1,2160555859=>1,2148143924=>1,2148040303=>1,2107871846=>1,2107863981=>1,2107878528=>1,2107879299=>1,2107916478=>1,2107891837=>1,2107863787=>1,2107863398=>1,2107774023=>1,2107773831=>1,2107774959=>1,2107788697=>1,2107809505=>1,2107808623=>1,2107965210=>1,2107965253=>1,2108122564=>1,2108122542=>1,2108134892=>1,2109027511=>1,2110785957=>1,2110392138=>1,2108121451=>1,2108070897=>1,2107970971=>1,2107966202=>1,2107974852=>1,2107991010=>1,2108009467=>1,2107771883=>1,2107770270=>1,2105639533=>1,2105632267=>1,2105716676=>1,2105716689=>1,2105716703=>1,2105716690=>1,2105496022=>1,2105314931=>1,2104493859=>1,2104346543=>1,2104615475=>1,2104800446=>1,2088435570=>1,2105233995=>1,2105716709=>1,2105716711=>1,2107737947=>1,2107668661=>1,2107747348=>1,2107747806=>1,2107768938=>1,2107768924=>1,2107666656=>1,2107666444=>1,2105716717=>1,2105716714=>1,2105716724=>1,2105716728=>1,2105716731=>1,2110872510=>1,2110874046=>1,2113762103=>1,2113762099=>1,2113762121=>1,2113762131=>1,2113762195=>1,2113762152=>1,2113762064=>1,2113762060=>1,2113748052=>1,2113740958=>1,2113757284=>1,2113758508=>1,2113762059=>1,2113762052=>1,2113762201=>1,2113762205=>1,2113763950=>1,2113762298=>1,2114505314=>1,2118518674=>1,2128122799=>1,2119019492=>1,2113762293=>1,2113762283=>1,2113762237=>1,2113762231=>1,2113762241=>1,2113762254=>1,2113762275=>1,2112756335=>1,2112755874=>1,2111306305=>1,2111253652=>1,2111424404=>1,2111891528=>1,2111891661=>1,2111891540=>1,2111176293=>1,2111102012=>1,2110878749=>1,2110876755=>1,2111001040=>1,2111098278=>1,2111101399=>1,2111101381=>1,2111893015=>1,2111893222=>1,2112262378=>1,2112262315=>1,2112262498=>1,2112262616=>1,2112654711=>1,2112548540=>1,2112249139=>1,2112243732=>1,2111893338=>1,2111893292=>1,2111893988=>1,2111894117=>1,2112090378=>1,2104326886=>1,2088435317=>1,2088427957=>1,2088427888=>1,2088428092=>1,2088428129=>1,2088428351=>1,2088428206=>1,2088427738=>1,2088427461=>1,2088427243=>1,2088427196=>1,2088427313=>1,2088427349=>1,2088427449=>1,2088427377=>1,2088428380=>1,2088428388=>1,2088428805=>1,2088428783=>1,2088428810=>1,2088428831=>1,2088428835=>1,2088428833=>1,2088428761=>1,2088428658=>1,2088428416=>1,2088428406=>1,2088428480=>1,2088428507=>1,2088428617=>1,2088427059=>1,2088427037=>1,2088424533=>1,2088424499=>1,2088424609=>1,2088424611=>1,2088424732=>1,2088424640=>1,2088424380=>1,2088424371=>1,2088424100=>1,2088424098=>1,2088424118=>1,2088424141=>1,2088424239=>1,2088424187=>1,2088424843=>1,2088426025=>1,2088426869=>1,2088426591=>1,2088426875=>1,2088426898=>1,2088427027=>1,2088426951=>1,2088426486=>1,2088426409=>1,2088426154=>1,2088426057=>1,2088426230=>1,2088426282=>1,2088426328=>1,2088428838=>1,2088428842=>1,2088429479=>1,2088429437=>1,2088429499=>1,2088429572=>1,2088429840=>1,2088429692=>1,2088429310=>1,2088429305=>1,2088429234=>1,2088429232=>1,2088429238=>1,2088429243=>1,2088429295=>1,2088429262=>1,2088429844=>1,2088429878=>1,2088430227=>1,2088430208=>1,2088430229=>1,2088430233=>1,2088430251=>1,2088430245=>1,2088430193=>1,2088430187=>1,2088430082=>1,2088429963=>1,2088430090=>1,2088430147=>1,2088430161=>1,2088429230=>1,2088429220=>1,2088428957=>1,2088428954=>1,2088428959=>1,2088428985=>1,2088429021=>1,2088429003=>1,2088428939=>1,2088428880=>1,2088428870=>1,2088428852=>1,2088428872=>1,2088428876=>1,2088428878=>1,2088429030=>1,2088429037=>1,2088429154=>1,2088429153=>1,2088429168=>1,2088429192=>1,2088429205=>1,2088429199=>1,2088429130=>1,2088429114=>1,2088429043=>1,2088429039=>1,2088429048=>1,2088429077=>1,2088429085=>1,2088424078=>1,2088424054=>1,2088422428=>1,2088422425=>1,2088422453=>1,2088422456=>1,2088422475=>1,2088422463=>1,2088422395=>1,2088422390=>1,2088422337=>1,2088422315=>1,2088422347=>1,2088422360=>1,2088422388=>1,2088422372=>1,2088422504=>1,2088422507=>1,2088422629=>1,2088422594=>1,2088422644=>1,2088422650=>1,2088422723=>1,2088422666=>1,2088422579=>1,2088422577=>1,2088422546=>1,2088422532=>1,2088422556=>1,2088422573=>1,2088422574=>1,2088422305=>1,2088422287=>1,2088422074=>1,2088422061=>1,2088422079=>1,2088422092=>1,2088422125=>1,2088422117=>1,2088422047=>1,2088422041=>1,2088421938=>1,2088421926=>1,2088421944=>1,2088421975=>1,2088422017=>1,2088421997=>1,2088422129=>1,2088422133=>1,2088422225=>1,2088422219=>1,2088422265=>1,2088422275=>1,2088422281=>1,2088422278=>1,2088422204=>1,2088422202=>1,2088422171=>1,2088422152=>1,2088422174=>1,2088422187=>1,2088422197=>1,2088422726=>1,2088422765=>1,2088423442=>1,2088423413=>1,2088423446=>1,2088423467=>1,2088423511=>1,2088423476=>1,2088423409=>1,2088423407=>1,2088423340=>1,2088423338=>1,2088423348=>1,2088423352=>1,2088423400=>1,2088423366=>1,2088423520=>1,2088423543=>1,2088423637=>1,2088423623=>1,2088423644=>1,2088423666=>1,2088424046=>1,2088423713=>1,2088423600=>1,2088423595=>1,2088423559=>1,2088423544=>1,2088423564=>1,2088423570=>1,2088423573=>1,2088423334=>1,2088423324=>1,2088422886=>1,2088422842=>1,2088422917=>1,2088422941=>1,2088422975=>1,2088422944=>1,2088422838=>1,2088422835=>1,2088422809=>1,2088422771=>1,2088422815=>1,2088422817=>1,2088422820=>1,2088422980=>1,2088423003=>1,2088423247=>1,2088423123=>1,2088423248=>1,2088423258=>1,2088423317=>1,2088423271=>1,2088423121=>1,2088423098=>1,2088423032=>1,2088423027=>1,2088423075=>1,2088423093=>1,2088423096=>1,2088430252=>1,2088430305=>1,2088434023=>1,2088434016=>1,2088434044=>1,2088434057=>1,2088434082=>1,2088434059=>1,2088434001=>1,2088433929=>1,2088433816=>1,2088433812=>1,2088433833=>1,2088433846=>1,2088433926=>1,2088433923=>1,2088434084=>1,2088434137=>1,2088434231=>1,2088434221=>1,2088434232=>1,2088434239=>1,2088434257=>1,2088434240=>1,2088434195=>1,2088434173=>1,2088434152=>1,2088434141=>1,2088434162=>1,2088434165=>1,2088434170=>1,2088433799=>1,2088433780=>1,2088433343=>1,2088433332=>1,2088433356=>1,2088433366=>1,2088433395=>1,2088433385=>1,2088433325=>1,2088433312=>1,2088433162=>1,2088433122=>1,2088433188=>1,2088433194=>1,2088433278=>1,2088433261=>1,2088433406=>1,2088433419=>1,2088433670=>1,2088433632=>1,2088433681=>1,2088433706=>1,2088433753=>1,2088433714=>1,2088433627=>1,2088433615=>1,2088433565=>1,2088433466=>1,2088433576=>1,2088433582=>1,2088433603=>1,2088434284=>1,2088434295=>1,2088434968=>1,2088434922=>1,2088434973=>1,2088434993=>1,2088435091=>1,2088435020=>1,2088434895=>1,2088434887=>1,2088434847=>1,2088434842=>1,2088434861=>1,2088434869=>1,2088434879=>1,2088434876=>1,2088435099=>1,2088435128=>1,2088435361=>1,2088435336=>1,2088435378=>1,2088435398=>1,2088435509=>1,2088435454=>1,2088421910=>1,2088435294=>1,2088435157=>1,2088435139=>1,2088435247=>1,2088435273=>1,2088435288=>1,2088434827=>1,2088434815=>1,2088434498=>1,2088434490=>1,2088434520=>1,2088434528=>1,2088434548=>1,2088434543=>1,2088434465=>1,2088434440=>1,2088434376=>1,2088434298=>1,2088434393=>1,2088434402=>1,2088434433=>1,2088434555=>1,2088434589=>1,2088434727=>1,2088434724=>1,2088434774=>1,2088434782=>1,2088434813=>1,2088434810=>1,2088434709=>1,2088434655=>1,2088434616=>1,2088434606=>1,2088434618=>1,2088434621=>1,2088434640=>1,2088433101=>1,2088433096=>1,2088431472=>1,2088431434=>1,2088431477=>1,2088431561=>1,2088431576=>1,2088431574=>1,2088431421=>1,2088431392=>1,2088431219=>1,2088431212=>1,2088431231=>1,2088431307=>1,2088431373=>1,2088431333=>1,2088431605=>1,2088431623=>1,2088431817=>1,2088431785=>1,2088431827=>1,2088431829=>1,2088431892=>1,2088431832=>1,2088431760=>1,2088431758=>1,2088431657=>1,2088431624=>1,2088431676=>1,2088431704=>1,2088431751=>1,2088431136=>1,2088431129=>1,2088430595=>1,2088430586=>1,2088430623=>1,2088430656=>1,2088430704=>1,2088430676=>1,2088430562=>1,2088430544=>1,2088430353=>1,2088430342=>1,2088430400=>1,2088430436=>1,2088430529=>1,2088430515=>1,2088430710=>1,2088430734=>1,2088431014=>1,2088431009=>1,2088431081=>1,2088431096=>1,2088431112=>1,2088431101=>1,2088431004=>1,2088430998=>1,2088430778=>1,2088430761=>1,2088430787=>1,2088430857=>1,2088430901=>1,2088431904=>1,2088431927=>1,2088432696=>1,2088432689=>1,2088432736=>1,2088432798=>1,2088432824=>1,2088432812=>1,2088432674=>1,2088432671=>1,2088432635=>1,2088432624=>1,2088432638=>1,2088432643=>1,2088432652=>1,2088432647=>1,2088432855=>1,2088432889=>1,2088433010=>1,2088432998=>1,2088433015=>1,2088433016=>1,2088433083=>1,2088433053=>1,2088432981=>1,2088432963=>1,2088432893=>1,2088432891=>1,2088432894=>1,2088432903=>1,2088432957=>1,2088432608=>1,2088432603=>1,2088432268=>1,2088432183=>1,2088432284=>1,2088432320=>1,2088432419=>1,2088432389=>1,2088432142=>1,2088432126=>1,2088431996=>1,2088431947=>1,2088431999=>1,2088432048=>1,2088432078=>1,2088432440=>1,2088432444=>1,2088432568=>1,2088432557=>1,2088432587=>1,2088432589=>1,2088432601=>1,2088432597=>1,2088432547=>1,2088432538=>1,2088432507=>1,2088432485=>1,2088432509=>1,2088432515=>1,2088432519=>1,2088435522=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-28.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2193189248=>2193189375,2160559774=>1,2160559514=>1,2160560764=>1,2160561120=>1,2160561894=>1,2160561521=>1,2160559111=>1,2160558515=>1,2160555859=>1,2160555479=>1,2160556648=>1,2160556770=>1,2160562480=>1,2160558309=>1,2160559016=>1,2160564162=>1,2160571236=>1,2160570676=>1,2160571427=>1,2160571647=>1,2160574226=>1,2160573910=>1,2160570103=>1,2160569078=>1,2160564464=>1,2160555473=>1,2160566749=>1,2160567581=>1,2160567892=>1,2160567805=>1,2160564116=>1,2160555389=>1,2160547739=>1,2160547366=>1,2160547957=>1,2160547981=>1,2160548108=>1,2160548000=>1,2160547237=>1,2160546985=>1,2160543210=>1,2160543157=>1,2160544229=>1,2160544434=>1,2160546228=>1,2160546096=>1,2160548304=>1,2160548554=>1,2160552519=>1,2160552226=>1,2160552898=>1,2160553032=>1,2160554941=>1,2160553116=>1,2160550932=>1,2160550645=>1,2160548780=>1,2160548588=>1,2160549033=>1,2160549734=>1,2160549758=>1,2160574831=>1,2160575088=>1,2172275536=>1,2170823274=>1,2173701666=>1,2173829127=>1,2180090003=>1,2175845829=>1,2170366791=>1,2170102440=>1,2160590377=>1,2160590351=>1,2160905349=>1,2161115881=>1,2166603622=>1,2165741215=>1,2181059123=>1,2185211262=>1,2193188914=>1,2193182321=>1,2193196298=>1,2193196299=>1,2193226316=>1,2193226308=>1,2193116022=>1,2192861182=>1,2187236451=>1,2185998886=>1,2190806559=>1,2192840678=>1,2192850838=>1,2160590322=>1,2160590315=>1,2160581376=>1,2160581052=>1,2160581642=>1,2160582131=>1,2160582744=>1,2160582597=>1,2160580461=>1,2160579561=>1,2160575760=>1,2160575101=>1,2160576376=>1,2160577716=>1,2160578909=>1,2160578452=>1,2160583134=>1,2160583741=>1,2160587443=>1,2160587339=>1,2160587982=>1,2160589066=>1,2160590021=>1,2160589427=>1,2160586945=>1,2160586485=>1,2160584916=>1,2160584591=>1,2160585166=>1,2160585468=>1,2160585788=>1,2160543036=>1,2160542758=>1,2112248524=>1,2112243732=>1,2112262315=>1,2112262616=>1,2112755874=>1,2112654711=>1,2112090378=>1,2111894117=>1,2111424404=>1,2111306305=>1,2111891654=>1,2111893015=>1,2111893988=>1,2111893222=>1,2112756335=>1,2113740958=>1,2113762100=>1,2113762099=>1,2113762101=>1,2113762115=>1,2113762152=>1,2113762121=>1,2113762064=>1,2113762063=>1,2113757284=>1,2113748052=>1,2113762051=>1,2113762052=>1,2113762060=>1,2113762059=>1,2111253652=>1,2111176293=>1,2107991010=>1,2107974852=>1,2108009467=>1,2108070897=>1,2108121451=>1,2108087381=>1,2107969967=>1,2107966202=>1,2107879299=>1,2107878528=>1,2107891837=>1,2107894043=>1,2107965253=>1,2107916478=>1,2108122542=>1,2108122564=>1,2111001040=>1,2110878749=>1,2111098278=>1,2111101381=>1,2111102012=>1,2111101399=>1,2110876755=>1,2110874046=>1,2109027511=>1,2108134892=>1,2110392138=>1,2110785957=>1,2110872510=>1,2113762195=>1,2113762201=>1,2154979610=>1,2154882064=>1,2155817004=>1,2156055643=>1,2157547901=>1,2156872481=>1,2152678996=>1,2152444153=>1,2152219281=>1,2152206636=>1,2152286496=>1,2152301579=>1,2152404672=>1,2152388549=>1,2158202389=>1,2160534277=>1,2160541961=>1,2160541872=>1,2160542213=>1,2160542236=>1,2160542754=>1,2160542658=>1,2160541272=>1,2160539599=>1,2160536046=>1,2160535440=>1,2160537195=>1,2160538631=>1,2160539429=>1,2152164827=>1,2152164792=>1,2113763950=>1,2113762298=>1,2118518674=>1,2119019492=>1,2148143924=>1,2148040303=>1,2113762293=>1,2113762287=>1,2113762231=>1,2113762205=>1,2113762237=>1,2113762254=>1,2113762286=>1,2113762283=>1,2148315451=>1,2149470154=>1,2152056031=>1,2152010991=>1,2152077167=>1,2152140999=>1,2152164745=>1,2152164637=>1,2151955009=>1,2151790836=>1,2149515298=>1,2149473326=>1,2150041668=>1,2150924393=>1,2150932500=>1,2193690554=>1,2194890943=>1,2297627784=>1,2297627036=>1,2297631182=>1,2297643105=>1,2297647402=>1,2297644743=>1,2292817386=>1,2292763033=>1,2281702035=>1,2281702026=>1,2281702122=>1,2281702123=>1,2285888476=>1,2281705689=>1,2297647426=>1,2297648014=>1,2297679950=>1,2297674661=>1,2297680180=>1,2297681545=>1,2306131728=>1,2297688485=>1,2297671828=>1,2297661333=>1,2297651766=>1,2297650279=>1,2297652870=>1,2297654020=>1,2297657946=>1,2297655870=>1,2281702019=>1,2281701554=>1,2256093188=>1,2255955079=>1,2256713003=>1,2256713009=>1,2259246298=>1,2256713172=>1,2255954167=>1,2255954128=>1,2254889779=>1,2254882917=>1,2255946498=>1,2255946660=>1,2255952577=>1,2255948067=>1,2259246299=>1,2259246302=>1,2266464675=>1,2266460713=>1,2281701379=>1,2281701411=>1,2281701442=>1,2281701435=>1,2266211947=>1,2264508432=>1,2262975517=>1,2261046911=>1,2263677468=>1,2264500126=>1,2264501231=>1,2306247617=>1,2306248340=>1,2315300008=>1,2315300001=>1,2315300010=>1,2315300019=>1,2315300032=>1,2315300028=>1,2315299999=>1,2315299997=>1,2315299983=>1,2315299980=>1,2315299984=>1,2315299985=>1,2315299989=>1,2315299988=>1,2315300035=>1,2315300041=>1,2315300089=>1,2315300087=>1,2315300094=>1,2315300124=>1,2315300139=>1,2315300134=>1,2315300078=>1,2315300067=>1,2315300049=>1,2315300044=>1,2315300052=>1,2315300061=>1,2315300063=>1,2315299979=>1,2315299973=>1,2307368673=>1,2307328233=>1,2309292399=>1,2309960683=>1,2311945251=>1,2309964410=>1,2306269085=>1,2306268883=>1,2306260572=>1,2306260181=>1,2306266941=>1,2306266978=>1,2306268717=>1,2306267927=>1,2313516617=>1,2315261394=>1,2315299916=>1,2315299910=>1,2315299968=>1,2315299970=>1,2315299972=>1,2315299971=>1,2315282142=>1,2315278694=>1,2315261764=>1,2315261430=>1,2315261766=>1,2315262194=>1,2315278607=>1,2254837370=>1,2254663848=>1,2208368002=>1,2208367682=>1,2208368021=>1,2208368307=>1,2208378421=>1,2208378129=>1,2208031836=>1,2207991154=>1,2204935292=>1,2204841536=>1,2204950615=>1,2204951270=>1,2206371426=>1,2205306308=>1,2208380453=>1,2208407105=>1,2210357984=>1,2210354103=>1,2210362830=>1,2210363645=>1,2212269440=>1,2211949782=>1,2210350291=>1,2210348977=>1,2210146492=>1,2208411910=>1,2210146493=>1,2210344243=>1,2210347786=>1,2210345038=>1,2204408291=>1,2204407912=>1,2202539027=>1,2197878506=>1,2202539082=>1,2202554881=>1,2202561189=>1,2202561034=>1,2197864839=>1,2197831002=>1,2197752511=>1,2195826769=>1,2197768356=>1,2197824786=>1,2197826510=>1,2197825250=>1,2202561353=>1,2202564241=>1,2202598048=>1,2202597927=>1,2202598058=>1,2202598074=>1,2204368955=>1,2202598101=>1,2202597600=>1,2202597594=>1,2202597541=>1,2202569256=>1,2202597559=>1,2202597579=>1,2202597581=>1,2212310004=>1,2212310005=>1,2247262900=>1,2244731304=>1,2247266854=>1,2248153091=>1,2248351341=>1,2248153634=>1,2241565409=>1,2239921899=>1,2239921373=>1,2239920917=>1,2239921606=>1,2239921619=>1,2239921735=>1,2239921690=>1,2248361946=>1,2248370270=>1,2253896547=>1,2251417966=>1,2253973236=>1,2254088004=>1,2254276785=>1,2254130831=>1,2250477694=>1,2250453383=>1,2249437549=>1,2248381226=>1,2250407205=>1,2250412928=>1,2250442327=>1,2239920843=>1,2239920701=>1,2214583596=>1,2214568457=>1,2214583626=>1,2214583778=>1,2214584325=>1,2214583796=>1,2214566396=>1,2214003447=>1,2212346850=>1,2212328315=>1,2212346851=>1,2212346852=>1,2212346874=>1,2212346856=>1,2218958106=>1,2224248073=>1,2239917717=>1,2239917447=>1,2239919262=>1,2239919373=>1,2239920468=>1,2239920401=>1,2239905614=>1,2239904178=>1,2226246681=>1,2224488706=>1,2228762114=>1,2229704273=>1,2230853132=>1,2107863787=>1,2107863398=>1,2088434589=>1,2088434555=>1,2088434616=>1,2088434618=>1,2088434640=>1,2088434621=>1,2088434548=>1,2088434543=>1,2088434448=>1,2088434440=>1,2088434465=>1,2088434490=>1,2088434528=>1,2088434520=>1,2088434655=>1,2088434709=>1,2088434847=>1,2088434842=>1,2088434861=>1,2088434869=>1,2088434879=>1,2088434876=>1,2088434825=>1,2088434815=>1,2088434727=>1,2088434724=>1,2088434755=>1,2088434774=>1,2088434813=>1,2088434782=>1,2088434433=>1,2088434402=>1,2088434082=>1,2088434067=>1,2088434141=>1,2088434152=>1,2088434165=>1,2088434162=>1,2088434059=>1,2088434057=>1,2088433846=>1,2088433833=>1,2088433929=>1,2088433958=>1,2088434016=>1,2088434001=>1,2088434170=>1,2088434171=>1,2088434257=>1,2088434240=>1,2088434284=>1,2088434295=>1,2088434393=>1,2088434376=>1,2088434239=>1,2088434232=>1,2088434195=>1,2088434173=>1,2088434212=>1,2088434221=>1,2088434231=>1,2088434886=>1,2088434887=>1,2090091996=>1,2089279540=>1,2090094412=>1,2090095134=>1,2090561621=>1,2090135410=>1,2089150206=>1,2089145725=>1,2089016718=>1,2088826549=>1,2089050738=>1,2089065402=>1,2089093112=>1,2089065542=>1,2090731926=>1,2090868876=>1,2091251374=>1,2091182945=>1,2091252808=>1,2091261231=>1,2091337480=>1,2091317775=>1,2091121316=>1,2091034808=>1,2090893158=>1,2090869506=>1,2090910280=>1,2090946250=>1,2090974513=>1,2088823170=>1,2088819995=>1,2088435173=>1,2088435139=>1,2088435220=>1,2088435247=>1,2088435299=>1,2088435273=>1,2088435128=>1,2088435099=>1,2088434968=>1,2088434895=>1,2088434973=>1,2088434993=>1,2088435091=>1,2088435020=>1,2088435336=>1,2088435348=>1,2088435570=>1,2088435568=>1,2088435710=>1,2088591117=>1,2088724972=>1,2088655116=>1,2088435522=>1,2088435509=>1,2088435372=>1,2088435361=>1,2088435378=>1,2088435452=>1,2088435454=>1,2088433812=>1,2088433799=>1,2088432329=>1,2088432320=>1,2088432380=>1,2088432381=>1,2088432419=>1,2088432389=>1,2088432268=>1,2088432218=>1,2088431996=>1,2088431927=>1,2088432048=>1,2088432078=>1,2088432183=>1,2088432142=>1,2088432440=>1,2088432444=>1,2088432568=>1,2088432557=>1,2088432587=>1,2088432589=>1,2088432601=>1,2088432597=>1,2088432547=>1,2088432538=>1,2088432467=>1,2088432466=>1,2088432485=>1,2088432507=>1,2088432515=>1,2088432509=>1,2088431904=>1,2088431832=>1,2088431267=>1,2088431231=>1,2088431297=>1,2088431333=>1,2088431392=>1,2088431373=>1,2088431219=>1,2088431212=>1,2088431101=>1,2088431096=>1,2088431112=>1,2088431129=>1,2088431185=>1,2088431136=>1,2088431421=>1,2088431434=>1,2088431760=>1,2088431758=>1,2088431785=>1,2088431817=>1,2088431829=>1,2088431827=>1,2088431751=>1,2088431704=>1,2088431561=>1,2088431472=>1,2088431605=>1,2088431652=>1,2088431676=>1,2088432603=>1,2088432624=>1,2088433366=>1,2088433356=>1,2088433385=>1,2088433386=>1,2088433395=>1,2088433387=>1,2088433343=>1,2088433325=>1,2088433194=>1,2088433188=>1,2088433248=>1,2088433261=>1,2088433312=>1,2088433278=>1,2088433406=>1,2088433419=>1,2088433670=>1,2088433632=>1,2088433706=>1,2088433714=>1,2088433780=>1,2088433753=>1,2088433627=>1,2088433615=>1,2088433565=>1,2088433466=>1,2088433576=>1,2088433582=>1,2088433603=>1,2088433162=>1,2088433122=>1,2088432798=>1,2088432736=>1,2088432828=>1,2088432855=>1,2088432893=>1,2088432889=>1,2088432706=>1,2088432674=>1,2088432638=>1,2088432635=>1,2088432643=>1,2088432647=>1,2088432671=>1,2088432652=>1,2088432894=>1,2088432903=>1,2088433016=>1,2088433015=>1,2088433039=>1,2088433053=>1,2088433101=>1,2088433083=>1,2088433010=>1,2088432998=>1,2088432957=>1,2088432933=>1,2088432963=>1,2088432981=>1,2088432983=>1,2091427103=>1,2091607988=>1,2100123404=>1,2100121647=>1,2100132231=>1,2100992153=>1,2101347587=>1,2101218978=>1,2100106702=>1,2100059263=>1,2099907931=>1,2099860005=>1,2099934186=>1,2099957551=>1,2100030944=>1,2099957690=>1,2101349418=>1,2101349426=>1,2102779695=>1,2102305057=>1,2102788123=>1,2102788250=>1,2102788409=>1,2102788263=>1,2102259907=>1,2101959288=>1,2101352485=>1,2101349453=>1,2101440713=>1,2101866252=>1,2101902606=>1,2101880590=>1,2099765773=>1,2099765558=>1,2098829843=>1,2098809680=>1,2098832094=>1,2098834588=>1,2098851891=>1,2098842604=>1,2098809192=>1,2098802472=>1,2098771434=>1,2098770552=>1,2098774241=>1,2098793360=>1,2098800332=>1,2098800143=>1,2098870198=>1,2098871359=>1,2099559734=>1,2099377176=>1,2099636009=>1,2099636569=>1,2099765518=>1,2099725381=>1,2099367644=>1,2099357795=>1,2098905149=>1,2098905144=>1,2099277035=>1,2099280742=>1,2099311580=>1,2102789204=>1,2102789236=>1,2105716717=>1,2105716714=>1,2105716724=>1,2105716728=>1,2107666444=>1,2105716731=>1,2105716713=>1,2105716712=>1,2105716689=>1,2105716676=>1,2105716690=>1,2105716703=>1,2105716711=>1,2105716709=>1,2107666656=>1,2107668661=>1,2107774023=>1,2107773831=>1,2107774959=>1,2107788697=>1,2107809505=>1,2107808681=>1,2107773732=>1,2107772862=>1,2107748166=>1,2107747348=>1,2107768924=>1,2107770270=>1,2107771883=>1,2105639533=>1,2105632267=>1,2102795828=>1,2102794455=>1,2102956416=>1,2103665674=>1,2104122517=>1,2103665681=>1,2102794351=>1,2102793867=>1,2102790728=>1,2102789292=>1,2102791444=>1,2102791629=>1,2102793832=>1,2102793757=>1,2104146722=>1,2104228439=>1,2104800446=>1,2104615475=>1,2105233995=>1,2105234535=>1,2105496022=>1,2105314931=>1,2104493859=>1,2104346543=>1,2104317993=>1,2104311996=>1,2104323900=>1,2104325837=>1,2104326886=>1,2098761502=>1,2098756924=>1,2093305571=>1,2093078697=>1,2093490578=>1,2093491494=>1,2093528370=>1,2093506786=>1,2093045574=>1,2093038833=>1,2093033979=>1,2093032445=>1,2093035005=>1,2093036536=>1,2093038090=>1,2093036537=>1,2093529294=>1,2093647109=>1,2093893104=>1,2093880952=>1,2093896957=>1,2093903774=>1,2093909475=>1,2093905787=>1,2093862834=>1,2093670346=>1,2093655722=>1,2093655718=>1,2093659122=>1,2093659142=>1,2093667866=>1,2093659578=>1,2093031913=>1,2093030664=>1,2092976348=>1,2092973176=>1,2092979984=>1,2092980406=>1,2092982769=>1,2092981755=>1,2092969969=>1,2092968189=>1,2092958973=>1,2092958971=>1,2092959716=>1,2092961205=>1,2092967928=>1,2092964854=>1,2092982984=>1,2092985079=>1,2093022373=>1,2093021851=>1,2093025271=>1,2093025542=>1,2093030397=>1,2093029278=>1,2093016750=>1,2093014512=>1,2092989427=>1,2092987373=>1,2092989430=>1,2093000575=>1,2093012661=>1,2093913741=>1,2093917364=>1,2096672398=>1,2096670813=>1,2096672510=>1,2096673213=>1,2096688634=>1,2096676834=>1,2096407568=>1,2096385409=>1,2096151378=>1,2096021114=>1,2096151385=>1,2096374164=>1,2096383081=>1,2096376916=>1,2096834125=>1,2098344046=>1,2098751324=>1,2098750936=>1,2098751623=>1,2098753026=>1,2098754535=>1,2098753266=>1,2098750801=>1,2098750524=>1,2098738221=>1,2098423012=>1,2098738327=>1,2098750035=>1,2098750244=>1,2095938480=>1,2095924044=>1,2093944475=>1,2093940440=>1,2093953215=>1,2093959035=>1,2093974770=>1,2093965653=>1,2093939207=>1,2093939205=>1,2093922977=>1,2093918202=>1,2093924478=>1,2093927615=>1,2093937117=>1,2093934702=>1,2093985627=>1,2093988506=>1,2095749488=>1,2095621475=>1,2095767787=>1,2095787794=>1,2095832867=>1,2095788635=>1,2095621474=>1,2095538278=>1,2095231600=>1,2094189239=>1,2095300651=>1,2095435591=>1,2095537720=>1,2088431081=>1,);?>
1
+ <?php return array(2513082502=>2513082503,2513068704=>2513068705,2479585280=>2479585535,2420954522=>2420954525,2357189550=>2357189551,2328447320=>2328447327,2328439126=>2328439127,2321475108=>2321475109,2319166466=>2319166467,2315300310=>2315300311,2315300256=>2315300257,2315300238=>2315300241,2315300170=>2315300171,2315300148=>2315300149,2315299988=>2315299989,2315299984=>2315299985,2315299970=>2315299973,2259246298=>2259246299,2212310004=>2212310005,2210146492=>2210146493,2193196298=>2193196299,2193189248=>2193189375,2370182936=>1,2367609115=>1,2369167288=>1,2374557007=>1,2367449745=>1,2374641954=>1,2374518054=>1,2367449484=>1,2367449999=>1,2372210899=>1,2366924569=>1,2372485946=>1,2372510852=>1,2372510394=>1,2372214888=>1,2372510919=>1,2370767513=>1,2374517794=>1,2372486768=>1,2372212633=>1,2370207208=>1,2364532452=>1,2348760726=>1,2348758270=>1,2348812378=>1,2348817081=>1,2356269132=>1,2356269129=>1,2348758269=>1,2348755330=>1,2346928223=>1,2346721942=>1,2348753868=>1,2348754835=>1,2348755146=>1,2348755074=>1,2356301799=>1,2356360700=>1,2374667728=>1,2362332740=>1,2365557080=>1,2365580722=>1,2366906691=>1,2365593074=>1,2361449099=>1,2357891242=>1,2356760746=>1,2356395453=>1,2357364484=>1,2357697834=>1,2357759274=>1,2366906692=>1,2378460853=>1,2408136905=>1,2408136797=>1,2408137110=>1,2408159786=>1,2412399688=>1,2408161286=>1,2408136749=>1,2408136422=>1,2399197618=>1,2399177934=>1,2399206060=>1,2408135898=>1,2408136046=>1,2412412525=>1,2412412613=>1,2418150029=>1,2416080468=>1,2419066155=>1,2419334661=>1,2420903303=>1,2419363994=>1,2416060396=>1,2415907842=>1,2415871401=>1,2412780802=>1,2415875487=>1,2415881499=>1,2415881558=>1,2399175949=>1,2399163738=>1,2382340518=>1,2382332426=>1,2382340519=>1,2382341478=>1,2382341782=>1,2382341774=>1,2381312976=>1,2378468744=>1,2378456073=>1,2378442799=>1,2378456375=>1,2378456896=>1,2346681128=>1,2382341821=>1,2382347681=>1,2392658213=>1,2389246843=>1,2393177498=>1,2399152507=>1,2399153001=>1,2399152932=>1,2385952131=>1,2385951410=>1,2382681420=>1,2382389679=>1,2382681943=>1,2384106570=>1,2385945706=>1,2374671443=>1,2345804986=>1,2335949820=>1,2335949485=>1,2335957276=>1,2335960791=>1,2335961884=>1,2335961217=>1,2335943773=>1,2335943047=>1,2335941662=>1,2335936727=>1,2335942658=>1,2335942966=>1,2335943029=>1,2335943024=>1,2335962332=>1,2335963148=>1,2340611144=>1,2340519938=>1,2341254551=>1,2342650477=>1,2342652293=>1,2342651688=>1,2340517231=>1,2340501338=>1,2335963948=>1,2335963365=>1,2335965002=>1,2340492874=>1,2340495864=>1,2335936281=>1,2335933982=>1,2331989002=>1,2331988998=>1,2331993135=>1,2332007703=>1,2332038204=>1,2332035874=>1,2331980597=>1,2331976622=>1,2329619341=>1,2328864434=>1,2329633205=>1,2329638658=>1,2329658540=>1,2329653744=>1,2332039026=>1,2332039731=>1,2335902803=>1,2335900885=>1,2335903489=>1,2335903552=>1,2335933804=>1,2335932802=>1,2335900290=>1,2335900277=>1,2332041901=>1,2332040210=>1,2332954070=>1,2333219107=>1,2334030266=>1,2342652488=>1,2342652688=>1,2344903594=>1,2344903427=>1,2344905380=>1,2344916406=>1,2344927935=>1,2344920933=>1,2344891797=>1,2344891368=>1,2344684747=>1,2344684085=>1,2344696997=>1,2344879115=>1,2344889758=>1,2344879168=>1,2344928330=>1,2344929665=>1,2420903569=>1,2345733952=>1,2345808916=>1,2345952807=>1,2346259167=>1,2345991517=>1,2345733545=>1,2345733275=>1,2344930464=>1,2344930209=>1,2344936630=>1,2344937064=>1,2344937284=>1,2342708762=>1,2342706349=>1,2342665256=>1,2342664775=>1,2342665516=>1,2342666166=>1,2342683385=>1,2342683326=>1,2342662623=>1,2342661248=>1,2342653550=>1,2342652911=>1,2342653945=>1,2342654735=>1,2342659060=>1,2342655217=>1,2342686235=>1,2342686264=>1,2342689838=>1,2342688598=>1,2342691339=>1,2342703047=>1,2342705627=>1,2342705518=>1,2342688488=>1,2342688272=>1,2342686853=>1,2342686750=>1,2342687244=>1,2342687780=>1,2342688017=>1,2346260037=>1,2420911272=>1,2503478576=>1,2503478350=>1,2503481146=>1,2503486920=>1,2503494578=>1,2503487141=>1,2500985426=>1,2500674342=>1,2499541098=>1,2499540375=>1,2499542757=>1,2499542876=>1,2500647806=>1,2500395035=>1,2503494581=>1,2503497165=>1,2503519270=>1,2503515681=>1,2503519278=>1,2503519311=>1,2503519389=>1,2503519321=>1,2503511261=>1,2503511060=>1,2503509018=>1,2503508854=>1,2503509160=>1,2503509255=>1,2503509538=>1,2503509537=>1,2499538685=>1,2499537479=>1,2496992626=>1,2493752740=>1,2497657133=>1,2497962238=>1,2499482673=>1,2499482179=>1,2493729136=>1,2493729110=>1,2487937149=>1,2487907712=>1,2489610213=>1,2493546562=>1,2493729109=>1,2493729032=>1,2499490378=>1,2499490773=>1,2499526939=>1,2499526373=>1,2499530374=>1,2499532341=>1,2499535630=>1,2499534243=>1,2499510428=>1,2499506662=>1,2499495012=>1,2499491830=>1,2499499208=>1,2499500164=>1,2499503272=>1,2503519397=>1,2503519399=>1,2513057870=>1,2513056087=>1,2513058262=>1,2513058824=>1,2513061031=>1,2513060801=>1,2513056042=>1,2513055826=>1,2513053165=>1,2513052264=>1,2513054396=>1,2513054897=>1,2513055669=>1,2513054910=>1,2513068705=>1,2513068991=>1,2513107053=>1,2513107045=>1,2513107427=>1,2513609956=>1,2513623593=>1,2513622468=>1,2513094004=>1,2513090006=>1,2513081176=>1,2513069414=>1,2513082504=>1,2513084485=>1,2513089833=>1,2513048031=>1,2513046850=>1,2505789665=>1,2504492311=>1,2505789671=>1,2505789758=>1,2505790431=>1,2505790049=>1,2503906345=>1,2503874009=>1,2503519477=>1,2503519461=>1,2503519486=>1,2503872640=>1,2503873858=>1,2503872697=>1,2508457405=>1,2509914337=>1,2511081861=>1,2509938604=>1,2511084549=>1,2511106365=>1,2511124246=>1,2511116721=>1,2509938519=>1,2509938404=>1,2509936656=>1,2509929452=>1,2509936761=>1,2509938000=>1,2509938298=>1,2481313003=>1,2477767567=>1,2427238508=>1,2426940775=>1,2441423236=>1,2448191913=>1,2449448380=>1,2449411877=>1,2425081984=>1,2425042583=>1,2420954526=>1,2420954521=>1,2420964837=>1,2423930893=>1,2423959148=>1,2423958879=>1,2449481872=>1,2449484665=>1,2452905878=>1,2452903035=>1,2452918466=>1,2452929026=>1,2452932495=>1,2452932326=>1,2452902985=>1,2452901854=>1,2449493253=>1,2449484670=>1,2449493298=>1,2449493478=>1,2452901744=>1,2452889758=>1,2420950824=>1,2420947242=>1,2420916290=>1,2420915496=>1,2420917801=>1,2420918668=>1,2420923085=>1,2420920388=>1,2420913533=>1,2420912677=>1,2420910026=>1,2420907687=>1,2420910201=>1,2420910507=>1,2420911434=>1,2328675099=>1,2420923271=>1,2420924423=>1,2420941661=>1,2420940424=>1,2420944059=>1,2420944845=>1,2420946285=>1,2420945489=>1,2420929961=>1,2420928597=>1,2420926889=>1,2420925497=>1,2420927125=>1,2420927882=>1,2420928103=>1,2452934642=>1,2452941817=>1,2461641377=>1,2461640646=>1,2461642788=>1,2461643111=>1,2461645210=>1,2461645200=>1,2461640590=>1,2461640139=>1,2461637546=>1,2461637517=>1,2461637949=>1,2461637951=>1,2461639468=>1,2461638620=>1,2461645766=>1,2461646277=>1,2468371601=>1,2466248770=>1,2469270824=>1,2469660930=>1,2472935701=>1,2471218479=>1,2466247974=>1,2466205510=>1,2462559694=>1,2461662705=>1,2462605360=>1,2466193740=>1,2466200036=>1,2461636315=>1,2461633825=>1,2457053264=>1,2457047838=>1,2457366314=>1,2459027298=>1,2459180371=>1,2459176806=>1,2457047439=>1,2457034820=>1,2453440586=>1,2452941899=>1,2453470564=>1,2454931411=>1,2455252353=>1,2455250884=>1,2459870276=>1,2460364048=>1,2461632272=>1,2461631471=>1,2461632299=>1,2461632808=>1,2461633335=>1,2461633228=>1,2461631285=>1,2461630844=>1,2461532275=>1,2460407650=>1,2461532276=>1,2461604507=>1,2461630534=>1,2420906671=>1,2328452857=>1,2250442327=>1,2250412928=>1,2250453383=>1,2250477694=>1,2252183755=>1,2251417966=>1,2250407205=>1,2249437549=>1,2248351341=>1,2248153634=>1,2248361946=>1,2248370270=>1,2248389731=>1,2248381226=>1,2252188884=>1,2253896547=>1,2255946660=>1,2255946498=>1,2255948067=>1,2255952577=>1,2255954167=>1,2255954128=>1,2254882917=>1,2254837370=>1,2254088004=>1,2253973236=>1,2254130831=>1,2254276785=>1,2254663848=>1,2247266854=>1,2247262900=>1,2239905614=>1,2239904178=>1,2239917447=>1,2239917717=>1,2239919373=>1,2239919262=>1,2235891187=>1,2232553795=>1,2224488706=>1,2224248073=>1,2226246681=>1,2228762114=>1,2230853132=>1,2229704273=>1,2239920401=>1,2239920468=>1,2239921899=>1,2239921735=>1,2241565409=>1,2244668473=>1,2244731304=>1,2244716587=>1,2239921690=>1,2239921619=>1,2239920843=>1,2239920813=>1,2239920917=>1,2239921373=>1,2239921606=>1,2255955079=>1,2256093188=>1,2297650279=>1,2297648014=>1,2297651766=>1,2297652870=>1,2297655870=>1,2297654020=>1,2297647426=>1,2297647402=>1,2297627036=>1,2292829586=>1,2297627784=>1,2297631182=>1,2297644743=>1,2297643105=>1,2297657946=>1,2297661333=>1,2306131728=>1,2297688485=>1,2306204637=>1,2306247617=>1,2306260181=>1,2306248340=>1,2297681545=>1,2297680180=>1,2297671088=>1,2297667408=>1,2297671828=>1,2297674661=>1,2297679950=>1,2292814888=>1,2292763033=>1,2262975517=>1,2261086467=>1,2263617937=>1,2263677468=>1,2264501231=>1,2264500126=>1,2261046911=>1,2260995753=>1,2256713009=>1,2256713003=>1,2256713172=>1,2259246299=>1,2259246302=>1,2264508432=>1,2264859083=>1,2281702035=>1,2281702026=>1,2281702122=>1,2281705689=>1,2285888476=>1,2285781134=>1,2281702019=>1,2281701554=>1,2266464675=>1,2266460713=>1,2281701379=>1,2281701435=>1,2281701442=>1,2218958106=>1,2214584325=>1,2173701666=>1,2172275536=>1,2173829127=>1,2177900639=>1,2180090003=>1,2177908532=>1,2170823274=>1,2170366791=>1,2162398731=>1,2161116357=>1,2165741134=>1,2165741215=>1,2170102440=>1,2166603622=>1,2180963741=>1,2181059123=>1,2193188914=>1,2193116022=>1,2193196299=>1,2193226308=>1,2193690554=>1,2193226316=>1,2192861182=>1,2192850838=>1,2185998886=>1,2185211262=>1,2187236451=>1,2190806559=>1,2192840678=>1,2161115881=>1,2160905349=>1,2160584619=>1,2160584591=>1,2160584916=>1,2160585166=>1,2160585788=>1,2160585468=>1,2160583741=>1,2160583134=>1,2160581642=>1,2160579561=>1,2160582131=>1,2160582597=>1,2160582843=>1,2160582744=>1,2160586485=>1,2160586940=>1,2160590315=>1,2160590021=>1,2160590322=>1,2160590351=>1,2160854254=>1,2160590377=>1,2160589427=>1,2160589066=>1,2160587339=>1,2160586945=>1,2160587443=>1,2160587982=>1,2160588195=>1,2194890943=>1,2194893150=>1,2210344243=>1,2210146493=>1,2210345038=>1,2210347786=>1,2210350291=>1,2210348977=>1,2208411910=>1,2208407105=>1,2207991154=>1,2206371426=>1,2208031836=>1,2208368021=>1,2208380453=>1,2208378129=>1,2210354103=>1,2210354104=>1,2214003447=>1,2212346874=>1,2214566396=>1,2214568457=>1,2214583778=>1,2214583626=>1,2212346856=>1,2212328315=>1,2210362830=>1,2210357984=>1,2210363645=>1,2211949782=>1,2212269440=>1,2205306308=>1,2204951270=>1,2197858926=>1,2197831002=>1,2197864839=>1,2197878506=>1,2202554881=>1,2202539027=>1,2197826510=>1,2197825250=>1,2197768356=>1,2197752511=>1,2197773033=>1,2197824786=>1,2197824798=>1,2202568806=>1,2202569256=>1,2204368955=>1,2202598101=>1,2204408291=>1,2204841536=>1,2204950615=>1,2204935292=>1,2202598074=>1,2202598058=>1,2202597579=>1,2202597541=>1,2202597581=>1,2202597594=>1,2202597600=>1,2306260572=>1,2306266941=>1,2321673230=>1,2321673229=>1,2321673233=>1,2321750512=>1,2321807948=>1,2321801209=>1,2321673218=>1,2321634529=>1,2321475161=>1,2321475155=>1,2321475245=>1,2321475294=>1,2321634425=>1,2321475304=>1,2321844912=>1,2322945187=>1,2323032850=>1,2323015090=>1,2323032854=>1,2323198717=>1,2323208925=>1,2323200486=>1,2322961453=>1,2322949874=>1,2322949718=>1,2322949683=>1,2322949754=>1,2322949818=>1,2322949861=>1,2321456073=>1,2321435622=>1,2317658432=>1,2317651958=>1,2319128468=>1,2319185667=>1,2321421473=>1,2321419620=>1,2317651935=>1,2317651914=>1,2317651754=>1,2317651661=>1,2317651792=>1,2317651801=>1,2317651850=>1,2317651817=>1,2321434895=>1,2321434922=>1,2321435549=>1,2321435486=>1,2321435568=>1,2321435600=>1,2321435620=>1,2321435617=>1,2321435459=>1,2321435366=>1,2321434965=>1,2321434934=>1,2321435067=>1,2321435077=>1,2321435227=>1,2323277726=>1,2323277765=>1,2328441212=>1,2328439124=>1,2328441905=>1,2328443598=>1,2328446597=>1,2328444795=>1,2328436629=>1,2328435202=>1,2327470020=>1,2327469963=>1,2327494933=>1,2327495030=>1,2328430470=>1,2328428649=>1,2328446732=>1,2328447750=>1,2328458698=>1,2328458663=>1,2328465338=>1,2328467086=>1,2328661735=>1,2328631510=>1,2328453093=>1,2328452934=>1,2328451426=>1,2328448307=>1,2328452279=>1,2328452799=>1,2160578909=>1,2327469899=>1,2327469817=>1,2327384938=>1,2323312027=>1,2327414887=>1,2327429255=>1,2327441470=>1,2327440962=>1,2323312023=>1,2323295027=>1,2323277793=>1,2323277769=>1,2323277821=>1,2323277822=>1,2323293666=>1,2327465267=>1,2327469072=>1,2327469632=>1,2327469624=>1,2327469637=>1,2327469658=>1,2327469780=>1,2327469700=>1,2327469616=>1,2327469501=>1,2327469233=>1,2327469107=>1,2327469359=>1,2327469360=>1,2327469456=>1,2317651558=>1,2317651526=>1,2315300087=>1,2315300078=>1,2315300089=>1,2315300094=>1,2315300134=>1,2315300124=>1,2315300067=>1,2315300063=>1,2315300041=>1,2315300035=>1,2315300044=>1,2315300049=>1,2315300061=>1,2315300052=>1,2315300139=>1,2315300145=>1,2315300191=>1,2315300182=>1,2315300192=>1,2315300196=>1,2315300201=>1,2315300199=>1,2315300180=>1,2315300179=>1,2315300154=>1,2315300151=>1,2315300161=>1,2315300169=>1,2315300172=>1,2315300032=>1,2315300028=>1,2309964410=>1,2309960683=>1,2311945251=>1,2313516551=>1,2315261764=>1,2313516617=>1,2309292399=>1,2307368673=>1,2306267927=>1,2306266978=>1,2306268717=>1,2306268883=>1,2307328233=>1,2306269085=>1,2315262194=>1,2315278607=>1,2315299999=>1,2315299997=>1,2315300001=>1,2315300008=>1,2315300019=>1,2315300010=>1,2315299983=>1,2315299980=>1,2315299910=>1,2315278694=>1,2315299916=>1,2315299968=>1,2315299979=>1,2315300208=>1,2315300217=>1,2315309922=>1,2315307916=>1,2315310005=>1,2315310006=>1,2315310036=>1,2315310032=>1,2315307903=>1,2315307817=>1,2315300773=>1,2315300757=>1,2315300788=>1,2315300809=>1,2315300815=>1,2315300810=>1,2315310072=>1,2315310978=>1,2317651297=>1,2317651130=>1,2317651310=>1,2317651375=>1,2317651469=>1,2317651418=>1,2317651121=>1,2317651083=>1,2316511741=>1,2316502468=>1,2316516546=>1,2317622021=>1,2317650960=>1,2315300735=>1,2315300707=>1,2315300276=>1,2315300265=>1,2315300280=>1,2315300285=>1,2315300324=>1,2315300322=>1,2315300259=>1,2315300252=>1,2315300235=>1,2315300224=>1,2315300243=>1,2315300249=>1,2315300251=>1,2315300334=>1,2315300342=>1,2315300684=>1,2315300602=>1,2315300693=>1,2315300696=>1,2315300705=>1,2315300700=>1,2315300599=>1,2315300596=>1,2315300431=>1,2315300416=>1,2315300432=>1,2315300491=>1,2315300540=>1,2328669031=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-29.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2479585280=>2479585535,2328447320=>2328447327,2499538685=>1,2499537479=>1,2499540375=>1,2499541098=>1,2499542876=>1,2499542757=>1,2499535630=>1,2499534243=>1,2499510428=>1,2499507499=>1,2499526373=>1,2499526939=>1,2499532341=>1,2499530374=>1,2499759871=>1,2500647438=>1,2503486920=>1,2503481146=>1,2503494578=>1,2503494581=>1,2503508854=>1,2503497165=>1,2503478576=>1,2503478350=>1,2500647806=>1,2499506662=>1,2500674342=>1,2500985426=>1,2500987782=>1,2500395035=>1,2499500164=>1,2481313003=>1,2477767567=>1,2487907712=>1,2487937149=>1,2493546562=>1,2489610213=>1,2472935701=>1,2472214830=>1,2466205510=>1,2466200036=>1,2466247974=>1,2466248770=>1,2469660930=>1,2469270824=>1,2493729032=>1,2493729136=>1,2499490378=>1,2499488420=>1,2499491830=>1,2499495012=>1,2503509018=>1,2499499208=>1,2499482673=>1,2499482179=>1,2496992626=>1,2493752740=>1,2497657133=>1,2497945880=>1,2497962238=>1,2499503272=>1,2503509160=>1,2513058262=>1,2513056087=>1,2513058824=>1,2513060801=>1,2513068704=>1,2513061031=>1,2513056042=>1,2513055669=>1,2513052264=>1,2513048031=>1,2513053165=>1,2513054396=>1,2513054910=>1,2513054897=>1,2513068705=>1,2513068991=>1,2513090006=>1,2513089833=>1,2513094004=>1,2513107045=>1,2513107427=>1,2513107053=>1,2513086234=>1,2513084485=>1,2513081176=>1,2513069414=>1,2513082502=>1,2513082503=>1,2513082504=>1,2511124246=>1,2509938604=>1,2503872640=>1,2503519486=>1,2503872697=>1,2503873858=>1,2503906345=>1,2503874009=>1,2503519399=>1,2503519321=>1,2503509537=>1,2503509255=>1,2503509538=>1,2503511060=>1,2503515681=>1,2503511261=>1,2505789665=>1,2505789671=>1,2509936847=>1,2509936761=>1,2509938000=>1,2509938298=>1,2509938519=>1,2509938404=>1,2509936656=>1,2509929452=>1,2505790049=>1,2505789758=>1,2505790431=>1,2508457405=>1,2509914337=>1,2466193740=>1,2462605360=>1,2420944059=>1,2420941661=>1,2420944845=>1,2420945489=>1,2420947242=>1,2420946285=>1,2420940424=>1,2420929961=>1,2420926889=>1,2420925497=>1,2420927125=>1,2420927882=>1,2420928597=>1,2420928103=>1,2420950824=>1,2420954521=>1,2423959148=>1,2423958879=>1,2423959460=>1,2425042583=>1,2426940775=>1,2425081984=>1,2423956811=>1,2423930893=>1,2420954523=>1,2420954522=>1,2420954524=>1,2420954525=>1,2420964837=>1,2420954526=>1,2420924423=>1,2420923271=>1,2419066155=>1,2418150029=>1,2419334661=>1,2419363994=>1,2420903569=>1,2420903303=>1,2416080468=>1,2416060396=>1,2415871401=>1,2412837637=>1,2415875487=>1,2415881499=>1,2415907842=>1,2415881558=>1,2420906671=>1,2420907687=>1,2420916290=>1,2420915496=>1,2420917801=>1,2420918668=>1,2420923085=>1,2420920388=>1,2420913533=>1,2420912677=>1,2420910201=>1,2420910026=>1,2420910507=>1,2420911272=>1,2420911434=>1,2427238508=>1,2441423236=>1,2461633228=>1,2461632299=>1,2461633335=>1,2461636315=>1,2461637546=>1,2461637517=>1,2461631471=>1,2461631285=>1,2460407650=>1,2460364048=>1,2461532275=>1,2461532276=>1,2461630844=>1,2461630534=>1,2461637949=>1,2461637951=>1,2461645210=>1,2461643111=>1,2461645766=>1,2461646277=>1,2462559694=>1,2461662705=>1,2461642788=>1,2461641377=>1,2461639468=>1,2461638620=>1,2461640139=>1,2461640590=>1,2461640646=>1,2459870276=>1,2459180371=>1,2452901744=>1,2452889758=>1,2452901854=>1,2452902985=>1,2452918466=>1,2452903035=>1,2449493478=>1,2449493298=>1,2449411877=>1,2448191913=>1,2449481872=>1,2449484665=>1,2449493253=>1,2449484670=>1,2452929026=>1,2452932326=>1,2457053264=>1,2457047838=>1,2457366314=>1,2459027298=>1,2459178478=>1,2459176806=>1,2457047439=>1,2457034820=>1,2454931411=>1,2452941899=>1,2455250884=>1,2455252353=>1,2455253118=>1,2513609956=>1,2513622468=>1,2587940612=>1,2587940609=>1,2587940862=>1,2587952218=>1,2588070710=>1,2587953001=>1,2587939310=>1,2587549538=>1,2581766181=>1,2580948398=>1,2583694487=>1,2583694570=>1,2586030049=>1,2583727896=>1,2588079625=>1,2588079701=>1,2588191335=>1,2588191292=>1,2588191429=>1,2588299851=>1,2588332554=>1,2588310998=>1,2588190444=>1,2588190443=>1,2588079713=>1,2588079703=>1,2588079722=>1,2588080861=>1,2588190165=>1,2588189739=>1,2579395677=>1,2576875315=>1,2574853542=>1,2574799705=>1,2574855198=>1,2574858308=>1,2574946023=>1,2574921914=>1,2574789257=>1,2573534812=>1,2572975635=>1,2572955376=>1,2572975850=>1,2572975938=>1,2572976111=>1,2572975977=>1,2575205249=>1,2575302173=>1,2576308439=>1,2576308437=>1,2576308444=>1,2576308445=>1,2576704251=>1,2576703535=>1,2576308434=>1,2576308433=>1,2576308398=>1,2575302451=>1,2576308400=>1,2576308430=>1,2576308431=>1,2588339366=>1,2588422248=>1,2600762751=>1,2600757258=>1,2600762753=>1,2606664038=>1,2606672264=>1,2606665746=>1,2600757206=>1,2600757046=>1,2592032077=>1,2592030732=>1,2592032103=>1,2592036904=>1,2600745979=>1,2600745130=>1,2606682002=>1,2606691847=>1,2617174808=>1,2617123290=>1,2617174813=>1,2617174931=>1,2617174975=>1,2617174973=>1,2609202234=>1,2609194722=>1,2606892293=>1,2606691870=>1,2606892294=>1,2609186563=>1,2609186564=>1,2592030201=>1,2592030086=>1,2588486805=>1,2588486761=>1,2588486817=>1,2588486913=>1,2588522236=>1,2588509154=>1,2588486661=>1,2588482988=>1,2588422261=>1,2588422251=>1,2588446970=>1,2588482772=>1,2588482929=>1,2588482808=>1,2588522237=>1,2588525075=>1,2591504430=>1,2591486729=>1,2591504450=>1,2592029788=>1,2592030050=>1,2592029877=>1,2591486725=>1,2591486721=>1,2588531849=>1,2588525161=>1,2588532235=>1,2591486209=>1,2591486354=>1,2572955066=>1,2572954985=>1,2535022449=>1,2533471961=>1,2535428571=>1,2535992217=>1,2536337147=>1,2536327724=>1,2533471872=>1,2533246894=>1,2532468949=>1,2532468945=>1,2532468950=>1,2532468954=>1,2532468978=>1,2532468974=>1,2536339675=>1,2536639902=>1,2538613908=>1,2538613351=>1,2538620357=>1,2538628216=>1,2538630278=>1,2538629033=>1,2538613222=>1,2538612385=>1,2537173800=>1,2536700084=>1,2538608136=>1,2538611602=>1,2538612239=>1,2538612113=>1,2532468937=>1,2532468933=>1,2523263843=>1,2516579212=>1,2523602260=>1,2523631387=>1,2523633253=>1,2523632952=>1,2516579211=>1,2516579210=>1,2513624368=>1,2513623593=>1,2513625755=>1,2516523996=>1,2516560546=>1,2516542354=>1,2523633254=>1,2523644145=>1,2526085463=>1,2525677826=>1,2527139276=>1,2527202288=>1,2530630485=>1,2527450376=>1,2525662962=>1,2525057442=>1,2525037586=>1,2524285281=>1,2525037634=>1,2525049763=>1,2525051054=>1,2538631574=>1,2538632116=>1,2549898578=>1,2549897917=>1,2550723613=>1,2551848171=>1,2551856158=>1,2551848598=>1,2549891646=>1,2549891321=>1,2549642599=>1,2549323137=>1,2549643012=>1,2549643057=>1,2549697696=>1,2549697090=>1,2551857798=>1,2551859676=>1,2566584960=>1,2566519951=>1,2567122603=>1,2569332236=>1,2572954783=>1,2569392650=>1,2565764676=>1,2565393456=>1,2553043558=>1,2553043557=>1,2560631723=>1,2563539114=>1,2563657322=>1,2548987235=>1,2548946932=>1,2538652886=>1,2538652605=>1,2538653120=>1,2538662511=>1,2546787664=>1,2539959090=>1,2538647530=>1,2538646476=>1,2538637449=>1,2538635276=>1,2538640281=>1,2538644627=>1,2538645058=>1,2538645056=>1,2548341872=>1,2548488323=>1,2548895251=>1,2548883161=>1,2548918810=>1,2548919014=>1,2548940337=>1,2548936147=>1,2548882732=>1,2548882031=>1,2548829042=>1,2548827842=>1,2548829310=>1,2548829845=>1,2548881987=>1,2412780802=>1,2412412647=>1,2321673233=>1,2321673230=>1,2321750512=>1,2321756604=>1,2321800814=>1,2321756647=>1,2321673229=>1,2321673218=>1,2321475304=>1,2321475294=>1,2321619137=>1,2321634425=>1,2321644642=>1,2321634529=>1,2321801209=>1,2321806290=>1,2322961453=>1,2322949874=>1,2323015090=>1,2323015163=>1,2323032854=>1,2323032850=>1,2322949861=>1,2322949818=>1,2321844912=>1,2321807948=>1,2322945187=>1,2322949683=>1,2322949754=>1,2322949718=>1,2321475245=>1,2321475161=>1,2321435019=>1,2321434934=>1,2321435067=>1,2321435077=>1,2321435227=>1,2321435105=>1,2321434922=>1,2321434889=>1,2319166467=>1,2319166466=>1,2319185667=>1,2320220733=>1,2321421473=>1,2321419620=>1,2321435305=>1,2321435366=>1,2321435620=>1,2321435617=>1,2321435622=>1,2321456073=>1,2321475155=>1,2321475109=>1,2321435600=>1,2321435568=>1,2321435483=>1,2321435459=>1,2321435486=>1,2321435492=>1,2321435549=>1,2323198717=>1,2323200486=>1,2327470020=>1,2327469899=>1,2327494819=>1,2327494866=>1,2327494933=>1,2327494881=>1,2327469817=>1,2327469803=>1,2327469658=>1,2327469637=>1,2327469700=>1,2327469780=>1,2327469789=>1,2327469787=>1,2327495030=>1,2327495056=>1,2328439127=>1,2328439126=>1,2328441212=>1,2328441905=>1,2328444795=>1,2328443598=>1,2328439124=>1,2328436629=>1,2327495193=>1,2327495184=>1,2328428649=>1,2328430470=>1,2328435202=>1,2327469636=>1,2327469632=>1,2323293666=>1,2323293633=>1,2323295027=>1,2323312023=>1,2327384938=>1,2323312027=>1,2323277822=>1,2323277821=>1,2323208925=>1,2323200649=>1,2323277726=>1,2323277765=>1,2323277793=>1,2323277769=>1,2327414887=>1,2327429255=>1,2327469456=>1,2327469360=>1,2327469501=>1,2327469616=>1,2327469630=>1,2327469624=>1,2327469359=>1,2327469233=>1,2327441470=>1,2327440962=>1,2327465267=>1,2327469072=>1,2327469107=>1,2319153341=>1,2319128468=>1,2315300334=>1,2315300324=>1,2315300342=>1,2315300416=>1,2315300432=>1,2315300431=>1,2315300322=>1,2315300311=>1,2315300265=>1,2315300259=>1,2315300276=>1,2315300280=>1,2315300310=>1,2315300285=>1,2315300491=>1,2315300540=>1,2315300735=>1,2315300707=>1,2315300757=>1,2315300773=>1,2315300809=>1,2315300788=>1,2315300705=>1,2315300700=>1,2315300599=>1,2315300596=>1,2315300602=>1,2315300684=>1,2315300696=>1,2315300693=>1,2315300257=>1,2315300256=>1,2315300179=>1,2315300172=>1,2315300180=>1,2315300182=>1,2315300192=>1,2315300191=>1,2315300171=>1,2315300170=>1,2315300149=>1,2315300148=>1,2315300151=>1,2315300154=>1,2315300169=>1,2315300161=>1,2315300196=>1,2315300199=>1,2315300241=>1,2315300240=>1,2315300243=>1,2315300249=>1,2315300252=>1,2315300251=>1,2315300239=>1,2315300238=>1,2315300208=>1,2315300201=>1,2315300217=>1,2315300224=>1,2315300235=>1,2315300810=>1,2315300815=>1,2317651375=>1,2317651356=>1,2317651392=>1,2317651418=>1,2317651526=>1,2317651469=>1,2317651352=>1,2317651346=>1,2317651256=>1,2317651194=>1,2317651297=>1,2317651310=>1,2317651336=>1,2317651316=>1,2317651558=>1,2317651629=>1,2317651850=>1,2317651848=>1,2317651914=>1,2317651923=>1,2317658432=>1,2317651935=>1,2317651817=>1,2317651801=>1,2317651667=>1,2317651661=>1,2317651754=>1,2317651777=>1,2317651792=>1,2317651130=>1,2317651121=>1,2315309969=>1,2315309968=>1,2315310005=>1,2315310006=>1,2315310036=>1,2315310032=>1,2315309922=>1,2315309919=>1,2315307916=>1,2315307817=>1,2315308000=>1,2315309862=>1,2315309894=>1,2315309877=>1,2315310072=>1,2315310978=>1,2317651049=>1,2317651045=>1,2317651060=>1,2317651079=>1,2317651091=>1,2317651083=>1,2317651034=>1,2317650986=>1,2316511741=>1,2316502468=>1,2316516546=>1,2317622021=>1,2317650960=>1,2328446597=>1,2328446732=>1,2356897728=>1,2356760746=>1,2357189550=>1,2357189551=>1,2357697834=>1,2357364484=>1,2356395453=>1,2356360700=>1,2348812378=>1,2348794013=>1,2348817081=>1,2356269129=>1,2356301799=>1,2356269132=>1,2357759274=>1,2357891242=>1,2367432491=>1,2366924569=>1,2367449148=>1,2367449484=>1,2367449999=>1,2367449745=>1,2366906692=>1,2366906691=>1,2362332740=>1,2361449099=>1,2364532452=>1,2365557080=>1,2365593074=>1,2365580722=>1,2348760726=>1,2348758270=>1,2344936630=>1,2344930464=>1,2344937064=>1,2344937284=>1,2345733545=>1,2345733275=>1,2344930209=>1,2344929665=>1,2344905380=>1,2344903594=>1,2344916406=>1,2344920933=>1,2344928330=>1,2344927935=>1,2345804986=>1,2345808916=>1,2348754835=>1,2348753868=>1,2348755074=>1,2348755146=>1,2348758269=>1,2348755330=>1,2346928705=>1,2346928223=>1,2345991517=>1,2345952807=>1,2346259167=>1,2346260037=>1,2346681128=>1,2367609115=>1,2369167288=>1,2399163738=>1,2399152932=>1,2399170558=>1,2399175949=>1,2399197618=>1,2399177934=>1,2393177498=>1,2392658213=>1,2384106570=>1,2382682284=>1,2385945706=>1,2385951410=>1,2389246843=>1,2385952131=>1,2399199734=>1,2408135685=>1,2412412525=>1,2412412436=>1,2412412556=>1,2412412613=>1,2315300145=>1,2412412637=>1,2412412175=>1,2412399688=>1,2408136797=>1,2408136749=>1,2408137110=>1,2408159786=>1,2408161286=>1,2382681943=>1,2382681420=>1,2374518054=>1,2372510919=>1,2374641954=>1,2374643621=>1,2374671443=>1,2374667728=>1,2372510852=>1,2372510851=>1,2370767513=>1,2370207208=>1,2372210899=>1,2372214888=>1,2372510394=>1,2372485946=>1,2378442799=>1,2378456073=>1,2382341782=>1,2382341774=>1,2382341821=>1,2382347681=>1,2382635204=>1,2382389679=>1,2382341478=>1,2382340519=>1,2381291109=>1,2381290799=>1,2381312976=>1,2382332426=>1,2382340518=>1,2344903427=>1,2344892670=>1,2332041901=>1,2332040210=>1,2333219107=>1,2334030266=>1,2335900290=>1,2335900277=>1,2332039731=>1,2332039026=>1,2331980670=>1,2331980661=>1,2331988998=>1,2331989002=>1,2332038204=>1,2331993135=>1,2335902803=>1,2335903489=>1,2335943024=>1,2335942966=>1,2335943029=>1,2335943047=>1,2335949485=>1,2335943773=>1,2335942658=>1,2335941662=>1,2335932802=>1,2335903552=>1,2335933804=>1,2335933982=>1,2335936727=>1,2335936281=>1,2331980597=>1,2331976682=>1,2328465338=>1,2328458698=>1,2328467086=>1,2328631510=>1,2328669031=>1,2328661735=>1,2328458663=>1,2328453093=>1,2328448307=>1,2328447750=>1,2328451426=>1,2328452279=>1,2328452934=>1,2328452857=>1,2328675099=>1,2328864434=>1,2331975896=>1,2331975834=>1,2331976113=>1,2331976622=>1,2331976647=>1,2331976644=>1,2331975810=>1,2331975790=>1,2329633205=>1,2329619341=>1,2329638658=>1,2329653744=>1,2329658540=>1,2335949820=>1,2335957276=>1,2342687780=>1,2342687244=>1,2342688017=>1,2342688272=>1,2342688598=>1,2342688488=>1,2342686853=>1,2342686750=>1,2342666166=>1,2342665929=>1,2342683326=>1,2342683385=>1,2342686264=>1,2342686235=>1,2342689838=>1,2342703047=>1,2344696997=>1,2344684747=>1,2344879115=>1,2344879168=>1,2344891797=>1,2344891368=>1,2344684085=>1,2344684071=>1,2342705627=>1,2342705518=>1,2342706349=>1,2342708762=>1,2344468589=>1,2342665516=>1,2342665256=>1,2340492874=>1,2335965002=>1,2340495864=>1,2340501338=>1,2340519938=>1,2340501369=>1,2335963948=>1,2335963365=>1,2335960791=>1,2335959663=>1,2335961217=>1,2335961884=>1,2335963148=>1,2335962332=>1,2340611144=>1,2341254551=>1,2342654735=>1,2342653945=>1,2342655217=>1,2342661248=>1,2342664775=>1,2342662623=>1,2342653550=>1,2342652911=>1,2342651688=>1,2342650477=>1,2342652293=>1,2342652488=>1,2342652688=>1,2412412656=>1,);?>
1
+ <?php return array(2819134062=>2819134063,2789106164=>2789106165,2789106158=>2789106161,2746306308=>2746306309,2736132392=>2736132393,2734115032=>2734115033,2734115016=>2734115017,2732546490=>2732546493,2732546478=>2732546487,2732546464=>2732546465,2654644802=>2654644803,2588522236=>2588522237,2588509154=>2588509155,2576308450=>2576308451,2576308444=>2576308445,2516579210=>2516579211,2745993811=>1,2745997543=>1,2745996666=>1,2745993858=>1,2745993750=>1,2745993646=>1,2745993132=>1,2745993317=>1,2745997689=>1,2745993613=>1,2745996008=>1,2745994088=>1,2745993129=>1,2745995781=>1,2745995599=>1,2745995660=>1,2745995375=>1,2745994441=>1,2745994129=>1,2745994270=>1,2745995834=>1,2745994300=>1,2745995722=>1,2745992370=>1,2745967928=>1,2745967772=>1,2745968301=>1,2745968303=>1,2745991474=>1,2745991319=>1,2745967649=>1,2745967609=>1,2745965844=>1,2745965374=>1,2745967475=>1,2745967571=>1,2745967607=>1,2745967605=>1,2745991491=>1,2745991494=>1,2745992270=>1,2745992176=>1,2745997929=>1,2745992484=>1,2745992942=>1,2745992743=>1,2745992140=>1,2745992134=>1,2745992024=>1,2745991886=>1,2745992100=>1,2745992119=>1,2745992128=>1,2745992122=>1,2745993048=>1,2745998752=>1,2760134793=>1,2760134791=>1,2760137437=>1,2760139313=>1,2760141676=>1,2760141505=>1,2760134063=>1,2760128898=>1,2760124700=>1,2760121501=>1,2760125110=>1,2760127323=>1,2760128893=>1,2760127631=>1,2760141969=>1,2760142223=>1,2773783878=>1,2768407347=>1,2776148144=>1,2777285256=>1,2777301536=>1,2777294609=>1,2763108798=>1,2760530235=>1,2760158314=>1,2760146093=>1,2760163347=>1,2760171257=>1,2760173251=>1,2760121497=>1,2760119505=>1,2746000265=>1,2746000092=>1,2746011939=>1,2746011950=>1,2746012261=>1,2746012218=>1,2745999056=>1,2745998805=>1,2745998184=>1,2745998168=>1,2745998473=>1,2745998711=>1,2745965351=>1,2746012474=>1,2746012678=>1,2755285265=>1,2754155894=>1,2756053590=>1,2758028114=>1,2760117198=>1,2760116670=>1,2754155880=>1,2754146626=>1,2746013259=>1,2746012873=>1,2746013260=>1,2746326928=>1,2746493901=>1,2745998071=>1,2745961690=>1,2733935000=>1,2733908649=>1,2733969782=>1,2733971263=>1,2734114823=>1,2734099476=>1,2733906630=>1,2733906508=>1,2733896945=>1,2733894497=>1,2733905996=>1,2733906390=>1,2733906441=>1,2733906425=>1,2734114843=>1,2734115017=>1,2734115702=>1,2734115278=>1,2734129885=>1,2734164612=>1,2734164912=>1,2734164742=>1,2734115276=>1,2734115273=>1,2734115029=>1,2734115018=>1,2734115033=>1,2734115146=>1,2734115267=>1,2733888398=>1,2733887451=>1,2733855693=>1,2733854904=>1,2733858357=>1,2733858688=>1,2733859728=>1,2733859656=>1,2733853644=>1,2733852870=>1,2733847885=>1,2733844261=>1,2733848523=>1,2733848533=>1,2733850908=>1,2733849696=>1,2733860065=>1,2733860782=>1,2733870887=>1,2733870354=>1,2733870990=>1,2733872509=>1,2733884539=>1,2733872796=>1,2733869947=>1,2733868732=>1,2733864756=>1,2733861611=>1,2733866229=>1,2733866778=>1,2733867698=>1,2734198369=>1,2734198375=>1,2737775670=>1,2737613892=>1,2737798968=>1,2737803550=>1,2737810954=>1,2737804066=>1,2737613540=>1,2737612771=>1,2737608983=>1,2737608524=>1,2737609514=>1,2737611907=>1,2737612110=>1,2737611932=>1,2737810957=>1,2737810958=>1,2745960387=>1,2745960222=>1,2777301751=>1,2733837376=>1,2745963872=>1,2745962205=>1,2742928065=>1,2742928029=>1,2738207450=>1,2738207282=>1,2738207586=>1,2738212635=>1,2738243075=>1,2737608395=>1,2737600438=>1,2734348188=>1,2734251132=>1,2734380769=>1,2734382895=>1,2734409748=>1,2734400531=>1,2734204174=>1,2734203975=>1,2734198408=>1,2734198390=>1,2734198434=>1,2734202931=>1,2734203953=>1,2734203388=>1,2734409896=>1,2734409908=>1,2734607301=>1,2734534478=>1,2736132393=>1,2736326184=>1,2736650252=>1,2736352065=>1,2734500560=>1,2734486096=>1,2734461332=>1,2734410182=>1,2734461620=>1,2734476350=>1,2734485919=>1,2745964918=>1,2777388457=>1,2838886246=>1,2835460750=>1,2839085255=>1,2839085263=>1,2850758580=>1,2848395272=>1,2835456920=>1,2835411445=>1,2835172885=>1,2835169650=>1,2835378157=>1,2835380149=>1,2835410961=>1,2835381246=>1,2851045414=>1,2852080923=>1,2856859810=>1,2856855513=>1,2857083479=>1,2857083555=>1,2864272654=>1,2857083764=>1,2856855382=>1,2856853658=>1,2852112351=>1,2852112139=>1,2852116567=>1,2852118071=>1,2852118081=>1,2835169630=>1,2834013174=>1,2829550791=>1,2829550694=>1,2829550853=>1,2830856153=>1,2833451995=>1,2833392403=>1,2828466959=>1,2825372666=>1,2822706195=>1,2822691288=>1,2822707374=>1,2824481553=>1,2825291311=>1,2824527937=>1,2833561079=>1,2833989636=>1,2833996564=>1,2833996453=>1,2833996983=>1,2834010644=>1,2834012768=>1,2834012619=>1,2833995652=>1,2833993082=>1,2833990281=>1,2833990024=>1,2833990430=>1,2833990991=>1,2833992831=>1,2866233306=>1,2869331885=>1,2875221366=>1,2875221363=>1,2875221370=>1,2875221456=>1,2875221601=>1,2875221550=>1,2875221273=>1,2875221164=>1,2875219522=>1,2875219313=>1,2875219581=>1,2875220702=>1,2875221094=>1,2875220840=>1,2875222262=>1,2875222290=>1,2875223706=>1,2875223662=>1,2875223715=>1,2875223740=>1,2875223805=>1,2875223779=>1,2875223645=>1,2875223628=>1,2875222637=>1,2875222411=>1,2875223585=>1,2875223587=>1,2875223623=>1,2875219131=>1,2875219019=>1,2870591764=>1,2870591753=>1,2870591769=>1,2870591821=>1,2870591875=>1,2870591822=>1,2869849162=>1,2869829447=>1,2869448755=>1,2869445330=>1,2869498450=>1,2869728822=>1,2869794072=>1,2869733334=>1,2870591876=>1,2870591979=>1,2871466160=>1,2871448662=>1,2871467903=>1,2875218977=>1,2875218998=>1,2875218987=>1,2871444286=>1,2871440654=>1,2871331321=>1,2871231808=>1,2871331509=>1,2871355325=>1,2871362830=>1,2822684577=>1,2822684307=>1,2789106163=>1,2789105944=>1,2789107251=>1,2789107701=>1,2789609230=>1,2789134689=>1,2789102286=>1,2785011326=>1,2785007735=>1,2785000888=>1,2785008645=>1,2785008693=>1,2785009830=>1,2785008809=>1,2789629546=>1,2789658370=>1,2795269889=>1,2794322396=>1,2801742295=>1,2807571308=>1,2807572610=>1,2807571649=>1,2792323236=>1,2792313402=>1,2790524727=>1,2790397384=>1,2791761609=>1,2792309402=>1,2792309661=>1,2785000855=>1,2785000805=>1,2783326579=>1,2783280543=>1,2784959821=>1,2784971619=>1,2784971757=>1,2784971626=>1,2783280478=>1,2780948450=>1,2777368321=>1,2777317357=>1,2777379400=>1,2733836449=>1,2779179908=>1,2778363966=>1,2784971768=>1,2784977486=>1,2784980742=>1,2784980636=>1,2784996728=>1,2784999440=>1,2785000754=>1,2785000753=>1,2784980556=>1,2784980245=>1,2784979654=>1,2784978950=>1,2784979714=>1,2784979897=>1,2784980188=>1,2807572706=>1,2807572930=>1,2809306272=>1,2809306105=>1,2809314573=>1,2809321431=>1,2809325160=>1,2809323526=>1,2809305365=>1,2809305188=>1,2809290788=>1,2809289789=>1,2809292563=>1,2809295152=>1,2809303727=>1,2809295238=>1,2809326988=>1,2809328998=>1,2818181955=>1,2818181532=>1,2818191170=>1,2818191180=>1,2822579772=>1,2818650104=>1,2818181150=>1,2818171750=>1,2811163363=>1,2809329252=>1,2812322243=>1,2818135701=>1,2818159720=>1,2809289778=>1,2809285827=>1,2807590275=>1,2807590263=>1,2807590317=>1,2807590327=>1,2807590362=>1,2807590343=>1,2807590248=>1,2807590242=>1,2807574221=>1,2807573122=>1,2807590173=>1,2807590189=>1,2807590220=>1,2807590193=>1,2807590377=>1,2807591355=>1,2809275164=>1,2809273717=>1,2809277736=>1,2809283133=>1,2809284541=>1,2809283332=>1,2809273714=>1,2809268564=>1,2807593825=>1,2807591676=>1,2809266927=>1,2809267110=>1,2809268134=>1,2777305138=>1,2732546691=>1,2588190443=>1,2588190165=>1,2588190444=>1,2588191292=>1,2588191429=>1,2588191335=>1,2588189739=>1,2588080861=>1,2588079625=>1,2587953001=>1,2588079701=>1,2588079703=>1,2588079722=>1,2588079713=>1,2588299851=>1,2588310998=>1,2588486761=>1,2588482988=>1,2588486805=>1,2588486817=>1,2588486913=>1,2588486853=>1,2588482929=>1,2588482808=>1,2588332554=>1,2588318127=>1,2588339366=>1,2588422248=>1,2588422251=>1,2587952218=>1,2587940609=>1,2575302451=>1,2575302173=>1,2576308400=>1,2576308430=>1,2576308434=>1,2576308433=>1,2575205249=>1,2574921914=>1,2574789257=>1,2573534812=>1,2574799705=>1,2574853542=>1,2574858308=>1,2574855198=>1,2576308437=>1,2576308439=>1,2583694487=>1,2582195136=>1,2583694570=>1,2583727896=>1,2587939310=>1,2586030049=>1,2581766181=>1,2580951261=>1,2576308448=>1,2576308446=>1,2576704251=>1,2576719616=>1,2576875315=>1,2588509156=>1,2588525075=>1,2614270775=>1,2610859455=>1,2617174808=>1,2617174813=>1,2617174975=>1,2617174973=>1,2609202234=>1,2609194722=>1,2606691870=>1,2606691847=>1,2606892293=>1,2606892294=>1,2609186564=>1,2609186563=>1,2617174999=>1,2617175022=>1,2630280656=>1,2630280172=>1,2630302563=>1,2630303250=>1,2631164967=>1,2631148321=>1,2630274286=>1,2630258669=>1,2619507341=>1,2617175037=>1,2620979939=>1,2621015018=>1,2621016418=>1,2606689195=>1,2606682002=>1,2591504450=>1,2591504430=>1,2592029788=>1,2592029877=>1,2592030086=>1,2592030050=>1,2591486729=>1,2591486725=>1,2588531849=>1,2588525161=>1,2588532235=>1,2591486209=>1,2591486721=>1,2591486354=>1,2592030201=>1,2592030732=>1,2600762753=>1,2600762751=>1,2606664038=>1,2606664858=>1,2606672264=>1,2606665746=>1,2600757206=>1,2600757046=>1,2592032103=>1,2592032077=>1,2592036904=>1,2600745130=>1,2600745979=>1,2572976111=>1,2572975977=>1,2535992217=>1,2535429361=>1,2536327724=>1,2536339675=>1,2536926942=>1,2536639902=>1,2535155680=>1,2535022449=>1,2532468978=>1,2532468974=>1,2533246894=>1,2533471872=>1,2534718710=>1,2533471961=>1,2537173800=>1,2538608136=>1,2538629033=>1,2538620357=>1,2538630278=>1,2538631574=>1,2538635276=>1,2538632116=>1,2538613908=>1,2538613351=>1,2538612113=>1,2538611602=>1,2538612239=>1,2538612385=>1,2538613222=>1,2532468954=>1,2532468950=>1,2523631387=>1,2523614461=>1,2523632952=>1,2523633253=>1,2524285281=>1,2523633254=>1,2523614315=>1,2523602260=>1,2516523996=>1,2513625755=>1,2516542354=>1,2516560546=>1,2523263843=>1,2516579212=>1,2525037586=>1,2525037634=>1,2527450376=>1,2527202288=>1,2532468933=>1,2532468937=>1,2532468949=>1,2532468945=>1,2527139276=>1,2526085463=>1,2525051054=>1,2525049763=>1,2525057442=>1,2525662962=>1,2525677826=>1,2538637449=>1,2538640281=>1,2551859676=>1,2551856158=>1,2553043557=>1,2553043558=>1,2561173887=>1,2560631723=>1,2551848598=>1,2550723613=>1,2549697696=>1,2549697090=>1,2549891321=>1,2549891646=>1,2549898578=>1,2549897917=>1,2561323162=>1,2561447296=>1,2572955066=>1,2572954985=>1,2572955376=>1,2572975635=>1,2572975938=>1,2572975850=>1,2569392650=>1,2569332236=>1,2563657322=>1,2563539114=>1,2565393456=>1,2566519951=>1,2567122603=>1,2549643057=>1,2549643012=>1,2539959090=>1,2538665728=>1,2546787664=>1,2548488323=>1,2548829042=>1,2548827842=>1,2538653120=>1,2538652886=>1,2538644627=>1,2538641098=>1,2538645056=>1,2538645058=>1,2538647530=>1,2538646476=>1,2548829310=>1,2548829845=>1,2548946932=>1,2548940337=>1,2548981823=>1,2549323137=>1,2549642599=>1,2549336951=>1,2548919014=>1,2548918810=>1,2548882031=>1,2548881987=>1,2548882732=>1,2548883161=>1,2548895251=>1,2631166662=>1,2631182913=>1,2696041035=>1,2690723614=>1,2696041203=>1,2696041835=>1,2701561277=>1,2701179683=>1,2690712686=>1,2685458419=>1,2685404617=>1,2684877966=>1,2685422158=>1,2685453628=>1,2685457385=>1,2685455307=>1,2704636056=>1,2708755425=>1,2724827789=>1,2722668683=>1,2727385313=>1,2730553217=>1,2730626129=>1,2730616342=>1,2720466249=>1,2719044378=>1,2714375156=>1,2710305642=>1,2714377973=>1,2717266996=>1,2718809700=>1,2684876765=>1,2684581346=>1,2680937610=>1,2680937053=>1,2680938521=>1,2680942977=>1,2680944504=>1,2680943969=>1,2680936290=>1,2680935070=>1,2680930515=>1,2680913523=>1,2680930735=>1,2680931605=>1,2680932918=>1,2680932677=>1,2680945644=>1,2680945936=>1,2682282382=>1,2682279529=>1,2682286874=>1,2682312520=>1,2684331907=>1,2682446004=>1,2682278409=>1,2682277439=>1,2682258165=>1,2680946274=>1,2682260876=>1,2682262933=>1,2682263423=>1,2731290337=>1,2731437498=>1,2732382514=>1,2732369239=>1,2732382829=>1,2732390118=>1,2732395760=>1,2732391774=>1,2732341199=>1,2732340588=>1,2732262493=>1,2732257149=>1,2732262815=>1,2732299129=>1,2732328980=>1,2732305830=>1,2732444390=>1,2732460034=>1,2513624368=>1,2732546489=>1,2733105337=>1,2733800846=>1,2733822585=>1,2733822553=>1,2732546468=>1,2732546291=>1,2732461283=>1,2732460250=>1,2732501150=>1,2732501829=>1,2732536004=>1,2732255261=>1,2732246213=>1,2731793321=>1,2731792624=>1,2731794665=>1,2731808089=>1,2731853397=>1,2731838004=>1,2731783606=>1,2731774311=>1,2731471157=>1,2731471153=>1,2731541655=>1,2731637986=>1,2731774280=>1,2731745802=>1,2731853427=>1,2731868403=>1,2732245097=>1,2732245048=>1,2732245421=>1,2732245555=>1,2732246081=>1,2732245636=>1,2732194504=>1,2732121284=>1,2731926219=>1,2731877886=>1,2732066448=>1,2732118814=>1,2732119309=>1,2680913255=>1,2680907658=>1,2655374292=>1,2655373404=>1,2655374372=>1,2655374490=>1,2655374807=>1,2655374796=>1,2655372717=>1,2655372341=>1,2655365520=>1,2655356022=>1,2655365765=>1,2655366369=>1,2655372209=>1,2655371484=>1,2655374839=>1,2655374962=>1,2655377478=>1,2655377426=>1,2655377698=>1,2655377827=>1,2655378379=>1,2655377998=>1,2655376650=>1,2655376486=>1,2655375241=>1,2655375008=>1,2655375320=>1,2655375491=>1,2655375945=>1,2655354505=>1,2655348605=>1,2642058338=>1,2642048493=>1,2642080950=>1,2642591806=>1,2654644738=>1,2645891236=>1,2642047956=>1,2642047543=>1,2634520702=>1,2631191813=>1,2634532184=>1,2635718907=>1,2637472231=>1,2637472226=>1,2654644763=>1,2654644803=>1,2655328721=>1,2655327627=>1,2655330714=>1,2655348227=>1,2655348494=>1,2655348432=>1,2655325155=>1,2655325152=>1,2654644893=>1,2654644879=>1,2654644895=>1,2654644922=>1,2654645582=>1,2655378959=>1,2655382785=>1,2680886451=>1,2680885859=>1,2680886835=>1,2680887230=>1,2680889493=>1,2680888069=>1,2680885607=>1,2680885499=>1,2680883980=>1,2680881494=>1,2680885128=>1,2680885140=>1,2680885481=>1,2680885271=>1,2680889666=>1,2680889968=>1,2680899341=>1,2680893102=>1,2680903000=>1,2680904930=>1,2680906108=>1,2680906051=>1,2680891898=>1,2680891781=>1,2680890458=>1,2680890105=>1,2680890501=>1,2680891130=>1,2680891262=>1,2680225518=>1,2680225450=>1,2662698592=>1,2662697590=>1,2663878383=>1,2665376009=>1,2665401834=>1,2665401698=>1,2662696444=>1,2662695053=>1,2655731196=>1,2655383762=>1,2656432466=>1,2656432476=>1,2662680148=>1,2659320050=>1,2667512563=>1,2667513586=>1,2677323165=>1,2677294777=>1,2677324449=>1,2677324482=>1,2680225373=>1,2679431730=>1,2668154436=>1,2668151598=>1,2667566258=>1,2667565841=>1,2667566889=>1,2667575616=>1,2668105099=>1,2733834627=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-3.php CHANGED
@@ -1 +1 @@
1
- <?php return array(757094907=>1,757094288=>1,757095736=>1,757105372=>1,757109065=>1,757105463=>1,757094024=>1,757092844=>1,757089731=>1,757089470=>1,757090840=>1,757090997=>1,757091581=>1,757091360=>1,757109333=>1,757109445=>1,757121067=>1,757120594=>1,757127537=>1,757127556=>1,757131409=>1,757130619=>1,757120497=>1,757120339=>1,757111585=>1,757110601=>1,757111987=>1,757113205=>1,757118275=>1,757117845=>1,757089369=>1,757089012=>1,757083995=>1,757083986=>1,757084345=>1,757084448=>1,757085383=>1,757085262=>1,757083626=>1,757083083=>1,757082477=>1,757082105=>1,757082592=>1,757082857=>1,757083011=>1,757082977=>1,757085389=>1,757085516=>1,757087863=>1,757087699=>1,757088114=>1,757088190=>1,757088830=>1,757088534=>1,757087341=>1,757087137=>1,757085597=>1,757085529=>1,757085718=>1,757085804=>1,757086549=>1,757131606=>1,757132257=>1,758268777=>1,757930863=>1,758271284=>1,758579757=>1,758580862=>1,758580023=>1,757786230=>1,757786229=>1,757786132=>1,757786127=>1,757786159=>1,757786162=>1,757786217=>1,757786176=>1,758582085=>1,758582295=>1,758590768=>1,758590684=>1,758591822=>1,758592099=>1,758594361=>1,758593356=>1,758590436=>1,758590132=>1,758584555=>1,758582920=>1,758585548=>1,758585987=>1,758587343=>1,758586182=>1,757632825=>1,757630798=>1,757135334=>1,757135069=>1,757135397=>1,757135419=>1,757136910=>1,757135918=>1,757134360=>1,757134167=>1,757132831=>1,757132526=>1,757132843=>1,757132901=>1,757134111=>1,757134089=>1,757137169=>1,757139502=>1,757166002=>1,757157831=>1,757239558=>1,757291556=>1,757443314=>1,757420971=>1,757156636=>1,757154116=>1,757149900=>1,757147474=>1,757150883=>1,757152873=>1,757152895=>1,757082001=>1,757081646=>1,737229304=>1,737229303=>1,737269721=>1,737271531=>1,737274926=>1,737271555=>1,737229293=>1,737229292=>1,736618517=>1,736618516=>1,737152058=>1,737156214=>1,737225820=>1,737174739=>1,737306667=>1,737366785=>1,737374330=>1,737374323=>1,737374331=>1,737374332=>1,737382018=>1,737381650=>1,737374322=>1,737374321=>1,737374286=>1,737374285=>1,737374287=>1,737374294=>1,737374296=>1,737374295=>1,736618515=>1,736618514=>1,720345381=>1,720292126=>1,720345566=>1,720345583=>1,720591805=>1,720564454=>1,720255786=>1,720252427=>1,719897354=>1,719524711=>1,719932556=>1,720054753=>1,720224831=>1,720055687=>1,720596998=>1,720960305=>1,736480494=>1,736480355=>1,736485795=>1,736485796=>1,736618513=>1,736588066=>1,736480354=>1,736480273=>1,736215185=>1,736146713=>1,736273003=>1,736273006=>1,736480258=>1,737382122=>1,737397962=>1,757076706=>1,757076703=>1,757077137=>1,757077906=>1,757078451=>1,757078389=>1,757076639=>1,757075864=>1,756082690=>1,738180951=>1,757074050=>1,757074740=>1,757075392=>1,757074981=>1,757078578=>1,757078695=>1,757081303=>1,757081276=>1,757081383=>1,757081393=>1,757081482=>1,757081437=>1,757081136=>1,757080688=>1,757079176=>1,757079046=>1,757080359=>1,757080477=>1,757080619=>1,738159168=>1,738100567=>1,737525810=>1,737502209=>1,737528440=>1,737635346=>1,737774818=>1,737675496=>1,737498618=>1,737498570=>1,737498365=>1,737398273=>1,737498397=>1,737498399=>1,737498471=>1,737498409=>1,737775370=>1,737825474=>1,738098210=>1,738095090=>1,738098672=>1,738098676=>1,738098679=>1,738098678=>1,737994505=>1,737970844=>1,737870109=>1,737825502=>1,737938299=>1,737944846=>1,737962246=>1,758595233=>1,758609280=>1,762555475=>1,762555405=>1,762555603=>1,762555652=>1,762556242=>1,762555787=>1,762555404=>1,762540202=>1,762440886=>1,762400883=>1,762448080=>1,762448173=>1,762468373=>1,762458892=>1,762556361=>1,762688615=>1,762863961=>1,762863949=>1,762863964=>1,762863965=>1,762870712=>1,762863966=>1,762863946=>1,762742697=>1,762688815=>1,762688727=>1,762688921=>1,762688985=>1,762689107=>1,762689061=>1,762347130=>1,762334891=>1,760177509=>1,760176003=>1,760177982=>1,760179808=>1,760180078=>1,760180023=>1,760175486=>1,760174981=>1,760120920=>1,760097814=>1,760152979=>1,760154819=>1,760173936=>1,760173736=>1,760186222=>1,760188095=>1,760207222=>1,760206952=>1,760207280=>1,762326131=>1,762326599=>1,762326545=>1,760205232=>1,760203956=>1,760189667=>1,760189359=>1,760195036=>1,760199282=>1,760199723=>1,762879012=>1,762879013=>1,771308889=>1,771308886=>1,771308899=>1,771308901=>1,771308969=>1,771308912=>1,771308884=>1,771308875=>1,771308804=>1,771308797=>1,771308826=>1,771308854=>1,771308867=>1,771308856=>1,771308976=>1,771308980=>1,771309047=>1,771309040=>1,771339362=>1,771339640=>1,771792836=>1,771339752=>1,771309035=>1,771309022=>1,771308996=>1,771308988=>1,771308997=>1,771309001=>1,771309017=>1,771308777=>1,771308765=>1,763138478=>1,763118272=>1,763227706=>1,763322745=>1,763329198=>1,763322987=>1,763117912=>1,763117632=>1,762879020=>1,762879014=>1,762879022=>1,763042628=>1,763046230=>1,763046206=>1,763332959=>1,763350425=>1,771308695=>1,771308676=>1,771308698=>1,771308704=>1,771308737=>1,771308727=>1,771308662=>1,771308658=>1,771308564=>1,771249978=>1,771308618=>1,771308639=>1,771308655=>1,760093739=>1,760091914=>1,758881606=>1,758881594=>1,758881610=>1,758881624=>1,759065022=>1,759062888=>1,758881588=>1,758881583=>1,758881564=>1,758881563=>1,758881566=>1,758881570=>1,758881579=>1,758881574=>1,759065162=>1,759065608=>1,759096941=>1,759096741=>1,759097556=>1,759097605=>1,759098081=>1,759097634=>1,759096164=>1,759095868=>1,759069073=>1,759068044=>1,759069552=>1,759095702=>1,759095867=>1,759095800=>1,758881554=>1,758881541=>1,758632055=>1,758630698=>1,758633599=>1,758633689=>1,758636894=>1,758633886=>1,758626361=>1,758626262=>1,758614648=>1,758612263=>1,758615160=>1,758621985=>1,758622785=>1,758622184=>1,758644507=>1,758667861=>1,758788408=>1,758788321=>1,758789865=>1,758789903=>1,758825442=>1,758791295=>1,758788296=>1,758788170=>1,758677393=>1,758668550=>1,758784741=>1,758785595=>1,758787021=>1,759098129=>1,759098569=>1,759211661=>1,759211657=>1,759211662=>1,759211665=>1,759211673=>1,759211669=>1,759211653=>1,759211649=>1,759193879=>1,759184577=>1,759193898=>1,759193908=>1,759211526=>1,759211522=>1,759211677=>1,759211681=>1,759756791=>1,759751976=>1,759767931=>1,760086961=>1,760089069=>1,760087728=>1,759729980=>1,759237429=>1,759211693=>1,759211689=>1,759211705=>1,759211706=>1,759211745=>1,759171339=>1,759135034=>1,759103326=>1,759102723=>1,759104793=>1,759105645=>1,759107461=>1,759107297=>1,759102540=>1,759102354=>1,759098933=>1,759098858=>1,759099249=>1,759100450=>1,759102065=>1,759101112=>1,759116486=>1,759118729=>1,759126499=>1,759126356=>1,759128379=>1,759130751=>1,759134829=>1,759133398=>1,759125292=>1,759125209=>1,759119920=>1,759119475=>1,759120753=>1,759121498=>1,759124973=>1,719406478=>1,719388876=>1,699779810=>1,699779804=>1,699779825=>1,699779826=>1,699779831=>1,699779827=>1,699779797=>1,699779790=>1,699779763=>1,699779761=>1,699779771=>1,699779773=>1,699779789=>1,699779785=>1,699779832=>1,699779833=>1,700438942=>1,700401307=>1,700443478=>1,700570338=>1,700715045=>1,700715042=>1,700390472=>1,700222042=>1,700070798=>1,700061765=>1,700125126=>1,700199327=>1,700201065=>1,700199378=>1,699779757=>1,699779752=>1,696622579=>1,696622483=>1,696624080=>1,696636195=>1,697019206=>1,696712050=>1,696614425=>1,696605950=>1,696500858=>1,696422013=>1,696500937=>1,696501852=>1,696601484=>1,696502756=>1,697174043=>1,698372102=>1,698946807=>1,698945738=>1,699574281=>1,699579515=>1,699779738=>1,699591861=>1,698524173=>1,698524172=>1,698408956=>1,698399674=>1,698436850=>1,698436851=>1,698437285=>1,700731712=>1,700771677=>1,701444488=>1,701414606=>1,701461721=>1,701669450=>1,701671478=>1,701671438=>1,701360074=>1,701327906=>1,701307084=>1,701307060=>1,701314218=>1,701316631=>1,701324690=>1,701320684=>1,701685544=>1,701769083=>1,702018098=>1,701989057=>1,702021426=>1,702076201=>1,702176007=>1,702139626=>1,701988865=>1,701987422=>1,701828466=>1,701786517=>1,701828586=>1,701957982=>1,701976346=>1,701307022=>1,701306973=>1,701259202=>1,701259062=>1,701295766=>1,701301292=>1,701301305=>1,701301298=>1,701257501=>1,701257497=>1,701216562=>1,700858606=>1,701224687=>1,701235249=>1,701257482=>1,701256956=>1,701301312=>1,701301690=>1,701304993=>1,701304964=>1,701305021=>1,701305052=>1,701306923=>1,701305183=>1,701304963=>1,701304959=>1,701304685=>1,701303352=>1,701304772=>1,701304834=>1,701304896=>1,696421812=>1,696421739=>1,690814427=>1,690813944=>1,690814528=>1,690814630=>1,690959587=>1,690814968=>1,690813779=>1,690813734=>1,690812316=>1,690811559=>1,690812398=>1,690813003=>1,690813720=>1,690813223=>1,690960373=>1,691006315=>1,692277285=>1,692254490=>1,692277293=>1,692508954=>1,692618670=>1,692547606=>1,692135649=>1,692040855=>1,691566823=>1,691564856=>1,691609384=>1,691628016=>1,692035850=>1,691741062=>1,690811047=>1,690810182=>1,690803973=>1,690803372=>1,690804106=>1,690805139=>1,690805492=>1,690805463=>1,690803201=>1,690801637=>1,690798389=>1,690797383=>1,690798432=>1,690799284=>1,690801172=>1,690799995=>1,690806465=>1,690806689=>1,690809358=>1,690809329=>1,690809786=>1,690809807=>1,690809954=>1,690809919=>1,690809226=>1,690809044=>1,690807409=>1,690806722=>1,690807502=>1,690808124=>1,690808641=>1,692623284=>1,692635982=>1,693618389=>1,693618382=>1,693618390=>1,693618505=>1,693723148=>1,693618628=>1,693618379=>1,693618336=>1,693583922=>1,693583921=>1,693583923=>1,693584082=>1,693588362=>1,693585594=>1,693723244=>1,693723266=>1,696419943=>1,696419726=>1,696420063=>1,696421304=>1,696421456=>1,696421315=>1,696418253=>1,696417558=>1,693723338=>1,693723302=>1,693998098=>1,694028294=>1,696416476=>1,693512052=>1,693100717=>1,692915946=>1,692905411=>1,692932675=>1,692947122=>1,692949581=>1,692947530=>1,692867478=>1,692867187=>1,692712284=>1,692638547=>1,692718173=>1,692735368=>1,692857932=>1,692735690=>1,692959268=>1,692961026=>1,693058762=>1,693052746=>1,693067402=>1,693078498=>1,693093187=>1,693086753=>1,693045231=>1,693028218=>1,692961480=>1,692961459=>1,693000373=>1,693001166=>1,693022500=>1,702176307=>1,702176366=>1,704230158=>1,704229782=>1,704230369=>1,704230531=>1,704230879=>1,704230722=>1,704229674=>1,704229563=>1,703748627=>1,703584245=>1,703748875=>1,703749372=>1,704229414=>1,703793282=>1,704231169=>1,704231222=>1,704233383=>1,704233328=>1,704233387=>1,704279336=>1,704279968=>1,704279411=>1,704232597=>1,704232541=>1,704231682=>1,704231679=>1,704231813=>1,704231916=>1,704232284=>1,704232148=>1,703457072=>1,703451737=>1,702805746=>1,702805705=>1,702806144=>1,702806236=>1,702806417=>1,702806310=>1,702805629=>1,702805267=>1,702802780=>1,702802602=>1,702802917=>1,702803211=>1,702804732=>1,702804690=>1,702806590=>1,702806792=>1,702807743=>1,702807659=>1,702807956=>1,703035510=>1,703256039=>1,703235058=>1,702807290=>1,702807195=>1,702806876=>1,702806831=>1,702807033=>1,702807134=>1,702807152=>1,704280024=>1,704280175=>1,711988033=>1,711987985=>1,711988136=>1,711988142=>1,712577443=>1,711988169=>1,711987400=>1,711987242=>1,711363011=>1,711305775=>1,711366500=>1,711406383=>1,711458488=>1,711456091=>1,712581961=>1,712650982=>1,716746103=>1,716715300=>1,717759477=>1,717918769=>1,717968871=>1,717941582=>1,715125977=>1,715100605=>1,714123329=>1,713029012=>1,714934030=>1,714934059=>1,715070236=>1,711205958=>1,711197731=>1,708360016=>1,708319255=>1,708434724=>1,708554303=>1,708714682=>1,708650910=>1,708245937=>1,708034664=>1,704280432=>1,704280272=>1,704393368=>1,707823059=>1,708034588=>1,707986457=>1,708733678=>1,710319962=>1,710968152=>1,710967924=>1,710982507=>1,710984935=>1,710988244=>1,710986803=>1,710519573=>1,710444372=>1,710364539=>1,710363041=>1,710366537=>1,710372747=>1,710380067=>1,702802555=>1,702802407=>1,702772025=>1,702772018=>1,702772379=>1,702773329=>1,702773360=>1,702773339=>1,702772008=>1,702771680=>1,702770265=>1,702769877=>1,702770329=>1,702771107=>1,702771390=>1,702771203=>1,702773491=>1,702773829=>1,702775349=>1,702775225=>1,702775591=>1,702775870=>1,702776292=>1,702775950=>1,702775176=>1,702775129=>1,702774100=>1,702774040=>1,702774626=>1,702774698=>1,702775010=>1,702774701=>1,702769449=>1,702769436=>1,702474810=>1,702453774=>1,702494093=>1,702529604=>1,702767456=>1,702767119=>1,702369273=>1,702368777=>1,702291082=>1,702180046=>1,702291318=>1,702311360=>1,702341414=>1,702314604=>1,702767497=>1,702767548=>1,702768695=>1,702768684=>1,702768934=>1,702769013=>1,702769374=>1,702769354=>1,702768507=>1,702768459=>1,702767884=>1,702767571=>1,702767888=>1,702768186=>1,702768273=>1,702776500=>1,702776988=>1,702790687=>1,702790578=>1,702790999=>1,702791230=>1,702792244=>1,702791616=>1,702789974=>1,702789960=>1,702787946=>1,702787542=>1,702788447=>1,702788649=>1,702789687=>1,702788841=>1,702796506=>1,702798741=>1,702801180=>1,702800877=>1,702801195=>1,702801572=>1,702802146=>1,702801944=>1,702800777=>1,702800719=>1,702799966=>1,702799880=>1,702800378=>1,702800515=>1,702800685=>1,702787219=>1,702787098=>1,702779367=>1,702779222=>1,702779419=>1,702779846=>1,702780523=>1,702780138=>1,702778882=>1,702778646=>1,702777914=>1,702777360=>1,702778160=>1,702778195=>1,702778593=>1,702778464=>1,702780846=>1,702781280=>1,702786380=>1,702786201=>1,702786641=>1,702786793=>1,702787032=>1,702786872=>1,702784996=>1,702784986=>1,702782104=>1,702782057=>1,702784357=>1,702784409=>1,702784454=>1,690797122=>1,);?>
1
+ <?php return array(774162992=>774162999,774162972=>774162973,773033728=>773033983,773032192=>773032447,772808704=>772810751,771308996=>771308997,762879012=>762879013,762863964=>762863965,757786230=>757786231,738098678=>738098679,737374330=>737374331,737374322=>737374323,737374294=>737374295,737374286=>737374287,737229292=>737229293,736618514=>736618517,736480354=>736480355,699779832=>699779833,699779826=>699779827,699779784=>699779785,698524172=>698524173,698436850=>698436851,693583922=>693583923,758787021=>1,758667861=>1,758633886=>1,758633751=>1,758636894=>1,758644507=>1,758668550=>1,758785595=>1,758788296=>1,758833403=>1,758791295=>1,758881548=>1,758881554=>1,758881563=>1,757786225=>1,758789903=>1,757786229=>1,758788321=>1,758788408=>1,758789865=>1,758787326=>1,758633599=>1,757930863=>1,758587343=>1,758586182=>1,758590132=>1,758590436=>1,758590768=>1,758590684=>1,758585987=>1,758585548=>1,758580023=>1,758579757=>1,758582085=>1,758582295=>1,758584555=>1,758582920=>1,758591822=>1,758592099=>1,758626361=>1,758626262=>1,758630698=>1,758632055=>1,758271284=>1,758268777=>1,758622785=>1,758621985=>1,758594361=>1,758593356=>1,758595233=>1,758609280=>1,758614648=>1,758612263=>1,758633689=>1,758881579=>1,759102065=>1,759101140=>1,759102354=>1,759102540=>1,759103326=>1,759102723=>1,759101112=>1,759100450=>1,759098129=>1,759098081=>1,759098569=>1,759098858=>1,759099249=>1,759099037=>1,759104028=>1,759104793=>1,759121498=>1,759120753=>1,759124973=>1,759125209=>1,759126356=>1,759125292=>1,759119920=>1,759119475=>1,759107297=>1,759105645=>1,759107355=>1,759107461=>1,759118729=>1,759116486=>1,759097634=>1,759097605=>1,758881624=>1,758881610=>1,758881660=>1,758973342=>1,759065022=>1,759062888=>1,758881606=>1,758881594=>1,758881569=>1,758881566=>1,758881574=>1,757786176=>1,758881588=>1,758881583=>1,759065162=>1,759065608=>1,759096164=>1,759095868=>1,759096658=>1,759096741=>1,759097556=>1,759096941=>1,759095867=>1,759095800=>1,759068044=>1,759065702=>1,759069073=>1,759069552=>1,759095702=>1,758881564=>1,757168329=>1,757086833=>1,757086549=>1,757087137=>1,757087341=>1,757087863=>1,757087699=>1,757085804=>1,757085718=>1,757085383=>1,757085350=>1,757085389=>1,757085529=>1,757085597=>1,757088114=>1,757088190=>1,757091360=>1,757090997=>1,757091392=>1,757091581=>1,757094288=>1,757094024=>1,757090840=>1,757089731=>1,757088830=>1,757088534=>1,757089012=>1,757089369=>1,757089470=>1,757085262=>1,757084448=>1,757081276=>1,757081136=>1,757081303=>1,757081383=>1,757081437=>1,757081393=>1,757080688=>1,757080619=>1,757079046=>1,757078695=>1,757079176=>1,757080359=>1,757080477=>1,757081482=>1,757081646=>1,757083083=>1,757083011=>1,757083626=>1,757083986=>1,757084345=>1,757083995=>1,757082977=>1,757082857=>1,757082001=>1,757081864=>1,757082105=>1,757082477=>1,757082592=>1,757094907=>1,757094909=>1,757139502=>1,757137169=>1,757147474=>1,757149900=>1,757152873=>1,757150883=>1,757136910=>1,757135918=>1,757134360=>1,757134167=>1,757135069=>1,757135334=>1,757135397=>1,757152895=>1,757154116=>1,757632825=>1,757443314=>1,757786127=>1,757786132=>1,757786162=>1,757786159=>1,757420971=>1,757291556=>1,757157831=>1,757156636=>1,757166002=>1,759126499=>1,757239558=>1,757134111=>1,757134089=>1,757111987=>1,757111585=>1,757113205=>1,757113209=>1,757117845=>1,757117756=>1,757110601=>1,757110255=>1,757105463=>1,757095736=>1,757109065=>1,757109333=>1,757109445=>1,757118275=>1,757120339=>1,757132257=>1,757131606=>1,757132526=>1,757132831=>1,757132901=>1,757132843=>1,757131409=>1,757130619=>1,757120594=>1,757120497=>1,757121067=>1,757127537=>1,757127556=>1,757786166=>1,759193879=>1,772051749=>1,772051025=>1,772058676=>1,772061358=>1,772096819=>1,772079042=>1,772046910=>1,772045485=>1,772036811=>1,772035952=>1,772037158=>1,772040291=>1,772045474=>1,772042620=>1,772112849=>1,772142431=>1,772437638=>1,772391700=>1,772459879=>1,772467787=>1,772497058=>1,772490166=>1,772387611=>1,772370290=>1,772288794=>1,772242989=>1,772339978=>1,772339980=>1,772366045=>1,772029659=>1,772028337=>1,771308980=>1,771308976=>1,771308988=>1,771309001=>1,771309022=>1,771309017=>1,771308969=>1,771308912=>1,771308884=>1,771308875=>1,771308886=>1,771308889=>1,771308901=>1,771308899=>1,771309035=>1,771309040=>1,772020694=>1,772019721=>1,772023026=>1,772023947=>1,772026825=>1,772024387=>1,772014236=>1,772014169=>1,771339362=>1,771309047=>1,771339640=>1,771339752=>1,771792836=>1,772828194=>1,772828482=>1,773729868=>1,773729751=>1,773849698=>1,773977290=>1,773979990=>1,773977689=>1,773716206=>1,773702918=>1,773639955=>1,773639594=>1,773640043=>1,773640077=>1,773702917=>1,773672468=>1,773991426=>1,774093831=>1,774162788=>1,774162739=>1,774162943=>1,774162944=>1,774163015=>1,774162974=>1,774162688=>1,774162432=>1,774120556=>1,774120204=>1,774120575=>1,774120584=>1,774121350=>1,773639447=>1,773636627=>1,773080913=>1,773071730=>1,773115338=>1,773144970=>1,773152018=>1,773145601=>1,773071227=>1,773056306=>1,772859734=>1,772858378=>1,772860547=>1,772882390=>1,773021142=>1,772891662=>1,773155663=>1,773155814=>1,773604510=>1,773293598=>1,773615079=>1,773615240=>1,773615482=>1,773615348=>1,773281055=>1,773277777=>1,773250994=>1,773237890=>1,773251004=>1,773274258=>1,773277379=>1,771308867=>1,771308856=>1,760154819=>1,760152979=>1,760173736=>1,760173936=>1,760175486=>1,760174981=>1,760135898=>1,760126937=>1,760089069=>1,760087728=>1,760091914=>1,760093739=>1,760120920=>1,760097814=>1,760176003=>1,760177509=>1,760199282=>1,760195036=>1,760199723=>1,760203956=>1,760206952=>1,760205232=>1,760189667=>1,760189359=>1,760180023=>1,760179808=>1,760180078=>1,760186222=>1,760188095=>1,760086961=>1,759767931=>1,759209131=>1,759193908=>1,759211522=>1,759211526=>1,759211653=>1,759211649=>1,759193898=>1,757078578=>1,759134570=>1,759133398=>1,759134829=>1,759135034=>1,759184577=>1,759171339=>1,759211657=>1,759211661=>1,759211705=>1,759211693=>1,759211706=>1,759211745=>1,759732934=>1,759237429=>1,759211689=>1,759211681=>1,759211665=>1,759211662=>1,759211669=>1,759211673=>1,759211677=>1,760207222=>1,760207280=>1,763350425=>1,763332959=>1,771249978=>1,771308564=>1,771308639=>1,771308618=>1,763329198=>1,763323703=>1,763138478=>1,763118272=>1,763227706=>1,763273319=>1,763322987=>1,763322745=>1,771308655=>1,771308658=>1,771308777=>1,771308765=>1,771308797=>1,771308804=>1,771308854=>1,771308826=>1,771308737=>1,771308727=>1,771308676=>1,771308662=>1,771308695=>1,771308698=>1,771308704=>1,763117912=>1,763117632=>1,762555475=>1,762555405=>1,762555603=>1,762555643=>1,762555787=>1,762555652=>1,762468373=>1,762458892=>1,762347130=>1,762334891=>1,762400883=>1,762440886=>1,762448080=>1,762688727=>1,762688815=>1,762879014=>1,762870712=>1,762879020=>1,762879022=>1,763046230=>1,763042628=>1,762863966=>1,762863961=>1,762742697=>1,762688985=>1,762863936=>1,762863946=>1,762863949=>1,759128379=>1,757076703=>1,702018098=>1,701989057=>1,702021426=>1,702076201=>1,702176007=>1,702139626=>1,701988865=>1,701987422=>1,701786517=>1,701769083=>1,701828466=>1,701828586=>1,701976346=>1,701957982=>1,702176307=>1,702176366=>1,702453774=>1,702369273=>1,702474810=>1,702494093=>1,702767119=>1,702661312=>1,702368777=>1,702341414=>1,702291082=>1,702180046=>1,702291318=>1,702311360=>1,702314604=>1,701701491=>1,701685544=>1,701305052=>1,701305021=>1,701305183=>1,701306923=>1,701306973=>1,701306940=>1,701304993=>1,701304964=>1,701301312=>1,701301305=>1,701301374=>1,701304834=>1,701304959=>1,701304896=>1,701306996=>1,701307022=>1,701444488=>1,701414606=>1,701461721=>1,701669450=>1,701671478=>1,701671438=>1,701360074=>1,701324690=>1,701307080=>1,701307060=>1,701307084=>1,701314218=>1,701320684=>1,702767456=>1,702767466=>1,702775435=>1,702775349=>1,702775870=>1,702775888=>1,702776292=>1,702775950=>1,702775225=>1,702775176=>1,702774567=>1,702774293=>1,702774698=>1,702774701=>1,702775129=>1,702775010=>1,702776500=>1,702776988=>1,702779846=>1,702778882=>1,702780138=>1,702780762=>1,702781280=>1,702780846=>1,702778646=>1,702778593=>1,702777914=>1,702777360=>1,702778160=>1,702778195=>1,702778464=>1,702774100=>1,702774040=>1,702769013=>1,702768934=>1,702769354=>1,702769374=>1,702769449=>1,702769436=>1,702768695=>1,702768684=>1,702767548=>1,702767497=>1,702767571=>1,702767884=>1,702768459=>1,702768186=>1,702769877=>1,702770265=>1,702773360=>1,702773339=>1,702773491=>1,702773714=>1,702773829=>1,702773776=>1,702772612=>1,702772025=>1,702771203=>1,702770329=>1,702771680=>1,702772008=>1,702772018=>1,701301298=>1,701301292=>1,696419726=>1,696418253=>1,696419943=>1,696420063=>1,696421315=>1,696421304=>1,696417558=>1,696416476=>1,693723270=>1,693723266=>1,693723302=>1,693723338=>1,694028294=>1,693998098=>1,696421456=>1,696421739=>1,696605950=>1,696601484=>1,696622141=>1,696622357=>1,696622579=>1,696622483=>1,696601421=>1,696502756=>1,696422013=>1,696421812=>1,696500937=>1,696501852=>1,696501967=>1,693723247=>1,693723244=>1,693045162=>1,693028218=>1,693045231=>1,693052746=>1,693078498=>1,693058762=>1,693022500=>1,693001166=>1,692949581=>1,692947530=>1,692959268=>1,692961026=>1,693000373=>1,692961459=>1,693086753=>1,693093187=>1,693618382=>1,693618379=>1,693618389=>1,693618390=>1,693618628=>1,693618505=>1,693618336=>1,693588362=>1,693512052=>1,693100717=>1,693583921=>1,693584082=>1,693585594=>1,696624080=>1,696636195=>1,700295779=>1,700222042=>1,700390472=>1,700401307=>1,700443478=>1,700438942=>1,700201065=>1,700199378=>1,699779831=>1,699779825=>1,700061765=>1,700070798=>1,700199327=>1,700125126=>1,700570338=>1,700715042=>1,701257497=>1,701257482=>1,701257501=>1,701259062=>1,701295766=>1,701259202=>1,701256956=>1,701224687=>1,700731712=>1,700731499=>1,700771677=>1,700858606=>1,701216562=>1,699779810=>1,699779808=>1,698399674=>1,698372102=>1,698408956=>1,698437285=>1,698946807=>1,698945738=>1,697174043=>1,697125970=>1,696712050=>1,696641941=>1,696732484=>1,696732500=>1,697019206=>1,699574281=>1,699579515=>1,699779773=>1,699779763=>1,699779789=>1,699779790=>1,699779804=>1,699779797=>1,699779761=>1,699779757=>1,699779738=>1,699591861=>1,699779740=>1,699779752=>1,699779755=>1,702781490=>1,702782057=>1,720252427=>1,720224831=>1,720255786=>1,720292126=>1,720345566=>1,720345381=>1,720055687=>1,720054753=>1,719388876=>1,717968871=>1,719406478=>1,719524711=>1,719932556=>1,719897354=>1,720345583=>1,720366147=>1,736480494=>1,736480258=>1,736485795=>1,736485796=>1,736618513=>1,736588066=>1,736456964=>1,736273006=>1,720596998=>1,720366186=>1,720960305=>1,736215185=>1,736273003=>1,717941582=>1,717918769=>1,711987242=>1,711458488=>1,711987400=>1,711987985=>1,711988136=>1,711988033=>1,711456091=>1,711406383=>1,711197731=>1,710988244=>1,711205958=>1,711305775=>1,711366500=>1,711363011=>1,711988142=>1,711988169=>1,715100605=>1,715070236=>1,715125977=>1,716715300=>1,717759477=>1,716746103=>1,714934059=>1,714123329=>1,712577443=>1,712480687=>1,712581961=>1,712650982=>1,713029012=>1,737152058=>1,737174739=>1,738098210=>1,738095090=>1,738098672=>1,738098676=>1,738159168=>1,738100567=>1,737970844=>1,737962246=>1,737825474=>1,737775370=>1,737825502=>1,737870109=>1,737944846=>1,737938299=>1,756082690=>1,756232696=>1,757077204=>1,757077137=>1,757077336=>1,757077906=>1,757078389=>1,757078006=>1,692947122=>1,757076639=>1,757074141=>1,757074050=>1,757074981=>1,757075392=>1,757075864=>1,737774818=>1,737675496=>1,737374285=>1,737366785=>1,737374296=>1,737374321=>1,737382018=>1,737374332=>1,737306667=>1,737271555=>1,737229303=>1,737225820=>1,737229304=>1,737269721=>1,737271531=>1,737382122=>1,737397962=>1,737498618=>1,737498570=>1,737502209=>1,737524423=>1,737635346=>1,737528440=>1,737498471=>1,737498409=>1,737398338=>1,737398273=>1,737498365=>1,737498397=>1,737498399=>1,710986803=>1,710984935=>1,702805267=>1,702804732=>1,702805629=>1,702805705=>1,702806073=>1,702805746=>1,702804690=>1,702803211=>1,702801944=>1,702801572=>1,702802407=>1,702802555=>1,702802780=>1,702802602=>1,702806144=>1,702806236=>1,702807290=>1,702807195=>1,702807743=>1,702807956=>1,703235058=>1,703035510=>1,702807152=>1,702807134=>1,702806590=>1,702806310=>1,702806792=>1,702806876=>1,702807045=>1,702801195=>1,702800877=>1,702786641=>1,702786624=>1,702786793=>1,702786802=>1,702787542=>1,702787098=>1,702786529=>1,702786380=>1,702784366=>1,702784357=>1,702784409=>1,702784460=>1,702786201=>1,702784996=>1,702788649=>1,702789687=>1,702800515=>1,702800378=>1,702800685=>1,702800719=>1,702800803=>1,702800777=>1,702799880=>1,702798975=>1,702791230=>1,702789960=>1,702791616=>1,702796506=>1,702798741=>1,703253046=>1,703451737=>1,708319255=>1,708245937=>1,708360016=>1,708434724=>1,708554303=>1,708480227=>1,708034664=>1,708034588=>1,704280175=>1,704280024=>1,704280272=>1,704831083=>1,707986457=>1,707823059=>1,708650910=>1,708714682=>1,710444372=>1,710380067=>1,710519573=>1,710967924=>1,710982507=>1,710968152=>1,710372747=>1,710366537=>1,710312685=>1,708733678=>1,710319962=>1,710363041=>1,710364539=>1,704279968=>1,704279411=>1,704229674=>1,704229563=>1,704229782=>1,704229891=>1,704230369=>1,704230158=>1,704229414=>1,703793282=>1,703584245=>1,703457072=>1,703748627=>1,703748875=>1,703749372=>1,704230879=>1,704231169=>1,704232597=>1,704232541=>1,704233383=>1,704233387=>1,704278924=>1,704270919=>1,704232284=>1,704232148=>1,704231529=>1,704231222=>1,704231679=>1,704231813=>1,704231916=>1,757078451=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-30.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2732546480=>2732546487,2833990024=>1,2833451995=>1,2833990281=>1,2833990430=>1,2833990991=>1,2833451827=>1,2833993082=>1,2833392403=>1,2829550791=>1,2829550694=>1,2829550853=>1,2830463295=>1,2833995652=>1,2830856153=>1,2833451340=>1,2833996564=>1,2835370712=>1,2835172885=>1,2835378157=>1,2835380149=>1,2835410961=>1,2835381246=>1,2835169650=>1,2835169630=>1,2833996983=>1,2829539209=>1,2834010644=>1,2834012619=>1,2834013174=>1,2834012768=>1,2833996453=>1,2828466959=>1,2818181590=>1,2818181532=>1,2818181955=>1,2818191130=>1,2818191170=>1,2818191152=>1,2818181355=>1,2818181165=>1,2818135701=>1,2818135501=>1,2818159720=>1,2818167578=>1,2818181150=>1,2818171750=>1,2818191180=>1,2819134062=>1,2824481553=>1,2822707374=>1,2824527937=>1,2825291311=>1,2826527929=>1,2825372666=>1,2822706195=>1,2822691288=>1,2822578539=>1,2819134063=>1,2822579772=>1,2822684307=>1,2822684577=>1,2835411445=>1,2835456809=>1,2870591876=>1,2870591875=>1,2870591979=>1,2871231808=>1,2871331509=>1,2871331321=>1,2870591822=>1,2870591821=>1,2869829447=>1,2869794072=>1,2869849162=>1,2870591753=>1,2870591769=>1,2870591764=>1,2871355325=>1,2871401233=>1,2875218977=>1,2875202215=>1,2875218987=>1,2875219131=>1,2875219581=>1,2875219522=>1,2874705176=>1,2871485907=>1,2871444286=>1,2871440654=>1,2871448662=>1,2871466160=>1,2871467903=>1,2869733334=>1,2869728822=>1,2852080923=>1,2851045414=>1,2852112139=>1,2852112351=>1,2852118071=>1,2852118068=>1,2850758580=>1,2848395272=>1,2835460750=>1,2835456920=>1,2837857066=>1,2838886246=>1,2839085263=>1,2839085255=>1,2852118081=>1,2856853658=>1,2865924417=>1,2865924102=>1,2866233306=>1,2869331885=>1,2869448755=>1,2869445330=>1,2864272656=>1,2864272654=>1,2856859810=>1,2856855513=>1,2857083479=>1,2857083555=>1,2857083764=>1,2812322243=>1,2811163363=>1,2785008809=>1,2785008693=>1,2785009830=>1,2789102286=>1,2789106158=>1,2789105944=>1,2785008645=>1,2785007735=>1,2785000807=>1,2785000805=>1,2785000855=>1,2785000888=>1,2785007618=>1,2785000953=>1,2789106159=>1,2789106160=>1,2790397384=>1,2789658370=>1,2790524727=>1,2791761609=>1,2792309661=>1,2792309402=>1,2789629546=>1,2789609230=>1,2789106163=>1,2789106161=>1,2789106164=>1,2789106165=>1,2789107701=>1,2789107251=>1,2785000800=>1,2785000754=>1,2784959884=>1,2784959821=>1,2784971322=>1,2784971619=>1,2784971757=>1,2784971626=>1,2783326579=>1,2780948450=>1,2777368321=>1,2777317357=>1,2777379400=>1,2777388457=>1,2779179908=>1,2778363966=>1,2784977486=>1,2784978950=>1,2784996728=>1,2784980966=>1,2784999440=>1,2784999562=>1,2785000753=>1,2784999606=>1,2784980742=>1,2784980636=>1,2784979897=>1,2784979654=>1,2784980188=>1,2784980245=>1,2784980556=>1,2792313402=>1,2792323236=>1,2809289778=>1,2809285827=>1,2809289789=>1,2809290788=>1,2809295152=>1,2809292563=>1,2809284541=>1,2809283332=>1,2809273714=>1,2809269519=>1,2809273717=>1,2809275164=>1,2809283133=>1,2809277736=>1,2809295238=>1,2809303727=>1,2809325160=>1,2809323526=>1,2809326988=>1,2809328998=>1,2809330593=>1,2809329252=>1,2809321431=>1,2809314573=>1,2809305365=>1,2809305188=>1,2809306105=>1,2809306272=>1,2809310107=>1,2809268564=>1,2809268134=>1,2807573122=>1,2807572930=>1,2807574174=>1,2807574221=>1,2807590189=>1,2807582945=>1,2807572706=>1,2807572610=>1,2795269889=>1,2794322396=>1,2795782204=>1,2801742295=>1,2807571649=>1,2807571308=>1,2807590220=>1,2807590242=>1,2807591355=>1,2807590377=>1,2807591676=>1,2807593825=>1,2809267110=>1,2809266927=>1,2807590362=>1,2807590343=>1,2807590317=>1,2807590248=>1,2807590327=>1,2807590338=>1,2807590341=>1,2875220702=>1,2875220840=>1,2875227307=>1,2875227193=>1,2875227316=>1,2875227334=>1,2875227377=>1,2875227338=>1,2875227187=>1,2875227163=>1,2875227047=>1,2875227043=>1,2875227109=>1,2875227145=>1,2875227158=>1,2875227146=>1,2875227387=>1,2875227398=>1,2875227506=>1,2875227486=>1,2875227508=>1,2875227518=>1,2875227551=>1,2875227523=>1,2875227483=>1,2875227482=>1,2875227408=>1,2875227399=>1,2875227417=>1,2875227419=>1,2875227432=>1,2875227422=>1,2875227034=>1,2875227024=>1,2875226526=>1,2875226516=>1,2875226533=>1,2875226539=>1,2875226594=>1,2875226569=>1,2875226508=>1,2875226505=>1,2875226436=>1,2875226408=>1,2875226446=>1,2875226447=>1,2875226489=>1,2875226477=>1,2875226605=>1,2875226678=>1,2875226950=>1,2875226942=>1,2875226955=>1,2875227010=>1,2875227013=>1,2875227012=>1,2875226861=>1,2875226850=>1,2875226754=>1,2875226746=>1,2875226786=>1,2875226816=>1,2875226848=>1,2875227596=>1,2875227598=>1,2875244993=>1,2875244985=>1,2875245003=>1,2875245049=>1,2875245101=>1,2875245096=>1,2875244963=>1,2875244868=>1,2875244622=>1,2875244621=>1,2875244638=>1,2875244659=>1,2875244836=>1,2875244689=>1,2875245115=>1,2875245128=>1,2875245359=>1,2875245348=>1,2875245367=>1,2875245417=>1,2875245488=>1,2875245435=>1,2875245331=>1,2875245291=>1,2875245156=>1,2875245137=>1,2875245200=>1,2875245284=>1,2875245290=>1,2875244620=>1,2875232760=>1,2875227760=>1,2875227758=>1,2875227776=>1,2875227798=>1,2875227822=>1,2875227804=>1,2875227733=>1,2875227715=>1,2875227628=>1,2875227617=>1,2875227635=>1,2875227661=>1,2875227710=>1,2875227666=>1,2875227883=>1,2875227902=>1,2875231085=>1,2875231078=>1,2875231705=>1,2875231879=>1,2875232466=>1,2875231921=>1,2875231047=>1,2875228070=>1,2875227952=>1,2875227908=>1,2875227989=>1,2875228001=>1,2875228051=>1,2875226387=>1,2875226386=>1,2875224342=>1,2875224313=>1,2875224377=>1,2875224456=>1,2875224503=>1,2875224496=>1,2875224161=>1,2875224071=>1,2875223973=>1,2875223907=>1,2875223980=>1,2875223981=>1,2875224041=>1,2875224024=>1,2875224538=>1,2875224607=>1,2875225183=>1,2875225171=>1,2875225192=>1,2875225238=>1,2875225273=>1,2875225259=>1,2875225131=>1,2875225122=>1,2875224912=>1,2875224854=>1,2875224931=>1,2875224974=>1,2875225093=>1,2875224990=>1,2875223903=>1,2875223899=>1,2875223623=>1,2875223587=>1,2875223624=>1,2875223628=>1,2875223653=>1,2875223645=>1,2875222637=>1,2875222411=>1,2875221164=>1,2875221094=>1,2875221366=>1,2875221456=>1,2875222290=>1,2875222262=>1,2875223662=>1,2875223706=>1,2875223858=>1,2875223856=>1,2875223866=>1,2875223871=>1,2875223887=>1,2875223885=>1,2875223815=>1,2875223805=>1,2875223715=>1,2875223712=>1,2875223740=>1,2875223772=>1,2875223779=>1,2875225287=>1,2875225297=>1,2875226024=>1,2875225997=>1,2875226046=>1,2875226088=>1,2875226106=>1,2875226091=>1,2875225992=>1,2875225988=>1,2875225904=>1,2875225884=>1,2875225930=>1,2875225940=>1,2875225987=>1,2875225972=>1,2875226107=>1,2875226130=>1,2875226319=>1,2875226318=>1,2875226321=>1,2875226332=>1,2875226364=>1,2875226344=>1,2875226297=>1,2875226239=>1,2875226142=>1,2875226134=>1,2875226154=>1,2875226190=>1,2875226232=>1,2875225862=>1,2875225837=>1,2875225459=>1,2875225443=>1,2875225460=>1,2875225462=>1,2875225478=>1,2875225463=>1,2875225430=>1,2875225414=>1,2875225320=>1,2875225312=>1,2875225328=>1,2875225348=>1,2875225398=>1,2875225368=>1,2875225491=>1,2875225518=>1,2875225710=>1,2875225700=>1,2875225724=>1,2875225730=>1,2875225785=>1,2875225759=>1,2875225618=>1,2875225612=>1,2875225558=>1,2875225540=>1,2875225561=>1,2875225564=>1,2875225583=>1,2777305138=>1,2777301536=>1,2684331907=>1,2684159291=>1,2684581346=>1,2684876765=>1,2685404617=>1,2684877966=>1,2682446004=>1,2682282382=>1,2682262933=>1,2682260876=>1,2682263423=>1,2682277439=>1,2682279529=>1,2682278409=>1,2685422158=>1,2685453628=>1,2704636056=>1,2701561277=>1,2708755425=>1,2710305642=>1,2714377973=>1,2714375156=>1,2696041835=>1,2696041203=>1,2685457385=>1,2685455307=>1,2685458419=>1,2690712686=>1,2696041035=>1,2690723614=>1,2682258165=>1,2680945936=>1,2680899341=>1,2680893102=>1,2680903000=>1,2680904930=>1,2680906108=>1,2680906051=>1,2680892211=>1,2680891898=>1,2680890105=>1,2680890051=>1,2680890501=>1,2680891130=>1,2680891781=>1,2680891262=>1,2680907658=>1,2680908926=>1,2680938521=>1,2680937610=>1,2680942977=>1,2680943969=>1,2680945644=>1,2680944504=>1,2680937053=>1,2680936290=>1,2680930515=>1,2680913255=>1,2680930735=>1,2680932918=>1,2680935070=>1,2714403641=>1,2718809700=>1,2732262493=>1,2732257149=>1,2732262815=>1,2732299129=>1,2732340588=>1,2732305830=>1,2732255261=>1,2732246213=>1,2732245097=>1,2732245048=>1,2732245421=>1,2732245555=>1,2732246081=>1,2732245636=>1,2732341199=>1,2732369337=>1,2732461283=>1,2732460250=>1,2732501150=>1,2732501829=>1,2732546464=>1,2732546291=>1,2732460034=>1,2732444390=>1,2732382829=>1,2732382514=>1,2732390118=>1,2732391774=>1,2732395760=>1,2732226060=>1,2732194504=>1,2731471153=>1,2731290337=>1,2731471157=>1,2731541655=>1,2731774280=>1,2731637986=>1,2730616342=>1,2730553217=>1,2719044378=>1,2719032106=>1,2720466249=>1,2722652685=>1,2727385313=>1,2722668683=>1,2731774311=>1,2731783606=>1,2731877886=>1,2731868403=>1,2731926219=>1,2731927435=>1,2732119309=>1,2732118814=>1,2731853427=>1,2731853397=>1,2731793321=>1,2731792624=>1,2731794665=>1,2731808089=>1,2731838004=>1,2680889968=>1,2680889666=>1,2655348494=>1,2655348432=>1,2655348605=>1,2655356022=>1,2655365765=>1,2655365520=>1,2655348227=>1,2655330714=>1,2654644895=>1,2654644893=>1,2654644922=>1,2654645582=>1,2655325155=>1,2655325152=>1,2655366369=>1,2655371484=>1,2655374807=>1,2655374796=>1,2655374839=>1,2655374962=>1,2655375241=>1,2655375008=>1,2655374517=>1,2655374490=>1,2655372341=>1,2655372209=>1,2655372717=>1,2655373404=>1,2655374372=>1,2655374292=>1,2654644879=>1,2654644803=>1,2631148321=>1,2631142866=>1,2631166662=>1,2631182913=>1,2634520702=>1,2631191813=>1,2631142693=>1,2630280172=>1,2617175037=>1,2617175022=>1,2619547241=>1,2620979939=>1,2630270025=>1,2621016418=>1,2634532184=>1,2635718907=>1,2642591806=>1,2642080950=>1,2645891236=>1,2654644738=>1,2654644802=>1,2654644763=>1,2642058338=>1,2642048493=>1,2637472226=>1,2637435679=>1,2637472231=>1,2642047543=>1,2642047956=>1,2655375320=>1,2655375491=>1,2679431730=>1,2677324487=>1,2680225373=>1,2680225450=>1,2680881494=>1,2680225495=>1,2677324482=>1,2677294777=>1,2667575616=>1,2667566889=>1,2668105099=>1,2668151598=>1,2675610096=>1,2668154436=>1,2680882674=>1,2680883980=>1,2680886530=>1,2680886451=>1,2680886835=>1,2680887230=>1,2680889493=>1,2680888069=>1,2680885859=>1,2680885607=>1,2680885128=>1,2680885099=>1,2680885271=>1,2680885481=>1,2680885499=>1,2667566258=>1,2667565841=>1,2655378379=>1,2655378347=>1,2655382785=>1,2655383762=>1,2656409486=>1,2655731196=>1,2655377998=>1,2655377827=>1,2655376486=>1,2655375945=>1,2655376650=>1,2655377426=>1,2655377698=>1,2655377478=>1,2656432466=>1,2656432476=>1,2665376009=>1,2663878383=>1,2665401698=>1,2665401834=>1,2667513586=>1,2667512563=>1,2663487605=>1,2662698592=>1,2662695053=>1,2659320050=>1,2662696444=>1,2662697590=>1,2662698415=>1,2732546465=>1,2732546468=>1,2745993317=>1,2745993132=>1,2745993613=>1,2745993646=>1,2745993811=>1,2745993750=>1,2745993129=>1,2745993048=>1,2745992176=>1,2745992140=>1,2745992270=>1,2745992370=>1,2745992743=>1,2745992484=>1,2745993858=>1,2745994088=>1,2745995834=>1,2745995781=>1,2745996008=>1,2745996666=>1,2745997689=>1,2745997543=>1,2745995722=>1,2745995660=>1,2745994300=>1,2745994129=>1,2745994336=>1,2745994441=>1,2745995599=>1,2745995375=>1,2745992134=>1,2745992128=>1,2745965844=>1,2745965374=>1,2745967475=>1,2745967571=>1,2745967607=>1,2745967605=>1,2745965351=>1,2745964918=>1,2745960222=>1,2742943221=>1,2745960387=>1,2745961690=>1,2745963823=>1,2745962205=>1,2745967609=>1,2745967649=>1,2745991886=>1,2745991494=>1,2745992024=>1,2745992100=>1,2745992122=>1,2745992119=>1,2745991491=>1,2745991474=>1,2745968269=>1,2745967772=>1,2745968301=>1,2745968303=>1,2745991319=>1,2745997745=>1,2745997929=>1,2760137419=>1,2760134795=>1,2760137437=>1,2760141676=>1,2760142223=>1,2760141969=>1,2760134793=>1,2760134791=>1,2760125110=>1,2760124700=>1,2760127323=>1,2760128893=>1,2760134063=>1,2760128898=>1,2760146093=>1,2760158314=>1,2773783878=>1,2768407347=>1,2776149954=>1,2777285256=>1,2617174999=>1,2777294609=>1,2763109209=>1,2763108798=>1,2760171257=>1,2760163347=>1,2760172192=>1,2760173251=>1,2760530235=>1,2760121501=>1,2760121497=>1,2746011939=>1,2745999302=>1,2746011950=>1,2746012218=>1,2746012678=>1,2746012474=>1,2745999056=>1,2745998805=>1,2745998168=>1,2745998071=>1,2745998473=>1,2745998608=>1,2745998752=>1,2745998711=>1,2746013259=>1,2746013260=>1,2756053590=>1,2755285265=>1,2758028114=>1,2760116670=>1,2760119505=>1,2760117198=>1,2754155880=>1,2754146626=>1,2746306309=>1,2746306308=>1,2746326928=>1,2746493901=>1,2754022540=>1,2742928065=>1,2742928029=>1,2733872796=>1,2733872509=>1,2733884539=>1,2733887020=>1,2733888398=>1,2733887451=>1,2733870990=>1,2733870887=>1,2733866229=>1,2733864756=>1,2733866778=>1,2733867698=>1,2733869947=>1,2733868732=>1,2733896945=>1,2733896995=>1,2733971263=>1,2733969782=>1,2734099476=>1,2734114823=>1,2734115016=>1,2734114843=>1,2733935000=>1,2733908649=>1,2733906390=>1,2733905996=>1,2733906425=>1,2733906441=>1,2733906630=>1,2733906508=>1,2733861611=>1,2733860782=>1,2733800846=>1,2733105337=>1,2733822553=>1,2733822585=>1,2733836449=>1,2733834627=>1,2732546691=>1,2732546493=>1,2732546479=>1,2732546478=>1,2732546489=>1,2732546490=>1,2732546492=>1,2732546491=>1,2733837376=>1,2733844261=>1,2733855693=>1,2733854904=>1,2733858688=>1,2733859656=>1,2733860065=>1,2733859728=>1,2733853644=>1,2733852870=>1,2733848523=>1,2733847885=>1,2733848533=>1,2733849696=>1,2733850908=>1,2734115017=>1,2734115018=>1,2736132393=>1,2736132392=>1,2736326184=>1,2736352065=>1,2737608395=>1,2737600438=>1,2734534478=>1,2734500560=>1,2734461332=>1,2734410182=>1,2734461620=>1,2734476350=>1,2734486096=>1,2734485919=>1,2737608524=>1,2737608983=>1,2738207450=>1,2738207282=>1,2738207586=>1,2738212635=>1,2742927835=>1,2738243075=>1,2737810958=>1,2737810957=>1,2737798968=>1,2737775670=>1,2737803550=>1,2737804066=>1,2737810954=>1,2734409896=>1,2734409748=>1,2734120228=>1,2734115702=>1,2734129885=>1,2734164612=>1,2734164912=>1,2734164742=>1,2734115278=>1,2734115276=>1,2734115032=>1,2734115029=>1,2734115033=>1,2734115146=>1,2734115273=>1,2734115267=>1,2734198369=>1,2734198375=>1,2734251132=>1,2734204174=>1,2734321698=>1,2734348188=>1,2734400531=>1,2734380769=>1,2734203975=>1,2734203953=>1,2734198408=>1,2734198390=>1,2734198434=>1,2734202931=>1,2734203388=>1,2777301751=>1,);?>
1
+ <?php return array(2875297176=>2875297177,2875297030=>2875297031,2875291864=>2875291865,2875279120=>2875279121,2875275352=>2875275353,2875275204=>2875275205,2875275016=>2875275017,2875274774=>2875274775,2875274610=>2875274611,2875274558=>2875274559,2875274408=>2875274409,2875269800=>2875269801,2875269768=>2875269769,2875269652=>2875269653,2875269516=>2875269517,2875269016=>2875269017,2875268612=>2875268613,2875259874=>2875259875,2875256570=>2875256571,2875256336=>2875256337,2875255964=>2875255965,2875253874=>2875253875,2875244620=>2875244621,2875227482=>2875227483,2875227398=>2875227399,2875227012=>2875227013,2875226446=>2875226447,2875226386=>2875226387,2875226318=>2875226319,2875226106=>2875226107,2875225986=>2875225987,2875225612=>2875225613,2875225462=>2875225463,2875225130=>2875225131,2875224376=>2875224377,2875223980=>2875223981,2875274986=>1,2875275632=>1,2875275577=>1,2875275543=>1,2875275605=>1,2875275506=>1,2875275490=>1,2875275494=>1,2875274990=>1,2875275537=>1,2875275634=>1,2875274913=>1,2875275664=>1,2875275695=>1,2875275722=>1,2875275657=>1,2875275644=>1,2875274962=>1,2875274954=>1,2875274940=>1,2875274925=>1,2875275488=>1,2875275007=>1,2875275123=>1,2875275119=>1,2875275097=>1,2875275089=>1,2875275731=>1,2875275298=>1,2875275193=>1,2875275140=>1,2875275244=>1,2875275249=>1,2875275301=>1,2875275306=>1,2875275407=>1,2875275439=>1,2875275457=>1,2875275468=>1,2875275039=>1,2875275330=>1,2875275319=>1,2875275322=>1,2875275071=>1,2875275197=>1,2875275767=>1,2875285519=>1,2875285484=>1,2875285542=>1,2875285552=>1,2875285737=>1,2875285674=>1,2875285450=>1,2875285428=>1,2875285124=>1,2875285085=>1,2875285163=>1,2875285216=>1,2875285385=>1,2875285355=>1,2875287437=>1,2875288629=>1,2875288984=>1,2875288936=>1,2875289058=>1,2875289124=>1,2875289153=>1,2875289150=>1,2875288921=>1,2875288911=>1,2875288804=>1,2875288782=>1,2875288824=>1,2875288861=>1,2875288884=>1,2875288878=>1,2875284916=>1,2875284831=>1,2875275836=>1,2875275828=>1,2875275841=>1,2875275912=>1,2875275971=>1,2875275962=>1,2875275809=>1,2875275798=>1,2875275752=>1,2875275749=>1,2875275762=>1,2875275765=>1,2875275785=>1,2875274881=>1,2875275973=>1,2875275999=>1,2875284633=>1,2875283545=>1,2875284646=>1,2875284678=>1,2875284796=>1,2875284712=>1,2875279329=>1,2875279301=>1,2875279166=>1,2875279153=>1,2875279242=>1,2875279247=>1,2875279285=>1,2875279262=>1,2875275739=>1,2875274695=>1,2875273572=>1,2875273565=>1,2875273575=>1,2875273577=>1,2875273608=>1,2875273582=>1,2875273547=>1,2875273541=>1,2875273478=>1,2875273476=>1,2875273515=>1,2875273525=>1,2875273534=>1,2875273619=>1,2875273631=>1,2875273822=>1,2875273818=>1,2875273834=>1,2875273847=>1,2875273870=>1,2875273859=>1,2875273808=>1,2875273778=>1,2875273692=>1,2875273649=>1,2875273702=>1,2875273707=>1,2875273721=>1,2875269885=>1,2875269864=>1,2875269744=>1,2875269726=>1,2875269761=>1,2875269765=>1,2875269777=>1,2875269770=>1,2875269702=>1,2875269696=>1,2875269624=>1,2875269616=>1,2875269642=>1,2875269675=>1,2875269682=>1,2875269779=>1,2875269789=>1,2875269844=>1,2875269841=>1,2875269848=>1,2875269852=>1,2875269862=>1,2875269857=>1,2875269838=>1,2875269834=>1,2875269795=>1,2875269790=>1,2875269796=>1,2875269803=>1,2875269820=>1,2875273872=>1,2875273879=>1,2875274511=>1,2875274500=>1,2875274523=>1,2875274534=>1,2875274579=>1,2875274575=>1,2875274475=>1,2875274428=>1,2875274364=>1,2875274353=>1,2875274372=>1,2875274381=>1,2875274422=>1,2875274597=>1,2875274613=>1,2875274788=>1,2875274781=>1,2875274794=>1,2875274802=>1,2875274859=>1,2875274832=>1,2875274763=>1,2875274742=>1,2875274642=>1,2875274628=>1,2875274678=>1,2875289168=>1,2875274733=>1,2875274319=>1,2875274312=>1,2875273976=>1,2875273972=>1,2875273996=>1,2875274067=>1,2875274081=>1,2875274078=>1,2875273964=>1,2875273960=>1,2875273905=>1,2875273900=>1,2875273909=>1,2875273931=>1,2875273940=>1,2875274090=>1,2875274107=>1,2875274219=>1,2875274203=>1,2875274254=>1,2875274259=>1,2875274279=>1,2875274165=>1,2875274153=>1,2875274135=>1,2875274115=>1,2875274145=>1,2875274147=>1,2875274151=>1,2875274869=>1,2875289467=>1,2875296848=>1,2875296830=>1,2875296856=>1,2875296876=>1,2875296892=>1,2875296878=>1,2875296813=>1,2875296808=>1,2875296758=>1,2875296699=>1,2875296782=>1,2875296784=>1,2875296803=>1,2875296794=>1,2875296940=>1,2875296958=>1,2875297186=>1,2875297166=>1,2875297197=>1,2875297219=>1,2875297244=>1,2875297232=>1,2875297121=>1,2875297073=>1,2875296984=>1,2875296979=>1,2875296987=>1,2875296992=>1,2875297016=>1,2875296686=>1,2875296681=>1,2875296367=>1,2875296357=>1,2875296383=>1,2875296387=>1,2875296417=>1,2875296402=>1,2875296347=>1,2875296319=>1,2875296216=>1,2875296199=>1,2875296228=>1,2875296262=>1,2875296280=>1,2875296273=>1,2875296429=>1,2875296443=>1,2875296607=>1,2875296553=>1,2875296634=>1,2875296643=>1,2875296676=>1,2875296668=>1,2875296548=>1,2875296537=>1,2875296460=>1,2875296445=>1,2875296463=>1,2875296514=>1,2875296516=>1,2875297269=>1,2875297290=>1,2875301191=>1,2875300932=>1,2875301195=>1,2875301571=>1,2875301618=>1,2875301600=>1,2875298494=>1,2875298471=>1,2875298190=>1,2875298023=>1,2875298208=>1,2875298270=>1,2875298458=>1,2875298331=>1,2875301683=>1,2875301717=>1,2875306518=>1,2875306510=>1,2875306521=>1,2875306607=>1,2875306665=>1,2875306657=>1,2875306503=>1,2875304294=>1,2875301785=>1,2875301762=>1,2875301815=>1,2875301817=>1,2875301834=>1,2875297996=>1,2875297872=>1,2875297431=>1,2875297411=>1,2875297445=>1,2875297447=>1,2875297468=>1,2875297451=>1,2875297382=>1,2875297381=>1,2875297300=>1,2875297293=>1,2875297319=>1,2875297328=>1,2875297362=>1,2875297346=>1,2875297471=>1,2875297500=>1,2875297698=>1,2875297688=>1,2875297714=>1,2875297765=>1,2875297839=>1,2875297806=>1,2875297660=>1,2875297623=>1,2875297513=>1,2875297502=>1,2875297558=>1,2875297564=>1,2875297615=>1,2875296175=>1,2875296128=>1,2875291973=>1,2875291941=>1,2875292006=>1,2875292042=>1,2875292178=>1,2875292101=>1,2875291921=>1,2875291915=>1,2875291782=>1,2875291756=>1,2875291788=>1,2875291795=>1,2875291908=>1,2875291849=>1,2875292206=>1,2875292222=>1,2875292508=>1,2875292504=>1,2875292564=>1,2875292619=>1,2875292679=>1,2875292656=>1,2875292485=>1,2875292472=>1,2875292259=>1,2875292249=>1,2875292264=>1,2875292343=>1,2875292439=>1,2875291719=>1,2875291713=>1,2875289473=>1,2875289470=>1,2875289637=>1,2875289651=>1,2875289669=>1,2875289664=>1,2875269615=>1,2875289452=>1,2875289297=>1,2875289281=>1,2875289305=>1,2875289339=>1,2875289416=>1,2875289406=>1,2875289724=>1,2875289783=>1,2875291400=>1,2875291255=>1,2875291477=>1,2875291511=>1,2875291567=>1,2875291559=>1,2875290105=>1,2875290070=>1,2875289842=>1,2875289790=>1,2875289914=>1,2875289962=>1,2875289998=>1,2875292715=>1,2875292754=>1,2875294706=>1,2875294695=>1,2875294709=>1,2875295758=>1,2875295787=>1,2875295775=>1,2875294669=>1,2875294652=>1,2875294637=>1,2875294617=>1,2875294642=>1,2875294645=>1,2875294651=>1,2875294646=>1,2875295792=>1,2875295796=>1,2875295948=>1,2875295907=>1,2875295981=>1,2875296043=>1,2875296101=>1,2875296045=>1,2875295898=>1,2875295871=>1,2875295802=>1,2875295801=>1,2875295839=>1,2875295841=>1,2875295869=>1,2875294598=>1,2875294582=>1,2875293162=>1,2875292961=>1,2875293276=>1,2875293334=>1,2875293348=>1,2875293340=>1,2875292936=>1,2875292909=>1,2875292822=>1,2875292781=>1,2875292829=>1,2875292830=>1,2875292888=>1,2875293381=>1,2875293397=>1,2875294523=>1,2875293638=>1,2875294531=>1,2875294545=>1,2875294576=>1,2875294564=>1,2875293637=>1,2875293634=>1,2875293459=>1,2875293442=>1,2875293517=>1,2875293542=>1,2875293628=>1,2875289187=>1,2875269488=>1,2875227710=>1,2875227666=>1,2875227715=>1,2875227733=>1,2875227760=>1,2875227758=>1,2875227661=>1,2875227635=>1,2875227558=>1,2875227551=>1,2875227596=>1,2875227598=>1,2875227628=>1,2875227617=>1,2875227776=>1,2875227798=>1,2875227989=>1,2875227952=>1,2875227993=>1,2875228001=>1,2875228019=>1,2875228015=>1,2875227908=>1,2875227902=>1,2875227822=>1,2875227804=>1,2875227826=>1,2875227883=>1,2875227885=>1,2875227523=>1,2875227518=>1,2875227043=>1,2875227024=>1,2875227109=>1,2875227145=>1,2875227158=>1,2875227146=>1,2875227010=>1,2875226968=>1,2875226861=>1,2875226848=>1,2875226935=>1,2875226942=>1,2875226955=>1,2875226950=>1,2875227163=>1,2875227193=>1,2875227419=>1,2875227417=>1,2875227422=>1,2875227432=>1,2875227508=>1,2875227486=>1,2875227408=>1,2875227387=>1,2875227316=>1,2875227307=>1,2875227334=>1,2875227338=>1,2875227377=>1,2875228035=>1,2875228051=>1,2875245491=>1,2875245488=>1,2875245539=>1,2875245582=>1,2875245626=>1,2875245600=>1,2875245435=>1,2875245417=>1,2875245291=>1,2875245284=>1,2875245292=>1,2875245348=>1,2875245367=>1,2875245359=>1,2875245638=>1,2875245667=>1,2875245852=>1,2875245814=>1,2875245859=>1,2875245885=>1,2875245953=>1,2875245913=>1,2875245805=>1,2875245795=>1,2875245708=>1,2875245692=>1,2875245788=>1,2875245791=>1,2875245792=>1,2875245200=>1,2875245156=>1,2875232466=>1,2875231921=>1,2875244622=>1,2875244638=>1,2875244663=>1,2875244659=>1,2875231705=>1,2875231085=>1,2875228074=>1,2875228070=>1,2875228097=>1,2875228103=>1,2875231078=>1,2875244679=>1,2875244689=>1,2875245076=>1,2875245049=>1,2875245096=>1,2875245101=>1,2875245128=>1,2875245115=>1,2875245003=>1,2875244993=>1,2875244836=>1,2875244756=>1,2875244868=>1,2875244884=>1,2875244985=>1,2875226816=>1,2875226786=>1,2875225192=>1,2875225183=>1,2875225238=>1,2875225259=>1,2875225287=>1,2875225273=>1,2875225171=>1,2875225116=>1,2875224974=>1,2875224931=>1,2875224979=>1,2875224990=>1,2875225086=>1,2875225015=>1,2875225297=>1,2875225312=>1,2875225430=>1,2875225414=>1,2875225443=>1,2875225459=>1,2875225491=>1,2875225460=>1,2875225398=>1,2875225394=>1,2875225328=>1,2875225320=>1,2875225348=>1,2875225367=>1,2875225368=>1,2875224912=>1,2875224878=>1,2875223911=>1,2875223907=>1,2875223921=>1,2875223973=>1,2875224041=>1,2875224024=>1,2875223903=>1,2875223899=>1,2875223858=>1,2875223856=>1,2875223866=>1,2875223871=>1,2875223887=>1,2875224071=>1,2875224161=>1,2875224528=>1,2875224503=>1,2875224538=>1,2875224607=>1,2875224854=>1,2875224718=>1,2875224501=>1,2875224496=>1,2875224328=>1,2875224313=>1,2875224342=>1,2875224456=>1,2875224464=>1,2875225518=>1,2875225540=>1,2875226364=>1,2875226344=>1,2875226408=>1,2875226427=>1,2875226477=>1,2875226462=>1,2875226332=>1,2875226321=>1,2875226190=>1,2875226154=>1,2875226232=>1,2875226239=>1,2875226297=>1,2875226270=>1,2875226489=>1,2875226508=>1,2875226617=>1,2875226605=>1,2875226746=>1,2875226754=>1,2875226782=>1,2875226765=>1,2875226594=>1,2875226569=>1,2875226522=>1,2875226516=>1,2875226526=>1,2875226533=>1,2875226539=>1,2875226142=>1,2875226134=>1,2875225700=>1,2875225647=>1,2875225724=>1,2875225759=>1,2875225785=>1,2875225776=>1,2875225636=>1,2875225618=>1,2875225564=>1,2875225558=>1,2875225574=>1,2875225578=>1,2875225583=>1,2875225837=>1,2875225862=>1,2875226024=>1,2875225997=>1,2875226054=>1,2875226088=>1,2875226130=>1,2875226091=>1,2875225992=>1,2875225988=>1,2875225904=>1,2875225884=>1,2875225930=>1,2875225940=>1,2875225972=>1,2875245997=>1,2875247106=>1,2875260465=>1,2875260438=>1,2875260508=>1,2875260517=>1,2875260598=>1,2875260589=>1,2875260434=>1,2875260431=>1,2875260199=>1,2875260192=>1,2875260211=>1,2875260273=>1,2875260421=>1,2875260402=>1,2875260607=>1,2875260647=>1,2875260846=>1,2875260800=>1,2875260879=>1,2875268615=>1,2875268631=>1,2875268623=>1,2875260781=>1,2875260769=>1,2875260681=>1,2875260677=>1,2875260694=>1,2875260709=>1,2875260731=>1,2875260123=>1,2875260060=>1,2875256519=>1,2875256516=>1,2875256529=>1,2875256552=>1,2875256574=>1,2875256555=>1,2875256508=>1,2875256504=>1,2875256415=>1,2875256411=>1,2875256428=>1,2875256444=>1,2875256450=>1,2875259425=>1,2875259468=>1,2875259823=>1,2875259820=>1,2875259889=>1,2875259984=>1,2875260056=>1,2875260032=>1,2875259692=>1,2875259688=>1,2875259613=>1,2875259563=>1,2875259615=>1,2875259618=>1,2875259650=>1,2875268641=>1,2875268643=>1,2875269102=>1,2875269099=>1,2875269106=>1,2875269382=>1,2875269400=>1,2875269391=>1,2875269095=>1,2875269091=>1,2875269044=>1,2875269033=>1,2875269064=>1,2875269075=>1,2875269089=>1,2875269086=>1,2875269407=>1,2875269421=>1,2875269518=>1,2875269510=>1,2875269560=>1,2875269573=>1,2875269605=>1,2875269579=>1,2875269507=>1,2875269502=>1,2875269464=>1,2875269430=>1,2875269484=>1,2875223815=>1,2875269490=>1,2875268992=>1,2875268980=>1,2875268771=>1,2875268716=>1,2875268778=>1,2875268784=>1,2875268790=>1,2875268786=>1,2875268708=>1,2875268702=>1,2875268666=>1,2875268659=>1,2875268673=>1,2875268690=>1,2875268696=>1,2875268792=>1,2875268796=>1,2875268899=>1,2875268881=>1,2875268929=>1,2875268945=>1,2875268957=>1,2875268951=>1,2875268854=>1,2875268852=>1,2875268813=>1,2875268811=>1,2875268823=>1,2875268834=>1,2875268836=>1,2875256398=>1,2875256393=>1,2875253937=>1,2875253935=>1,2875253944=>1,2875253968=>1,2875253984=>1,2875253982=>1,2875253920=>1,2875253896=>1,2875253857=>1,2875253844=>1,2875253861=>1,2875253876=>1,2875253894=>1,2875253878=>1,2875253991=>1,2875254001=>1,2875254213=>1,2875254197=>1,2875254216=>1,2875254232=>1,2875254264=>1,2875254257=>1,2875254176=>1,2875254154=>1,2875254075=>1,2875254014=>1,2875254078=>1,2875254113=>1,2875254141=>1,2875253789=>1,2875253765=>1,2875247631=>1,2875247558=>1,2875247643=>1,2875247720=>1,2875247734=>1,2875247733=>1,2875247549=>1,2875247479=>1,2875247223=>1,2875247144=>1,2875247232=>1,2875247237=>1,2875247341=>1,2875247736=>1,2875247806=>1,2875248007=>1,2875247987=>1,2875248031=>1,2875248055=>1,2875248094=>1,2875248060=>1,2875247977=>1,2875247931=>1,2875247868=>1,2875247848=>1,2875247882=>1,2875247905=>1,2875247921=>1,2875254266=>1,2875254268=>1,2875255875=>1,2875255847=>1,2875255907=>1,2875255910=>1,2875255999=>1,2875255942=>1,2875255821=>1,2875255775=>1,2875255621=>1,2875255607=>1,2875255665=>1,2875255691=>1,2875255759=>1,2875255747=>1,2875256015=>1,2875256031=>1,2875256296=>1,2875256266=>1,2875256314=>1,2875256316=>1,2875256368=>1,2875256332=>1,2875256191=>1,2875256183=>1,2875256057=>1,2875256042=>1,2875256103=>1,2875256143=>1,2875256154=>1,2875255603=>1,2875255580=>1,2875254466=>1,2875254428=>1,2875254473=>1,2875254477=>1,2875254543=>1,2875254504=>1,2875254407=>1,2875254400=>1,2875254338=>1,2875254322=>1,2875254348=>1,2875254392=>1,2875254396=>1,2875254564=>1,2875254570=>1,2875254732=>1,2875254729=>1,2875254740=>1,2875254756=>1,2875255572=>1,2875254761=>1,2875254716=>1,2875254710=>1,2875254679=>1,2875254582=>1,2875254689=>1,2875254697=>1,2875254704=>1,2875269611=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-31.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2875297300=>1,2875297293=>1,2875297319=>1,2875297328=>1,2875297362=>1,2875297342=>1,2875297290=>1,2875297269=>1,2875297177=>1,2875297176=>1,2875297197=>1,2875297219=>1,2875297244=>1,2875297232=>1,2875297369=>1,2875297374=>1,2875297502=>1,2875297500=>1,2875297513=>1,2875297558=>1,2875297615=>1,2875297564=>1,2875297471=>1,2875297468=>1,2875297411=>1,2875297382=>1,2875297419=>1,2875297431=>1,2875297451=>1,2875297447=>1,2875297166=>1,2875297121=>1,2875296681=>1,2875296676=>1,2875296686=>1,2875296758=>1,2875296782=>1,2875296779=>1,2875296668=>1,2875296634=>1,2875296516=>1,2875296514=>1,2875296537=>1,2875296548=>1,2875296607=>1,2875296553=>1,2875296803=>1,2875296808=>1,2875296987=>1,2875296979=>1,2875296989=>1,2875297016=>1,2875297031=>1,2875297030=>1,2875296940=>1,2875296905=>1,2875296848=>1,2875296830=>1,2875296856=>1,2875296878=>1,2875296892=>1,2875297623=>1,2875297660=>1,2875306769=>1,2875306732=>1,2875306776=>1,2875306783=>1,2875306801=>1,2875306797=>1,2875306725=>1,2875306718=>1,2875306521=>1,2875306518=>1,2875306607=>1,2875306657=>1,2875306694=>1,2875306681=>1,2875306822=>1,2875306832=>1,2875307056=>1,2875307031=>1,2875307069=>1,2875307079=>1,2875307122=>1,2875307096=>1,2875306977=>1,2875306939=>1,2875306855=>1,2875306836=>1,2875306870=>1,2875306899=>1,2875306930=>1,2875306929=>1,2875306510=>1,2875306503=>1,2875297996=>1,2875297872=>1,2875298023=>1,2875298186=>1,2875298208=>1,2875298190=>1,2875297854=>1,2875297842=>1,2875297698=>1,2875297688=>1,2875297714=>1,2875297765=>1,2875297839=>1,2875297806=>1,2875298270=>1,2875298331=>1,2875301618=>1,2875301600=>1,2875301717=>1,2875301762=>1,2875301834=>1,2875301817=>1,2875301571=>1,2875301195=>1,2875298471=>1,2875298458=>1,2875298494=>1,2875300932=>1,2875301191=>1,2875296504=>1,2875296463=>1,2875292268=>1,2875292264=>1,2875292343=>1,2875292439=>1,2875292504=>1,2875292485=>1,2875292249=>1,2875292222=>1,2875292006=>1,2875291973=>1,2875292042=>1,2875292101=>1,2875292206=>1,2875292178=>1,2875292530=>1,2875292564=>1,2875292907=>1,2875292888=>1,2875292909=>1,2875292936=>1,2875293009=>1,2875292961=>1,2875292830=>1,2875292829=>1,2875292656=>1,2875292619=>1,2875292679=>1,2875292754=>1,2875292822=>1,2875292781=>1,2875291941=>1,2875291915=>1,2875289914=>1,2875289842=>1,2875289962=>1,2875289998=>1,2875291255=>1,2875290070=>1,2875289790=>1,2875289783=>1,2875289540=>1,2875289473=>1,2875289637=>1,2875289651=>1,2875289724=>1,2875289669=>1,2875291256=>1,2875291400=>1,2875291795=>1,2875291788=>1,2875291849=>1,2875291864=>1,2875291908=>1,2875291865=>1,2875291782=>1,2875291756=>1,2875291511=>1,2875291477=>1,2875291559=>1,2875291567=>1,2875291719=>1,2875293162=>1,2875293276=>1,2875295948=>1,2875295907=>1,2875295981=>1,2875295996=>1,2875296045=>1,2875296043=>1,2875295898=>1,2875295869=>1,2875295787=>1,2875295775=>1,2875295792=>1,2875295801=>1,2875295841=>1,2875295802=>1,2875296100=>1,2875296101=>1,2875296417=>1,2875296402=>1,2875296429=>1,2875296443=>1,2875296460=>1,2875296445=>1,2875296387=>1,2875296357=>1,2875296216=>1,2875296175=>1,2875296280=>1,2875296319=>1,2875296347=>1,2875295758=>1,2875294709=>1,2875293542=>1,2875293517=>1,2875293628=>1,2875293634=>1,2875293638=>1,2875293637=>1,2875293468=>1,2875293459=>1,2875293340=>1,2875293334=>1,2875293348=>1,2875293381=>1,2875293442=>1,2875293397=>1,2875294523=>1,2875294531=>1,2875294652=>1,2875294651=>1,2875294669=>1,2875294690=>1,2875294706=>1,2875294695=>1,2875294645=>1,2875294642=>1,2875294576=>1,2875294545=>1,2875294598=>1,2875294617=>1,2875294637=>1,2875307129=>1,2875307141=>1,2875311291=>1,2875311290=>1,2875311292=>1,2875311294=>1,2875311319=>1,2875311314=>1,2875311287=>1,2875311237=>1,2875311063=>1,2875310986=>1,2875311107=>1,2875311153=>1,2875311222=>1,2875311181=>1,2875311359=>1,2875311403=>1,2875311623=>1,2875311585=>1,2875311637=>1,2875311675=>1,2875311696=>1,2875311685=>1,2875311565=>1,2875311543=>1,2875311456=>1,2875311439=>1,2875311476=>1,2875311489=>1,2875311512=>1,2875311496=>1,2875310970=>1,2875310930=>1,2875310229=>1,2875310219=>1,2875310248=>1,2875310304=>1,2875310444=>1,2875310362=>1,2875310218=>1,2875310205=>1,2875309939=>1,2875309902=>1,2875310021=>1,2875310171=>1,2875310191=>1,2875310190=>1,2875310510=>1,2875310521=>1,2875310847=>1,2875310839=>1,2875310853=>1,2875310854=>1,2875310926=>1,2875310886=>1,2875310812=>1,2875310787=>1,2875310578=>1,2875310527=>1,2875310734=>1,2875310764=>1,2875310771=>1,2875311722=>1,2875311732=>1,2875312624=>1,2875312615=>1,2875312633=>1,2875312693=>1,2875312752=>1,2875312729=>1,2875312587=>1,2875312553=>1,2875312499=>1,2875312498=>1,2875312501=>1,2875312522=>1,2875312551=>1,2875312531=>1,2875312780=>1,2875312793=>1,2875312980=>1,2875312929=>1,2875312986=>1,2875312998=>1,2875313042=>1,2875313001=>1,2875312928=>1,2875312915=>1,2875312822=>1,2875312795=>1,2875312857=>1,2875312903=>1,2875312911=>1,2875312491=>1,2875312356=>1,2875311959=>1,2875311941=>1,2875311960=>1,2875311994=>1,2875312007=>1,2875311999=>1,2875311931=>1,2875311906=>1,2875311753=>1,2875311734=>1,2875311776=>1,2875311778=>1,2875311794=>1,2875311779=>1,2875312021=>1,2875312026=>1,2875312213=>1,2875312182=>1,2875312260=>1,2875312292=>1,2875312343=>1,2875312306=>1,2875312180=>1,2875312174=>1,2875312092=>1,2875312053=>1,2875312111=>1,2875312119=>1,2875312167=>1,2875309901=>1,2875309887=>1,2875308061=>1,2875308056=>1,2875308075=>1,2875308097=>1,2875308116=>1,2875308102=>1,2875308051=>1,2875308044=>1,2875307891=>1,2875307881=>1,2875307901=>1,2875307910=>1,2875308021=>1,2875307985=>1,2875308161=>1,2875308179=>1,2875308344=>1,2875308325=>1,2875308346=>1,2875308348=>1,2875308355=>1,2875308349=>1,2875308320=>1,2875308307=>1,2875308193=>1,2875308190=>1,2875308209=>1,2875308222=>1,2875308302=>1,2875308228=>1,2875307874=>1,2875307847=>1,2875307386=>1,2875307375=>1,2875307392=>1,2875307401=>1,2875307428=>1,2875307408=>1,2875307366=>1,2875307355=>1,2875307182=>1,2875307155=>1,2875307217=>1,2875307271=>1,2875307331=>1,2875307296=>1,2875307494=>1,2875307515=>1,2875307741=>1,2875307701=>1,2875307757=>1,2875307784=>1,2875307794=>1,2875307786=>1,2875307681=>1,2875307674=>1,2875307565=>1,2875307518=>1,2875307591=>1,2875307592=>1,2875307656=>1,2875308382=>1,2875308384=>1,2875309430=>1,2875309376=>1,2875309466=>1,2875309498=>1,2875309544=>1,2875309515=>1,2875309339=>1,2875309291=>1,2875309199=>1,2875309190=>1,2875309253=>1,2875309256=>1,2875309278=>1,2875309277=>1,2875309552=>1,2875309581=>1,2875309745=>1,2875309736=>1,2875309755=>1,2875309798=>1,2875309820=>1,2875309802=>1,2875309701=>1,2875309672=>1,2875309594=>1,2875309583=>1,2875309596=>1,2875309598=>1,2875309604=>1,2875309080=>1,2875309025=>1,2875308548=>1,2875308530=>1,2875308557=>1,2875308564=>1,2875308585=>1,2875308575=>1,2875308505=>1,2875308475=>1,2875308418=>1,2875308415=>1,2875308426=>1,2875308432=>1,2875308467=>1,2875308463=>1,2875308601=>1,2875308666=>1,2875308833=>1,2875308810=>1,2875308868=>1,2875308932=>1,2875308959=>1,2875308940=>1,2875308776=>1,2875308765=>1,2875308716=>1,2875308706=>1,2875308727=>1,2875308749=>1,2875308752=>1,2875289470=>1,2875289452=>1,2875260465=>1,2875260438=>1,2875260508=>1,2875260517=>1,2875260607=>1,2875260598=>1,2875260434=>1,2875260431=>1,2875260199=>1,2875260192=>1,2875260211=>1,2875260311=>1,2875260421=>1,2875260402=>1,2875260647=>1,2875260676=>1,2875260879=>1,2875260846=>1,2875268612=>1,2875268613=>1,2875268623=>1,2875268615=>1,2875260818=>1,2875260800=>1,2875260694=>1,2875260677=>1,2875260709=>1,2875260731=>1,2875260781=>1,2875260769=>1,2875260123=>1,2875260060=>1,2875256574=>1,2875256571=>1,2875259396=>1,2875259413=>1,2875259468=>1,2875259425=>1,2875256570=>1,2875256555=>1,2875256504=>1,2875256444=>1,2875256508=>1,2875256516=>1,2875256529=>1,2875256519=>1,2875259563=>1,2875259613=>1,2875259875=>1,2875259874=>1,2875259889=>1,2875259955=>1,2875260032=>1,2875259984=>1,2875259820=>1,2875259692=>1,2875259618=>1,2875259615=>1,2875259634=>1,2875259650=>1,2875259688=>1,2875268631=>1,2875268641=>1,2875269102=>1,2875269099=>1,2875269106=>1,2875269382=>1,2875269400=>1,2875269391=>1,2875269095=>1,2875269091=>1,2875269044=>1,2875269017=>1,2875269064=>1,2875269075=>1,2875269089=>1,2875269086=>1,2875269407=>1,2875269421=>1,2875269516=>1,2875269510=>1,2875269517=>1,2875269518=>1,2875269573=>1,2875269560=>1,2875269507=>1,2875269502=>1,2875269464=>1,2875269430=>1,2875269484=>1,2875269488=>1,2875269490=>1,2875269016=>1,2875268980=>1,2875268716=>1,2875268708=>1,2875268771=>1,2875268778=>1,2875268786=>1,2875268784=>1,2875268702=>1,2875268696=>1,2875268659=>1,2875268643=>1,2875268666=>1,2875268673=>1,2875268690=>1,2875268678=>1,2875268790=>1,2875268792=>1,2875268899=>1,2875268881=>1,2875268929=>1,2875268945=>1,2875268957=>1,2875268951=>1,2875268854=>1,2875268852=>1,2875268813=>1,2875268796=>1,2875268823=>1,2875268834=>1,2875268836=>1,2875256443=>1,2875256428=>1,2875248055=>1,2875247987=>1,2875248060=>1,2875248094=>1,2875253789=>1,2875253765=>1,2875247931=>1,2875247916=>1,2875247848=>1,2875247806=>1,2875247868=>1,2875247882=>1,2875247905=>1,2875247903=>1,2875253844=>1,2875253857=>1,2875253984=>1,2875253982=>1,2875254001=>1,2875254014=>1,2875254078=>1,2875254075=>1,2875253968=>1,2875253937=>1,2875253875=>1,2875253874=>1,2875253894=>1,2875253896=>1,2875253935=>1,2875253920=>1,2875247736=>1,2875247734=>1,2875245795=>1,2875245792=>1,2875245805=>1,2875245852=>1,2875245885=>1,2875245859=>1,2875245791=>1,2875245788=>1,2875245582=>1,2875245539=>1,2875245600=>1,2875245638=>1,2875245708=>1,2875245667=>1,2875245913=>1,2875245953=>1,2875247549=>1,2875247473=>1,2875247558=>1,2875247631=>1,2875247733=>1,2875247720=>1,2875247341=>1,2875247296=>1,2875247106=>1,2875245997=>1,2875247223=>1,2875247232=>1,2875247237=>1,2875254141=>1,2875254154=>1,2875255999=>1,2875255964=>1,2875256015=>1,2875256031=>1,2875256080=>1,2875256042=>1,2875255907=>1,2875255847=>1,2875255621=>1,2875255607=>1,2875255665=>1,2875255691=>1,2875255775=>1,2875255759=>1,2875256103=>1,2875256154=>1,2875256336=>1,2875256316=>1,2875256368=>1,2875256393=>1,2875256421=>1,2875256398=>1,2875256314=>1,2875256296=>1,2875256191=>1,2875256183=>1,2875256237=>1,2875256266=>1,2875256294=>1,2875255603=>1,2875255580=>1,2875254400=>1,2875254392=>1,2875254407=>1,2875254428=>1,2875254473=>1,2875254459=>1,2875254348=>1,2875254322=>1,2875254197=>1,2875254176=>1,2875254213=>1,2875254264=>1,2875254268=>1,2875254266=>1,2875254477=>1,2875254504=>1,2875254710=>1,2875254704=>1,2875254732=>1,2875254740=>1,2875255572=>1,2875254756=>1,2875254689=>1,2875254679=>1,2875254564=>1,2875254543=>1,2875254570=>1,2875254579=>1,2875254582=>1,2875269579=>1,2875269605=>1,2875275468=>1,2875275457=>1,2875275486=>1,2875275490=>1,2875275506=>1,2875275494=>1,2875275439=>1,2875275407=>1,2875275306=>1,2875275301=>1,2875275319=>1,2875275330=>1,2875275353=>1,2875275352=>1,2875275577=>1,2875275605=>1,2875275739=>1,2875275731=>1,2875275749=>1,2875275752=>1,2875275765=>1,2875275762=>1,2875275722=>1,2875275695=>1,2875275634=>1,2875275632=>1,2875275644=>1,2875275657=>1,2875275693=>1,2875275664=>1,2875275298=>1,2875275249=>1,2875274954=>1,2875274940=>1,2875274962=>1,2875274986=>1,2875275007=>1,2875274990=>1,2875274925=>1,2875274913=>1,2875274794=>1,2875274781=>1,2875274832=>1,2875274859=>1,2875274881=>1,2875274869=>1,2875275016=>1,2875275017=>1,2875275197=>1,2875275193=>1,2875275204=>1,2875275205=>1,2875275244=>1,2875275216=>1,2875275137=>1,2875275123=>1,2875275071=>1,2875275039=>1,2875275089=>1,2875275097=>1,2875275119=>1,2875275767=>1,2875275798=>1,2875288827=>1,2875288804=>1,2875288861=>1,2875288878=>1,2875288911=>1,2875288884=>1,2875288782=>1,2875288756=>1,2875285552=>1,2875285542=>1,2875285653=>1,2875287371=>1,2875288629=>1,2875287373=>1,2875288921=>1,2875288936=>1,2875289281=>1,2875289269=>1,2875289297=>1,2875289339=>1,2875289416=>1,2875289406=>1,2875289187=>1,2875289168=>1,2875288994=>1,2875288984=>1,2875289058=>1,2875289124=>1,2875289153=>1,2875285519=>1,2875285484=>1,2875279153=>1,2875279121=>1,2875279166=>1,2875279242=>1,2875279285=>1,2875279262=>1,2875279120=>1,2875275999=>1,2875275836=>1,2875275809=>1,2875275912=>1,2875275962=>1,2875275973=>1,2875275971=>1,2875279301=>1,2875279329=>1,2875285216=>1,2875285124=>1,2875285355=>1,2875285385=>1,2875285450=>1,2875285428=>1,2875284916=>1,2875284831=>1,2875284646=>1,2875284633=>1,2875284678=>1,2875284712=>1,2875284796=>1,2875274775=>1,2875274763=>1,2875273495=>1,2875273478=>1,2875273509=>1,2875273515=>1,2875273534=>1,2875273525=>1,2875273476=>1,2875269885=>1,2875269848=>1,2875269844=>1,2875269852=>1,2875269857=>1,2875269864=>1,2875269862=>1,2875273541=>1,2875273547=>1,2875273704=>1,2875273692=>1,2875273707=>1,2875273721=>1,2875273822=>1,2875273808=>1,2875273649=>1,2875273619=>1,2875273572=>1,2875273565=>1,2875273575=>1,2875273577=>1,2875273608=>1,2875273582=>1,2875269841=>1,2875269838=>1,2875269682=>1,2875269675=>1,2875269683=>1,2875269696=>1,2875269726=>1,2875269702=>1,2875269665=>1,2875269653=>1,2875269615=>1,2875269611=>1,2875269616=>1,2875269624=>1,2875269652=>1,2875269642=>1,2875269736=>1,2875269744=>1,2875269795=>1,2875269789=>1,2875269796=>1,2875269800=>1,2875269820=>1,2875269803=>1,2875269779=>1,2875269777=>1,2875269765=>1,2875269761=>1,2875269768=>1,2875269769=>1,2875269770=>1,2875273834=>1,2875273847=>1,2875274453=>1,2875274422=>1,2875274463=>1,2875274475=>1,2875274511=>1,2875274500=>1,2875274421=>1,2875274409=>1,2875274319=>1,2875274312=>1,2875274353=>1,2875274364=>1,2875274381=>1,2875274372=>1,2875274523=>1,2875274534=>1,2875274628=>1,2875274625=>1,2875274642=>1,2875274678=>1,2875274742=>1,2875274733=>1,2875274613=>1,2875274611=>1,2875274575=>1,2875274558=>1,2875274579=>1,2875274597=>1,2875274610=>1,2875274307=>1,2875274279=>1,2875273956=>1,2875273940=>1,2875273960=>1,2875273964=>1,2875273976=>1,2875273972=>1,2875273931=>1,2875273909=>1,2875273861=>1,2875273859=>1,2875273870=>1,2875273872=>1,2875273905=>1,2875273879=>1,2875273996=>1,2875274067=>1,2875274165=>1,2875274153=>1,2875274203=>1,2875274219=>1,2875274259=>1,2875274254=>1,2875274151=>1,2875274147=>1,2875274081=>1,2875274078=>1,2875274090=>1,2875274107=>1,2875274135=>1,2875245491=>1,);?>
1
+ <?php return array(2927321706=>2927321709,2918706834=>2918706835,2902458368=>2902462463,2875488980=>2875488981,2875318374=>2875318375,2875316130=>2875316131,2875315752=>2875315753,2875315640=>2875315641,2875313510=>2875313511,2875312928=>2875312929,2875312498=>2875312499,2875311290=>2875311291,2875308348=>2875308349,2875306854=>2875306855,2901743844=>1,2901742701=>1,2892894902=>1,2892329898=>1,2892303307=>1,2892894868=>1,2901744950=>1,2893041931=>1,2901620456=>1,2901762826=>1,2901815265=>1,2901815151=>1,2901833438=>1,2901835453=>1,2902071435=>1,2901864892=>1,2901793669=>1,2901791177=>1,2901751848=>1,2901745850=>1,2901752779=>1,2892064559=>1,2901769824=>1,2901769798=>1,2901745849=>1,2891600179=>1,2890784083=>1,2890592666=>1,2890784087=>1,2890784090=>1,2890784094=>1,2890784092=>1,2886314482=>1,2884151352=>1,2882970982=>1,2876552054=>1,2883364392=>1,2883450420=>1,2884149543=>1,2891029011=>1,2891099829=>1,2891670436=>1,2891439581=>1,2892047125=>1,2892048770=>1,2892049487=>1,2891386609=>1,2891386454=>1,2891102538=>1,2891100970=>1,2891354894=>1,2891355146=>1,2891383612=>1,2892049846=>1,2903001529=>1,2906054114=>1,2906051097=>1,2906108314=>1,2906108318=>1,2906260757=>1,2906213297=>1,2905927744=>1,2905865877=>1,2905453174=>1,2905387761=>1,2905453481=>1,2905456445=>1,2905858749=>1,2905702968=>1,2906523870=>1,2906821260=>1,2907976010=>1,2907817635=>1,2908023118=>1,2908253601=>1,2912965466=>1,2908288779=>1,2907728288=>1,2907542386=>1,2906887224=>1,2906854462=>1,2906962346=>1,2907148629=>1,2907195214=>1,2905357002=>1,2905044263=>1,2903311228=>1,2903231764=>1,2903340849=>1,2903346460=>1,2903360709=>1,2903357892=>1,2903216053=>1,2903179176=>1,2875514106=>1,2902719277=>1,2903036746=>1,2903090749=>1,2903178521=>1,2903133825=>1,2903420387=>1,2903425713=>1,2904332743=>1,2904218203=>1,2904335389=>1,2904868698=>1,2905005597=>1,2904896050=>1,2904201363=>1,2904179459=>1,2903535678=>1,2903464534=>1,2903599996=>1,2903709627=>1,2904160852=>1,2902709729=>1,2875514032=>1,2875320058=>1,2875319973=>1,2875320095=>1,2875320223=>1,2875320322=>1,2875320246=>1,2875319966=>1,2875319842=>1,2875319689=>1,2875319666=>1,2875319725=>1,2875319726=>1,2875319815=>1,2875319781=>1,2875320375=>1,2875320386=>1,2875320618=>1,2875320608=>1,2875320626=>1,2875320666=>1,2875320707=>1,2875320671=>1,2875320601=>1,2875320566=>1,2875320393=>1,2875320391=>1,2875320441=>1,2875320480=>1,2875320510=>1,2875320488=>1,2875319637=>1,2875319629=>1,2875319026=>1,2875318987=>1,2875319031=>1,2875319042=>1,2875319073=>1,2875319044=>1,2875318978=>1,2875318953=>1,2875318809=>1,2875318795=>1,2875318832=>1,2875318853=>1,2875318929=>1,2875318920=>1,2875319094=>1,2875319096=>1,2875319350=>1,2875319261=>1,2875319472=>1,2875319516=>1,2875319592=>1,2875319583=>1,2875319211=>1,2875319186=>1,2875319159=>1,2875319143=>1,2875319167=>1,2875319170=>1,2875319177=>1,2875320713=>1,2875320740=>1,2875488850=>1,2875488848=>1,2875488864=>1,2875488879=>1,2875488893=>1,2875488887=>1,2875488840=>1,2875488803=>1,2875325946=>1,2875325943=>1,2875480016=>1,2875488776=>1,2875488792=>1,2875488788=>1,2875488895=>1,2875488901=>1,2875513860=>1,2875488989=>1,2875513880=>1,2912990397=>1,2875514059=>1,2875514037=>1,2875488985=>1,2875488973=>1,2875488932=>1,2875488910=>1,2875488939=>1,2875488948=>1,2875488961=>1,2875325924=>1,2875325892=>1,2875325239=>1,2875325212=>1,2875325269=>1,2875325273=>1,2875325433=>1,2875325397=>1,2875325208=>1,2875325072=>1,2875320758=>1,2875320744=>1,2875320764=>1,2875324966=>1,2875325064=>1,2875325018=>1,2875325446=>1,2875325519=>1,2875325729=>1,2875325711=>1,2875325740=>1,2875325763=>1,2875325874=>1,2875325836=>1,2875325629=>1,2875325620=>1,2875325526=>1,2875325523=>1,2875325587=>1,2875325602=>1,2875325611=>1,2875514090=>1,2913242051=>1,2928512391=>1,2928386138=>1,2928512575=>1,2928516638=>1,2936061896=>1,2928516886=>1,2928175603=>1,2928175446=>1,2927341384=>1,2927008981=>1,2927341386=>1,2927515677=>1,2927576045=>1,2927555644=>1,2936542107=>1,2936574262=>1,2937269157=>1,2937216576=>1,2937300479=>1,2937322934=>1,2937357593=>1,2937357421=>1,2937207361=>1,2937206530=>1,2936655262=>1,2936575428=>1,2936662478=>1,2936910019=>1,2937178063=>1,2937085248=>1,2926467896=>1,2926412865=>1,2922334371=>1,2922206627=>1,2922381489=>1,2922564463=>1,2922704362=>1,2922635701=>1,2922200078=>1,2921708197=>1,2921505212=>1,2921505206=>1,2921505243=>1,2921519211=>1,2921654998=>1,2921521623=>1,2922784835=>1,2922818320=>1,2924805171=>1,2923946782=>1,2925218051=>1,2925731531=>1,2925905083=>1,2925756222=>1,2923770628=>1,2923682316=>1,2923038756=>1,2922928670=>1,2923106108=>1,2923110730=>1,2923611857=>1,2937407962=>1,2937483368=>1,2945139679=>1,2945045459=>1,2945157491=>1,2945157519=>1,2945316401=>1,2945157551=>1,2944991045=>1,2944990649=>1,2942962870=>1,2942775310=>1,2942963434=>1,2943313941=>1,2944987054=>1,2944898328=>1,2945316641=>1,2945369636=>1,2945699445=>1,2945660627=>1,2945961579=>1,2945980450=>1,2946062914=>1,2946062519=>1,2945590687=>1,2945486616=>1,2945392688=>1,2945392661=>1,2945396789=>1,2945409578=>1,2945412002=>1,2942699656=>1,2942669942=>1,2937958686=>1,2937850929=>1,2937961138=>1,2938027037=>1,2938037703=>1,2938031687=>1,2937696306=>1,2937696305=>1,2937529492=>1,2937528513=>1,2937535428=>1,2937551032=>1,2937657874=>1,2937657734=>1,2938074153=>1,2938088943=>1,2942585196=>1,2942584927=>1,2942591273=>1,2942591648=>1,2942636124=>1,2942634030=>1,2942577091=>1,2938944449=>1,2938094775=>1,2938092856=>1,2938791390=>1,2938791690=>1,2938944271=>1,2920967201=>1,2920652561=>1,2916520697=>1,2916446619=>1,2916522241=>1,2916523580=>1,2916523771=>1,2916523597=>1,2916445300=>1,2916359559=>1,2915676556=>1,2915587106=>1,2916144498=>1,2916196719=>1,2916198385=>1,2916197503=>1,2916549462=>1,2916549465=>1,2916920050=>1,2916858042=>1,2917146567=>1,2917204566=>1,2917423901=>1,2917206823=>1,2916834930=>1,2916820484=>1,2916559707=>1,2916552545=>1,2916665027=>1,2916682485=>1,2916742251=>1,2916718791=>1,2915438978=>1,2915409889=>1,2913428228=>1,2913384433=>1,2913429705=>1,2913454187=>1,2913880144=>1,2913467893=>1,2913336811=>1,2913333401=>1,2913077949=>1,2913070836=>1,2875318776=>1,2913259189=>1,2913270106=>1,2913262586=>1,2914073715=>1,2914087496=>1,2915353430=>1,2915349468=>1,2915391030=>1,2915404418=>1,2915409697=>1,2915409633=>1,2915307611=>1,2915071470=>1,2914851126=>1,2914245317=>1,2914851145=>1,2914851319=>1,2914965737=>1,2917544241=>1,2917564489=>1,2919225822=>1,2919222641=>1,2919225962=>1,2919228046=>1,2919228550=>1,2919228501=>1,2919220254=>1,2919219789=>1,2918718143=>1,2918717645=>1,2918913127=>1,2918986666=>1,2919200227=>1,2919196826=>1,2919228600=>1,2919228680=>1,2919580746=>1,2919573816=>1,2919581330=>1,2919706754=>1,2919741200=>1,2919720161=>1,2919530650=>1,2919513796=>1,2919232884=>1,2919231979=>1,2919269818=>1,2919336261=>1,2919361728=>1,2918716588=>1,2918714026=>1,2917571256=>1,2917571162=>1,2917751942=>1,2917776503=>1,2918141899=>1,2918059997=>1,2917570925=>1,2917569772=>1,2917564825=>1,2917564648=>1,2917565274=>1,2917565780=>1,2917568130=>1,2917566190=>1,2918141906=>1,2918159827=>1,2918606600=>1,2918600725=>1,2918607015=>1,2918706030=>1,2918712837=>1,2918706837=>1,2918575875=>1,2918551828=>1,2918170494=>1,2918166078=>1,2918191782=>1,2918306519=>1,2918410645=>1,2913000169=>1,2875318659=>1,2875310527=>1,2875310521=>1,2875310578=>1,2875310734=>1,2875310771=>1,2875310764=>1,2875310510=>1,2875310444=>1,2875310229=>1,2875310218=>1,2875310248=>1,2875310304=>1,2875310362=>1,2875310353=>1,2875310812=>1,2875310839=>1,2875311045=>1,2875310986=>1,2875311107=>1,2875311153=>1,2875311181=>1,2875311179=>1,2875310970=>1,2875310930=>1,2875310853=>1,2875310847=>1,2875310854=>1,2875310886=>1,2875310926=>1,2875310205=>1,2875310191=>1,2875309515=>1,2875309498=>1,2875309544=>1,2875309552=>1,2875309583=>1,2875309581=>1,2875309466=>1,2875309430=>1,2875309291=>1,2875309281=>1,2875309298=>1,2875309315=>1,2875309376=>1,2875309339=>1,2875309596=>1,2875309598=>1,2875309901=>1,2875309898=>1,2875309902=>1,2875309939=>1,2875310171=>1,2875310128=>1,2875309887=>1,2875309802=>1,2875309672=>1,2875309604=>1,2875309736=>1,2875309745=>1,2875309755=>1,2875311222=>1,2875311287=>1,2875312167=>1,2875312163=>1,2875312174=>1,2875312180=>1,2875312213=>1,2875312182=>1,2875312119=>1,2875312111=>1,2875312007=>1,2875311999=>1,2875312021=>1,2875312026=>1,2875312092=>1,2875312053=>1,2875312292=>1,2875312306=>1,2875312587=>1,2875312553=>1,2875312624=>1,2875312633=>1,2875312752=>1,2875312729=>1,2875312551=>1,2875312531=>1,2875312374=>1,2875312356=>1,2875312491=>1,2875312501=>1,2875312522=>1,2875311960=>1,2875311941=>1,2875311489=>1,2875311456=>1,2875311496=>1,2875311512=>1,2875311543=>1,2875311520=>1,2875311439=>1,2875311403=>1,2875311294=>1,2875311292=>1,2875311308=>1,2875311314=>1,2875311359=>1,2875311319=>1,2875311565=>1,2875311585=>1,2875311776=>1,2875311734=>1,2875311778=>1,2875311794=>1,2875311906=>1,2875311805=>1,2875311732=>1,2875311722=>1,2875311623=>1,2875311587=>1,2875311637=>1,2875311675=>1,2875311696=>1,2875309278=>1,2875309277=>1,2875307494=>1,2875307428=>1,2875307515=>1,2875307539=>1,2875307656=>1,2875307592=>1,2875307408=>1,2875307401=>1,2875307355=>1,2875307334=>1,2875307366=>1,2875307375=>1,2875307392=>1,2875307386=>1,2875307674=>1,2875307681=>1,2875307873=>1,2875307847=>1,2875307874=>1,2875307881=>1,2875307901=>1,2875307891=>1,2875307794=>1,2875307786=>1,2875307741=>1,2875307701=>1,2875307751=>1,2875307757=>1,2875307784=>1,2875307331=>1,2875307296=>1,2875306832=>1,2875306822=>1,2875306836=>1,2875306838=>1,2875306899=>1,2875306870=>1,2875306801=>1,2875306797=>1,2875306718=>1,2875306694=>1,2875306725=>1,2875306732=>1,2875306783=>1,2875306769=>1,2875306929=>1,2875306930=>1,2875307182=>1,2875307141=>1,2875307217=>1,2875307254=>1,2875307281=>1,2875307271=>1,2875307129=>1,2875307122=>1,2875307031=>1,2875306939=>1,2875307056=>1,2875307069=>1,2875307096=>1,2875307908=>1,2875307910=>1,2875308666=>1,2875308601=>1,2875308706=>1,2875308727=>1,2875308749=>1,2875308738=>1,2875308585=>1,2875308575=>1,2875308489=>1,2875308475=>1,2875308505=>1,2875308548=>1,2875308564=>1,2875308557=>1,2875308752=>1,2875308765=>1,2875309080=>1,2875309025=>1,2875309190=>1,2875309199=>1,2875309253=>1,2875309235=>1,2875308959=>1,2875308940=>1,2875308810=>1,2875308776=>1,2875308833=>1,2875308843=>1,2875308868=>1,2875308467=>1,2875308463=>1,2875308116=>1,2875308102=>1,2875308161=>1,2875308179=>1,2875308190=>1,2875308186=>1,2875308097=>1,2875308075=>1,2875308005=>1,2875307985=>1,2875308021=>1,2875308044=>1,2875308056=>1,2875308051=>1,2875308193=>1,2875308222=>1,2875308382=>1,2875308368=>1,2875308384=>1,2875308415=>1,2875308432=>1,2875308426=>1,2875308355=>1,2875308346=>1,2875308302=>1,2875308228=>1,2875308307=>1,2875308320=>1,2875308325=>1,2875312754=>1,2875312795=>1,2875316791=>1,2875316788=>1,2875316873=>1,2875316943=>1,2875316979=>1,2875316945=>1,2875316777=>1,2875316728=>1,2875316611=>1,2875316604=>1,2875316612=>1,2875316646=>1,2875316717=>1,2875316700=>1,2875316989=>1,2875317027=>1,2875317159=>1,2875317144=>1,2875317164=>1,2875317166=>1,2875317182=>1,2875317173=>1,2875317132=>1,2875317104=>1,2875317064=>1,2875317048=>1,2875317080=>1,2875317086=>1,2875317091=>1,2875316596=>1,2875316576=>1,2875316215=>1,2875316203=>1,2875316219=>1,2875316233=>1,2875316288=>1,2875316242=>1,2875316159=>1,2875316150=>1,2875316042=>1,2875316017=>1,2875316061=>1,2875316085=>1,2875316139=>1,2875316117=>1,2875316301=>1,2875316309=>1,2875316476=>1,2875316467=>1,2875316488=>1,2875316498=>1,2875316531=>1,2875316513=>1,2875316465=>1,2875316451=>1,2875316346=>1,2875316330=>1,2875316353=>1,2875316429=>1,2875316440=>1,2875317190=>1,2875317206=>1,2875318246=>1,2875318239=>1,2875318317=>1,2875318319=>1,2875318347=>1,2875318345=>1,2875318234=>1,2875318223=>1,2875318073=>1,2875318069=>1,2875318107=>1,2875318108=>1,2875318216=>1,2875318191=>1,2875318433=>1,2875318435=>1,2875306681=>1,2875318653=>1,2875318665=>1,2875318709=>1,2875318739=>1,2875318723=>1,2875318651=>1,2875318579=>1,2875318466=>1,2875318459=>1,2875318469=>1,2875318473=>1,2875318500=>1,2875318033=>1,2875317996=>1,2875317377=>1,2875317374=>1,2875317425=>1,2875317447=>1,2875317495=>1,2875317460=>1,2875317357=>1,2875317310=>1,2875317220=>1,2875317208=>1,2875317236=>1,2875317263=>1,2875317293=>1,2875317287=>1,2875317517=>1,2875317551=>1,2875317892=>1,2875317870=>1,2875317906=>1,2875317918=>1,2875317985=>1,2875317980=>1,2875317836=>1,2875317829=>1,2875317738=>1,2875317655=>1,2875317753=>1,2875317762=>1,2875317821=>1,2875316005=>1,2875315998=>1,2875313941=>1,2875313899=>1,2875313943=>1,2875313944=>1,2875313977=>1,2875313973=>1,2875313855=>1,2875313795=>1,2875313628=>1,2875313617=>1,2875313632=>1,2875313718=>1,2875313778=>1,2875313737=>1,2875314087=>1,2875314088=>1,2875314391=>1,2875314347=>1,2875314468=>1,2875314474=>1,2875314538=>1,2875314476=>1,2875314315=>1,2875314302=>1,2875314183=>1,2875314170=>1,2875314205=>1,2875314224=>1,2875314256=>1,2875313569=>1,2875313566=>1,2875313042=>1,2875313001=>1,2875313075=>1,2875313140=>1,2875313248=>1,2875313169=>1,2875312998=>1,2875312980=>1,2875312857=>1,2875312822=>1,2875312872=>1,2875312903=>1,2875312915=>1,2875312911=>1,2875313255=>1,2875313259=>1,2875313542=>1,2875313486=>1,2875313547=>1,2875313550=>1,2875313562=>1,2875313552=>1,2875313473=>1,2875313446=>1,2875313330=>1,2875313289=>1,2875313352=>1,2875313417=>1,2875313437=>1,2875314576=>1,2875314610=>1,2875315610=>1,2875315607=>1,2875315651=>1,2875315652=>1,2875315686=>1,2875315665=>1,2875315579=>1,2875315575=>1,2875315433=>1,2875315394=>1,2875315478=>1,2875315492=>1,2875315530=>1,2875315497=>1,2875315693=>1,2875315709=>1,2875315903=>1,2875315879=>1,2875315911=>1,2875315930=>1,2875315993=>1,2875315936=>1,2875315866=>1,2875315847=>1,2875315732=>1,2875315731=>1,2875315767=>1,2875315812=>1,2875315824=>1,2875315371=>1,2875315361=>1,2875314953=>1,2875314884=>1,2875314972=>1,2875314978=>1,2875315022=>1,2875314987=>1,2875314859=>1,2875314806=>1,2875314696=>1,2875314631=>1,2875314719=>1,2875314721=>1,2875314727=>1,2875315029=>1,2875315044=>1,2875315249=>1,2875315244=>1,2875315258=>1,2875315268=>1,2875315351=>1,2875315273=>1,2875315166=>1,2875315147=>1,2875315067=>1,2875315049=>1,2875315075=>1,2875315080=>1,2875315129=>1,2875318758=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-32.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2953470920=>2953470927,2902458368=>2902462463,2937178063=>1,2937207361=>1,2937216576=>1,2937300479=>1,2937085248=>1,2937321562=>1,2936910019=>1,2936061896=>1,2928516886=>1,2936542107=>1,2936574262=>1,2936662478=>1,2936575428=>1,2937322934=>1,2937357421=>1,2937696306=>1,2937696305=>1,2937850929=>1,2937958686=>1,2938027037=>1,2937961138=>1,2937657734=>1,2937551032=>1,2937407962=>1,2937357593=>1,2937483368=>1,2937528513=>1,2937535428=>1,2937529492=>1,2928516638=>1,2928512575=>1,2925756222=>1,2925731531=>1,2925905083=>1,2926412865=>1,2927008981=>1,2926467896=>1,2925217159=>1,2924805171=>1,2923276729=>1,2923110730=>1,2923611857=>1,2923682316=>1,2923946782=>1,2923770628=>1,2927321706=>1,2927321707=>1,2928175446=>1,2927718094=>1,2928175603=>1,2928386138=>1,2928512391=>1,2928439661=>1,2927576045=>1,2927555644=>1,2927321709=>1,2927321708=>1,2927341384=>1,2927341386=>1,2927515677=>1,2938031687=>1,2938037703=>1,2945369636=>1,2945320705=>1,2945392661=>1,2945392688=>1,2945409578=>1,2945396789=>1,2945316641=>1,2945316401=>1,2945142428=>1,2945140587=>1,2945157491=>1,2945157519=>1,2945192763=>1,2945157551=>1,2945412002=>1,2945486616=>1,2946195393=>1,2946062975=>1,2946205805=>1,2946206177=>1,2946397843=>1,2946215539=>1,2946062914=>1,2946062519=>1,2945487182=>1,2945486644=>1,2945660627=>1,2945961579=>1,2945981324=>1,2945980450=>1,2945132321=>1,2945045459=>1,2938944449=>1,2938944271=>1,2939007642=>1,2942577091=>1,2942585196=>1,2942584927=>1,2938791690=>1,2938791390=>1,2938088943=>1,2938074153=>1,2938092856=>1,2938094775=>1,2938762089=>1,2938741082=>1,2942591273=>1,2942591648=>1,2943313941=>1,2942963434=>1,2944898328=>1,2944987054=>1,2944991045=>1,2944990649=>1,2942962870=>1,2942961852=>1,2942636124=>1,2942634030=>1,2942669942=>1,2942699656=>1,2942775310=>1,2923106108=>1,2922928670=>1,2916834930=>1,2916820484=>1,2916858042=>1,2916920050=>1,2917204566=>1,2917146567=>1,2916745200=>1,2916742251=>1,2916549465=>1,2916549462=>1,2916552545=>1,2916665027=>1,2916718791=>1,2916682485=>1,2917423901=>1,2917544241=>1,2917570925=>1,2917569772=>1,2917571162=>1,2917751942=>1,2917950381=>1,2917776503=>1,2917568130=>1,2917566190=>1,2917564648=>1,2917564489=>1,2917564825=>1,2917565274=>1,2917565780=>1,2916549437=>1,2916523771=>1,2915409633=>1,2915404418=>1,2915409697=>1,2915409889=>1,2915438978=>1,2915411838=>1,2915391030=>1,2915353430=>1,2914965737=>1,2914851319=>1,2914968739=>1,2915071470=>1,2915349468=>1,2915307611=>1,2915587106=>1,2915676556=>1,2916520697=>1,2916446619=>1,2916521073=>1,2916522241=>1,2916523597=>1,2916523580=>1,2916445300=>1,2916359559=>1,2916144498=>1,2915717444=>1,2916196719=>1,2916197503=>1,2916198385=>1,2918059997=>1,2918141899=>1,2919741200=>1,2919720161=>1,2920652561=>1,2921186810=>1,2921505212=>1,2921505206=>1,2919706754=>1,2919580746=>1,2919232884=>1,2919231979=>1,2919269818=>1,2919361728=>1,2919530650=>1,2919513796=>1,2921505243=>1,2921519211=>1,2922635701=>1,2922564463=>1,2922704362=>1,2922784835=>1,2946513468=>1,2922818320=>1,2922381489=>1,2922334371=>1,2921654998=>1,2921521623=>1,2921708197=>1,2922200078=>1,2922206627=>1,2919228680=>1,2919228600=>1,2918606600=>1,2918600725=>1,2918607015=>1,2918706030=>1,2918712837=>1,2918706834=>1,2918575875=>1,2918551828=>1,2918159827=>1,2918141906=>1,2918191782=>1,2918306519=>1,2918410645=>1,2918374439=>1,2918714026=>1,2918716588=>1,2919225822=>1,2919222641=>1,2919225962=>1,2919228046=>1,2919228550=>1,2919228501=>1,2919220254=>1,2919219789=>1,2918718143=>1,2918717645=>1,2918913127=>1,2919200227=>1,2919215542=>1,2923038756=>1,2946517013=>1,2953809121=>1,2953787474=>1,2953809390=>1,2954146544=>1,2954160742=>1,2954151105=>1,2953721308=>1,2953608646=>1,2953480600=>1,2953478984=>1,2953480663=>1,2953483516=>1,2953510385=>1,2953495777=>1,2954235524=>1,2954591132=>1,2954848303=>1,2954847056=>1,2954849187=>1,2954851759=>1,2954864013=>1,2954852567=>1,2954846406=>1,2954833772=>1,2954822555=>1,2954637574=>1,2954827616=>1,2954828863=>1,2954833154=>1,2954830741=>1,2953478980=>1,2953474258=>1,2953428720=>1,2953425967=>1,2953429163=>1,2953439348=>1,2953443105=>1,2953443093=>1,2953420144=>1,2953417908=>1,2953416656=>1,2953415788=>1,2953417154=>1,2953417685=>1,2953417904=>1,2953417699=>1,2953455858=>1,2953456015=>1,2953470928=>1,2953470927=>1,2953470929=>1,2953472240=>1,2953472948=>1,2953472243=>1,2953470926=>1,2953470925=>1,2953470921=>1,2953456441=>1,2953470922=>1,2953470923=>1,2953470924=>1,2954865238=>1,2954865423=>1,2956616802=>1,2956615879=>1,2956618072=>1,2956618432=>1,2956619330=>1,2956618482=>1,2956614070=>1,2956520895=>1,2955746742=>1,2955638142=>1,2956269198=>1,2956269672=>1,2956520621=>1,2956519074=>1,2956620567=>1,2956621846=>1,2957854634=>1,2957630097=>1,2957860121=>1,2957866136=>1,2959121050=>1,2958435953=>1,2957224407=>1,2957224146=>1,2956822530=>1,2956622239=>1,2956822604=>1,2956898972=>1,2957061001=>1,2955513915=>1,2955443699=>1,2955103767=>1,2954920034=>1,2955158398=>1,2955162958=>1,2955178862=>1,2955173227=>1,2954886363=>1,2954876829=>1,2954867869=>1,2954867724=>1,2954868991=>1,2954870554=>1,2954872954=>1,2954870654=>1,2955193988=>1,2955194132=>1,2955285271=>1,2955280918=>1,2955316237=>1,2955320614=>1,2955325904=>1,2955323529=>1,2955267628=>1,2955267355=>1,2955219001=>1,2955201386=>1,2955221806=>1,2955225301=>1,2955261237=>1,2953415172=>1,2953414042=>1,2947837651=>1,2947837273=>1,2947838169=>1,2947838330=>1,2947838703=>1,2947838526=>1,2947837165=>1,2947836377=>1,2947834079=>1,2947833867=>1,2947834233=>1,2947834457=>1,2947836282=>1,2947834600=>1,2947839766=>1,2947839780=>1,2947859042=>1,2947859015=>1,2947859109=>1,2947859138=>1,2947863167=>1,2947863030=>1,2947858480=>1,2947856655=>1,2947841950=>1,2947839796=>1,2947852859=>1,2947853069=>1,2947855974=>1,2947855774=>1,2947833662=>1,2947833647=>1,2947400896=>1,2947347490=>1,2947519738=>1,2947825777=>1,2947826551=>1,2947826305=>1,2947065194=>1,2947037772=>1,2946518958=>1,2914851145=>1,2946529460=>1,2946898560=>1,2946982524=>1,2946923715=>1,2947826638=>1,2947826727=>1,2947827392=>1,2947827194=>1,2947827474=>1,2947827672=>1,2947830303=>1,2947829477=>1,2947827126=>1,2947827115=>1,2947826788=>1,2947826779=>1,2947826951=>1,2947826996=>1,2947827079=>1,2947863168=>1,2947865389=>1,2953390042=>1,2953389606=>1,2953390874=>1,2953391482=>1,2953392880=>1,2953392759=>1,2953381236=>1,2953381070=>1,2948617739=>1,2948130994=>1,2949036856=>1,2949333362=>1,2953380307=>1,2949335099=>1,2953393460=>1,2953393581=>1,2953406216=>1,2953405318=>1,2953408138=>1,2953409206=>1,2953412042=>1,2953410471=>1,2953403095=>1,2953401831=>1,2953399083=>1,2953393806=>1,2953399148=>1,2953401381=>1,2953401741=>1,2948130058=>1,2948084064=>1,2947874370=>1,2947874352=>1,2947884250=>1,2947901779=>1,2947940919=>1,2947940554=>1,2947874156=>1,2947874074=>1,2947871095=>1,2947869238=>1,2947871510=>1,2947871818=>1,2947873108=>1,2947872120=>1,2947941140=>1,2947950632=>1,2947982793=>1,2947982792=>1,2947982797=>1,2947985539=>1,2947989896=>1,2947985707=>1,2947982305=>1,2947982168=>1,2947970245=>1,2947970121=>1,2947973243=>1,2947975468=>1,2947982143=>1,2946513551=>1,2914245317=>1,2875317148=>1,2875317144=>1,2875317159=>1,2875317164=>1,2875317173=>1,2875317166=>1,2875317132=>1,2875317104=>1,2875316989=>1,2875316982=>1,2875317027=>1,2875317064=>1,2875317091=>1,2875317080=>1,2875317182=>1,2875317190=>1,2875317413=>1,2875317377=>1,2875317425=>1,2875317499=>1,2875317506=>1,2875317502=>1,2875317374=>1,2875317357=>1,2875317208=>1,2875317206=>1,2875317209=>1,2875317236=>1,2875317293=>1,2875317263=>1,2875316979=>1,2875316968=>1,2875316488=>1,2875316476=>1,2875316498=>1,2875316513=>1,2875316531=>1,2875316527=>1,2875316467=>1,2875316465=>1,2875316309=>1,2875316301=>1,2875316330=>1,2875316429=>1,2875316451=>1,2875316440=>1,2875316576=>1,2875316596=>1,2875316791=>1,2875316788=>1,2875316854=>1,2875316873=>1,2875316945=>1,2875316943=>1,2875316787=>1,2875316728=>1,2875316611=>1,2875316604=>1,2875316646=>1,2875316700=>1,2875316717=>1,2875317517=>1,2875317551=>1,2875318659=>1,2875318653=>1,2875318665=>1,2875318723=>1,2875318758=>1,2875318739=>1,2875318651=>1,2875318579=>1,2875318466=>1,2875318435=>1,2875318469=>1,2875318500=>1,2875318560=>1,2875318554=>1,2875318776=>1,2875318795=>1,2875319042=>1,2875318987=>1,2875319044=>1,2875319073=>1,2875319096=>1,2875319094=>1,2875318978=>1,2875318953=>1,2875318831=>1,2875318809=>1,2875318900=>1,2875318920=>1,2875318929=>1,2875318433=>1,2875318375=>1,2875317892=>1,2875317870=>1,2875317906=>1,2875317918=>1,2875317985=>1,2875317980=>1,2875317864=>1,2875317836=>1,2875317660=>1,2875317655=>1,2875317738=>1,2875317753=>1,2875317797=>1,2875317762=>1,2875317996=>1,2875318033=>1,2875318317=>1,2875318246=>1,2875318319=>1,2875318345=>1,2875318374=>1,2875318347=>1,2875318239=>1,2875318216=>1,2875318073=>1,2875318069=>1,2875318108=>1,2875318172=>1,2875318191=>1,2875316288=>1,2875316242=>1,2875314347=>1,2875314315=>1,2875314391=>1,2875314400=>1,2875314474=>1,2875314468=>1,2875314205=>1,2875314183=>1,2875313973=>1,2875313944=>1,2875313977=>1,2875314087=>1,2875314170=>1,2875314088=>1,2875314476=>1,2875314486=>1,2875314859=>1,2875314806=>1,2875314872=>1,2875314884=>1,2875314978=>1,2875314972=>1,2875314803=>1,2875314727=>1,2875314610=>1,2875314538=>1,2875314631=>1,2875314696=>1,2875314721=>1,2875314719=>1,2875313943=>1,2875313941=>1,2875313394=>1,2875313352=>1,2875313417=>1,2875313446=>1,2875313510=>1,2875313473=>1,2875313330=>1,2875313289=>1,2875313140=>1,2875313116=>1,2875313169=>1,2875313248=>1,2875313259=>1,2875313255=>1,2875313511=>1,2875313542=>1,2875313737=>1,2875313718=>1,2875313778=>1,2875313795=>1,2875313899=>1,2875313855=>1,2875313632=>1,2875313617=>1,2875313550=>1,2875313547=>1,2875313552=>1,2875313562=>1,2875313566=>1,2875314987=>1,2875315029=>1,2875315903=>1,2875315879=>1,2875315930=>1,2875315936=>1,2875316005=>1,2875315998=>1,2875315866=>1,2875315824=>1,2875315737=>1,2875315732=>1,2875315752=>1,2875315753=>1,2875315812=>1,2875315767=>1,2875316008=>1,2875316017=>1,2875316150=>1,2875316139=>1,2875316159=>1,2875316215=>1,2875316233=>1,2875316219=>1,2875316131=>1,2875316130=>1,2875316042=>1,2875316029=>1,2875316061=>1,2875316085=>1,2875316117=>1,2875315731=>1,2875315715=>1,2875315258=>1,2875315249=>1,2875315268=>1,2875315273=>1,2875315351=>1,2875315296=>1,2875315244=>1,2875315166=>1,2875315067=>1,2875315049=>1,2875315075=>1,2875315080=>1,2875315147=>1,2875315129=>1,2875315370=>1,2875315371=>1,2875315651=>1,2875315641=>1,2875315652=>1,2875315686=>1,2875315709=>1,2875315693=>1,2875315640=>1,2875315616=>1,2875315497=>1,2875315394=>1,2875315579=>1,2875315607=>1,2875315610=>1,2875319099=>1,2875319159=>1,2902719277=>1,2902709729=>1,2903001529=>1,2903036746=>1,2903133825=>1,2903090749=>1,2901864892=>1,2901835453=>1,2901793669=>1,2901791177=>1,2901815134=>1,2901815151=>1,2901833438=>1,2901815265=>1,2903178521=>1,2903216053=>1,2903599996=>1,2903535678=>1,2903709627=>1,2904099035=>1,2904179459=>1,2904160852=>1,2903464534=>1,2903425713=>1,2903311228=>1,2903231764=>1,2903340849=>1,2903346460=>1,2903420387=>1,2903360709=>1,2901769824=>1,2901769798=>1,2892187941=>1,2892187930=>1,2892187946=>1,2892303307=>1,2892329898=>1,2892310770=>1,2892187927=>1,2892187923=>1,2892049487=>1,2892048770=>1,2892049846=>1,2892064559=>1,2892187918=>1,2892187916=>1,2892894868=>1,2892894902=>1,2901745850=>1,2901745849=>1,2901751848=>1,2901752779=>1,2901769746=>1,2901762826=>1,2901744950=>1,2901743844=>1,2893041931=>1,2893040513=>1,2894036150=>1,2901620456=>1,2901742701=>1,2904201363=>1,2904218203=>1,2908288779=>1,2908268906=>1,2912965466=>1,2912990397=>1,2913070836=>1,2913000169=>1,2908253601=>1,2908023118=>1,2907542386=>1,2907313570=>1,2907727575=>1,2907728288=>1,2907976010=>1,2907817635=>1,2913077949=>1,2913242051=>1,2913454187=>1,2913429705=>1,2913467893=>1,2913880144=>1,2875313075=>1,2914073715=>1,2913428228=>1,2913384433=>1,2913262586=>1,2913259189=>1,2913270106=>1,2913333401=>1,2913336811=>1,2907195214=>1,2907148629=>1,2905456445=>1,2905453481=>1,2905831040=>1,2905833555=>1,2905865877=>1,2905858749=>1,2905453174=>1,2905387761=>1,2904335389=>1,2904332743=>1,2904896050=>1,2905005597=>1,2905357002=>1,2905044263=>1,2905927744=>1,2906051097=>1,2906523870=>1,2906437645=>1,2906821260=>1,2906854462=>1,2906962346=>1,2906887224=>1,2906260757=>1,2906240454=>1,2906108314=>1,2906054114=>1,2906108318=>1,2906126166=>1,2906210955=>1,2892047125=>1,2891804618=>1,2875324966=>1,2875324938=>1,2875324975=>1,2875325014=>1,2875325064=>1,2875325018=>1,2875320820=>1,2875320799=>1,2875320666=>1,2875320626=>1,2875320671=>1,2875320713=>1,2875320744=>1,2875320740=>1,2875325072=>1,2875325212=>1,2875325611=>1,2875325602=>1,2875325620=>1,2875325629=>1,2875325729=>1,2875325711=>1,2875325526=>1,2875325523=>1,2875325273=>1,2875325269=>1,2875325397=>1,2875325433=>1,2875325519=>1,2875325446=>1,2875320618=>1,2875320608=>1,2875319666=>1,2875319637=>1,2875319689=>1,2875319726=>1,2875319973=>1,2875319815=>1,2875319629=>1,2875319592=>1,2875319177=>1,2875319167=>1,2875319261=>1,2875319472=>1,2875319516=>1,2875319508=>1,2875320058=>1,2875320095=>1,2875320441=>1,2875320393=>1,2875320480=>1,2875320488=>1,2875320566=>1,2875320510=>1,2875320391=>1,2875320386=>1,2875320223=>1,2875320158=>1,2875320246=>1,2875320322=>1,2875320380=>1,2875325763=>1,2875325836=>1,2890784083=>1,2890592666=>1,2890784087=>1,2890784090=>1,2890784094=>1,2890784092=>1,2886314482=>1,2885943088=>1,2876552054=>1,2875514106=>1,2882970982=>1,2883364392=>1,2884149543=>1,2883450420=>1,2891029011=>1,2891099829=>1,2891389094=>1,2891386609=>1,2891390573=>1,2891439581=>1,2891600179=>1,2891488882=>1,2891386454=>1,2891383612=>1,2891102538=>1,2891100970=>1,2891103117=>1,2891354894=>1,2891355146=>1,2875514090=>1,2875514037=>1,2875488850=>1,2875488848=>1,2875488864=>1,2875488879=>1,2875488893=>1,2875488887=>1,2875488840=>1,2875488803=>1,2875325924=>1,2875325892=>1,2875325943=>1,2875325946=>1,2875488792=>1,2875488776=>1,2875488895=>1,2875488901=>1,2875488999=>1,2875488989=>1,2875513860=>1,2875513880=>1,2875514032=>1,2875513967=>1,2875488981=>1,2875488980=>1,2875488948=>1,2875488939=>1,2875488961=>1,2875488967=>1,2875488973=>1,2914851126=>1,);?>
1
+ <?php return array(2975612090=>2975612091,2975152966=>2975152967,2971928678=>2971928679,2953470920=>2953470929,2947982792=>2947982793,2974406403=>1,2974453107=>1,2974453695=>1,2974406308=>1,2974446990=>1,2974381950=>1,2974381699=>1,2974381313=>1,2974381815=>1,2974381844=>1,2974381939=>1,2974382052=>1,2974455432=>1,2974517834=>1,2974514484=>1,2974513804=>1,2974523433=>1,2974538735=>1,2974542684=>1,2974542661=>1,2974512255=>1,2974500353=>1,2974457710=>1,2974381193=>1,2974464496=>1,2974464621=>1,2974486621=>1,2974483210=>1,2974455107=>1,2974380573=>1,2974151368=>1,2974144453=>1,2974152480=>1,2974160796=>1,2974244172=>1,2974191244=>1,2974139140=>1,2974136983=>1,2973998082=>1,2973997322=>1,2974012275=>1,2974102720=>1,2974121917=>1,2974104946=>1,2974244320=>1,2974310401=>1,2974369159=>1,2974330208=>1,2974380507=>1,2974380523=>1,2974380742=>1,2974542779=>1,2974330117=>1,2974329952=>1,2974310489=>1,2974310481=>1,2974311441=>1,2974329905=>1,2974329919=>1,2974380770=>1,2974542853=>1,2975288321=>1,2975287297=>1,2975289189=>1,2975292089=>1,2975323557=>1,2975323492=>1,2975279614=>1,2975279121=>1,2975256095=>1,2975255097=>1,2975256473=>1,2975261377=>1,2975279113=>1,2975272257=>1,2975323584=>1,2975323607=>1,2975537728=>1,2975537688=>1,2975537736=>1,2975537878=>1,2975537955=>1,2975537917=>1,2975537683=>1,2975537117=>1,2975330786=>1,2975330654=>1,2975331076=>1,2975331430=>1,2975413689=>1,2975254730=>1,2975235594=>1,2975133537=>1,2975083170=>1,2975133553=>1,2975139723=>1,2975152818=>1,2975152768=>1,2975083021=>1,2974931422=>1,2974542865=>1,2973960038=>1,2974542929=>1,2974542933=>1,2974910378=>1,2974820779=>1,2975152961=>1,2975152971=>1,2975209628=>1,2975198177=>1,2975209666=>1,2975219858=>1,2975223630=>1,2975219862=>1,2975178596=>1,2975163107=>1,2975153059=>1,2975153057=>1,2975153070=>1,2975161480=>1,2975163086=>1,2974542838=>1,2973950585=>1,2972098157=>1,2972098114=>1,2972098169=>1,2972110609=>1,2972154810=>1,2972149641=>1,2972098066=>1,2972097833=>1,2972097472=>1,2972097374=>1,2972097521=>1,2972097697=>1,2972097782=>1,2972097726=>1,2972155050=>1,2972155054=>1,2972155523=>1,2972155503=>1,2972155525=>1,2972155537=>1,2972155554=>1,2972155544=>1,2972155477=>1,2972155474=>1,2972155211=>1,2972155106=>1,2972155231=>1,2972155259=>1,2972155461=>1,2972155285=>1,2972097276=>1,2972097251=>1,2971801109=>1,2971119314=>1,2971808246=>1,2971892249=>1,2971938078=>1,2971935498=>1,2971116082=>1,2971113036=>1,2971001733=>1,2970968595=>1,2971037553=>1,2971040762=>1,2971098905=>1,2971043081=>1,2971953552=>1,2971959556=>1,2972037346=>1,2972036030=>1,2972088553=>1,2972097047=>1,2972097210=>1,2972097120=>1,2972035569=>1,2972035335=>1,2971988079=>1,2971988019=>1,2972029965=>1,2972030295=>1,2972033164=>1,2972155559=>1,2972155592=>1,2973133510=>1,2973133465=>1,2973143955=>1,2973146055=>1,2973208288=>1,2973208241=>1,2973123854=>1,2973055266=>1,2972617783=>1,2972501172=>1,2972618368=>1,2973022179=>1,2973036554=>1,2973029727=>1,2973209170=>1,2973209207=>1,2973923691=>1,2973922509=>1,2973931674=>1,2973942290=>1,2975537970=>1,2973948126=>1,2973919650=>1,2973910827=>1,2973236932=>1,2973236548=>1,2973267001=>1,2973853823=>1,2973883304=>1,2972499182=>1,2972498981=>1,2972170813=>1,2972170811=>1,2972172365=>1,2972236944=>1,2972337803=>1,2972335465=>1,2972167239=>1,2972167227=>1,2972155630=>1,2972155618=>1,2972160389=>1,2972164166=>1,2972167208=>1,2972165201=>1,2972389393=>1,2972391979=>1,2972444738=>1,2972439596=>1,2972447595=>1,2972462895=>1,2972490682=>1,2972485018=>1,2972428323=>1,2972422713=>1,2972403963=>1,2972396218=>1,2972412027=>1,2972412029=>1,2972415833=>1,2973955077=>1,2975538071=>1,2978528013=>1,2978473154=>1,2978537489=>1,2978568782=>1,2978880373=>1,2978880260=>1,2978472629=>1,2978471386=>1,2978418043=>1,2978404325=>1,2978422335=>1,2978427927=>1,2978460533=>1,2978428037=>1,2978895569=>1,2978966532=>1,2979682414=>1,2979573389=>1,2979695558=>1,2979719761=>1,2979746535=>1,2979735139=>1,2979573096=>1,2979572163=>1,2979547977=>1,2979538777=>1,2979561090=>1,2979570917=>1,2979571851=>1,2979571060=>1,2978404102=>1,2978392584=>1,2978101954=>1,2978099528=>1,2978102082=>1,2978157045=>1,2978160197=>1,2978158562=>1,2978087683=>1,2978076623=>1,2978033395=>1,2978033167=>1,2978033488=>1,2978044198=>1,2978050322=>1,2978044298=>1,2978160233=>1,2978160249=>1,2978327908=>1,2978327187=>1,2978328736=>1,2978332208=>1,2978387049=>1,2978365455=>1,2978165498=>1,2978165492=>1,2978165347=>1,2978165309=>1,2978165407=>1,2978165457=>1,2978165461=>1,2979755555=>1,2979755846=>1,2982016117=>1,2982015139=>1,2982035709=>1,2982072586=>1,2982167107=>1,2982155943=>1,2981748365=>1,2981745481=>1,2981674126=>1,2981664156=>1,2981676677=>1,2981702118=>1,2981745389=>1,2981726852=>1,2982216930=>1,2982265993=>1,2982961125=>1,2982736802=>1,2982982960=>1,2982982963=>1,2982983537=>1,2982983427=>1,2982701577=>1,2982700601=>1,2982693705=>1,2982326287=>1,2982693755=>1,2982695258=>1,2982695660=>1,2981664151=>1,2981663868=>1,2979790379=>1,2979790286=>1,2979790489=>1,2979790576=>1,2979953073=>1,2979950638=>1,2979790178=>1,2979790120=>1,2979757022=>1,2979756689=>1,2979757306=>1,2979790043=>1,2979790099=>1,2979790073=>1,2979963379=>1,2979988017=>1,2981585910=>1,2981497350=>1,2981628027=>1,2981661757=>1,2981663507=>1,2981663070=>1,2981430228=>1,2981364772=>1,2980025347=>1,2979996135=>1,2980030809=>1,2980044552=>1,2981185394=>1,2978033033=>1,2978032966=>1,2976094540=>1,2976089761=>1,2976094931=>1,2976095984=>1,2976098199=>1,2976098160=>1,2976088634=>1,2976079381=>1,2976065955=>1,2976060897=>1,2976065967=>1,2976076591=>1,2976079009=>1,2976077082=>1,2976099489=>1,2976099610=>1,2976234447=>1,2976232873=>1,2976350476=>1,2976352843=>1,2976434184=>1,2976400817=>1,2976228640=>1,2976224428=>1,2976127065=>1,2976116408=>1,2976141316=>1,2976184631=>1,2976219595=>1,2976060521=>1,2976060323=>1,2975605844=>1,2975604800=>1,2975605879=>1,2975606686=>1,2975607446=>1,2975606734=>1,2975580302=>1,2975576934=>1,2975538099=>1,2970948672=>1,2975538215=>1,2975538308=>1,2975539010=>1,2975538944=>1,2975610220=>1,2975611885=>1,2976029310=>1,2976025720=>1,2976035360=>1,2976035787=>1,2976057928=>1,2976039561=>1,2975989654=>1,2975988172=>1,2975925905=>1,2975787118=>1,2975981416=>1,2975987884=>1,2975988008=>1,2976434188=>1,2976435204=>1,2978005126=>1,2978005118=>1,2978005314=>1,2978005362=>1,2978013186=>1,2978011543=>1,2978005105=>1,2978005081=>1,2977964571=>1,2977881909=>1,2977980446=>1,2977982568=>1,2978004873=>1,2977987237=>1,2978013193=>1,2978013197=>1,2978032366=>1,2978032346=>1,2978032392=>1,2978032420=>1,2978032470=>1,2978032446=>1,2978032265=>1,2978032244=>1,2978013633=>1,2978013438=>1,2978014145=>1,2978024483=>1,2978032237=>1,2977845747=>1,2977845554=>1,2976492660=>1,2976490210=>1,2976492677=>1,2976492731=>1,2976499526=>1,2976495428=>1,2976445930=>1,2976445929=>1,2976435718=>1,2976435717=>1,2976436081=>1,2976436196=>1,2976436207=>1,2976436199=>1,2976604661=>1,2976606360=>1,2977735029=>1,2977719873=>1,2977751409=>1,2977759569=>1,2977794988=>1,2977761434=>1,2977719733=>1,2977719525=>1,2976643716=>1,2976635313=>1,2977713930=>1,2977719320=>1,2977719469=>1,2975537990=>1,2970946813=>1,2953474258=>1,2953472948=>1,2953478980=>1,2953478984=>1,2953480663=>1,2953480600=>1,2953472243=>1,2953472240=>1,2953470925=>1,2953470924=>1,2953470926=>1,2953470927=>1,2953470929=>1,2953470928=>1,2953483516=>1,2953495777=>1,2954591132=>1,2954235524=>1,2954637574=>1,2954822555=>1,2954828863=>1,2954827616=>1,2954160742=>1,2954151105=>1,2953608646=>1,2953510385=>1,2953721308=>1,2953787474=>1,2954146544=>1,2953809390=>1,2953470923=>1,2953470922=>1,2953414042=>1,2953412042=>1,2953414285=>1,2953415172=>1,2953416656=>1,2953415788=>1,2953410471=>1,2953409206=>1,2953401831=>1,2953401741=>1,2953403095=>1,2953405318=>1,2953408138=>1,2953406216=>1,2953417154=>1,2953417685=>1,2953443105=>1,2953443093=>1,2953455858=>1,2953456015=>1,2953470921=>1,2953456441=>1,2953439348=>1,2953429163=>1,2953417904=>1,2953417699=>1,2953420144=>1,2953425967=>1,2953428720=>1,2954830741=>1,2954833154=>1,2955513915=>1,2955443699=>1,2955638142=>1,2955746742=>1,2956269672=>1,2956269198=>1,2955325904=>1,2955323529=>1,2955267628=>1,2955267355=>1,2955280918=>1,2955285271=>1,2955320614=>1,2955316237=>1,2956322853=>1,2956519074=>1,2956619330=>1,2956618482=>1,2956620567=>1,2956621520=>1,2956622239=>1,2956621846=>1,2956618432=>1,2956618072=>1,2956520895=>1,2956520621=>1,2956614070=>1,2956615879=>1,2956616802=>1,2955261237=>1,2955225301=>1,2954865423=>1,2954865238=>1,2954867724=>1,2954867869=>1,2954870554=>1,2954868991=>1,2954864013=>1,2954852567=>1,2954846406=>1,2954833772=>1,2954847056=>1,2954848303=>1,2954851759=>1,2954849187=>1,2954870654=>1,2954872954=>1,2955193988=>1,2955178862=>1,2955194132=>1,2955201386=>1,2955221806=>1,2955219001=>1,2955173227=>1,2955162958=>1,2954886363=>1,2954876829=>1,2954920034=>1,2955103767=>1,2955158398=>1,2953401381=>1,2953399148=>1,2947833647=>1,2947830303=>1,2947833662=>1,2947833867=>1,2947834233=>1,2947834079=>1,2947829477=>1,2947827963=>1,2947827126=>1,2947827115=>1,2947827194=>1,2947827392=>1,2947827672=>1,2947827474=>1,2947834457=>1,2947836282=>1,2947839766=>1,2947839584=>1,2947839780=>1,2947839796=>1,2947852759=>1,2947841950=>1,2947838526=>1,2947838330=>1,2947837165=>1,2947836377=>1,2947837651=>1,2947837864=>1,2947838169=>1,2947837991=>1,2947826996=>1,2947826951=>1,2946518958=>1,2946517013=>1,2946529460=>1,2946898560=>1,2946982524=>1,2946923715=>1,2946513551=>1,2946513468=>1,2946205805=>1,2946195393=>1,2946206177=>1,2946211031=>1,2946397843=>1,2946215539=>1,2947037772=>1,2947065194=>1,2947826686=>1,2947826638=>1,2947826727=>1,2947826779=>1,2947826870=>1,2947826788=>1,2947826551=>1,2947826389=>1,2947400896=>1,2947347490=>1,2947519738=>1,2947825777=>1,2947826305=>1,2947852859=>1,2947853069=>1,2947985539=>1,2947983023=>1,2947989896=>1,2948084064=>1,2948130994=>1,2948130058=>1,2947982797=>1,2947982305=>1,2947970206=>1,2947970121=>1,2947970245=>1,2947973243=>1,2947982168=>1,2947975468=>1,2948617739=>1,2949333362=>1,2953392880=>1,2953392759=>1,2953393460=>1,2953393581=>1,2953399083=>1,2953393806=>1,2953391482=>1,2953390874=>1,2953380307=>1,2949335099=>1,2953381236=>1,2953389606=>1,2953390042=>1,2947941140=>1,2947940919=>1,2947862541=>1,2947862282=>1,2947863030=>1,2947863167=>1,2947865389=>1,2947863168=>1,2947859138=>1,2947859109=>1,2947855974=>1,2947855774=>1,2947856514=>1,2947856655=>1,2947858813=>1,2947858480=>1,2947865406=>1,2947869238=>1,2947874352=>1,2947874156=>1,2947874370=>1,2947884250=>1,2947940554=>1,2947901779=>1,2947874074=>1,2947873108=>1,2947871510=>1,2947871095=>1,2947871818=>1,2947872033=>1,2947872103=>1,2956822530=>1,2956822604=>1,2965479912=>1,2965470273=>1,2965508088=>1,2965510355=>1,2965518045=>1,2965512722=>1,2965466487=>1,2965459831=>1,2965451805=>1,2965451569=>1,2965452048=>1,2965452406=>1,2965452462=>1,2965452418=>1,2965528966=>1,2965529282=>1,2965627380=>1,2965627042=>1,2965648152=>1,2965771864=>1,2965778554=>1,2965772085=>1,2965607257=>1,2965594278=>1,2965530445=>1,2965529911=>1,2965530656=>1,2965552440=>1,2965593672=>1,2965582667=>1,2965447628=>1,2965445245=>1,2961112075=>1,2961110107=>1,2961112076=>1,2961741097=>1,2962369979=>1,2961987022=>1,2961109553=>1,2961097780=>1,2961065869=>1,2961065077=>1,2961068042=>1,2961069258=>1,2961069488=>1,2961069487=>1,2962386070=>1,2962566483=>1,2965398134=>1,2965389218=>1,2965438676=>1,2965440039=>1,2965441061=>1,2965440674=>1,2965197257=>1,2964548281=>1,2962839973=>1,2962708713=>1,2963146055=>1,2963178508=>1,2963184504=>1,2965790569=>1,2965829235=>1,2970401870=>1,2970401613=>1,2970402166=>1,2970402492=>1,2970568846=>1,2970402522=>1,2970401270=>1,2970401057=>1,2970381034=>1,2970381011=>1,2970381047=>1,2970400878=>1,2970401032=>1,2970400892=>1,2970625410=>1,2970707260=>1,2970946649=>1,2970946645=>1,2970946797=>1,2970946801=>1,2946062975=>1,2970946809=>1,2970946641=>1,2970943778=>1,2970752747=>1,2970749718=>1,2970835874=>1,2970854474=>1,2970873411=>1,2970354384=>1,2970347878=>1,2967285301=>1,2966881661=>1,2967292184=>1,2968065196=>1,2968355692=>1,2968139847=>1,2966792487=>1,2966704835=>1,2965874155=>1,2965830491=>1,2966505193=>1,2966684993=>1,2966702550=>1,2966701654=>1,2968564447=>1,2968623117=>1,2970300325=>1,2970265610=>1,2970300326=>1,2970323082=>1,2970326605=>1,2970324538=>1,2970260649=>1,2970133314=>1,2969699909=>1,2969587976=>1,2969951088=>1,2970006818=>1,2970051039=>1,2960997047=>1,2960994279=>1,2959469715=>1,2959469684=>1,2959469749=>1,2959469784=>1,2959469848=>1,2959469811=>1,2959469658=>1,2959469643=>1,2959466996=>1,2959466977=>1,2959469569=>1,2959469597=>1,2959469634=>1,2959469606=>1,2959469908=>1,2959469946=>1,2959557018=>1,2959531529=>1,2959606198=>1,2959608078=>1,2959653687=>1,2959631284=>1,2959476408=>1,2959475417=>1,2959469991=>1,2959469964=>1,2959470034=>1,2959470059=>1,2959470498=>1,2959466962=>1,2959466871=>1,2957866136=>1,2957864130=>1,2958435953=>1,2959121050=>1,2959233298=>1,2959171609=>1,2957860121=>1,2957854634=>1,2957061001=>1,2956898972=>1,2957181394=>1,2957224146=>1,2957630097=>1,2957224407=>1,2959237381=>1,2959245737=>1,2959320674=>1,2959316453=>1,2959321155=>1,2959323092=>1,2959348834=>1,2959326920=>1,2959316249=>1,2959316056=>1,2959248202=>1,2959246835=>1,2959248678=>1,2959249438=>1,2959295239=>1,2959747242=>1,2959774074=>1,2960801318=>1,2960801282=>1,2960801352=>1,2960801409=>1,2960851496=>1,2960813298=>1,2960801151=>1,2960783450=>1,2960684859=>1,2960612839=>1,2960722708=>1,2960739661=>1,2960781332=>1,2960740659=>1,2960852569=>1,2960852727=>1,2960991146=>1,2960990817=>1,2960991265=>1,2960991421=>1,2960994254=>1,2960991739=>1,2960990482=>1,2960990383=>1,2960852933=>1,2960852829=>1,2960858424=>1,2960883982=>1,2960907324=>1,2960593118=>1,2960585238=>1,2959991817=>1,2959991054=>1,2959994892=>1,2959998129=>1,2960188038=>1,2960053220=>1,2959982521=>1,2959981733=>1,2959853173=>1,2959783421=>1,2959864462=>1,2959927406=>1,2959979715=>1,2959954826=>1,2960188442=>1,2960293935=>1,2960362454=>1,2960340874=>1,2960418853=>1,2960418865=>1,2960515643=>1,2960490192=>1,2960338903=>1,2960337927=>1,2960296874=>1,2960294005=>1,2960313628=>1,2960314503=>1,2960324655=>1,2970948621=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-33.php CHANGED
@@ -1 +1 @@
1
- <?php return array(2987399936=>2987400191,2977881909=>1,2977845747=>1,2977980446=>1,2977982568=>1,2977987237=>1,2977984423=>1,2977845554=>1,2977794988=>1,2977719873=>1,2977719733=>1,2977735029=>1,2977748802=>1,2977759569=>1,2977761434=>1,2978004873=>1,2978013197=>1,2978013193=>1,2978013438=>1,2978013633=>1,2978024483=>1,2978014145=>1,2978013186=>1,2978011543=>1,2978005105=>1,2978005081=>1,2978005118=>1,2978005126=>1,2978005362=>1,2978005314=>1,2977719525=>1,2977719469=>1,2976445930=>1,2976436207=>1,2976486591=>1,2976486666=>1,2976486795=>1,2976486785=>1,2976436199=>1,2976436081=>1,2976434188=>1,2976434184=>1,2976434677=>1,2976435204=>1,2976435718=>1,2976435717=>1,2976486942=>1,2976492660=>1,2976643716=>1,2976635313=>1,2977707704=>1,2977713930=>1,2977719320=>1,2977713932=>1,2976608183=>1,2976608119=>1,2976492731=>1,2976492677=>1,2976495428=>1,2976499526=>1,2976606360=>1,2976604661=>1,2978032237=>1,2978032244=>1,2978160197=>1,2978158562=>1,2978160233=>1,2978160249=>1,2978165310=>1,2978165309=>1,2978157045=>1,2978102082=>1,2978061601=>1,2978050322=>1,2978076623=>1,2978087578=>1,2978101954=>1,2978087683=>1,2978165347=>1,2978165373=>1,2978328736=>1,2978327908=>1,2978332208=>1,2978336594=>1,2978387049=>1,2978365455=>1,2978327187=>1,2978165498=>1,2978165431=>1,2978165407=>1,2978165457=>1,2978165461=>1,2978165492=>1,2978048830=>1,2978044298=>1,2978032446=>1,2978032420=>1,2978032462=>1,2978032466=>1,2978032604=>1,2978032470=>1,2978032415=>1,2978032392=>1,2978032294=>1,2978032265=>1,2978032296=>1,2978032346=>1,2978032366=>1,2978032363=>1,2978032605=>1,2978032735=>1,2978033395=>1,2978033227=>1,2978033412=>1,2978033488=>1,2978044198=>1,2978033520=>1,2978033033=>1,2978033014=>1,2978032867=>1,2978032758=>1,2978032868=>1,2978032958=>1,2978032966=>1,2976400817=>1,2976234447=>1,2975331430=>1,2975331076=>1,2975413689=>1,2975537117=>1,2975537728=>1,2975537688=>1,2975331075=>1,2975330786=>1,2975323584=>1,2975323557=>1,2975323607=>1,2975323868=>1,2975330654=>1,2975324033=>1,2975537770=>1,2975537797=>1,2975538215=>1,2975538071=>1,2975538235=>1,2975538308=>1,2975538944=>1,2975538369=>1,2975538013=>1,2975537970=>1,2975537878=>1,2975537821=>1,2975537932=>1,2975537943=>1,2975537965=>1,2975537955=>1,2975323519=>1,2975323492=>1,2975256264=>1,2975256251=>1,2975256295=>1,2975256326=>1,2975256473=>1,2975256333=>1,2975256095=>1,2975255217=>1,2975219862=>1,2975219858=>1,2975223630=>1,2975235594=>1,2975255097=>1,2975254730=>1,2975256492=>1,2975256501=>1,2975288321=>1,2975287297=>1,2975289189=>1,2975289338=>1,2975323407=>1,2975292089=>1,2975279614=>1,2975279121=>1,2975261377=>1,2975256506=>1,2975272257=>1,2975279106=>1,2975279113=>1,2975539010=>1,2975550674=>1,2976079009=>1,2976077082=>1,2976079381=>1,2976088634=>1,2976094540=>1,2976089761=>1,2976068564=>1,2976065967=>1,2976060323=>1,2976057928=>1,2976060501=>1,2976060521=>1,2976065955=>1,2976060897=>1,2976094931=>1,2976095984=>1,2976219595=>1,2976184631=>1,2976224428=>1,2976228640=>1,2978392584=>1,2976232873=>1,2976141316=>1,2976127065=>1,2976098199=>1,2976098160=>1,2976099489=>1,2976099610=>1,2976116408=>1,2976039561=>1,2976035787=>1,2975607446=>1,2975606813=>1,2975607541=>1,2975609684=>1,2975610891=>1,2975610220=>1,2975606734=>1,2975606686=>1,2975580302=>1,2975576934=>1,2975581090=>1,2975604800=>1,2975606142=>1,2975605844=>1,2975611885=>1,2975612090=>1,2975988573=>1,2975988172=>1,2975989654=>1,2976025737=>1,2976035360=>1,2976029310=>1,2975988008=>1,2975987884=>1,2975787118=>1,2975612091=>1,2975925905=>1,2975979710=>1,2975980861=>1,2976352843=>1,2978404325=>1,2985157603=>1,2984905930=>1,2985159720=>1,2985196123=>1,2985409980=>1,2985249798=>1,2984237660=>1,2984228821=>1,2984223524=>1,2984223351=>1,2984223679=>1,2984223834=>1,2984228796=>1,2984224257=>1,2985736446=>1,2986362686=>1,2986805334=>1,2986804878=>1,2986805576=>1,2986805783=>1,2986829218=>1,2986806847=>1,2986759268=>1,2986758247=>1,2986546592=>1,2986363033=>1,2986667609=>1,2986692792=>1,2986758166=>1,2986719133=>1,2984208203=>1,2984197918=>1,2983010268=>1,2983009816=>1,2983041632=>1,2983041681=>1,2983056208=>1,2983049042=>1,2983009430=>1,2983009404=>1,2982982963=>1,2982982960=>1,2982983427=>1,2982983537=>1,2982985385=>1,2982983749=>1,2983075667=>1,2983101324=>1,2984029748=>1,2984024962=>1,2984030920=>1,2984032523=>1,2984190773=>1,2984190765=>1,2984019990=>1,2984018298=>1,2983130157=>1,2983121037=>1,2983158543=>1,2983161547=>1,2983195557=>1,2986829623=>1,2986838044=>1,2987535433=>1,2987532425=>1,2987545559=>1,2987614465=>1,2987616483=>1,2987614721=>1,2987530581=>1,2987530287=>1,2987503114=>1,2987503106=>1,2987503135=>1,2987503203=>1,2987528652=>1,2987504356=>1,2987669264=>1,2987669266=>1,2987999451=>1,2987878722=>1,2988023357=>1,2988081728=>1,2988082284=>1,2988082065=>1,2987842050=>1,2987824250=>1,2987722795=>1,2987693433=>1,2987744025=>1,2987745238=>1,2987749957=>1,2987502422=>1,2987502318=>1,2987194744=>1,2987194386=>1,2987194796=>1,2987195061=>1,2987196398=>1,2987196388=>1,2987112452=>1,2987020894=>1,2986839240=>1,2986838366=>1,2986885133=>1,2986979868=>1,2986999467=>1,2986998309=>1,2987416163=>1,2987446327=>1,2987502157=>1,2987448472=>1,2987502179=>1,2987502229=>1,2987502259=>1,2987502244=>1,2987446334=>1,2987446333=>1,2987446329=>1,2987446328=>1,2987446330=>1,2987446331=>1,2987446332=>1,2982961125=>1,2982736802=>1,2979573389=>1,2979573224=>1,2979682414=>1,2979695558=>1,2979735139=>1,2979719761=>1,2979573096=>1,2979572946=>1,2979571882=>1,2979571851=>1,2979571906=>1,2979572163=>1,2979572853=>1,2979572259=>1,2979746535=>1,2979755266=>1,2979790043=>1,2979789958=>1,2979790073=>1,2979790099=>1,2979790178=>1,2979790120=>1,2979789951=>1,2979757306=>1,2979755715=>1,2979755555=>1,2979755846=>1,2979756669=>1,2979757022=>1,2979756689=>1,2979571060=>1,2979570917=>1,2978477751=>1,2978472629=>1,2978528013=>1,2978537489=>1,2978786359=>1,2978568782=>1,2978471386=>1,2978460533=>1,2978412554=>1,2975209666=>1,2978418043=>1,2978422335=>1,2978428037=>1,2978427927=>1,2978880373=>1,2978895569=>1,2979561090=>1,2979547977=>1,2979569830=>1,2979569928=>1,2979570115=>1,2979569940=>1,2979540599=>1,2979539895=>1,2979538777=>1,2978966532=>1,2979538799=>1,2979539639=>1,2979539739=>1,2979790286=>1,2979790379=>1,2981746128=>1,2981745481=>1,2981748365=>1,2982015139=>1,2982035709=>1,2982016117=>1,2981745389=>1,2981745238=>1,2981674232=>1,2981674195=>1,2981674233=>1,2981676677=>1,2981726852=>1,2981702118=>1,2982072586=>1,2982167107=>1,2982695258=>1,2982693755=>1,2982695660=>1,2982700601=>1,2982736330=>1,2982701577=>1,2982693705=>1,2982351662=>1,2982265993=>1,2982216930=>1,2982316041=>1,2982326287=>1,2982343056=>1,2981674168=>1,2981674126=>1,2980030809=>1,2980025347=>1,2980044552=>1,2981185041=>1,2981366273=>1,2981364772=>1,2979977185=>1,2979963379=>1,2979790552=>1,2979790489=>1,2979790576=>1,2979811849=>1,2979953073=>1,2979950638=>1,2981430228=>1,2981497350=>1,2981664151=>1,2981663896=>1,2981664156=>1,2981664284=>1,2981674119=>1,2981664288=>1,2981663868=>1,2981663507=>1,2981611111=>1,2981585910=>1,2981628027=>1,2981661757=>1,2981663070=>1,2978404102=>1,2975209628=>1,2966684993=>1,2965830491=>1,2966701654=>1,2966702550=>1,2966784681=>1,2966704835=>1,2965829235=>1,2965790569=>1,2965627380=>1,2965612494=>1,2965648152=>1,2965771864=>1,2965781016=>1,2965778554=>1,2966792487=>1,2966881661=>1,2969699909=>1,2969587976=>1,2969874138=>1,2969951088=>1,2970133314=>1,2970051039=>1,2969273090=>1,2968623117=>1,2967292184=>1,2967285301=>1,2967417690=>1,2968065196=>1,2968355692=>1,2968139847=>1,2965594278=>1,2965582667=>1,2965451569=>1,2965448515=>1,2965452406=>1,2965452418=>1,2965459831=>1,2965452462=>1,2965447628=>1,2965446426=>1,2965441959=>1,2965440674=>1,2965444688=>1,2965444863=>1,2965445245=>1,2965445034=>1,2965466487=>1,2965470273=>1,2965529911=>1,2965529282=>1,2965530445=>1,2965530656=>1,2965582013=>1,2965552440=>1,2965528966=>1,2965528658=>1,2965510355=>1,2965479912=>1,2965512722=>1,2965512850=>1,2965518045=>1,2970260649=>1,2970265610=>1,2971037553=>1,2971001733=>1,2971040762=>1,2971043081=>1,2971098905=>1,2971057886=>1,2970968595=>1,2970948691=>1,2970946801=>1,2970946797=>1,2970946809=>1,2970946813=>1,2970948672=>1,2970948621=>1,2971112002=>1,2971113036=>1,2971959556=>1,2971953552=>1,2971988019=>1,2971988079=>1,2972029965=>1,2971988534=>1,2971938078=>1,2971935498=>1,2971119314=>1,2971116082=>1,2971801109=>1,2971808246=>1,2971892249=>1,2970946649=>1,2970946645=>1,2970400878=>1,2970381047=>1,2970400892=>1,2970401057=>1,2970401870=>1,2970401613=>1,2970381011=>1,2970354384=>1,2970300326=>1,2970300325=>1,2970323082=>1,2970324538=>1,2970347878=>1,2970326605=>1,2970402166=>1,2970402492=>1,2970835874=>1,2970826422=>1,2970854474=>1,2970873411=>1,2970946641=>1,2970943778=>1,2970797213=>1,2970752747=>1,2970568846=>1,2970402519=>1,2970657367=>1,2970707260=>1,2970749718=>1,2965440039=>1,2965438676=>1,2959783421=>1,2959774074=>1,2959853173=>1,2959864462=>1,2959954826=>1,2959927406=>1,2959747242=>1,2959653687=>1,2959476408=>1,2959475417=>1,2959557018=>1,2959606198=>1,2959631284=>1,2959608078=>1,2959979715=>1,2959981733=>1,2960294005=>1,2960293935=>1,2960296874=>1,2960313628=>1,2960324655=>1,2960314503=>1,2960193815=>1,2960053220=>1,2959991054=>1,2959982521=>1,2959991817=>1,2959994892=>1,2959998884=>1,2959998129=>1,2959474437=>1,2959470498=>1,2959320002=>1,2959316453=>1,2959321840=>1,2959323306=>1,2959466871=>1,2959466824=>1,2959295239=>1,2959249438=>1,2959237381=>1,2959233298=>1,2959245737=>1,2959246835=>1,2959248678=>1,2959248202=>1,2959466924=>1,2959466962=>1,2959469749=>1,2959469684=>1,2959469811=>1,2959469848=>1,2959470059=>1,2959469908=>1,2959469675=>1,2959469658=>1,2959466996=>1,2959466977=>1,2959469569=>1,2959469634=>1,2959469643=>1,2960337927=>1,2960338903=>1,2961065077=>1,2960997047=>1,2961065869=>1,2961068042=>1,2961069487=>1,2961069258=>1,2960994279=>1,2960994254=>1,2960990482=>1,2960990383=>1,2960990694=>1,2960990817=>1,2960991421=>1,2960991265=>1,2961069488=>1,2961097780=>1,2963178508=>1,2962566483=>1,2963184504=>1,2964548281=>1,2965398134=>1,2965389218=>1,2962386070=>1,2962369979=>1,2961110107=>1,2961109553=>1,2961112075=>1,2961112076=>1,2961741097=>1,2960907324=>1,2960883982=>1,2960593118=>1,2960585238=>1,2960612839=>1,2960684859=>1,2960739661=>1,2960722708=>1,2960515643=>1,2960490192=>1,2960343095=>1,2960340874=>1,2960344025=>1,2960362454=>1,2960418865=>1,2960418853=>1,2960740659=>1,2960781332=>1,2960852609=>1,2960852569=>1,2960852727=>1,2960852829=>1,2960858424=>1,2960852933=>1,2960813298=>1,2960801409=>1,2960801151=>1,2960783450=>1,2960801282=>1,2960801318=>1,2960801352=>1,2972030130=>1,2972030295=>1,2974381193=>1,2974381085=>1,2974381313=>1,2974381815=>1,2974381939=>1,2974381844=>1,2974380770=>1,2974380742=>1,2974380306=>1,2974369159=>1,2974380507=>1,2974380523=>1,2974380573=>1,2974380544=>1,2974381950=>1,2974381970=>1,2974446990=>1,2974406403=>1,2974453107=>1,2974453593=>1,2974455107=>1,2974453695=>1,2974406332=>1,2974406317=>1,2974382052=>1,2974382038=>1,2974404755=>1,2974404817=>1,2974406308=>1,2974406172=>1,2974330275=>1,2974330208=>1,2974139140=>1,2974136983=>1,2974144453=>1,2974151368=>1,2974160796=>1,2974152480=>1,2974121917=>1,2974104946=>1,2973960038=>1,2973955077=>1,2973997322=>1,2973998082=>1,2974102720=>1,2974012275=>1,2974191244=>1,2974243986=>1,2974329686=>1,2974315505=>1,2974329858=>1,2974329919=>1,2974330117=>1,2974329952=>1,2974311441=>1,2974310489=>1,2974244172=>1,2974244006=>1,2974244320=>1,2974310401=>1,2974310481=>1,2974455432=>1,2974457710=>1,2975152668=>1,2975152650=>1,2975152760=>1,2975152768=>1,2975152835=>1,2975152818=>1,2975152580=>1,2975152545=>1,2975133546=>1,2975133537=>1,2975133553=>1,2975139723=>1,2975152481=>1,2975152420=>1,2975152961=>1,2975152966=>1,2975161480=>1,2975153082=>1,2975163086=>1,2975183877=>1,2975198177=>1,2975183915=>1,2975153070=>1,2975153059=>1,2975152971=>1,2975152967=>1,2975153032=>1,2975153052=>1,2975153057=>1,2975114386=>1,2975101266=>1,2974514484=>1,2974513804=>1,2974517834=>1,2974523433=>1,2974542661=>1,2974538735=>1,2974513497=>1,2974512255=>1,2974464496=>1,2974464475=>1,2974464621=>1,2974483210=>1,2974500353=>1,2974486621=>1,2974542684=>1,2974542779=>1,2975076770=>1,2974931422=>1,2975082694=>1,2975083021=>1,2975083170=>1,2975083031=>1,2974910378=>1,2974820779=>1,2974542853=>1,2974542838=>1,2974542865=>1,2974542929=>1,2974542933=>1,2973948126=>1,2973942290=>1,2972155043=>1,2972154810=>1,2972155050=>1,2972155054=>1,2972155211=>1,2972155106=>1,2972154465=>1,2972154203=>1,2972098169=>1,2972098157=>1,2972110609=>1,2972121151=>1,2972149641=>1,2972121258=>1,2972155231=>1,2972155259=>1,2972155554=>1,2972155544=>1,2972155559=>1,2972155592=>1,2972155630=>1,2972155618=>1,2972155537=>1,2972155525=>1,2972155461=>1,2972155285=>1,2972155474=>1,2972155477=>1,2972155523=>1,2972155503=>1,2972098114=>1,2972098111=>1,2972036030=>1,2972035685=>1,2972036365=>1,2972036856=>1,2972042713=>1,2972037346=>1,2972035569=>1,2972035445=>1,2972031993=>1,2972030718=>1,2972033164=>1,2972035149=>1,2972035374=>1,2972035335=>1,2972053716=>1,2972069333=>1,2972097726=>1,2972097697=>1,2972097776=>1,2972097782=>1,2972098066=>1,2972097833=>1,2972097521=>1,2972097472=>1,2972097047=>1,2972088553=>1,2972097120=>1,2972097276=>1,2972097374=>1,2972155731=>1,2972160389=>1,2973143955=>1,2973133510=>1,2973146055=>1,2973165336=>1,2973208241=>1,2973208237=>1,2973133465=>1,2973123854=>1,2973022179=>1,2972618368=>1,2973029727=>1,2973036554=>1,2973055266=>1,2973042402=>1,2973208288=>1,2973209170=>1,2973910827=>1,2973883304=>1,2973919650=>1,2973922509=>1,2973931674=>1,2973923691=>1,2973875826=>1,2973853823=>1,2973236548=>1,2973209207=>1,2973236932=>1,2973267001=>1,2973359793=>1,2972617783=>1,2972499182=>1,2972337071=>1,2972335465=>1,2972337803=>1,2972342066=>1,2972391979=>1,2972389393=>1,2972236944=>1,2972175618=>1,2972165201=>1,2972164166=>1,2972167208=>1,2972170811=>1,2972172365=>1,2972170813=>1,2972396218=>1,2972398297=>1,2972447595=>1,2972444738=>1,2972462895=>1,2972485018=>1,2972498981=>1,2972490682=>1,2972439596=>1,2972428323=>1,2972412027=>1,2972403963=>1,2972412029=>1,2972415833=>1,2972422713=>1,2959171609=>1,);?>
1
+ <?php return array(3031591090=>3031591091,3015658618=>3015658619,3011489746=>3011489747,3001996778=>3001996779,2996642858=>2996642859,2988492292=>2988492293,2988488032=>2988488035,2987446328=>2987446333,2987399936=>2987400191,3009470428=>1,3009478428=>1,3007115298=>1,3009484542=>1,3009539082=>1,3009489078=>1,3006845721=>1,3006723649=>1,3006719942=>1,3006477424=>1,3006720669=>1,3006723367=>1,3009541129=>1,3006725598=>1,3010087505=>1,3010169158=>1,3010159226=>1,3010207745=>1,3010207777=>1,3010207825=>1,3010109110=>1,3010090635=>1,3006365626=>1,3015120916=>1,3010087977=>1,3010088622=>1,3010088911=>1,3010003247=>1,3006364076=>1,3003094215=>1,3003030286=>1,3003094216=>1,3003094222=>1,3015128388=>1,3003205719=>1,3003029805=>1,3003027218=>1,3003023634=>1,3003004773=>1,3003025286=>1,3003025580=>1,3003025669=>1,3004780042=>1,3004899746=>1,3005988046=>1,3005982990=>1,3005988546=>1,3006330897=>1,3010207841=>1,3006339237=>1,3005982978=>1,3005977318=>1,3005364901=>1,3005233870=>1,3005438761=>1,3005547072=>1,3005976482=>1,3006364458=>1,3010207889=>1,3014669006=>1,3014668767=>1,3015089815=>1,3014671312=>1,3014796993=>1,3014796827=>1,3014662787=>1,3014160230=>1,3015120341=>1,3011487242=>1,3011509955=>1,3013292309=>1,3013358854=>1,3013298514=>1,3014803235=>1,3014807562=>1,3015029380=>1,3014938425=>1,3015036917=>1,3015048547=>1,3015087259=>1,3015080175=>1,3014938345=>1,3014937515=>1,3014824138=>1,3014807958=>1,3014888536=>1,3014935876=>1,3014936137=>1,3011479706=>1,3011479272=>1,3010214171=>1,3010214169=>1,3010214190=>1,3010244570=>1,3010447489=>1,3010262536=>1,3010209665=>1,3010209153=>1,3003004748=>1,3010208033=>1,3010208161=>1,3010208337=>1,3010209025=>1,3010208769=>1,3010452877=>1,3010455898=>1,3011479184=>1,3011479182=>1,3011479227=>1,3011479249=>1,3011479269=>1,3011479250=>1,3011479171=>1,3011456526=>1,3011162883=>1,3010458696=>1,3011328716=>1,3011357338=>1,3011411160=>1,3015089088=>1,3003000837=>1,3000453712=>1,3000451924=>1,3000458407=>1,3000479167=>1,3000564311=>1,3000552137=>1,3000388123=>1,3000386145=>1,3000288054=>1,3000219247=>1,3000289123=>1,3000312789=>1,3000381186=>1,3000354769=>1,3000594750=>1,3000612896=>1,3000731128=>1,3000728301=>1,3000733884=>1,3000740945=>1,3001741972=>1,3001628791=>1,3000719675=>1,3000697270=>1,3000649292=>1,3000613358=>1,3000660655=>1,3000696841=>1,3000696956=>1,3000696937=>1,3000184114=>1,3000159715=>1,2999847597=>1,2999829342=>1,2999950562=>1,3000001701=>1,3000002288=>1,3000002052=>1,2999807749=>1,2999801859=>1,2999651388=>1,2999639618=>1,2999674934=>1,2999759621=>1,2999771197=>1,2999765471=>1,3000003418=>1,3000003471=>1,3000054929=>1,3000054831=>1,3000054946=>1,3000054971=>1,3000118747=>1,3000111845=>1,3000054627=>1,3000054423=>1,3000004200=>1,3000004028=>1,3000004439=>1,3000033158=>1,3000053421=>1,3001761059=>1,3001764872=>1,3002981468=>1,3002976622=>1,3002988830=>1,3002990090=>1,3002991193=>1,3002990305=>1,3002976613=>1,3002908130=>1,3002866888=>1,3002866275=>1,3002883979=>1,3002884726=>1,3002904450=>1,3002896902=>1,3002992149=>1,3002993730=>1,3002999776=>1,3002998737=>1,3002999869=>1,3003000661=>1,3003001108=>1,3015201821=>1,3002998358=>1,3002997492=>1,3002994046=>1,3002994012=>1,3002995846=>1,3002996413=>1,3002996595=>1,3002852494=>1,3002848727=>1,3001996734=>1,3001996731=>1,3001996742=>1,3001996749=>1,3001996775=>1,3001996758=>1,3001996724=>1,3001996722=>1,3001866566=>1,3001861356=>1,3001952764=>1,3001972646=>1,3001996708=>1,3001996586=>1,3001999171=>1,3001999492=>1,3002625142=>1,3002065398=>1,3002678267=>1,3002828003=>1,3002848643=>1,3002829459=>1,3002002732=>1,3002002054=>1,3001999841=>1,3001999724=>1,3002000244=>1,3002000396=>1,3002001518=>1,3003001991=>1,3015252706=>1,3031943843=>1,3031943234=>1,3031944226=>1,3031944492=>1,3031945062=>1,3031944701=>1,3031941819=>1,3031937161=>1,3031933897=>1,3031933459=>1,3031933930=>1,3031933962=>1,3031934647=>1,3031934124=>1,3031945200=>1,3031950059=>1,3033891497=>1,3033881617=>1,3033986386=>1,3033986657=>1,3034054291=>1,3033986906=>1,3033849009=>1,3033775914=>1,3033714014=>1,3031982549=>1,3033764892=>1,3033770794=>1,3033772850=>1,3031932779=>1,3031932488=>1,3031921963=>1,3031920448=>1,3031922059=>1,3031922412=>1,3031922811=>1,3031922592=>1,3031919947=>1,3031918380=>1,3031909274=>1,3031906067=>1,3031909582=>1,3031912911=>1,3031918199=>1,3031912999=>1,3031923959=>1,3031924920=>1,3031930094=>1,3031929858=>1,3031930316=>1,3031930546=>1,3031931130=>1,3031930865=>1,3031929583=>1,3031929533=>1,3031925067=>1,3031924993=>1,3031925671=>1,3031926381=>1,3031929391=>1,3034092708=>1,3035120196=>1,3036294650=>1,3036291218=>1,3036295243=>1,3036295378=>1,3036297699=>1,3036297154=>1,3036283819=>1,3036283659=>1,3036148246=>1,3036140079=>1,3036178229=>1,3036209910=>1,3036221794=>1,3036220957=>1,3036297706=>1,3036298458=>1,3036316523=>1,3036308882=>1,3036316978=>1,3036320549=>1,3036321097=>1,3036320993=>1,3036308546=>1,3036307653=>1,3036302034=>1,3036301570=>1,3036302812=>1,3036305954=>1,3036306410=>1,3036092963=>1,3036091319=>1,3035759341=>1,3035735328=>1,3035778805=>1,3035835309=>1,3035882137=>1,3035848314=>1,3035734921=>1,3035732481=>1,3035694898=>1,3035333915=>1,3035701383=>1,3035701576=>1,3035726783=>1,3035705572=>1,3035894356=>1,3035904836=>1,3036061666=>1,3036057350=>1,3036065738=>1,3036067198=>1,3036087493=>1,3036074508=>1,3036046580=>1,3036004027=>1,3035907800=>1,3035906720=>1,3035965851=>1,3035978735=>1,3035991223=>1,3031899024=>1,3031896804=>1,3017745326=>1,3017696351=>1,3017777210=>1,3017777233=>1,3018358425=>1,3018327177=>1,3017496852=>1,3017458029=>1,3017183538=>1,3017111580=>1,3017243528=>1,3017308156=>1,3017431629=>1,3017321430=>1,3018422705=>1,3019640961=>1,3026161497=>1,3025989189=>1,3026292985=>1,3026311060=>1,3026861276=>1,3026761514=>1,3025652750=>1,3024915063=>1,3024683088=>1,3024599258=>1,3024914321=>1,3024914396=>1,3024914871=>1,3016993412=>1,3016984058=>1,3015337032=>1,3015276407=>1,3015342280=>1,3015351370=>1,3015384858=>1,3015363439=>1,3015272570=>1,3015265741=>1,3015241082=>1,3015206762=>1,2999616808=>1,3015261831=>1,3015265738=>1,3015262866=>1,3015407825=>1,3015407957=>1,3015699290=>1,3015699114=>1,3015700410=>1,3016148348=>1,3016932547=>1,3016879550=>1,3015658621=>1,3015621449=>1,3015535978=>1,3015438084=>1,3015557889=>1,3015559681=>1,3015614304=>1,3026891480=>1,3026894729=>1,3031368610=>1,3031367937=>1,3031372001=>1,3031372004=>1,3031540725=>1,3031428960=>1,3030979217=>1,3030976563=>1,3030574486=>1,3030487458=>1,3030795917=>1,3030816370=>1,3030921580=>1,3030918379=>1,3031676537=>1,3031696532=>1,3031710146=>1,3031709372=>1,3031711547=>1,3031711632=>1,3031727302=>1,3031711684=>1,3031709329=>1,3031709292=>1,3031708118=>1,3031699075=>1,3031708190=>1,3031708466=>1,3031708942=>1,3030109082=>1,3029948182=>1,3027575818=>1,3027521800=>1,3027626789=>1,3027817425=>1,3027862046=>1,3027861543=>1,3027521073=>1,3027413872=>1,3027090556=>1,3027087987=>1,3027123410=>1,3027132234=>1,3027225859=>1,3027173010=>1,3028143349=>1,3028238699=>1,3029653349=>1,3029612977=>1,3029673694=>1,3029689038=>1,3029756174=>1,3029747250=>1,3029395328=>1,3029072537=>1,3028287843=>1,3028245295=>1,3028453868=>1,3028488742=>1,3028904400=>1,3015203935=>1,2999530071=>1,2989119793=>1,2989118532=>1,2989120003=>1,2989122006=>1,2989137376=>1,2989137031=>1,2989111755=>1,2988989006=>1,2988562017=>1,2988556085=>1,2988565460=>1,2988617814=>1,2988982067=>1,2988777794=>1,2989137591=>1,2989137796=>1,2989311812=>1,2989270039=>1,2989338230=>1,2989490549=>1,2989614181=>1,2989504026=>1,2989268102=>1,2989159155=>1,2989139749=>1,2989138141=>1,2989139985=>1,2989141115=>1,2989155198=>1,2989141340=>1,2988554235=>1,2988543419=>1,2988490072=>1,2988488035=>1,2988494649=>1,2988496264=>1,2988497042=>1,2988496993=>1,2988488034=>1,2988488033=>1,2988453021=>1,2988450395=>1,2988455262=>1,2988455299=>1,2988478383=>1,2988464102=>1,2988497499=>1,2988497981=>1,2988513795=>1,2988510039=>1,2988516247=>1,2988524044=>1,2988534924=>1,2988528655=>1,2988508208=>1,2988505961=>1,2988498327=>1,2988498106=>1,2988498383=>1,2988498453=>1,2988498594=>1,2989620695=>1,2989907211=>1,2990435748=>1,2990435266=>1,2990439805=>1,2990442431=>1,2990454931=>1,2990452171=>1,2990435027=>1,2990434977=>1,2990430319=>1,2990429902=>1,2990431524=>1,2990431987=>1,2990434450=>1,2990432928=>1,2990455451=>1,2990457029=>1,2990460042=>1,2990459774=>1,2990461436=>1,2990461867=>1,2990463142=>1,2990461911=>1,2990459175=>1,2990459151=>1,2990457927=>1,2990457634=>1,2990458194=>1,2990458422=>1,2990458850=>1,2990429792=>1,2990428352=>1,2990409917=>1,2990409443=>1,2990410137=>1,2990411290=>1,2990413348=>1,2990412676=>1,2990408149=>1,2990407868=>1,2990139253=>1,2990109564=>1,2990141278=>1,2990142009=>1,2990407829=>1,2990145303=>1,2990414036=>1,2990414045=>1,2990424594=>1,2990423077=>1,2990424875=>1,2990425913=>1,2990428131=>1,2990427574=>1,2990422571=>1,2990421896=>1,2990415564=>1,2990414729=>1,2990416960=>1,2990417184=>1,2990419463=>1,2988443070=>1,2988443058=>1,2986489671=>1,2985736446=>1,2986490745=>1,2986546882=>1,2986662862=>1,2986564878=>1,2985409980=>1,2985249798=>1,2984237660=>1,2984228821=>1,2984905930=>1,2985157603=>1,2985196123=>1,2985159720=>1,2986667609=>1,2986672636=>1,2986887784=>1,2986847423=>1,2986998309=>1,2986998968=>1,2987007330=>1,2986999467=>1,2986839240=>1,2986806972=>1,2986759268=>1,2986758247=>1,2986804878=>1,2986805783=>1,2986806847=>1,2984228796=>1,2984224257=>1,2983075667=>1,2983049042=>1,2983101324=>1,2983130157=>1,2983161547=>1,2983158543=>1,2983041681=>1,2983041632=>1,2983009404=>1,2982985385=>1,2983009430=>1,2983009816=>1,2983041088=>1,2983010268=>1,2983195557=>1,2984018298=>1,2984208203=>1,2984197918=>1,2984223351=>1,2984223524=>1,2984223834=>1,2984223679=>1,2984190773=>1,2984190765=>1,2984024962=>1,2984019990=>1,2984030920=>1,2984033525=>1,2984161557=>1,2987020894=>1,2987034476=>1,2987693433=>1,2987669266=>1,2987722795=>1,2987744025=>1,2987749957=>1,2987745238=>1,2987669264=>1,2987616483=>1,2987535433=>1,2987532425=>1,2987545559=>1,2987550032=>1,2987614721=>1,2987614465=>1,2987824250=>1,2987842050=>1,2988155414=>1,2988136271=>1,2988177598=>1,2988443009=>1,2988443044=>1,2988443041=>1,2988082284=>1,2988082065=>1,2987947060=>1,2987878722=>1,2987999451=>1,2988023357=>1,2988081728=>1,2987530581=>1,2987530287=>1,2987446330=>1,2987446329=>1,2987446331=>1,2987446332=>1,2987446334=>1,2987446333=>1,2987446327=>1,2987416163=>1,2987194386=>1,2987148016=>1,2987194744=>1,2987194796=>1,2987196398=>1,2987196388=>1,2987448472=>1,2987467535=>1,2987503114=>1,2987503106=>1,2987503135=>1,2987503203=>1,2987528652=>1,2987504356=>1,2987502422=>1,2987502318=>1,2987502179=>1,2987502157=>1,2987502229=>1,2987502244=>1,2987502259=>1,2990463366=>1,2990463455=>1,2996192075=>1,2996181532=>1,2996197663=>1,2996197802=>1,2996237179=>1,2996233592=>1,2996180592=>1,2996179841=>1,2995651689=>1,2995623658=>1,2995652865=>1,2995668024=>1,2996141168=>1,2996060266=>1,2996237258=>1,2996250936=>1,2996302958=>1,2996288792=>1,2996420161=>1,2996506122=>1,2996642860=>1,2996559574=>1,2996287099=>1,2996281896=>1,2996258167=>1,2996257741=>1,2996258960=>1,2996267052=>1,2996280999=>1,2996278755=>1,2995612740=>1,2995612391=>1,2994536097=>1,2994533833=>1,2994536386=>1,2994995463=>1,2995207670=>1,2995015316=>1,2994533648=>1,2994530748=>1,2994489581=>1,2994489425=>1,2994493641=>1,2994517238=>1,2994530659=>1,2994528725=>1,2995326246=>1,2995326965=>1,2995579790=>1,2995574385=>1,2995590458=>1,2995590643=>1,2995602622=>1,2995602587=>1,2995550065=>1,2995546130=>1,2995385730=>1,2995384296=>1,2995386193=>1,2995540302=>1,2995544872=>1,2996643115=>1,2996649883=>1,2997793848=>1,2997782867=>1,2997795920=>1,2997812315=>1,2997846070=>1,2997846066=>1,2997693282=>1,2997441539=>1,2997165052=>1,2997154073=>1,2997282853=>1,2997365634=>1,2997440550=>1,2997383735=>1,2997846978=>1,2998754422=>1,2999466628=>1,2999458901=>1,2999467547=>1,2982983749=>1,2999599069=>1,2999573851=>1,2999455183=>1,2999068359=>1,2998782614=>1,2998767135=>1,2998784004=>1,2998785941=>1,2998817062=>1,2997134222=>1,2997134084=>1,2996830133=>1,2996829507=>1,2996937537=>1,2996940055=>1,2996978388=>1,2996970104=>1,2996825138=>1,2996797283=>1,2996746029=>1,2996744708=>1,2996757640=>1,2996760906=>1,2996770827=>1,2996764292=>1,2996993385=>1,2997010638=>1,2997016618=>1,2997015016=>1,2997017230=>1,2997017988=>1,2997106326=>1,2997018338=>1,2997013790=>1,2997013785=>1,2997011154=>1,2997011026=>1,2997012312=>1,2997012367=>1,2997013782=>1,2994165916=>1,2994043951=>1,2990638049=>1,2990637987=>1,2990638989=>1,2990640633=>1,2990642199=>1,2990641719=>1,2990637965=>1,2990637475=>1,2990514900=>1,2990514581=>1,2990524017=>1,2990526771=>1,2990637076=>1,2990553673=>1,2990643236=>1,2990643871=>1,2990650461=>1,2990649336=>1,2990650569=>1,2990651284=>1,2990783011=>1,2990674455=>1,2990647931=>1,2990647929=>1,2990645044=>1,2990645042=>1,2990646272=>1,2990646642=>1,2990646992=>1,2990512733=>1,2990510569=>1,2990472120=>1,2990472044=>1,2990472274=>1,2990472426=>1,2990477360=>1,2990475685=>1,2990471944=>1,2990471034=>1,2990464083=>1,2990463648=>1,2990464857=>1,2990466823=>1,2990470312=>1,2990468564=>1,2990477849=>1,2990478206=>1,2990501527=>1,2990498082=>1,2990501650=>1,2990503069=>1,2990510562=>1,2990509302=>1,2990494990=>1,2990493192=>1,2990484368=>1,2990479626=>1,2990485089=>1,2990488899=>1,2990490035=>1,2990800798=>1,2990829712=>1,2991570132=>1,2991567738=>1,2991761044=>1,2991807588=>1,2991853263=>1,2991848794=>1,2991567252=>1,2991565154=>1,2991563160=>1,2991562720=>1,2991563185=>1,2991563689=>1,2991564888=>1,2991564053=>1,2991951094=>1,2992128073=>1,2993701943=>1,2993699926=>1,2993718413=>1,2993733635=>1,2993829335=>1,2993736233=>1,2992478122=>1,2992453079=>1,2992132793=>1,2992128083=>1,2992397165=>1,2992446766=>1,2992449050=>1,2991562643=>1,2991562461=>1,2991178571=>1,2990994000=>1,2991182454=>1,2991182548=>1,2991197086=>1,2991182576=>1,2990981039=>1,2990833655=>1,2990831436=>1,2990830319=>1,2990831604=>1,2990832214=>1,2990833148=>1,2990832910=>1,2991255516=>1,2991266604=>1,2991556292=>1,2991510565=>1,2991556838=>1,2991557393=>1,2991561196=>1,2991557741=>1,2991422249=>1,2991388718=>1,2991277655=>1,2991277477=>1,2991283785=>1,2991297177=>1,2991364185=>1,2999610685=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-34.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3015559681=>1,3015557889=>1,3015614304=>1,3015621449=>1,3015658619=>1,3015658618=>1,3015535978=>1,3015438084=>1,3015363439=>1,3015358569=>1,3015384858=>1,3015407825=>1,3015411424=>1,3015407957=>1,3015658621=>1,3015699114=>1,3017111580=>1,3016993412=>1,3017183538=>1,3017243528=>1,3017321430=>1,3017308156=>1,3016984058=>1,3016932547=>1,3015700410=>1,3015699290=>1,3015700450=>1,3016120271=>1,3016879550=>1,3016148348=>1,3015351370=>1,3015349493=>1,3015089088=>1,3015087259=>1,3015089815=>1,3015120341=>1,3015128388=>1,3015120916=>1,3015086931=>1,3015080175=>1,3014937515=>1,3014936137=>1,3014938425=>1,3015030219=>1,3015048547=>1,3015036917=>1,3015155081=>1,3015201821=>1,3015272570=>1,3015265741=>1,3015274188=>1,3015276407=>1,3015342280=>1,3015337032=>1,3015265738=>1,3015262866=>1,3015206762=>1,3015203935=>1,3015241082=>1,3015252706=>1,3015261831=>1,3017383761=>1,3017431629=>1,3027521800=>1,3027521073=>1,3027575818=>1,3027626789=>1,3027862046=>1,3027817425=>1,3027413872=>1,3027225859=>1,3027087987=>1,3026894729=>1,3027090556=>1,3027123410=>1,3027173010=>1,3027135633=>1,3028143349=>1,3028238699=>1,3029612974=>1,3029395328=>1,3029653349=>1,3029673694=>1,3029747250=>1,3029689038=>1,3029072537=>1,3028904400=>1,3028245357=>1,3028245295=>1,3028246368=>1,3028287843=>1,3028488742=>1,3028453868=>1,3026891480=>1,3026861276=>1,3018358425=>1,3018327177=>1,3018422705=>1,3019062247=>1,3024599258=>1,3021751681=>1,3017777233=>1,3017777210=>1,3017458029=>1,3017453650=>1,3017496852=>1,3017696351=>1,3017745326=>1,3017698623=>1,3024683088=>1,3024914321=>1,3026275626=>1,3026161497=>1,3026292985=>1,3026714574=>1,3026761514=>1,3026758839=>1,3026082570=>1,3026081660=>1,3024914871=>1,3024914396=>1,3024915063=>1,3025652750=>1,3025989189=>1,3014935876=>1,3014935700=>1,3010087827=>1,3010087505=>1,3010087977=>1,3010088308=>1,3010088706=>1,3010088622=>1,3010003247=>1,3009541129=>1,3009478428=>1,3009470428=>1,3009484542=>1,3009489078=>1,3009539082=>1,3009536943=>1,3010088789=>1,3010088798=>1,3010159226=>1,3010151402=>1,3010169158=>1,3010180473=>1,3010207825=>1,3010207745=>1,3010109114=>1,3010109110=>1,3010088836=>1,3010088825=>1,3010088911=>1,3010090359=>1,3010109081=>1,3010090635=>1,3009461338=>1,3006845721=>1,3005977318=>1,3005976482=>1,3005982978=>1,3005982990=>1,3005988546=>1,3005988046=>1,3005547072=>1,3005364901=>1,3003171527=>1,3003094222=>1,3003205719=>1,3004780448=>1,3005233870=>1,3004899746=>1,3005988550=>1,3006330897=>1,3006719942=>1,3006477424=>1,3006720669=>1,3006723367=>1,3006725598=>1,3006723649=>1,3006365626=>1,3006364869=>1,3006339237=>1,3006336323=>1,3006364076=>1,3006364317=>1,3006364458=>1,3010207841=>1,3010207889=>1,3011509955=>1,3011489747=>1,3013292309=>1,3013298514=>1,3014160230=>1,3013358854=>1,3011489746=>1,3011487242=>1,3011479249=>1,3011479227=>1,3011479250=>1,3011479269=>1,3011484946=>1,3011479706=>1,3014662787=>1,3014668767=>1,3014807958=>1,3014807562=>1,3014824138=>1,3014836863=>1,3014902749=>1,3014866989=>1,3014803235=>1,3014796993=>1,3014670747=>1,3014669006=>1,3014671312=>1,3014671964=>1,3014796827=>1,3011479185=>1,3011479184=>1,3010214169=>1,3010210049=>1,3010214171=>1,3010214190=>1,3010262536=>1,3010244570=>1,3010209665=>1,3010209153=>1,3010208161=>1,3010208033=>1,3010208337=>1,3010208769=>1,3010209089=>1,3010209025=>1,3010447489=>1,3010452877=>1,3011357338=>1,3011345911=>1,3011411160=>1,3011456526=>1,3011479182=>1,3011479171=>1,3011345647=>1,3011328716=>1,3010458696=>1,3010455898=>1,3011255420=>1,3011255478=>1,3011293326=>1,3029756174=>1,3029948182=>1,3036321097=>1,3036320993=>1,3036323532=>1,3036324642=>1,3036327674=>1,3036325276=>1,3036320549=>1,3036316978=>1,3036306410=>1,3036305954=>1,3036307653=>1,3036308546=>1,3036316523=>1,3036308882=>1,3036329522=>1,3036331258=>1,3036359882=>1,3036359054=>1,3036359961=>1,3036390192=>1,3036391059=>1,3036390473=>1,3036358523=>1,3036358426=>1,3036336034=>1,3036333498=>1,3036336492=>1,3036337394=>1,3036347628=>1,3036346398=>1,3036302812=>1,3036302034=>1,3036087493=>1,3036074508=>1,3036091319=>1,3036148246=>1,3036209910=>1,3036178229=>1,3036067198=>1,3036065738=>1,3035991281=>1,3035991223=>1,3036004027=>1,3036006384=>1,3036057350=>1,3036009217=>1,3036220957=>1,3036221794=>1,3036297154=>1,3036296446=>1,3036297699=>1,3036297706=>1,3036301570=>1,3036298458=>1,3036295378=>1,3036295243=>1,3036283659=>1,3036242207=>1,3036283819=>1,3036291218=>1,3036294650=>1,3036392453=>1,3036402471=>1,3036571669=>1,3036571340=>1,3036573548=>1,3036580273=>1,3036593976=>1,3036583547=>1,3036570447=>1,3036569845=>1,3036560019=>1,3036559564=>1,3036562121=>1,3036564920=>1,3036569117=>1,3036567081=>1,3036601562=>1,3036609042=>1,3037761555=>1,3037761542=>1,3037761594=>1,3037761605=>1,3037761637=>1,3037761629=>1,3037724547=>1,3037700868=>1,3037364563=>1,3036768639=>1,3037654426=>1,3037654446=>1,3037682603=>1,3036543594=>1,3036541989=>1,3036491800=>1,3036487544=>1,3036493808=>1,3036493896=>1,3036495417=>1,3036494701=>1,3036484413=>1,3036459640=>1,3036429098=>1,3036427860=>1,3036431061=>1,3036431087=>1,3036459561=>1,3036432983=>1,3036495447=>1,3036495600=>1,3036516458=>1,3036515733=>1,3036516912=>1,3036518174=>1,3036537907=>1,3036518806=>1,3036515550=>1,3036515545=>1,3036504074=>1,3036497303=>1,3036514781=>1,3036515193=>1,3036515481=>1,3035978735=>1,3035965851=>1,3031909274=>1,3031906067=>1,3031909582=>1,3031912911=>1,3031918199=>1,3031913862=>1,3031899024=>1,3031898037=>1,3031711684=>1,3031711632=>1,3031727302=>1,3031894556=>1,3031896804=>1,3031895563=>1,3031918380=>1,3031919269=>1,3031924993=>1,3031924920=>1,3031925067=>1,3031925671=>1,3031929391=>1,3031926381=>1,3031923959=>1,3031922592=>1,3031920448=>1,3031919947=>1,3031921963=>1,3031921984=>1,3031922412=>1,3031922059=>1,3031711547=>1,3031709329=>1,3030976563=>1,3030921580=>1,3030979217=>1,3031246668=>1,3031367937=>1,3031286332=>1,3030918379=>1,3030816370=>1,3030109082=>1,3029984164=>1,3030487458=>1,3030568626=>1,3030795917=>1,3030574486=>1,3031372001=>1,3031372004=>1,3031699075=>1,3031696532=>1,3031708118=>1,3031708466=>1,3031709292=>1,3031708942=>1,3031684251=>1,3031676537=>1,3031428960=>1,3031384947=>1,3031590918=>1,3031591090=>1,3031591091=>1,3031929583=>1,3031929858=>1,3035125714=>1,3034198425=>1,3035333915=>1,3035694898=>1,3035701383=>1,3035701307=>1,3034054291=>1,3033986906=>1,3033858589=>1,3033849009=>1,3033881617=>1,3033891497=>1,3033986657=>1,3033986386=>1,3035702364=>1,3035705572=>1,3035884328=>1,3035848314=>1,3035894356=>1,3035904836=>1,3035907800=>1,3035906720=>1,3035835309=>1,3035827232=>1,3035734921=>1,3035726783=>1,3035735328=>1,3035759341=>1,3035778805=>1,3033775914=>1,3033772850=>1,3031933265=>1,3031932779=>1,3031933459=>1,3031933897=>1,3031933962=>1,3031933930=>1,3031932488=>1,3031932481=>1,3031930546=>1,3031930316=>1,3031930865=>1,3031930932=>1,3031931160=>1,3031931130=>1,3031934124=>1,3031934647=>1,3031950059=>1,3031945200=>1,3031982549=>1,3033714014=>1,3033770794=>1,3033764892=>1,3031945062=>1,3031944701=>1,3031941819=>1,3031937161=>1,3031943234=>1,3031944226=>1,3031944492=>1,3003094215=>1,3003094212=>1,2990524017=>1,2990514900=>1,2990526771=>1,2990547241=>1,2990637475=>1,2990637076=>1,2990514581=>1,2990512733=>1,2990501527=>1,2990498082=>1,2990503069=>1,2990509302=>1,2990510569=>1,2990510562=>1,2990637987=>1,2990638989=>1,2990647929=>1,2990646992=>1,2990647931=>1,2990649336=>1,2990650569=>1,2990650461=>1,2990646642=>1,2990646272=>1,2990642199=>1,2990641719=>1,2990643236=>1,2990643871=>1,2990645044=>1,2990645042=>1,2990494990=>1,2990493192=>1,2990464083=>1,2990463648=>1,2990464857=>1,2990466823=>1,2990470312=>1,2990468564=>1,2990463465=>1,2990463455=>1,2990459774=>1,2990459673=>1,2990460392=>1,2990461436=>1,2990463366=>1,2990463142=>1,2990471034=>1,2990471944=>1,2990478206=>1,2990477849=>1,2990479626=>1,2990485089=>1,2990490035=>1,2990488899=>1,2990477360=>1,2990475685=>1,2990472120=>1,2990472044=>1,2990472274=>1,2990472420=>1,2990472426=>1,2990676459=>1,2990821249=>1,2991761044=>1,2991570132=>1,2991807588=>1,2991848794=>1,2991951094=>1,2991853263=>1,2991567738=>1,2991567252=>1,2991563185=>1,2991563160=>1,2991563689=>1,2991564053=>1,2991565154=>1,2991564888=>1,2992128073=>1,2992128083=>1,2994489425=>1,2994165916=>1,2994517238=>1,2994528725=>1,2994533833=>1,2994530748=>1,2994043951=>1,2992577377=>1,2992446766=>1,2992132793=>1,2992449050=>1,2992453079=>1,2992478122=>1,2991562720=>1,2991562643=>1,2991178571=>1,2991061104=>1,2991182454=>1,2991182576=>1,2991255516=>1,2991197086=>1,2990979968=>1,2990974442=>1,2990831436=>1,2990830319=>1,2990832214=>1,2990832910=>1,2990954091=>1,2990833655=>1,2991266604=>1,2991277655=>1,2991556975=>1,2991556838=>1,2991557393=>1,2991557741=>1,2991562461=>1,2991561196=>1,2991556292=>1,2991542057=>1,2991364185=>1,2991297177=>1,2991422249=>1,2991492873=>1,2991510565=>1,2990459175=>1,2990459151=>1,2988543419=>1,2988528655=>1,2988554235=>1,2988556085=>1,2988565460=>1,2988562017=>1,2988516247=>1,2988513795=>1,2988498383=>1,2988498327=>1,2988498453=>1,2988498594=>1,2988508208=>1,2988505961=>1,2988617814=>1,2988982067=>1,2989137796=>1,2989137591=>1,2989138141=>1,2989139470=>1,2989141115=>1,2989140557=>1,2989137376=>1,2989137031=>1,2989111755=>1,2988989006=>1,2989118532=>1,2989119793=>1,2989122006=>1,2989120003=>1,2988498106=>1,2988497981=>1,2988450395=>1,2988443070=>1,2988453021=>1,2988455262=>1,2988464102=>1,2988455299=>1,2988443058=>1,2988443044=>1,2988149671=>1,2988136271=>1,2988155414=>1,2988177598=>1,2988443041=>1,2988443009=>1,2988466060=>1,2988478383=>1,2988496264=>1,2988494649=>1,2988496993=>1,2988497042=>1,2988497512=>1,2988497499=>1,2988492293=>1,2988492292=>1,2988488033=>1,2988488032=>1,2988488034=>1,2988488035=>1,2988490072=>1,2989141340=>1,2989155198=>1,2990429902=>1,2990429792=>1,2990430319=>1,2990431524=>1,2990432928=>1,2990431987=>1,2990428352=>1,2990428131=>1,2990422571=>1,2990421896=>1,2990423077=>1,2990424594=>1,2990427574=>1,2990425913=>1,2990434450=>1,2990435027=>1,2990457634=>1,2990455451=>1,2990457927=>1,2990458194=>1,2990458850=>1,2990458422=>1,2990454931=>1,2990454817=>1,2990435748=>1,2990435266=>1,2990439805=>1,2990442431=>1,2990452171=>1,2990421269=>1,2990421085=>1,2990109564=>1,2990080483=>1,2990139253=>1,2990142009=>1,2990407868=>1,2990145303=>1,2989620695=>1,2989614181=>1,2989270039=>1,2989159155=>1,2989311812=>1,2989343086=>1,2989504026=>1,2989490549=>1,2990408149=>1,2990409443=>1,2990415564=>1,2990414729=>1,2990416665=>1,2990416960=>1,2990419463=>1,2990417184=>1,2990414435=>1,2990414036=>1,2990410137=>1,2990409917=>1,2990411290=>1,2990412676=>1,2990413348=>1,2994536097=>1,2994536386=>1,3000719675=>1,3000697270=>1,3000728301=>1,3000731128=>1,3000740434=>1,3000733884=>1,3000696956=>1,3000696937=>1,3000594750=>1,3000552137=>1,3000612896=>1,3000613358=>1,3000660655=>1,3000649292=>1,3000740945=>1,3000741644=>1,3001996710=>1,3001996708=>1,3001996722=>1,3001996724=>1,3001996734=>1,3001996731=>1,3001996586=>1,3001972646=>1,3001761059=>1,3001628791=>1,3001764872=>1,3001861356=>1,3001952764=>1,3001866566=>1,3000479167=>1,3000458407=>1,3000053421=>1,3000004550=>1,3000054423=>1,3000054627=>1,3000054929=>1,3000054831=>1,3000004439=>1,3000004028=>1,3000002052=>1,3000001701=>1,3000002288=>1,3000002405=>1,3000003471=>1,3000003418=>1,3000054946=>1,3000054971=>1,3000354769=>1,3000289123=>1,3000386145=>1,3000388123=>1,3000453712=>1,3000451924=>1,3000288054=>1,3000219247=>1,3000118747=>1,3000111900=>1,3000119767=>1,3000159715=>1,3000184114=>1,3001996742=>1,3001996758=>1,3002996413=>1,3002995846=>1,3002996452=>1,3002996595=>1,3002998358=>1,3002997492=>1,3002994046=>1,3002994012=>1,3002988830=>1,3002981468=>1,3002990090=>1,3002991193=>1,3002993730=>1,3002992149=>1,3002998737=>1,3002999776=>1,3003025286=>1,3003023634=>1,3003025669=>1,3003027218=>1,3003030286=>1,3003029805=>1,3003004773=>1,3003004748=>1,3003000661=>1,3002999869=>1,3003000837=>1,3003001108=>1,3003001991=>1,3002976622=>1,3002976613=>1,3002000244=>1,3001999841=>1,3002000396=>1,3002001518=>1,3002002732=>1,3002002054=>1,3001999724=>1,3001999492=>1,3001996778=>1,3001996775=>1,3001996779=>1,3001996785=>1,3001999171=>1,3001996790=>1,3002065398=>1,3002625142=>1,3002883979=>1,3002866888=>1,3002884726=>1,3002896902=>1,3002908130=>1,3002904450=>1,3002866275=>1,3002852494=>1,3002828003=>1,3002678267=>1,3002829459=>1,3002848643=>1,3002848727=>1,2999950562=>1,2999835132=>1,2996258960=>1,2996258167=>1,2996267052=>1,2996278755=>1,2996281896=>1,2996280999=>1,2996257741=>1,2996250936=>1,2996197663=>1,2996192075=>1,2996197802=>1,2996233592=>1,2996237258=>1,2996237179=>1,2996287099=>1,2996288792=>1,2996746029=>1,2996744708=>1,2996760906=>1,2996764292=>1,2996825138=>1,2996797283=>1,2996649883=>1,2996643115=>1,2996506122=>1,2996302958=>1,2996559574=>1,2996642858=>1,2996642860=>1,2996642859=>1,2996181532=>1,2996180592=>1,2995546130=>1,2995544872=>1,2995550065=>1,2995574385=>1,2995585299=>1,2995579790=>1,2995540302=>1,2995386193=>1,2994995463=>1,2994819226=>1,2995015316=>1,2995207670=>1,2995357336=>1,2995326246=>1,2995590458=>1,2995590643=>1,2995668533=>1,2995631718=>1,2996060266=>1,2996141168=>1,2996179841=>1,2996142918=>1,2995623658=>1,2995618467=>1,2995593153=>1,2995591966=>1,2995602622=>1,2995605283=>1,2995612740=>1,2996829507=>1,2996830133=>1,2998885733=>1,2998830634=>1,2998891538=>1,2999108849=>1,2999458901=>1,2999455183=>1,2998785941=>1,2998784674=>1,2997846066=>1,2997812315=>1,2997846070=>1,2997846978=>1,2998784004=>1,2998754422=>1,2999466628=>1,2999478296=>1,2999759621=>1,2999674934=>1,2999771197=>1,2999801859=>1,2999829342=>1,2999807749=>1,2999672558=>1,2999651388=>1,2999573851=>1,2999530071=>1,2999599069=>1,2999610685=>1,2999639618=>1,2997795920=>1,2997793848=>1,2997012367=>1,2997012312=>1,2997013782=>1,2997013785=>1,2997015016=>1,2997013790=>1,2997011154=>1,2997011026=>1,2996940055=>1,2996937537=>1,2996970104=>1,2996978388=>1,2997010638=>1,2996993385=>1,2997016618=>1,2997017230=>1,2997383735=>1,2997365634=>1,2997440550=>1,2997693282=>1,2997782867=>1,2997746290=>1,2997285867=>1,2997165052=>1,2997018338=>1,2997017988=>1,2997106326=>1,2997133620=>1,2997134084=>1,2988128695=>1,);?>
1
+ <?php return array(3107818108=>3107818109,3107442688=>3107443711,3105445632=>3105445887,3105444864=>3105445119,3105180706=>3105180707,3104779060=>3104779061,3097120122=>3097120123,3085943772=>3085943773,3085324570=>3085324571,3085324566=>3085324567,3085324560=>3085324561,3085324554=>3085324555,3076216610=>3076216611,3076202826=>3076202829,3076202802=>3076202803,3076202794=>3076202797,3075997830=>3075997831,3075987226=>3075987227,3075986970=>3075986971,3075385660=>3075385661,3074288694=>3074288695,3064014612=>3064014613,3049559804=>3049559805,3044204986=>3044204987,3084505491=>1,3084437782=>1,3084533991=>1,3084751637=>1,3084687968=>1,3084427944=>1,3092950842=>1,3083855915=>1,3083854970=>1,3083987328=>1,3092985048=>1,3084930379=>1,3083990712=>1,3085317405=>1,3085317460=>1,3091978537=>1,3085317497=>1,3085317524=>1,3085317570=>1,3085317451=>1,3092785554=>1,3092923935=>1,3083854969=>1,3085317423=>1,3092918274=>1,3085317429=>1,3084936085=>1,3083854859=>1,3082180961=>1,3082135600=>1,3082180977=>1,3082181150=>1,3093248219=>1,3082134738=>1,3082134708=>1,3081981498=>1,3081966440=>1,3081999697=>1,3082016228=>1,3082107558=>1,3093171555=>1,3082181355=>1,3083577133=>1,3083540359=>1,3083841950=>1,3083842790=>1,3085317584=>1,3083540071=>1,3083137733=>1,3082370629=>1,3082389068=>1,3083108583=>1,3083108602=>1,3081940070=>1,3091944523=>1,3086370087=>1,3086324624=>1,3086456562=>1,3091172028=>1,3086458565=>1,3086458556=>1,3086324616=>1,3086324598=>1,3086324506=>1,3086324504=>1,3086324517=>1,3086324528=>1,3086324530=>1,3086460592=>1,3086655545=>1,3088406946=>1,3088344831=>1,3088437553=>1,3090811487=>1,3088497703=>1,3090940098=>1,3088195071=>1,3091076839=>1,3086750339=>1,3086753666=>1,3087182773=>1,3087413915=>1,3091224608=>1,3091349734=>1,3085582240=>1,3085578441=>1,3085767224=>1,3081003989=>1,3085862187=>1,3085454655=>1,3091557662=>1,3091935475=>1,3085324559=>1,3085324565=>1,3091872288=>1,3085324568=>1,3085931058=>1,3085931122=>1,3086324465=>1,3086324282=>1,3086324489=>1,3091510510=>1,3086324495=>1,3086317080=>1,3086317079=>1,3085938058=>1,3085936506=>1,3091547002=>1,3085945804=>1,3086214253=>1,3090278890=>1,3079509455=>1,3075637771=>1,3075634006=>1,3075653418=>1,3075687048=>1,3075707072=>1,3075689511=>1,3075629578=>1,3075613138=>1,3074420730=>1,3074392411=>1,3074584711=>1,3074736308=>1,3074896955=>1,3075723240=>1,3075937798=>1,3076013796=>1,3076013613=>1,3076019344=>1,3076019676=>1,3076040613=>1,3076040177=>1,3076013083=>1,3076010679=>1,3076006834=>1,3075987362=>1,3076007259=>1,3076008250=>1,3076010266=>1,3074358035=>1,3074346706=>1,3073156623=>1,3072724731=>1,3073209367=>1,3073283306=>1,3073504217=>1,3073380259=>1,3072536252=>1,3072194780=>1,3071997675=>1,3071778647=>1,3072000619=>1,3072000752=>1,3072123550=>1,3073604670=>1,3073773269=>1,3074262942=>1,3074261876=>1,3074262944=>1,3074288693=>1,3074327934=>1,3074308858=>1,3074246512=>1,3074216113=>1,3073987143=>1,3073973155=>1,3074199417=>1,3074215944=>1,3074216096=>1,3076077925=>1,3076079092=>1,3079427075=>1,3079426857=>1,3079427309=>1,3079427519=>1,3079487973=>1,3079427642=>1,3079426695=>1,3079426084=>1,3078854608=>1,3078835227=>1,3078854883=>1,3079198048=>1,3079376982=>1,3079491063=>1,3079491389=>1,3079510803=>1,3093303666=>1,3079511692=>1,3079593418=>1,3080535660=>1,3080522765=>1,3079508733=>1,3079503315=>1,3079502100=>1,3079498716=>1,3079502752=>1,3079502902=>1,3079503147=>1,3078729678=>1,3078725942=>1,3076102604=>1,3076102475=>1,3076102619=>1,3076103478=>1,3076103610=>1,3076103505=>1,3076088842=>1,3076087117=>1,3076083288=>1,3076079534=>1,3076084647=>1,3076084718=>1,3076084865=>1,3076115946=>1,3076118356=>1,3076753222=>1,3076487823=>1,3077042697=>1,3077245248=>1,3078725916=>1,3078719202=>1,3076425799=>1,3076420787=>1,3076202798=>1,3076202793=>1,3076202804=>1,3076202830=>1,3076216612=>1,3080771651=>1,3093998332=>1,3105775890=>1,3105725671=>1,3105836350=>1,3105841188=>1,3105841545=>1,3105841534=>1,3105688057=>1,3105687684=>1,3105528877=>1,3105528872=>1,3105528878=>1,3105599256=>1,3105669471=>1,3105625724=>1,3105841567=>1,3105851636=>1,3105938916=>1,3105938889=>1,3105955907=>1,3106013336=>1,3106017400=>1,3106013372=>1,3105923094=>1,3105914099=>1,3105872426=>1,3105853411=>1,3105875525=>1,3105914091=>1,3105914096=>1,3105528860=>1,3105528846=>1,3105216679=>1,3105216652=>1,3105216695=>1,3105216701=>1,3105216800=>1,3105216778=>1,3105186979=>1,3105186866=>1,3105054051=>1,3105052472=>1,3105102206=>1,3105153149=>1,3105180709=>1,3105178552=>1,3105270988=>1,3105271154=>1,3105497461=>1,3105462169=>1,3105497645=>1,3105518111=>1,3105528844=>1,3105519774=>1,3105435673=>1,3105435653=>1,3105271202=>1,3105271170=>1,3105271459=>1,3105413957=>1,3105414001=>1,3106021634=>1,3106104341=>1,3107820707=>1,3107820637=>1,3107820716=>1,3107820733=>1,3107820772=>1,3107820743=>1,3107820624=>1,3107818109=>1,3107754717=>1,3107644285=>1,3107754741=>1,3107771576=>1,3107818002=>1,3107804921=>1,3107820841=>1,3107820843=>1,3107896870=>1,3107896704=>1,3107897035=>1,3107939671=>1,3108079587=>1,3108075910=>1,3107896463=>1,3107828966=>1,3107820919=>1,3107820916=>1,3107820993=>1,3107821042=>1,3107821047=>1,3107591623=>1,3107478663=>1,3106444803=>1,3106279127=>1,3106446484=>1,3106511490=>1,3106727064=>1,3106656887=>1,3106279083=>1,3106247341=>1,3106130469=>1,3106114042=>1,3106130653=>1,3106170001=>1,3106246956=>1,3106783329=>1,3106878522=>1,3107121921=>1,3107116946=>1,3107267343=>1,3107272572=>1,3107436547=>1,3107301427=>1,3107116916=>1,3107110906=>1,3106922018=>1,3106921845=>1,3106922401=>1,3106922419=>1,3107017922=>1,3104946404=>1,3104946378=>1,3099268934=>1,3099247838=>1,3099330226=>1,3099583426=>1,3103942560=>1,3103942033=>1,3099044019=>1,3099042307=>1,3098306595=>1,3098192537=>1,3098306597=>1,3098306598=>1,3099002315=>1,3098561959=>1,3103962026=>1,3103962096=>1,3104115132=>1,3104105386=>1,3104117410=>1,3104117414=>1,3104138082=>1,3104129094=>1,3104070723=>1,3104064152=>1,3104016162=>1,3104005966=>1,3104016250=>1,3104016314=>1,3104063859=>1,3098184082=>1,3098170571=>1,3097109511=>1,3097083078=>1,3097120124=>1,3097120126=>1,3097461295=>1,3097138683=>1,3097072134=>1,3097048295=>1,3093945368=>1,3093936274=>1,3093982708=>1,3071728866=>1,3097016242=>1,3094060955=>1,3097553456=>1,3097620587=>1,3097961635=>1,3097959328=>1,3097967754=>1,3098014942=>1,3098043005=>1,3098031969=>1,3097955886=>1,3097952141=>1,3097703434=>1,3097656359=>1,3097774882=>1,3097929570=>1,3097947470=>1,3104169731=>1,3104170967=>1,3104766031=>1,3104750384=>1,3104779059=>1,3104779062=>1,3104786663=>1,3104786494=>1,3104750064=>1,3104749942=>1,3104695420=>1,3104647161=>1,3104709738=>1,3104709786=>1,3104713801=>1,3104710076=>1,3104786805=>1,3104792078=>1,3104903828=>1,3104884912=>1,3104931119=>1,3104931124=>1,3104936074=>1,3104931180=>1,3104877910=>1,3104877908=>1,3104830588=>1,3104792081=>1,3104830698=>1,3104848979=>1,3104877723=>1,3104647109=>1,3104646861=>1,3104308803=>1,3104281678=>1,3104310883=>1,3104325392=>1,3104351621=>1,3104325414=>1,3104251980=>1,3104247378=>1,3104217515=>1,3104176602=>1,3104221027=>1,3104244724=>1,3104247322=>1,3104353357=>1,3104369795=>1,3104595692=>1,3104591470=>1,3104630514=>1,3104646731=>1,3104646853=>1,3104646785=>1,3104575347=>1,3104552003=>1,3104370128=>1,3104370119=>1,3104370315=>1,3104412834=>1,3104521250=>1,3093898265=>1,3071726252=>1,3049695325=>1,3049679538=>1,3049707646=>1,3049707795=>1,3050331755=>1,3050320627=>1,3049673354=>1,3049673172=>1,3049525322=>1,3049047508=>1,3049559806=>1,3049588471=>1,3049601186=>1,3049601137=>1,3050541332=>1,3050541538=>1,3050795322=>1,3050793859=>1,3050799942=>1,3050799988=>1,3051430663=>1,3051325145=>1,3050792662=>1,3050792629=>1,3050553315=>1,3050546467=>1,3050568658=>1,3050718608=>1,3050792325=>1,3050791265=>1,3049028489=>1,3049022155=>1,3045522563=>1,3045284471=>1,3045973416=>1,3045986529=>1,3046050139=>1,3046048165=>1,3044456376=>1,3044456322=>1,3044056213=>1,3044056036=>1,3044089114=>1,3044204984=>1,3044443325=>1,3044441761=>1,3046060906=>1,3046072986=>1,3047559862=>1,3047520587=>1,3047607730=>1,3047612758=>1,3047766565=>1,3047724469=>1,3046108794=>1,3046108058=>1,3046095198=>1,3046085420=>1,3046097858=>1,3046104962=>1,3046106490=>1,3051431852=>1,3051434212=>1,3056469510=>1,3056466902=>1,3056469647=>1,3056469751=>1,3056469793=>1,3056469754=>1,3056465691=>1,3056424065=>1,3056272659=>1,3056197501=>1,3056278394=>1,3056340377=>1,3056396057=>1,3056357983=>1,3056469803=>1,3056469814=>1,3056629606=>1,3056625166=>1,3056738228=>1,3056877019=>1,3056890615=>1,3056887871=>1,3056625162=>1,3056625155=>1,3056480879=>1,3056480788=>1,3056502128=>1,3056507252=>1,3056621734=>1,3055996750=>1,3055985197=>1,3054974204=>1,3054963619=>1,3054981651=>1,3054981894=>1,3054989442=>1,3054987346=>1,3054962890=>1,3054717413=>1,3051719691=>1,3051439866=>1,3051878985=>1,3054566422=>1,3054706345=>1,3054647557=>1,3054989569=>1,3054989582=>1,3055820828=>1,3055790287=>1,3055823800=>1,3055855481=>1,3055981125=>1,3055868816=>1,3055763542=>1,3055686521=>1,3054989761=>1,3054989641=>1,3055482929=>1,3055620136=>1,3055686109=>1,3044029811=>1,3043996019=>1,3036516912=>1,3036515733=>1,3036518174=>1,3036537907=>1,3036543594=>1,3036541989=>1,3036515550=>1,3036515545=>1,3036495447=>1,3036495417=>1,3036495600=>1,3036497303=>1,3036514781=>1,3036504074=>1,3036559564=>1,3036560019=>1,3036599125=>1,3036583547=>1,3036609042=>1,3036610120=>1,3037364563=>1,3036768639=>1,3036582461=>1,3036574287=>1,3036569117=>1,3036562121=>1,3036570447=>1,3036571340=>1,3036572409=>1,3036571669=>1,3036494701=>1,3036493808=>1,3036357946=>1,3036347628=>1,3036358426=>1,3036358523=>1,3036359882=>1,3036359054=>1,3036346398=>1,3036337394=>1,3036327674=>1,3036325276=>1,3036331258=>1,3036333498=>1,3036336492=>1,3036336034=>1,3036359961=>1,3036360321=>1,3036431061=>1,3036430907=>1,3036431087=>1,3036459561=>1,3036491800=>1,3036459640=>1,3036429098=>1,3036427860=>1,3036390473=>1,3036390192=>1,3036391059=>1,3036392453=>1,3036402471=>1,3037654446=>1,3037682603=>1,3040906137=>1,3040870590=>1,3040912439=>1,3040974026=>1,3040994964=>1,3040994963=>1,3040866906=>1,3040803925=>1,3039948514=>1,3039937650=>1,3040319266=>1,3040319402=>1,3040752197=>1,3040673095=>1,3040997225=>1,3041079658=>1,3041613776=>1,3041609603=>1,3042669852=>1,3042949162=>1,3043944581=>1,3043918780=>1,3041600663=>1,3041574614=>1,3041114885=>1,3041112562=>1,3041564360=>1,3041574575=>1,3041574585=>1,3039914308=>1,3039911970=>1,3038515608=>1,3038482021=>1,3038645063=>1,3038770101=>1,3039264818=>1,3039036810=>1,3038433931=>1,3038060237=>1,3037724547=>1,3037700868=>1,3037761594=>1,3037761629=>1,3037761761=>1,3037761653=>1,3039317678=>1,3039326402=>1,3039876634=>1,3039855018=>1,3039878658=>1,3039878965=>1,3039901626=>1,3039896738=>1,3039845170=>1,3039844322=>1,3039419598=>1,3039419253=>1,3039759470=>1,3039791067=>1,3039821997=>1,3056891400=>1,3056891646=>1,3070052876=>1,3070052873=>1,3070052884=>1,3070052908=>1,3070065036=>1,3070061367=>1,3070052868=>1,3070052858=>1,3070052736=>1,3070052705=>1,3070052741=>1,3070052754=>1,3070052786=>1,3070052762=>1,3070065054=>1,3070065064=>1,3070065445=>1,3070065442=>1,3070065455=>1,3070065480=>1,3070067231=>1,3070065927=>1,3070065439=>1,3070065278=>1,3070065173=>1,3070065167=>1,3070065199=>1,3070065221=>1,3070065251=>1,3070065240=>1,3070052679=>1,3070052672=>1,3070043531=>1,3070043467=>1,3070043544=>1,3070043624=>1,3070043791=>1,3070043736=>1,3070043434=>1,3070043423=>1,3070043198=>1,3070043196=>1,3070043297=>1,3070043327=>1,3070043400=>1,3070043361=>1,3070043814=>1,3070044468=>1,3070052492=>1,3070052484=>1,3070052554=>1,3070052608=>1,3070052644=>1,3070052621=>1,3070052483=>1,3070052454=>1,3070046423=>1,3070045015=>1,3070046689=>1,3070052441=>1,3070052447=>1,3070067255=>1,3070067289=>1,3070161655=>1,3070157473=>1,3070404296=>1,3070676917=>1,3071091431=>1,3070711970=>1,3070156520=>1,3070155402=>1,3070091364=>1,3070091148=>1,3070133713=>1,3070137417=>1,3070153810=>1,3070139287=>1,3071096893=>1,3071176789=>1,3071672974=>1,3071656999=>1,3071674229=>1,3071683214=>1,3071726902=>1,3036324642=>1,3071644318=>1,3071571336=>1,3071193315=>1,3071180884=>1,3071214557=>1,3071251834=>1,3071273999=>1,3070087629=>1,3070087627=>1,3070079061=>1,3070079050=>1,3070079437=>1,3070079494=>1,3070079598=>1,3070079568=>1,3070073446=>1,3070073436=>1,3070067466=>1,3070067313=>1,3070070034=>1,3070070536=>1,3070072991=>1,3070072581=>1,3070079609=>1,3070079827=>1,3070086306=>1,3070085453=>1,3070086714=>1,3070086798=>1,3070086948=>1,3070086947=>1,3070085386=>1,3070082947=>1,3070079931=>1,3070079911=>1,3070081571=>1,3070081573=>1,3070082922=>1,3070043176=>1,3070043165=>1,3061271859=>1,3061188413=>1,3061303151=>1,3061303193=>1,3061310725=>1,3061310123=>1,3060235094=>1,3059754647=>1,3059521260=>1,3059520583=>1,3059522111=>1,3059542026=>1,3059605878=>1,3059604983=>1,3061310800=>1,3061617703=>1,3063698546=>1,3063181995=>1,3063700026=>1,3063965330=>1,3063970740=>1,3063965705=>1,3062770606=>1,3062662251=>1,3061743106=>1,3061711425=>1,3061752555=>1,3061790333=>1,3061960162=>1,3059485524=>1,3059375214=>1,3056995962=>1,3056991397=>1,3056996720=>1,3056997834=>1,3057452941=>1,3057452470=>1,3056989882=>1,3056988503=>1,3056930583=>1,3056897929=>1,3056941818=>1,3056972290=>1,3056988421=>1,3056988361=>1,3057453134=>1,3057454204=>1,3058365228=>1,3058326317=>1,3058430082=>1,3058432306=>1,3059352363=>1,3059287691=>1,3058325844=>1,3058229402=>1,3057458440=>1,3057456216=>1,3057929462=>1,3057953452=>1,3058200946=>1,3063981372=>1,3064014614=>1,3070040818=>1,3070040772=>1,3070042190=>1,3070042225=>1,3070042251=>1,3070042231=>1,3070038874=>1,3070038130=>1,3069388127=>1,3069182263=>1,3069410520=>1,3069532109=>1,3070036898=>1,3070034259=>1,3070042342=>1,3070042349=>1,3070042709=>1,3070042707=>1,3070042818=>1,3070042839=>1,3070043144=>1,3070042870=>1,3070042694=>1,3070042638=>1,3070042396=>1,3070042386=>1,3070042412=>1,3070042468=>1,3070042635=>1,3069182189=>1,3068987670=>1,3065277644=>1,3065272484=>1,3065278234=>1,3065289263=>1,3065628782=>1,3065527508=>1,3065180697=>1,3065016332=>1,3064106247=>1,3064036077=>1,3064187940=>1,3064608181=>1,3064618771=>1,3064608924=>1,3065636072=>1,3065988389=>1,3066775450=>1,3066735060=>1,3066784908=>1,3066788556=>1,3068866493=>1,3068790432=>1,3066719452=>1,3066702516=>1,3066619322=>1,3065992993=>1,3066619428=>1,3066626090=>1,3066697158=>1,3071727018=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-35.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3107442688=>3107443711,3105445632=>3105445887,3105444864=>3105445119,3085324568=>1,3085324567=>1,3085324570=>1,3085454655=>1,3085324571=>1,3085324566=>1,3085324561=>1,3085324554=>1,3085317584=>1,3085324555=>1,3085324559=>1,3085324560=>1,3085324565=>1,3085578441=>1,3086214253=>1,3085945804=>1,3085943773=>1,3086317079=>1,3086317080=>1,3086324465=>1,3086324282=>1,3085943772=>1,3085938058=>1,3085767224=>1,3085582240=>1,3085862187=>1,3085931058=>1,3085936506=>1,3085931122=>1,3085317570=>1,3085317497=>1,3084505491=>1,3084437782=>1,3084520903=>1,3084521001=>1,3084533991=>1,3084521071=>1,3084427944=>1,3083990712=>1,3083854859=>1,3083841950=>1,3083854969=>1,3083854970=>1,3083987328=>1,3083855915=>1,3084590814=>1,3084687968=>1,3085317452=>1,3085317451=>1,3085317460=>1,3085317470=>1,3086324489=>1,3085317483=>1,3085317429=>1,3085317423=>1,3084930379=>1,3084751637=>1,3084936085=>1,3085317405=>1,3085317409=>1,3085317524=>1,3086324495=>1,3092785554=>1,3091980059=>1,3092918274=>1,3092923935=>1,3093028951=>1,3092985048=>1,3091978537=>1,3091944523=>1,3091547002=>1,3091349734=>1,3091557662=>1,3091753524=>1,3091935475=>1,3091872288=>1,3093171555=>1,3093248219=>1,3097120122=>1,3097109511=>1,3097120123=>1,3097120124=>1,3097138683=>1,3097120126=>1,3097048295=>1,3097016242=>1,3093936274=>1,3093898265=>1,3093945368=>1,3093982708=>1,3094060955=>1,3093998332=>1,3091224608=>1,3091172028=>1,3086456562=>1,3086370087=>1,3086458556=>1,3086458565=>1,3086565417=>1,3086460592=>1,3086324624=>1,3086324616=>1,3086324506=>1,3086324504=>1,3086324517=>1,3086324528=>1,3086324598=>1,3086324530=>1,3086655545=>1,3086750339=>1,3090278890=>1,3088497703=>1,3090733701=>1,3090811487=>1,3091076839=>1,3090940098=>1,3088437553=>1,3088344831=>1,3087182773=>1,3086753666=>1,3087413915=>1,3087525772=>1,3088195071=>1,3083577133=>1,3083540071=>1,3076103610=>1,3076103505=>1,3076109712=>1,3076111135=>1,3076115946=>1,3076111422=>1,3076102619=>1,3076102604=>1,3076086429=>1,3076084865=>1,3076087117=>1,3076088842=>1,3076102475=>1,3076100679=>1,3076118356=>1,3076197723=>1,3076202804=>1,3076202803=>1,3076202826=>1,3076202827=>1,3076202829=>1,3076202828=>1,3076202802=>1,3076202798=>1,3076202794=>1,3076202793=>1,3076202795=>1,3076202796=>1,3076202797=>1,3076084718=>1,3076084421=>1,3075987362=>1,3075987227=>1,3075997830=>1,3076006834=>1,3076008250=>1,3076007259=>1,3075987226=>1,3075986971=>1,3075637771=>1,3075634006=>1,3075653418=>1,3075687048=>1,3075986970=>1,3075707072=>1,3076010266=>1,3076010679=>1,3076077925=>1,3076040613=>1,3076079076=>1,3076079092=>1,3076083288=>1,3076079512=>1,3076040177=>1,3076019676=>1,3076013613=>1,3076011908=>1,3076017374=>1,3076018892=>1,3076019344=>1,3076202830=>1,3076216610=>1,3081940070=>1,3081003989=>1,3081966440=>1,3081981498=>1,3082016228=>1,3081999697=>1,3080771651=>1,3080103244=>1,3079509455=>1,3079508733=>1,3079510803=>1,3079511692=>1,3080102500=>1,3079593418=>1,3082107558=>1,3082134708=>1,3082389068=>1,3082355273=>1,3083108583=>1,3083108602=>1,3097141700=>1,3083137733=>1,3082304117=>1,3082181355=>1,3082135600=>1,3082134738=>1,3082180961=>1,3082180977=>1,3082181150=>1,3079503315=>1,3079503147=>1,3078725942=>1,3078725916=>1,3078729678=>1,3078835227=>1,3078854883=>1,3078854608=>1,3078719202=>1,3077245248=>1,3076216612=>1,3076216611=>1,3076420787=>1,3076487823=>1,3077042697=>1,3076753222=>1,3079198048=>1,3079204699=>1,3079491063=>1,3079487973=>1,3079491389=>1,3079498716=>1,3079502752=>1,3079502100=>1,3079427642=>1,3079427519=>1,3079426084=>1,3079376982=>1,3079426695=>1,3079426857=>1,3079427309=>1,3083540359=>1,3097546995=>1,3105841567=>1,3105841545=>1,3105851636=>1,3105853411=>1,3105875525=>1,3105872426=>1,3105841534=>1,3105841490=>1,3105688057=>1,3105687684=>1,3105775890=>1,3105836350=>1,3105841396=>1,3105841188=>1,3105914091=>1,3105914096=>1,3106104341=>1,3106021634=>1,3106114042=>1,3106130469=>1,3106134711=>1,3106130653=>1,3106017400=>1,3106013372=>1,3105923094=>1,3105914099=>1,3105938889=>1,3105938916=>1,3106013336=>1,3105955907=>1,3105669471=>1,3105625724=>1,3105271170=>1,3105271154=>1,3105271202=>1,3105271459=>1,3105414001=>1,3105413957=>1,3105270988=>1,3105216800=>1,3105216652=>1,3105186979=>1,3105216679=>1,3105216695=>1,3105216778=>1,3105216701=>1,3105435653=>1,3105435673=>1,3105528860=>1,3105528846=>1,3105528872=>1,3105528877=>1,3105599256=>1,3105528878=>1,3105528844=>1,3105520761=>1,3105497461=>1,3105462169=>1,3105497645=>1,3105518111=>1,3105519774=>1,3106170001=>1,3106246956=>1,3107820772=>1,3107820743=>1,3107820841=>1,3107820843=>1,3107820919=>1,3107820916=>1,3107820733=>1,3107820716=>1,3107818109=>1,3107818108=>1,3107820624=>1,3107820636=>1,3107820707=>1,3107820637=>1,3107820993=>1,3107821042=>1,3108079587=>1,3108075910=>1,3108096093=>1,3108097290=>1,3108107845=>1,3108098711=>1,3107939671=>1,3107897035=>1,3107828966=>1,3107821047=>1,3107896463=>1,3107896704=>1,3107896870=>1,3107818002=>1,3107804921=>1,3106921845=>1,3106878522=>1,3106922018=>1,3106922200=>1,3106922419=>1,3106922401=>1,3106783329=>1,3106727064=>1,3106279127=>1,3106247341=>1,3106444803=>1,3106446484=>1,3106656887=>1,3106511490=>1,3107017922=>1,3107110906=>1,3107591623=>1,3107478663=>1,3107644285=>1,3107754717=>1,3107771576=>1,3107754741=>1,3107436547=>1,3107301427=>1,3107116946=>1,3107116916=>1,3107193361=>1,3107267343=>1,3107272572=>1,3105186866=>1,3105180709=>1,3104117409=>1,3104115132=>1,3104117410=>1,3104117414=>1,3104138082=>1,3104129094=>1,3104105386=>1,3104070723=>1,3104016162=>1,3103962096=>1,3104016250=>1,3104016314=>1,3104064152=>1,3104063859=>1,3104169731=>1,3104170967=>1,3104308803=>1,3104281678=>1,3104310883=>1,3104325392=>1,3104351246=>1,3104325414=>1,3104251980=>1,3104247378=>1,3104217515=>1,3104176602=>1,3104221027=>1,3104244724=>1,3104247322=>1,3103942560=>1,3103942033=>1,3097955886=>1,3097952141=>1,3097959328=>1,3097961635=>1,3098031969=>1,3098014942=>1,3097947470=>1,3097929570=>1,3075633463=>1,3097461295=>1,3097553456=>1,3097620587=>1,3097774882=>1,3097703434=>1,3098043005=>1,3098170571=>1,3099042307=>1,3099002315=>1,3099044019=>1,3099247838=>1,3099583426=>1,3099268934=>1,3098561959=>1,3098556968=>1,3098192537=>1,3098184082=>1,3098306595=>1,3098306597=>1,3098306598=>1,3104353357=>1,3104369795=>1,3104877908=>1,3104877723=>1,3104877910=>1,3104884912=>1,3104931119=>1,3104903828=>1,3104850035=>1,3104848979=>1,3104786663=>1,3104786494=>1,3104786805=>1,3104792078=>1,3104830698=>1,3104830588=>1,3104931124=>1,3104931151=>1,3105124628=>1,3105102206=>1,3105153149=>1,3105178552=>1,3105180707=>1,3105180706=>1,3105054051=>1,3105052472=>1,3104931180=>1,3104931161=>1,3104936074=>1,3104946378=>1,3104946404=>1,3104779062=>1,3104779061=>1,3104575347=>1,3104566817=>1,3104591470=>1,3104595692=>1,3104646731=>1,3104630514=>1,3104566386=>1,3104566299=>1,3104370128=>1,3104370119=>1,3104370315=>1,3104412834=>1,3104552003=>1,3104521250=>1,3104646785=>1,3104646853=>1,3104749942=>1,3104713801=>1,3104750064=>1,3104766031=>1,3104779060=>1,3104779059=>1,3104710076=>1,3104709786=>1,3104647109=>1,3104646861=>1,3104647161=>1,3104695420=>1,3104709738=>1,3097193068=>1,3075629578=>1,3056396057=>1,3056357983=>1,3056424065=>1,3056465691=>1,3056469510=>1,3056466902=>1,3056340377=>1,3056278394=>1,3055868816=>1,3055855481=>1,3055985197=>1,3055996750=>1,3056272659=>1,3056197501=>1,3056469633=>1,3056469647=>1,3056618250=>1,3056507252=>1,3056621734=>1,3056625155=>1,3056625166=>1,3056625162=>1,3056502128=>1,3056480788=>1,3056469754=>1,3056469751=>1,3056469793=>1,3056469803=>1,3056469816=>1,3056469814=>1,3055823800=>1,3055820828=>1,3051825783=>1,3051719691=>1,3051878985=>1,3054566422=>1,3054717413=>1,3054706345=>1,3051449810=>1,3051439866=>1,3050799988=>1,3050799942=>1,3051325145=>1,3051430663=>1,3051434212=>1,3051431852=>1,3054962890=>1,3054963619=>1,3054989761=>1,3054989641=>1,3055620136=>1,3055686521=>1,3055790287=>1,3055763542=>1,3054989582=>1,3054989569=>1,3054974204=>1,3054971042=>1,3054981651=>1,3054981909=>1,3054987346=>1,3056738228=>1,3056877019=>1,3060235094=>1,3059605878=>1,3061022065=>1,3061188413=>1,3061303151=>1,3061271859=>1,3059604983=>1,3059542026=>1,3059287691=>1,3059224218=>1,3059352363=>1,3059485524=>1,3059521260=>1,3059520583=>1,3061303193=>1,3061310800=>1,3062662251=>1,3061960162=>1,3062770606=>1,3063698546=>1,3063965330=>1,3063700026=>1,3061790333=>1,3061765182=>1,3061617703=>1,3061325591=>1,3061711425=>1,3061743106=>1,3061752555=>1,3059172400=>1,3058365228=>1,3056988361=>1,3056985951=>1,3056988503=>1,3056988514=>1,3056991397=>1,3056989882=>1,3056972290=>1,3056941818=>1,3056887871=>1,3056878192=>1,3056890615=>1,3056891074=>1,3056897929=>1,3056891400=>1,3056995962=>1,3056996720=>1,3058135854=>1,3057942246=>1,3058200946=>1,3058229402=>1,3058326317=>1,3058325844=>1,3057458440=>1,3057456216=>1,3057452470=>1,3056997834=>1,3057452941=>1,3057453134=>1,3057454204=>1,3050795322=>1,3050793859=>1,3041069499=>1,3040997225=>1,3041079658=>1,3041101827=>1,3041114885=>1,3041112562=>1,3040994964=>1,3040994963=>1,3040866906=>1,3040803925=>1,3040870590=>1,3040906137=>1,3040974026=>1,3040912439=>1,3041564360=>1,3041574575=>1,3042949162=>1,3042740123=>1,3043918780=>1,3043944581=>1,3044056036=>1,3043996019=>1,3042669852=>1,3042646621=>1,3041574614=>1,3041574585=>1,3041600663=>1,3041609603=>1,3042639676=>1,3041613776=>1,3040752197=>1,3040673095=>1,3039326402=>1,3039319278=>1,3039419253=>1,3039419598=>1,3039673631=>1,3039569931=>1,3039317678=>1,3039264818=>1,3037761761=>1,3037761751=>1,3038060237=>1,3038482021=>1,3039036810=>1,3038645063=>1,3039759470=>1,3039791067=>1,3039911970=>1,3039901626=>1,3039914308=>1,3039937650=>1,3040319266=>1,3039948514=>1,3039896738=>1,3039878658=>1,3039844322=>1,3039821997=>1,3039845170=>1,3039855018=>1,3039876634=>1,3044056213=>1,3044071547=>1,3049601186=>1,3049601137=>1,3049673172=>1,3049673354=>1,3049695325=>1,3049679538=>1,3049588471=>1,3049559806=>1,3049047508=>1,3049028489=>1,3049525322=>1,3049559803=>1,3049559805=>1,3049559804=>1,3049707646=>1,3049707795=>1,3050718608=>1,3050678280=>1,3050791265=>1,3050792325=>1,3050792662=>1,3050792629=>1,3050568658=>1,3050553315=>1,3050320627=>1,3050308491=>1,3050331755=>1,3050541332=>1,3050541538=>1,3049022155=>1,3049010057=>1,3044456376=>1,3044456359=>1,3045284471=>1,3045522563=>1,3045986529=>1,3045973416=>1,3044456322=>1,3044455450=>1,3044204984=>1,3044089114=>1,3044204986=>1,3044204987=>1,3044443325=>1,3044441761=>1,3046048162=>1,3046048165=>1,3047520587=>1,3046108794=>1,3047559862=>1,3047607730=>1,3049005874=>1,3047724469=>1,3046108058=>1,3046106490=>1,3046060906=>1,3046050139=>1,3046072986=>1,3046085420=>1,3046104962=>1,3063970740=>1,3063981372=>1,3070086714=>1,3070086306=>1,3070086947=>1,3070086948=>1,3070087629=>1,3070087627=>1,3070085453=>1,3070085386=>1,3070079911=>1,3070079827=>1,3070079931=>1,3070081573=>1,3070082947=>1,3070082922=>1,3070091148=>1,3070091364=>1,3070404296=>1,3070270660=>1,3070676917=>1,3070711970=>1,3071176789=>1,3071096893=>1,3070162467=>1,3070161655=>1,3070137417=>1,3070133713=>1,3070153810=>1,3070155402=>1,3070157473=>1,3070156520=>1,3070079609=>1,3070079598=>1,3070067474=>1,3070067466=>1,3070070034=>1,3070070536=>1,3070072859=>1,3070072581=>1,3070067313=>1,3070067289=>1,3070065455=>1,3070065445=>1,3070065459=>1,3070065480=>1,3070067255=>1,3070067231=>1,3070072991=>1,3070073018=>1,3070079198=>1,3070079125=>1,3070079290=>1,3070079437=>1,3070079568=>1,3070079494=>1,3070079117=>1,3070079061=>1,3070073446=>1,3070073418=>1,3070076943=>1,3070079042=>1,3070079050=>1,3071180884=>1,3071193228=>1,3074288693=>1,3074269736=>1,3074288694=>1,3074288695=>1,3074327934=>1,3074308858=>1,3074262944=>1,3074262942=>1,3074215944=>1,3074199417=>1,3074216096=>1,3074216113=>1,3074261876=>1,3074246512=>1,3074346706=>1,3074358035=>1,3075388785=>1,3075385661=>1,3075389176=>1,3075493765=>1,3075613138=>1,3075582818=>1,3075385660=>1,3074896955=>1,3074392411=>1,3074391370=>1,3074420730=>1,3074584711=>1,3074864641=>1,3073973155=>1,3073777255=>1,3071683214=>1,3071674229=>1,3071726252=>1,3071726902=>1,3071997675=>1,3071778647=>1,3071672974=>1,3071656999=>1,3071214557=>1,3071193315=>1,3071251834=>1,3071273999=>1,3071644318=>1,3071571336=>1,3072000619=>1,3072000752=>1,3073283306=>1,3073209367=>1,3073380259=>1,3073504217=>1,3073773269=>1,3073604670=>1,3073156623=>1,3072724731=>1,3072194780=>1,3072123550=>1,3072389225=>1,3072536252=>1,3072713110=>1,3070065442=>1,3070065439=>1,3070040818=>1,3070040772=>1,3070042190=>1,3070042225=>1,3070042251=>1,3070042231=>1,3070038874=>1,3070038130=>1,3069388127=>1,3069182263=>1,3069410520=>1,3069532109=>1,3070036898=>1,3070034259=>1,3070042349=>1,3070042386=>1,3070042818=>1,3070042719=>1,3070042833=>1,3070042839=>1,3070043165=>1,3070043144=>1,3070042709=>1,3070042707=>1,3070042396=>1,3070042387=>1,3070042413=>1,3070042468=>1,3070042694=>1,3070042584=>1,3069182189=>1,3068987670=>1,3065180697=>1,3065016332=>1,3065272484=>1,3065277644=>1,3065289263=>1,3065278234=>1,3064618771=>1,3064608924=>1,3064014613=>1,3064014612=>1,3064014614=>1,3064106247=>1,3064608181=>1,3064187940=>1,3065628782=>1,3065636072=>1,3066735060=>1,3066719452=>1,3066775450=>1,3066784908=>1,3068866493=>1,3066788556=>1,3066702516=>1,3066697158=>1,3065992993=>1,3065988389=>1,3066619322=>1,3066619428=>1,3066626090=>1,3070043176=>1,3070043196=>1,3070052884=>1,3070052876=>1,3070052908=>1,3070061367=>1,3070065036=>1,3070065035=>1,3070052868=>1,3070052858=>1,3070052754=>1,3070052741=>1,3070052762=>1,3070052778=>1,3070052829=>1,3070052786=>1,3070065054=>1,3070065064=>1,3070065251=>1,3070065240=>1,3070065256=>1,3070065260=>1,3070065412=>1,3070065278=>1,3070065233=>1,3070065221=>1,3070065158=>1,3070065134=>1,3070065167=>1,3070065173=>1,3070065199=>1,3070052736=>1,3070052705=>1,3070043523=>1,3070043508=>1,3070043531=>1,3070043544=>1,3070043736=>1,3070043624=>1,3070043467=>1,3070043434=>1,3070043327=>1,3070043198=>1,3070043361=>1,3070043383=>1,3070043423=>1,3070043400=>1,3070043791=>1,3070044317=>1,3070052484=>1,3070052483=>1,3070052608=>1,3070052644=>1,3070052679=>1,3070052672=>1,3070052447=>1,3070052441=>1,3070045015=>1,3070044468=>1,3070045076=>1,3070046423=>1,3070046689=>1,3037761653=>1,);?>
1
+ <?php return array(3149710488=>3149710489,3149699630=>3149699631,3140571412=>3140571413,3128545002=>3128545003,3127355810=>3127355811,3124239370=>3124239371,3123609972=>3123609973,3123059722=>3123059723,3121218954=>3121218957,3112255038=>3112255039,3111100682=>3111100683,3110648120=>3110648121,3110631426=>3110631427,3110360510=>3110360511,3110173650=>3110173651,3110071566=>3110071567,3109061244=>3109061245,3141328014=>1,3141283636=>1,3141327501=>1,3141315094=>1,3141311138=>1,3141299895=>1,3141327133=>1,3141455111=>1,3142106862=>1,3141707350=>1,3142115395=>1,3142123541=>1,3142124386=>1,3142124103=>1,3141614703=>1,3141586715=>1,3141448220=>1,3141448218=>1,3141283630=>1,3141461541=>1,3141493784=>1,3141328098=>1,3141235263=>1,3140268474=>1,3140267490=>1,3140317189=>1,3140558645=>1,3140572141=>1,3140571946=>1,3140261890=>1,3140250423=>1,3139981703=>1,3139938531=>1,3140084722=>1,3140085088=>1,3140223399=>1,3140223286=>1,3140573821=>1,3140574254=>1,3141226707=>1,3141161921=>1,3142124848=>1,3141251640=>1,3141280894=>1,3141280682=>1,3141161487=>1,3141161257=>1,3140587418=>1,3140574721=>1,3140721694=>1,3140828435=>1,3141157252=>1,3141281905=>1,3142126354=>1,3143525317=>1,3143525314=>1,3143525318=>1,3143587102=>1,3143593251=>1,3143592630=>1,3143521437=>1,3143521433=>1,3143061868=>1,3143061767=>1,3143062022=>1,3143070438=>1,3143520305=>1,3143520293=>1,3143593331=>1,3143593385=>1,3144531203=>1,3144399592=>1,3144542116=>1,3144546290=>1,3144594975=>1,3144567853=>1,3144384769=>1,3144361827=>1,3143627987=>1,3143593696=>1,3144089613=>1,3144108482=>1,3144316917=>1,3144316880=>1,3143020990=>1,3143012589=>1,3142862056=>1,3142510638=>1,3142884818=>1,3142885998=>1,3142888433=>1,3142886028=>1,3142507487=>1,3142494706=>1,3142126057=>1,3142125083=>1,3139934748=>1,3142126860=>1,3142377018=>1,3142127243=>1,3142890237=>1,3142892292=>1,3142993586=>1,3142993136=>1,3142993591=>1,3142994091=>1,3142995282=>1,3142994647=>1,3142992332=>1,3142992247=>1,3142917544=>1,3142899787=>1,3142929337=>1,3142969070=>1,3142991896=>1,3142124879=>1,3139559994=>1,3135549462=>1,3135548657=>1,3135551720=>1,3135581322=>1,3135593923=>1,3135591743=>1,3135503420=>1,3135488094=>1,3135444098=>1,3135438027=>1,3135449395=>1,3135480228=>1,3135488055=>1,3135486610=>1,3135636634=>1,3135727047=>1,3136100378=>1,3136070456=>1,3136109694=>1,3136156505=>1,3136372359=>1,3136326504=>1,3136026872=>1,3136011006=>1,3135843501=>1,3135788004=>1,3135843846=>1,3135856718=>1,3136004538=>1,3135877158=>1,3135418050=>1,3135414370=>1,3134923816=>1,3134923807=>1,3134923818=>1,3134923821=>1,3134923833=>1,3134923826=>1,3134923804=>1,3134923800=>1,3134762835=>1,3134754248=>1,3134765556=>1,3134866150=>1,3134923798=>1,3134923778=>1,3134941700=>1,3134941957=>1,3135320329=>1,3135318637=>1,3135321145=>1,3135321366=>1,3135407990=>1,3135369158=>1,3135300906=>1,3135281411=>1,3134977836=>1,3134969604=>1,3134978595=>1,3135049243=>1,3135160885=>1,3136834067=>1,3136836586=>1,3138610922=>1,3138585114=>1,3138612132=>1,3138629482=>1,3138680332=>1,3138675946=>1,3138551816=>1,3138550483=>1,3138402730=>1,3138402486=>1,3138459094=>1,3138459328=>1,3138511746=>1,3138459367=>1,3138682032=>1,3138693791=>1,3139522610=>1,3139514533=>1,3144601735=>1,3139560803=>1,3139657778=>1,3139655737=>1,3139481891=>1,3139478369=>1,3138824273=>1,3138776675=>1,3138910290=>1,3139193490=>1,3139221842=>1,3138398963=>1,3138174429=>1,3137342709=>1,3137011655=>1,3137347664=>1,3137396391=>1,3137450122=>1,3137419425=>1,3136971265=>1,3136970829=>1,3136886141=>1,3136882637=>1,3136950274=>1,3136965242=>1,3136970818=>1,3136970753=>1,3137452082=>1,3137527624=>1,3138094876=>1,3138091656=>1,3138113867=>1,3138117282=>1,3138170582=>1,3138154986=>1,3137896501=>1,3137855914=>1,3137618466=>1,3137617602=>1,3137640867=>1,3137654169=>1,3137666299=>1,3139669863=>1,3144647410=>1,3147948653=>1,3147948015=>1,3147948881=>1,3147948996=>1,3147949746=>1,3147949272=>1,3147947439=>1,3147947420=>1,3147935691=>1,3147934182=>1,3147941455=>1,3147945450=>1,3147945670=>1,3147945641=>1,3147949796=>1,3147949978=>1,3149461986=>1,3149406117=>1,3149681188=>1,3149702454=>1,3149710487=>1,3149710091=>1,3149206326=>1,3148942952=>1,3148068265=>1,3147952399=>1,3148306724=>1,3148659002=>1,3148807208=>1,3148806787=>1,3147933850=>1,3147932392=>1,3147908153=>1,3147906562=>1,3147912434=>1,3147912568=>1,3147912681=>1,3147912637=>1,3147906331=>1,3147903543=>1,3147896502=>1,3147896403=>1,3147897546=>1,3147898096=>1,3147903406=>1,3147902709=>1,3147913416=>1,3147913675=>1,3147930580=>1,3147929685=>1,3147930696=>1,3147930717=>1,3147931569=>1,3147931069=>1,3147929612=>1,3147926720=>1,3147917694=>1,3147917490=>1,3147918097=>1,3147920430=>1,3147925605=>1,3149737402=>1,3149746283=>1,3155897873=>1,3155809763=>1,3155945869=>1,3156222702=>1,3156248512=>1,3156226983=>1,3155803686=>1,3155799390=>1,3155649102=>1,3155633854=>1,3155673180=>1,3155741411=>1,3155761754=>1,3155745504=>1,3156263459=>1,3156264517=>1,3156494982=>1,3156494851=>1,3156500326=>1,3156500467=>1,3156610265=>1,3156502167=>1,3156494383=>1,3156415769=>1,3156275956=>1,3156274309=>1,3156406098=>1,3156406183=>1,3156406745=>1,3155587363=>1,3155473454=>1,3151624946=>1,3151526502=>1,3153182183=>1,3153749271=>1,3153959776=>1,3153927655=>1,3151526501=>1,3150591559=>1,3149746905=>1,3149746453=>1,3149782727=>1,3149863183=>1,3149864402=>1,3149863188=>1,3154005818=>1,3154108627=>1,3155271589=>1,3155169417=>1,3155298148=>1,3155389074=>1,3155430334=>1,3155399569=>1,3154724747=>1,3154437224=>1,3154163602=>1,3154145427=>1,3154177028=>1,3154177159=>1,3154177168=>1,3147895741=>1,3147895389=>1,3145229382=>1,3145214924=>1,3145233398=>1,3145237566=>1,3145375604=>1,3145306873=>1,3145214758=>1,3145214746=>1,3144939043=>1,3144938415=>1,3144939842=>1,3144940250=>1,3144940704=>1,3144940404=>1,3145539706=>1,3145558738=>1,3147819882=>1,3147782779=>1,3147826755=>1,3147826771=>1,3147830538=>1,3147830397=>1,3147773166=>1,3147674878=>1,3145569202=>1,3145559162=>1,3146592161=>1,3146619666=>1,3147539315=>1,3144920618=>1,3144914061=>1,3144665636=>1,3144665608=>1,3144665709=>1,3144665733=>1,3144670986=>1,3144666047=>1,3144665217=>1,3144662703=>1,3144603013=>1,3144602350=>1,3144606051=>1,3144606116=>1,3144659052=>1,3134754228=>1,3144680529=>1,3144683190=>1,3144842721=>1,3144841144=>1,3144852781=>1,3144879404=>1,3144913981=>1,3144892578=>1,3144841120=>1,3144840830=>1,3144837599=>1,3144819355=>1,3144838441=>1,3144839694=>1,3144840822=>1,3147830551=>1,3147831024=>1,3147873869=>1,3147872113=>1,3147874015=>1,3147874059=>1,3147875498=>1,3147874116=>1,3147871651=>1,3147871518=>1,3147865291=>1,3147865264=>1,3147865517=>1,3147865740=>1,3147866091=>1,3147865975=>1,3147876876=>1,3147877269=>1,3147881352=>1,3147880804=>1,3147883567=>1,3147891318=>1,3147895155=>1,3147895038=>1,3147879957=>1,3147879073=>1,3147877794=>1,3147877588=>1,3147877857=>1,3147877860=>1,3147878967=>1,3147864612=>1,3147864604=>1,3147847297=>1,3147845916=>1,3147850443=>1,3147850732=>1,3147854176=>1,3147851948=>1,3147842266=>1,3147839637=>1,3147831672=>1,3147831445=>1,3147832418=>1,3147832524=>1,3147834701=>1,3147834580=>1,3147856605=>1,3147856806=>1,3147862801=>1,3147862734=>1,3147862992=>1,3147864415=>1,3147864583=>1,3147864529=>1,3147862575=>1,3147862434=>1,3147857649=>1,3147856837=>1,3147857698=>1,3147861006=>1,3147862269=>1,3144602013=>1,3134671356=>1,3110648248=>1,3110648221=>1,3110648287=>1,3110648302=>1,3110720540=>1,3110650154=>1,3110648167=>1,3110648162=>1,3110648086=>1,3110648071=>1,3110648088=>1,3110648110=>1,3110648150=>1,3110648141=>1,3110720576=>1,3110727519=>1,3111243986=>1,3111205558=>1,3111290941=>1,3111354156=>1,3111447623=>1,3111383994=>1,3111165416=>1,3111165319=>1,3111054362=>1,3110965822=>1,3111100686=>1,3111164989=>1,3111165047=>1,3110636752=>1,3110633091=>1,3110360876=>1,3110360875=>1,3110360890=>1,3110360895=>1,3110360914=>1,3110360905=>1,3110360747=>1,3110360743=>1,3110360662=>1,3110360645=>1,3110360676=>1,3110360704=>1,3110360736=>1,3110360730=>1,3110361047=>1,3110361060=>1,3110603674=>1,3110603666=>1,3110624351=>1,3110631427=>1,3110631431=>1,3110631428=>1,3110603662=>1,3110603046=>1,3110444173=>1,3110428332=>1,3110463090=>1,3110465029=>1,3110465045=>1,3111473796=>1,3111535447=>1,3112955098=>1,3112955094=>1,3112955101=>1,3112955106=>1,3112955126=>1,3112955108=>1,3112955067=>1,3112955051=>1,3112955001=>1,3112954999=>1,3112955003=>1,3112955036=>1,3112955043=>1,3112955038=>1,3112955129=>1,3113028386=>1,3113230052=>1,3113229505=>1,3113396578=>1,3113805859=>1,3120615565=>1,3113880603=>1,3113218062=>1,3113166908=>1,3113032189=>1,3113032105=>1,3113143337=>1,3113166901=>1,3113166906=>1,3112954986=>1,3112954972=>1,3112200232=>1,3112114398=>1,3112255039=>1,3112306596=>1,3112553732=>1,3112509459=>1,3112032578=>1,3111985466=>1,3111686292=>1,3111645456=>1,3111699852=>1,3111721360=>1,3111919959=>1,3111795297=>1,3112558970=>1,3112649758=>1,3112954897=>1,3112954895=>1,3112954926=>1,3112954932=>1,3112954949=>1,3112954940=>1,3112954888=>1,3112857947=>1,3112672723=>1,3112672350=>1,3112673148=>1,3112857939=>1,3112857944=>1,3110360564=>1,3110360556=>1,3109061245=>1,3109061190=>1,3109061334=>1,3109084830=>1,3109136281=>1,3109084836=>1,3109060995=>1,3109060984=>1,3108912499=>1,3108864291=>1,3108913004=>1,3109040673=>1,3109060893=>1,3109060619=>1,3109164352=>1,3109164959=>1,3109274854=>1,3109261625=>1,3109279247=>1,3109280478=>1,3109388526=>1,3109317395=>1,3109232430=>1,3109232264=>1,3109183794=>1,3109183786=>1,3109210325=>1,3109210422=>1,3109214337=>1,3108802925=>1,3108783514=>1,3108350064=>1,3108246597=>1,3108420392=>1,3108439110=>1,3108548744=>1,3108548724=>1,3108239105=>1,3108174477=>1,3108098711=>1,3108097290=>1,3108107845=>1,3108161546=>1,3108167776=>1,3108167761=>1,3108561170=>1,3108566040=>1,3108714504=>1,3108699170=>1,3108714520=>1,3108714599=>1,3108714622=>1,3108714600=>1,3108625995=>1,3108580410=>1,3108566569=>1,3108566053=>1,3108566929=>1,3108579261=>1,3108580406=>1,3109409680=>1,3109441091=>1,3110171062=>1,3110169154=>1,3110173649=>1,3110196844=>1,3110282327=>1,3110282322=>1,3110150162=>1,3110122525=>1,3110058113=>1,3110057987=>1,3110071592=>1,3110071768=>1,3110098973=>1,3110071771=>1,3110282328=>1,3110360146=>1,3110360467=>1,3110360458=>1,3110360488=>1,3110360511=>1,3110360527=>1,3110360512=>1,3110360452=>1,3110360421=>1,3110360239=>1,3110360172=>1,3110360276=>1,3110360315=>1,3110360381=>1,3109871312=>1,3109871156=>1,3109459094=>1,3109459050=>1,3109459106=>1,3109459116=>1,3109459413=>1,3109459242=>1,3109458995=>1,3109458976=>1,3109441372=>1,3109441228=>1,3109441481=>1,3109448579=>1,3109458971=>1,3109459422=>1,3109459814=>1,3109726726=>1,3109534235=>1,3109767958=>1,3109792614=>1,3109870882=>1,3109792765=>1,3109534197=>1,3109534173=>1,3109459905=>1,3109459860=>1,3109460086=>1,3109495860=>1,3109499112=>1,3120629118=>1,3120774011=>1,3128293517=>1,3128165642=>1,3128545000=>1,3128545004=>1,3128800276=>1,3128546394=>1,3127922842=>1,3127415859=>1,3127210474=>1,3126874042=>1,3127345755=>1,3127355813=>1,3127365954=>1,3127361843=>1,3128800280=>1,3128800283=>1,3130708122=>1,3130634194=>1,3130774820=>1,3131011334=>1,3132319798=>1,3131711366=>1,3130590202=>1,3130322945=>1,3128988022=>1,3128863790=>1,3129478558=>1,3129686842=>1,3130258769=>1,3126848503=>1,3126846378=>1,3126793224=>1,3126790789=>1,3126793824=>1,3126796318=>1,3126797604=>1,3126797427=>1,3126789179=>1,3126788611=>1,3126758200=>1,3126747975=>1,3126759725=>1,3126765502=>1,3126788245=>1,3126774216=>1,3126798886=>1,3126799259=>1,3126833220=>1,3126828674=>1,3126835856=>1,3126836667=>1,3126839917=>1,3126838939=>1,3126821259=>1,3126812370=>1,3126800651=>1,3126800301=>1,3126801503=>1,3126802736=>1,3126809464=>1,3132887377=>1,3132888947=>1,3134526639=>1,3134525784=>1,3134529604=>1,3134533246=>1,3134587634=>1,3134587337=>1,3134504916=>1,3134504857=>1,3134502282=>1,3134502080=>1,3134502694=>1,3134503552=>1,3134504445=>1,3134504107=>1,3134602139=>1,3134605893=>1,3134751063=>1,3134750927=>1,3134752409=>1,3134752517=>1,3134753722=>1,3134753344=>1,3108096093=>1,3134669171=>1,3134614722=>1,3134611115=>1,3134625334=>1,3134632250=>1,3134655308=>1,3134501831=>1,3134496787=>1,3133259155=>1,3133259143=>1,3133288378=>1,3133835490=>1,3133960278=>1,3133900293=>1,3133259140=>1,3133247618=>1,3133206444=>1,3133046809=>1,3133246800=>1,3133246810=>1,3133247146=>1,3134056727=>1,3134119713=>1,3134486724=>1,3134464115=>1,3134493119=>1,3134493382=>1,3134494438=>1,3134493782=>1,3134416551=>1,3134406971=>1,3134183400=>1,3134119819=>1,3134246829=>1,3134255643=>1,3134404402=>1,3126737564=>1,3126728686=>1,3126371056=>1,3126359223=>1,3126371891=>1,3126372568=>1,3126375137=>1,3126374729=>1,3126355576=>1,3126355012=>1,3125226287=>1,3125178441=>1,3126334776=>1,3126334815=>1,3126342757=>1,3126338976=>1,3126375916=>1,3126381443=>1,3126424147=>1,3126421478=>1,3126425766=>1,3126432885=>1,3126434940=>1,3126434268=>1,3126421258=>1,3126402403=>1,3126395051=>1,3126388324=>1,3126395161=>1,3126401827=>1,3126402228=>1,3125010091=>1,3124993579=>1,3121224061=>1,3121218958=>1,3121492199=>1,3121532292=>1,3121604314=>1,3121543186=>1,3120920918=>1,3120920915=>1,3120778402=>1,3120777957=>1,3120873428=>1,3120882219=>1,3120919882=>1,3120882343=>1,3122364034=>1,3122600274=>1,3123754559=>1,3123662771=>1,3124249611=>1,3124253416=>1,3124992250=>1,3124987938=>1,3123606465=>1,3123606295=>1,3122803387=>1,3122672257=>1,3122906144=>1,3123063780=>1,3123075017=>1,3126436439=>1,3126438314=>1,3126637727=>1,3126631113=>1,3126638357=>1,3126639460=>1,3126645773=>1,3126641386=>1,3126625368=>1,3126625290=>1,3126589717=>1,3126588832=>1,3126593179=>1,3126597644=>1,3126610130=>1,3126601047=>1,3126649661=>1,3126657363=>1,3126698479=>1,3126698048=>1,3126701054=>1,3126711965=>1,3126719875=>1,3126716714=>1,3126695079=>1,3126692450=>1,3126660572=>1,3126658599=>1,3126671606=>1,3126689250=>1,3126690730=>1,3126587623=>1,3126585415=>1,3126479669=>1,3126478242=>1,3126487176=>1,3126488046=>1,3126501398=>1,3126492372=>1,3126477229=>1,3126475387=>1,3126449022=>1,3126448221=>1,3126465887=>1,3126468488=>1,3126468582=>1,3126509522=>1,3126511642=>1,3126576113=>1,3126575811=>1,3126576361=>1,3126577175=>1,3126581984=>1,3126580885=>1,3126565367=>1,3126565139=>1,3126536745=>1,3126515640=>1,3126551316=>1,3126552112=>1,3126553681=>1,3134753822=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-36.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3138091656=>1,3137896501=>1,3138094876=>1,3138117282=>1,3138174429=>1,3138154986=>1,3137855914=>1,3137666299=>1,3137527624=>1,3137452082=>1,3137617602=>1,3137618466=>1,3137654169=>1,3137640867=>1,3138398963=>1,3138402486=>1,3138610863=>1,3138585114=>1,3138610922=>1,3138612132=>1,3138644312=>1,3138629482=>1,3138551816=>1,3138550483=>1,3138459094=>1,3138402730=>1,3138459150=>1,3138459328=>1,3138511746=>1,3138459367=>1,3137450122=>1,3137426115=>1,3136970753=>1,3136965242=>1,3136970818=>1,3136970829=>1,3137011655=>1,3136971265=>1,3136950274=>1,3136886141=>1,3136326504=>1,3136156505=>1,3136372359=>1,3136834067=>1,3136882637=>1,3136836586=>1,3137039632=>1,3137063056=>1,3137414040=>1,3137413922=>1,3137415574=>1,3137415629=>1,3137419425=>1,3137417776=>1,3137396391=>1,3137347664=>1,3137063814=>1,3137063777=>1,3137063818=>1,3137063842=>1,3137342709=>1,3138675946=>1,3138680332=>1,3140587308=>1,3140586669=>1,3140587418=>1,3140602950=>1,3140721694=>1,3140647590=>1,3140574721=>1,3140574254=>1,3140571412=>1,3140558645=>1,3140571413=>1,3140571946=>1,3140573821=>1,3140572141=>1,3140828435=>1,3141110093=>1,3141281905=>1,3141280894=>1,3141283630=>1,3141283636=>1,3141311138=>1,3141299895=>1,3141280682=>1,3141235263=>1,3141161257=>1,3141157252=>1,3141161487=>1,3141161921=>1,3141226707=>1,3141165592=>1,3140317189=>1,3140268474=>1,3139514532=>1,3139481891=>1,3139514533=>1,3139522610=>1,3139560803=>1,3139559994=>1,3139478369=>1,3139221842=>1,3138693791=>1,3138682032=>1,3138776675=>1,3138824273=>1,3139193490=>1,3138910290=>1,3139655737=>1,3139657778=>1,3140223399=>1,3140223286=>1,3140226809=>1,3140250423=>1,3140267490=>1,3140261890=>1,3140086937=>1,3140085088=>1,3139934748=>1,3139669863=>1,3139938531=>1,3139981703=>1,3140084722=>1,3136109694=>1,3136100378=>1,3134752678=>1,3134752648=>1,3134753013=>1,3134753344=>1,3134753632=>1,3134753391=>1,3134752517=>1,3134752409=>1,3134751668=>1,3134751238=>1,3134751910=>1,3134752078=>1,3134752394=>1,3134752240=>1,3134753685=>1,3134753722=>1,3134866150=>1,3134765556=>1,3134923778=>1,3134923796=>1,3134923800=>1,3134923798=>1,3134762835=>1,3134754783=>1,3134754187=>1,3134753822=>1,3134754228=>1,3134754248=>1,3134754650=>1,3134754590=>1,3134751237=>1,3134751210=>1,3134504857=>1,3134504445=>1,3134525784=>1,3134526639=>1,3134533246=>1,3134529604=>1,3134504107=>1,3134502694=>1,3134501831=>1,3134496787=>1,3134501864=>1,3134502080=>1,3134502282=>1,3134502094=>1,3134587337=>1,3134587634=>1,3134669171=>1,3134655308=>1,3134671356=>1,3134750871=>1,3134751063=>1,3134750927=>1,3134654912=>1,3134632250=>1,3134605893=>1,3134602139=>1,3134611115=>1,3134614722=>1,3134625334=>1,3134923804=>1,3134923807=>1,3135548657=>1,3135503420=>1,3135549462=>1,3135551720=>1,3135591743=>1,3135581322=>1,3135488094=>1,3135488087=>1,3135480228=>1,3135480226=>1,3135480229=>1,3135481417=>1,3135486610=>1,3135481421=>1,3135592934=>1,3135727047=>1,3135988428=>1,3135987851=>1,3136004538=>1,3136011006=>1,3136099482=>1,3136070456=>1,3135984617=>1,3135877158=>1,3135788004=>1,3135786401=>1,3135843501=>1,3135843846=>1,3135856718=>1,3135464626=>1,3135449395=>1,3134978595=>1,3134977836=>1,3134979809=>1,3135049243=>1,3135281411=>1,3135160885=>1,3134961362=>1,3134960797=>1,3134923818=>1,3134923816=>1,3134923821=>1,3134923826=>1,3134941957=>1,3134923833=>1,3135300906=>1,3135318473=>1,3135418050=>1,3135414370=>1,3135421998=>1,3135438027=>1,3135444121=>1,3135444098=>1,3135407990=>1,3135369158=>1,3135318637=>1,3135318610=>1,3135320329=>1,3135321145=>1,3135321366=>1,3141315094=>1,3141327501=>1,3144680529=>1,3144670986=>1,3144683190=>1,3144721713=>1,3144838441=>1,3144837599=>1,3144666102=>1,3144666061=>1,3144665731=>1,3144665709=>1,3144665733=>1,3144665863=>1,3144666047=>1,3144665930=>1,3144839694=>1,3144840822=>1,3144920618=>1,3144914061=>1,3144938415=>1,3144938836=>1,3144939842=>1,3144939043=>1,3144913981=>1,3144892578=>1,3144841120=>1,3144840830=>1,3144841144=>1,3144842721=>1,3144879404=>1,3144852781=>1,3144665672=>1,3144665636=>1,3144435615=>1,3144435509=>1,3144531203=>1,3144542116=>1,3144567853=>1,3144546290=>1,3144399592=>1,3144384769=>1,3144089613=>1,3143627987=>1,3144108482=>1,3144316880=>1,3144361827=>1,3144316917=>1,3144594975=>1,3144601735=>1,3144647410=>1,3144606135=>1,3144659052=>1,3144662703=>1,3144665608=>1,3144665217=>1,3144606116=>1,3144603081=>1,3144602189=>1,3144602013=>1,3144602350=>1,3144602655=>1,3144603013=>1,3144940250=>1,3144940404=>1,3147842266=>1,3147839637=>1,3147845916=>1,3147847297=>1,3147850732=>1,3147850443=>1,3147834701=>1,3147832524=>1,3147830551=>1,3147830538=>1,3147831024=>1,3147831445=>1,3147832418=>1,3147831672=>1,3147851948=>1,3147853279=>1,3147862575=>1,3147862434=>1,3147862734=>1,3147862801=>1,3147864415=>1,3147862992=>1,3147862269=>1,3147861006=>1,3147856605=>1,3147854176=>1,3147856806=>1,3147856837=>1,3147857649=>1,3147830397=>1,3147826771=>1,3145229382=>1,3145224239=>1,3145233398=>1,3145237566=>1,3145375604=>1,3145306873=>1,3145214924=>1,3145214785=>1,3145204978=>1,3144940704=>1,3145211961=>1,3145213399=>1,3145214758=>1,3145214746=>1,3145539706=>1,3145558738=>1,3147773166=>1,3147674878=>1,3147782468=>1,3147782779=>1,3147826755=>1,3147819882=>1,3147539315=>1,3147011477=>1,3145569202=>1,3145559162=>1,3146048245=>1,3146592161=>1,3146998471=>1,3143594390=>1,3143593696=>1,3142127107=>1,3142126860=>1,3142127243=>1,3142127564=>1,3142177404=>1,3142127580=>1,3142126698=>1,3142126526=>1,3142125971=>1,3142125901=>1,3142126057=>1,3142126069=>1,3142126511=>1,3142126354=>1,3142177526=>1,3142377018=>1,3142885998=>1,3142885411=>1,3142886028=>1,3142886166=>1,3142886774=>1,3142886700=>1,3142884818=>1,3142862073=>1,3142510638=>1,3142494706=>1,3142516967=>1,3142519107=>1,3142862056=>1,3142541083=>1,3142125638=>1,3142125459=>1,3141509449=>1,3141493784=>1,3141509854=>1,3141510737=>1,3141512583=>1,3141512313=>1,3141461541=>1,3141459138=>1,3141328014=>1,3141327541=>1,3141328098=>1,3141448218=>1,3141455111=>1,3141448220=>1,3141586715=>1,3141614703=>1,3142124476=>1,3142124386=>1,3142124848=>1,3142124879=>1,3142125083=>1,3142124999=>1,3142124338=>1,3142124209=>1,3142106862=>1,3141707350=>1,3142115395=>1,3142123541=>1,3142124103=>1,3142887649=>1,3142888433=>1,3143061868=>1,3143061860=>1,3143061984=>1,3143061998=>1,3143062023=>1,3143062022=>1,3143061767=>1,3143037681=>1,3142995723=>1,3142995325=>1,3142995798=>1,3142995817=>1,3143020990=>1,3143012589=>1,3143062028=>1,3143070438=>1,3143525318=>1,3143525317=>1,3143587102=>1,3143593251=>1,3143593385=>1,3143593331=>1,3143525314=>1,3143521605=>1,3143520305=>1,3143520293=>1,3143521429=>1,3143521433=>1,3143521437=>1,3142995282=>1,3142995273=>1,3142992332=>1,3142992247=>1,3142992436=>1,3142992537=>1,3142993136=>1,3142992998=>1,3142991896=>1,3142969070=>1,3142890237=>1,3142890232=>1,3142892292=>1,3142899787=>1,3142960166=>1,3142917544=>1,3142993225=>1,3142993336=>1,3142993966=>1,3142993904=>1,3142993981=>1,3142994091=>1,3142995100=>1,3142994647=>1,3142993888=>1,3142993862=>1,3142993582=>1,3142993350=>1,3142993586=>1,3142993591=>1,3142993800=>1,3134495382=>1,3134494696=>1,3110648110=>1,3110648088=>1,3110648120=>1,3110648121=>1,3110648162=>1,3110648141=>1,3110648086=>1,3110648071=>1,3110631427=>1,3110631426=>1,3110631428=>1,3110631431=>1,3110636752=>1,3110633091=>1,3110648167=>1,3110648200=>1,3110965822=>1,3110860033=>1,3111054362=>1,3111100682=>1,3111100686=>1,3111100683=>1,3110763063=>1,3110762693=>1,3110650154=>1,3110648302=>1,3110720540=>1,3110720576=>1,3110762537=>1,3110727519=>1,3110603674=>1,3110603666=>1,3110360662=>1,3110360645=>1,3110360676=>1,3110360704=>1,3110360736=>1,3110360730=>1,3110360564=>1,3110360556=>1,3110360488=>1,3110360467=>1,3110360510=>1,3110360511=>1,3110360527=>1,3110360512=>1,3110360743=>1,3110360875=>1,3110465045=>1,3110465029=>1,3110563224=>1,3110563585=>1,3110603662=>1,3110603046=>1,3110463090=>1,3110444173=>1,3110360895=>1,3110360890=>1,3110360905=>1,3110360914=>1,3110361060=>1,3111164989=>1,3111165047=>1,3112955001=>1,3112954986=>1,3112955036=>1,3112955038=>1,3112955053=>1,3112955043=>1,3112954972=>1,3112954949=>1,3112954895=>1,3112954894=>1,3112954897=>1,3112954926=>1,3112954940=>1,3112954932=>1,3112955067=>1,3112955098=>1,3113229505=>1,3113218062=>1,3113230052=>1,3113396578=>1,3113880603=>1,3113805859=>1,3113166908=>1,3113166906=>1,3112955126=>1,3112955101=>1,3112955129=>1,3113032105=>1,3113032189=>1,3112954888=>1,3112673148=>1,3111535447=>1,3111473796=>1,3111645456=>1,3111686292=>1,3111721360=>1,3111699852=>1,3111471120=>1,3111383994=>1,3111165416=>1,3111165319=>1,3111205558=>1,3111243986=>1,3111354156=>1,3111290941=>1,3111795297=>1,3111919959=>1,3112553732=>1,3112509459=>1,3112558970=>1,3112649758=>1,3112672350=>1,3112657710=>1,3112255039=>1,3112255038=>1,3112032578=>1,3111985466=>1,3112114398=>1,3112200232=>1,3112239861=>1,3110360458=>1,3110360452=>1,3109084836=>1,3109084830=>1,3109132434=>1,3109132438=>1,3109132440=>1,3109132439=>1,3109061334=>1,3109061245=>1,3109060619=>1,3109040673=>1,3109060893=>1,3109060995=>1,3109061244=>1,3109061190=>1,3109132443=>1,3109132445=>1,3109214337=>1,3109210422=>1,3109232207=>1,3109232264=>1,3109261625=>1,3109232430=>1,3109210325=>1,3109183794=>1,3109132448=>1,3109132446=>1,3109132449=>1,3109133305=>1,3109183786=>1,3109136281=>1,3108913004=>1,3108912499=>1,3108552160=>1,3108548744=>1,3108566040=>1,3108566053=>1,3108566929=>1,3108566569=>1,3108548724=>1,3108439110=>1,3108167776=>1,3108167761=>1,3108174477=>1,3108239105=>1,3108350064=>1,3108246597=>1,3108579261=>1,3108580406=>1,3108714622=>1,3108714621=>1,3108783514=>1,3108802925=>1,3108912382=>1,3108864291=>1,3108714600=>1,3108714599=>1,3108625995=>1,3108580410=>1,3108699170=>1,3108714504=>1,3108714520=>1,3109274854=>1,3109279247=>1,3110071768=>1,3110071737=>1,3110071771=>1,3110071785=>1,3110122525=>1,3110098973=>1,3110071634=>1,3110071592=>1,3109879969=>1,3109871312=>1,3110057987=>1,3110058113=>1,3110071567=>1,3110071566=>1,3110150162=>1,3110171062=>1,3110360239=>1,3110360172=>1,3110360276=>1,3110360315=>1,3110360421=>1,3110360381=>1,3110360146=>1,3110282328=>1,3110173650=>1,3110173649=>1,3110173651=>1,3110282322=>1,3110282327=>1,3109871156=>1,3109870882=>1,3109448579=>1,3109441481=>1,3109458971=>1,3109458976=>1,3109459050=>1,3109458995=>1,3109441372=>1,3109441228=>1,3109317395=>1,3109280478=>1,3109388526=>1,3109409680=>1,3109441174=>1,3109441091=>1,3109459094=>1,3109459106=>1,3109534235=>1,3109534197=>1,3109726726=>1,3109767958=>1,3109792765=>1,3109792614=>1,3109534173=>1,3109499112=>1,3109459422=>1,3109459116=>1,3109459814=>1,3109459860=>1,3109495860=>1,3120615240=>1,3120615565=>1,3126801390=>1,3126800651=>1,3126801503=>1,3126801626=>1,3126804918=>1,3126802736=>1,3126800301=>1,3126799259=>1,3126796318=>1,3126793824=>1,3126797427=>1,3126797604=>1,3126798886=>1,3126798348=>1,3126809464=>1,3126821259=>1,3127210474=>1,3126874042=>1,3127345755=>1,3127355810=>1,3127355813=>1,3127355811=>1,3126848503=>1,3126846378=>1,3126833220=>1,3126828674=>1,3126835856=>1,3126836667=>1,3126839917=>1,3126838939=>1,3126793224=>1,3126790789=>1,3126692450=>1,3126690730=>1,3126692457=>1,3126695079=>1,3126698479=>1,3126698048=>1,3126689250=>1,3126688605=>1,3126660572=>1,3126658599=>1,3126663756=>1,3126671606=>1,3126683713=>1,3126683327=>1,3126701054=>1,3126711478=>1,3126765502=>1,3126764305=>1,3126773554=>1,3126774216=>1,3126789179=>1,3126788611=>1,3126759725=>1,3126758200=>1,3126719875=>1,3126711965=>1,3126737564=>1,3126738619=>1,3126747975=>1,3127360074=>1,3127361843=>1,3133835490=>1,3133288378=>1,3133900293=>1,3133960278=>1,3134056727=>1,3134004128=>1,3133259225=>1,3133259155=>1,3133247146=>1,3133246810=>1,3133247618=>1,3133256236=>1,3133259143=>1,3133259140=>1,3134119713=>1,3134183400=>1,3134416551=>1,3134406971=>1,3134486724=>1,3134493119=>1,3134494438=>1,3134493382=>1,3134406046=>1,3134405138=>1,3134255643=>1,3134246829=>1,3134391973=>1,3134404402=>1,3134404810=>1,3133246800=>1,3133206444=>1,3128546394=>1,3128545004=>1,3128800276=>1,3128800280=>1,3128988022=>1,3128800283=>1,3128545003=>1,3128545002=>1,3127414914=>1,3127365954=>1,3127922842=>1,3128165642=>1,3128545000=>1,3128293517=>1,3129686842=>1,3130258769=>1,3132887377=>1,3132319798=>1,3132888947=>1,3133046809=>1,3133205018=>1,3133055848=>1,3131711366=>1,3131011334=>1,3130590202=>1,3130322945=>1,3130634194=>1,3130708122=>1,3130774820=>1,3126657363=>1,3126649661=>1,3124993579=>1,3124992250=>1,3125010091=>1,3125178441=>1,3126334776=>1,3125226287=>1,3124987938=>1,3124253416=>1,3123662771=>1,3123652866=>1,3123730485=>1,3124239370=>1,3124249611=>1,3124239371=>1,3126334815=>1,3126338976=>1,3126381443=>1,3126375137=>1,3126388324=>1,3126395051=>1,3126401827=>1,3126395161=>1,3126374729=>1,3126371891=>1,3126347147=>1,3126342757=>1,3126350816=>1,3126355012=>1,3126371056=>1,3126355576=>1,3123609973=>1,3123609972=>1,3121218954=>1,3121175962=>1,3121218955=>1,3121218956=>1,3121218958=>1,3121218957=>1,3120920918=>1,3120920915=>1,3120777957=>1,3120629118=>1,3120778402=>1,3120882214=>1,3120919882=>1,3120882219=>1,3121224061=>1,3121492199=>1,3123059723=>1,3123059722=>1,3123063780=>1,3123075017=>1,3123606465=>1,3123606295=>1,3122803387=>1,3122672257=>1,3121543186=>1,3121532292=>1,3121604314=>1,3122364034=>1,3122600274=>1,3126402228=>1,3126402398=>1,3126576361=>1,3126575811=>1,3126577175=>1,3126580885=>1,3126585415=>1,3126581984=>1,3126569382=>1,3126565367=>1,3126536745=>1,3126535569=>1,3126537445=>1,3126551316=>1,3126565139=>1,3126552112=>1,3126587623=>1,3126588832=>1,3126636914=>1,3126625290=>1,3126637727=>1,3126638357=>1,3126641386=>1,3126639460=>1,3126610130=>1,3126601047=>1,3126589996=>1,3126589717=>1,3126593179=>1,3126593568=>1,3126597644=>1,3126515640=>1,3126509522=>1,3126433918=>1,3126432885=>1,3126434268=>1,3126434940=>1,3126438314=>1,3126436439=>1,3126427026=>1,3126425766=>1,3126421258=>1,3126419498=>1,3126421478=>1,3126424147=>1,3126425041=>1,3126424419=>1,3126449022=>1,3126457083=>1,3126482829=>1,3126480871=>1,3126487176=>1,3126488046=>1,3126501398=>1,3126492372=>1,3126479669=>1,3126479654=>1,3126468582=>1,3126468488=>1,3126477229=>1,3126478242=>1,3126479118=>1,3108161546=>1,);?>
1
+ <?php return array(3194758138=>3194758139,3194758130=>3194758131,3194757894=>3194757895,3193067930=>3193067931,3191835718=>3191835719,3189860194=>3189860195,3184869730=>3184869731,3184188614=>3184188615,3174262990=>3174262991,3173892100=>3173892101,3168147318=>3168147319,3168147282=>3168147283,3168147272=>3168147273,3168147236=>3168147237,3168147212=>3168147213,3168147206=>3168147207,3168147202=>3168147203,3161728000=>3161728255,3156633880=>3156633881,3185258935=>1,3185260452=>1,3185265429=>1,3185223967=>1,3185264850=>1,3185269987=>1,3185258811=>1,3185258832=>1,3185258844=>1,3185224066=>1,3185267011=>1,3185267560=>1,3185268031=>1,3185268108=>1,3185268271=>1,3185268348=>1,3185223717=>1,3185267980=>1,3185269134=>1,3185258770=>1,3185267730=>1,3185267842=>1,3185267140=>1,3185258697=>1,3185235559=>1,3185235540=>1,3185235832=>1,3185237377=>1,3185237839=>1,3185224726=>1,3185234287=>1,3185232273=>1,3185231295=>1,3185232368=>1,3185233840=>1,3185225138=>1,3185239359=>1,3185241265=>1,3185245897=>1,3185244574=>1,3185246564=>1,3185247762=>1,3185257604=>1,3185270018=>1,3185243332=>1,3185224131=>1,3185242608=>1,3185224129=>1,3185224093=>1,3185242796=>1,3185225184=>1,3185270421=>1,3185297122=>1,3185296590=>1,3185297271=>1,3185297344=>1,3185298859=>1,3185297367=>1,3185295288=>1,3185295253=>1,3185291431=>1,3185291322=>1,3185294898=>1,3185295148=>1,3185295231=>1,3185295157=>1,3185300464=>1,3185300531=>1,3185308827=>1,3185308620=>1,3185308915=>1,3185310905=>1,3185376903=>1,3185311093=>1,3185308074=>1,3185307404=>1,3185303029=>1,3185302932=>1,3185304100=>1,3185304746=>1,3185307307=>1,3185304907=>1,3185290825=>1,3185290607=>1,3185271503=>1,3185271486=>1,3185271516=>1,3185271525=>1,3185271552=>1,3185271546=>1,3185271178=>1,3185271103=>1,3185270323=>1,3185270130=>1,3185270330=>1,3185222991=>1,3185271054=>1,3185270832=>1,3185272378=>1,3185272468=>1,3185282653=>1,3185281152=>1,3185289793=>1,3185289942=>1,3185290503=>1,3185290482=>1,3185280169=>1,3185275033=>1,3185274003=>1,3185272536=>1,3185274043=>1,3185274480=>1,3185274951=>1,3185270045=>1,3185216972=>1,3176910010=>1,3176897644=>1,3177107433=>1,3177107690=>1,3178002114=>1,3177549431=>1,3176857504=>1,3176857237=>1,3176854232=>1,3176843506=>1,3176854601=>1,3176855111=>1,3176856440=>1,3176855441=>1,3178022422=>1,3178191728=>1,3179123984=>1,3179024774=>1,3179165938=>1,3179200342=>1,3179232200=>1,3179221469=>1,3178634198=>1,3178478438=>1,3178261112=>1,3178234710=>1,3178263372=>1,3178280166=>1,3178282449=>1,3176804642=>1,3176800995=>1,3176170390=>1,3176143185=>1,3176404268=>1,3176428013=>1,3176447589=>1,3176435553=>1,3176118045=>1,3175928990=>1,3174910129=>1,3174778386=>1,3175518124=>1,3175561428=>1,3175895786=>1,3175776526=>1,3176453022=>1,3176453130=>1,3176734641=>1,3176727602=>1,3176735505=>1,3176746696=>1,3176784757=>1,3176770230=>1,3176727579=>1,3176727231=>1,3176469633=>1,3176469525=>1,3176469641=>1,3176471906=>1,3176471918=>1,3180689927=>1,3180897981=>1,3185197023=>1,3185196993=>1,3185197038=>1,3185198179=>1,3185198535=>1,3185198367=>1,3185196936=>1,3185196595=>1,3185192931=>1,3185192287=>1,3185193595=>1,3185196442=>1,3185196579=>1,3185196447=>1,3185205431=>1,3185205556=>1,3185426995=>1,3185216175=>1,3185217559=>1,3185217766=>1,3185222781=>1,3185217817=>1,3185212977=>1,3185212752=>1,3185207312=>1,3185205892=>1,3185209080=>1,3185212432=>1,3185212536=>1,3185192158=>1,3185191876=>1,3184188610=>1,3184188609=>1,3184235287=>1,3184235387=>1,3184241746=>1,3184241162=>1,3184187529=>1,3184120611=>1,3183480094=>1,3181682290=>1,3183927297=>1,3183944852=>1,3184108051=>1,3184349570=>1,3184402002=>1,3185190948=>1,3185190541=>1,3185191018=>1,3185191042=>1,3185191392=>1,3185191206=>1,3185189994=>1,3185189547=>1,3184755421=>1,3184497120=>1,3184773181=>1,3184869740=>1,3185188866=>1,3185222953=>1,3187704684=>1,3192771408=>1,3192756956=>1,3192771492=>1,3192771746=>1,3192778806=>1,3192774902=>1,3192751712=>1,3192739185=>1,3192683473=>1,3192661836=>1,3192683898=>1,3192727245=>1,3192733980=>1,3192730498=>1,3192785514=>1,3192785636=>1,3192828598=>1,3192828241=>1,3192842041=>1,3192853643=>1,3192862768=>1,3192859572=>1,3192826984=>1,3192809853=>1,3192787308=>1,3192785988=>1,3192791861=>1,3192795846=>1,3192808055=>1,3192798188=>1,3192650940=>1,3192632740=>1,3192438136=>1,3192437501=>1,3192488104=>1,3192495315=>1,3192540619=>1,3192533501=>1,3192433105=>1,3192430008=>1,3192397690=>1,3192397256=>1,3192397809=>1,3192400591=>1,3192426664=>1,3192423985=>1,3192541437=>1,3192542066=>1,3192607909=>1,3192600192=>1,3192608597=>1,3192609525=>1,3192620364=>1,3192617226=>1,3192599492=>1,3192597201=>1,3192566380=>1,3192562571=>1,3192570176=>1,3192576657=>1,3192596691=>1,3192881284=>1,3192882370=>1,3194757940=>1,3194757933=>1,3194757993=>1,3194758055=>1,3194758086=>1,3194758081=>1,3194757930=>1,3194757913=>1,3194714866=>1,3194573276=>1,3194736129=>1,3194757893=>1,3194757910=>1,3194757909=>1,3194758089=>1,3194758097=>1,3194770982=>1,3194758129=>1,3194775799=>1,3194776868=>1,3194779555=>1,3194779496=>1,3194758123=>1,3194758120=>1,3194758105=>1,3194758100=>1,3194758110=>1,3194758112=>1,3194758116=>1,3194571943=>1,3194549922=>1,3193572883=>1,3193290642=>1,3193594899=>1,3193610834=>1,3193610842=>1,3193610837=>1,3193274898=>1,3193254523=>1,3192887506=>1,3192884795=>1,3192907256=>1,3192991599=>1,3193157142=>1,3193069069=>1,3193881341=>1,3193883710=>1,3194470958=>1,3194225716=>1,3194484740=>1,3194532398=>1,3194549543=>1,3194546485=>1,3194182669=>1,3194093126=>1,3193892878=>1,3193884607=>1,3193893497=>1,3193926966=>1,3193950642=>1,3192397137=>1,3192395759=>1,3190047134=>1,3189860196=>1,3190051579=>1,3190052893=>1,3190053879=>1,3190053851=>1,3189711976=>1,3189676393=>1,3188885019=>1,3188710965=>1,3189195634=>1,3189217000=>1,3189577463=>1,3189490434=>1,3190054634=>1,3190057774=>1,3190110159=>1,3190088334=>1,3190111210=>1,3190113566=>1,3190115008=>1,3190114910=>1,3190086972=>1,3190081095=>1,3190066647=>1,3190059517=>1,3190071214=>1,3190078100=>1,3190080257=>1,3188705311=>1,3188703352=>1,3188073983=>1,3188071832=>1,3188075925=>1,3188100208=>1,3188146674=>1,3188121224=>1,3188070010=>1,3187888675=>1,3187680006=>1,3187679506=>1,3187704677=>1,3174761690=>1,3187733290=>1,3187704690=>1,3188263435=>1,3188275951=>1,3188477373=>1,3188449758=>1,3188481075=>1,3188558676=>1,3188698714=>1,3188632260=>1,3188444570=>1,3188441138=>1,3188328498=>1,3188318716=>1,3188328516=>1,3188328600=>1,3188429782=>1,3190122443=>1,3190125762=>1,3190766095=>1,3190482676=>1,3191123788=>1,3191166531=>1,3191375698=>1,3191225283=>1,3190478849=>1,3190478626=>1,3190284336=>1,3190263841=>1,3190284517=>1,3190318827=>1,3190437969=>1,3190371304=>1,3191440398=>1,3191617824=>1,3192369192=>1,3192153852=>1,3192391118=>1,3192394286=>1,3192395472=>1,3192394469=>1,3191848514=>1,3191840238=>1,3191804195=>1,3191617950=>1,3191835723=>1,3191839498=>1,3191840226=>1,3190261435=>1,3190260971=>1,3190185362=>1,3190184957=>1,3190189300=>1,3190191330=>1,3190199065=>1,3190195591=>1,3190183452=>1,3190180631=>1,3190156857=>1,3190155647=>1,3190176829=>1,3190177241=>1,3190179852=>1,3190177412=>1,3190200058=>1,3190201803=>1,3190229919=>1,3190225601=>1,3190235500=>1,3190237647=>1,3190240550=>1,3190238492=>1,3190210143=>1,3190206928=>1,3190205572=>1,3190205107=>1,3190206029=>1,3190206237=>1,3190206744=>1,3187549865=>1,3174264945=>1,3164936717=>1,3164931650=>1,3164945195=>1,3164950456=>1,3164967325=>1,3164961780=>1,3164930219=>1,3164488352=>1,3163210674=>1,3163191840=>1,3163436101=>1,3163506900=>1,3164487578=>1,3163508551=>1,3164970579=>1,3164972195=>1,3164991752=>1,3164990482=>1,3164991960=>1,3164994925=>1,3164996717=>1,3164996174=>1,3164983870=>1,3164982543=>1,3164979867=>1,3164978022=>1,3164979907=>1,3164981790=>1,3164981839=>1,3163189308=>1,3163183419=>1,3162586677=>1,3162582644=>1,3162593662=>1,3162596827=>1,3162899804=>1,3162597201=>1,3162579278=>1,3162578700=>1,3162394390=>1,3162393164=>1,3162395035=>1,3162505509=>1,3162536566=>1,3162530654=>1,3162900034=>1,3162900137=>1,3163164965=>1,3163162929=>1,3163177565=>1,3163179636=>1,3163183146=>1,3163183121=>1,3163162921=>1,3163161049=>1,3162902732=>1,3162900307=>1,3163067672=>1,3163071020=>1,3163160998=>1,3164996817=>1,3164997082=>1,3165042981=>1,3165042894=>1,3165043277=>1,3165043508=>1,3165043878=>1,3165043591=>1,3165042806=>1,3165042719=>1,3165041672=>1,3165041549=>1,3165042020=>1,3165042083=>1,3165042411=>1,3165042204=>1,3165044113=>1,3165044256=>1,3165051855=>1,3165051581=>1,3165051936=>1,3165051966=>1,3165052942=>1,3165052163=>1,3165050939=>1,3165050830=>1,3165044300=>1,3165044295=>1,3165049019=>1,3165049805=>1,3165050827=>1,3165041208=>1,3165041155=>1,3165006765=>1,3165001599=>1,3165008595=>1,3165010650=>1,3165018017=>1,3165012967=>1,3165000278=>1,3165000040=>1,3164997959=>1,3164997784=>1,3164998923=>1,3164999767=>1,3165000003=>1,3164999771=>1,3165022621=>1,3165023729=>1,3165036936=>1,3165036553=>1,3165036967=>1,3165039685=>1,3165040605=>1,3165040577=>1,3165036132=>1,3165033855=>1,3165026007=>1,3165024453=>1,3165026874=>1,3165029765=>1,3165033847=>1,3162393155=>1,3162393106=>1,3157618765=>1,3157614403=>1,3157621128=>1,3157647837=>1,3157725776=>1,3157721967=>1,3157612635=>1,3157610269=>1,3157384203=>1,3157383025=>1,3157389528=>1,3157485136=>1,3157596460=>1,3157590368=>1,3157728919=>1,3157729762=>1,3158586779=>1,3158322537=>1,3158597799=>1,3158603837=>1,3158868747=>1,3158637144=>1,3158279346=>1,3157846916=>1,3157743822=>1,3157743281=>1,3157746836=>1,3157822283=>1,3157842388=>1,3157380561=>1,3156934191=>1,3156750678=>1,3156748659=>1,3156751336=>1,3156753232=>1,3156757619=>1,3156753650=>1,3156747728=>1,3156747725=>1,3156633895=>1,3156633883=>1,3156633897=>1,3156633899=>1,3156633902=>1,3156633900=>1,3156763461=>1,3156765645=>1,3156790789=>1,3156783946=>1,3156798423=>1,3156801593=>1,3156933895=>1,3156924499=>1,3156783621=>1,3156780573=>1,3156771056=>1,3156766098=>1,3156771062=>1,3156773975=>1,3156778874=>1,3159283353=>1,3159354927=>1,3161785875=>1,3161729034=>1,3161885070=>1,3161905644=>1,3162038847=>1,3161954156=>1,3161723264=>1,3161702197=>1,3161595737=>1,3161558365=>1,3161603931=>1,3161623564=>1,3161701643=>1,3161624187=>1,3162039084=>1,3162040263=>1,3162113441=>1,3162072838=>1,3162166532=>1,3162234246=>1,3162390773=>1,3162296471=>1,3162045313=>1,3162043904=>1,3162042661=>1,3162040858=>1,3162042668=>1,3162043008=>1,3162043168=>1,3161537443=>1,3161472150=>1,3160565514=>1,3160320100=>1,3160629244=>1,3160764982=>1,3160844646=>1,3160812445=>1,3160273686=>1,3160271563=>1,3159463537=>1,3159355114=>1,3160173270=>1,3160239883=>1,3160266059=>1,3160245715=>1,3160846225=>1,3160881735=>1,3161353222=>1,3161351626=>1,3161360824=>1,3161390700=>1,3161470297=>1,3161467853=>1,3161238907=>1,3161070758=>1,3160974703=>1,3160967995=>1,3161053677=>1,3161055652=>1,3161056251=>1,3165053477=>1,3165054045=>1,3170884591=>1,3170883700=>1,3170887746=>1,3171001986=>1,3171041656=>1,3171001995=>1,3170881546=>1,3170873612=>1,3170857695=>1,3170842790=>1,3170861512=>1,3170863905=>1,3170871067=>1,3170870305=>1,3171068502=>1,3171151266=>1,3171423435=>1,3171420804=>1,3171439186=>1,3171574115=>1,3171861420=>1,3171624149=>1,3171259502=>1,3171254637=>1,3171167434=>1,3171155590=>1,3171232465=>1,3171252362=>1,3171253095=>1,3170823036=>1,3170715665=>1,3169044870=>1,3168998025=>1,3169071508=>1,3169290660=>1,3169485433=>1,3169326683=>1,3168992693=>1,3168988570=>1,3168971631=>1,3168968584=>1,3168976944=>1,3168979160=>1,3168984595=>1,3168984563=>1,3169513690=>1,3169527291=>1,3170220244=>1,3170199832=>1,3170290755=>1,3170295956=>1,3170689813=>1,3170329784=>1,3170144489=>1,3170118425=>1,3169927594=>1,3169533216=>1,3169928297=>1,3170052413=>1,3170070451=>1,3171879177=>1,3171880379=>1,3174262934=>1,3174208917=>1,3174262937=>1,3174262955=>1,3174262960=>1,3174262957=>1,3174136270=>1,3174084599=>1,3173448671=>1,3173408532=>1,3173709628=>1,3173857378=>1,3174029174=>1,3173894739=>1,3174262968=>1,3174262994=>1,3174264955=>1,3156610273=>1,3174266622=>1,3174341250=>1,3174443586=>1,3174344070=>1,3174264931=>1,3174263028=>1,3174263003=>1,3174262999=>1,3174263009=>1,3174263014=>1,3174263019=>1,3173408531=>1,3173406908=>1,3172774141=>1,3172771407=>1,3172782307=>1,3172791487=>1,3172962298=>1,3172824604=>1,3172759282=>1,3172690895=>1,3172022946=>1,3172006258=>1,3172028131=>1,3172395298=>1,3172649625=>1,3172572910=>1,3172981591=>1,3173130748=>1,3173404951=>1,3173404938=>1,3173405975=>1,3173406730=>1,3173406852=>1,3173406740=>1,3173404692=>1,3173385433=>1,3173243968=>1,3173142620=>1,3173384969=>1,3173384973=>1,3173385425=>1,3168966765=>1,3168966012=>1,3166700061=>1,3166638436=>1,3166702770=>1,3166708278=>1,3166725218=>1,3166723338=>1,3166638401=>1,3166638314=>1,3166353293=>1,3166351853=>1,3166387319=>1,3166416755=>1,3166623297=>1,3166582013=>1,3166733609=>1,3166756014=>1,3166906819=>1,3166880486=>1,3166934481=>1,3166943948=>1,3167827053=>1,3167826210=>1,3166877019=>1,3166862184=>1,3166770921=>1,3166769734=>1,3166785347=>1,3166792455=>1,3166832872=>1,3166002517=>1,3165601394=>1,3165057218=>1,3165056059=>1,3165058521=>1,3165058666=>1,3165059706=>1,3165059387=>1,3165055938=>1,3165055481=>1,3165054307=>1,3165054235=>1,3165054451=>1,3165054623=>1,3165055176=>1,3165054958=>1,3165060399=>1,3165060685=>1,3165445304=>1,3165445289=>1,3165536841=>1,3165539233=>1,3165568251=>1,3165564355=>1,3165445283=>1,3165445266=>1,3165135450=>1,3165133312=>1,3165445127=>1,3165445138=>1,3165445149=>1,3167989175=>1,3167989176=>1,3168147300=>1,3168147299=>1,3168147302=>1,3168147309=>1,3168147315=>1,3168147310=>1,3168147289=>1,3168147286=>1,3168147259=>1,3168147255=>1,3168147264=>1,3168147266=>1,3168147277=>1,3168147274=>1,3168147323=>1,3168147324=>1,3168909469=>1,3168909090=>1,3168943790=>1,3168960576=>1,3168963909=>1,3168961112=>1,3168890484=>1,3168872153=>1,3168174357=>1,3168165249=>1,3168174421=>1,3168239746=>1,3168692975=>1,3168147251=>1,3168147249=>1,3168112503=>1,3168082348=>1,3168118278=>1,3168118384=>1,3168120302=>1,3168119400=>1,3168060063=>1,3168005933=>1,3168005896=>1,3168005894=>1,3168005903=>1,3168005904=>1,3168005920=>1,3168120417=>1,3168147205=>1,3168147233=>1,3168147229=>1,3168147239=>1,3168147242=>1,3168147247=>1,3168147244=>1,3168147227=>1,3168147224=>1,3168147211=>1,3168147209=>1,3168147215=>1,3168147216=>1,3168147221=>1,3174477138=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-37.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3161728000=>3161728255,3176118045=>1,3175937638=>1,3176143185=>1,3176404268=>1,3176435553=>1,3176428013=>1,3176170390=>1,3175928990=>1,3175561428=>1,3175518124=>1,3175776526=>1,3175895786=>1,3175928864=>1,3175928438=>1,3176447589=>1,3176453130=>1,3176727602=>1,3176727579=>1,3176727715=>1,3176734341=>1,3176735505=>1,3176734641=>1,3176727231=>1,3176727168=>1,3176469525=>1,3175484959=>1,3176469633=>1,3176469641=>1,3176471918=>1,3176471906=>1,3176453022=>1,3175476891=>1,3174262995=>1,3174262994=>1,3174262999=>1,3174263003=>1,3174263014=>1,3174263009=>1,3174262991=>1,3174262990=>1,3174262967=>1,3174262965=>1,3174262968=>1,3174262971=>1,3174262987=>1,3174262977=>1,3174263019=>1,3174263028=>1,3174761690=>1,3174477138=>1,3174778386=>1,3174910129=>1,3175432126=>1,3174948409=>1,3174344070=>1,3174341250=>1,3174264931=>1,3174263031=>1,3174264945=>1,3174264955=>1,3174266622=>1,3176746696=>1,3176770230=>1,3178280166=>1,3178263372=>1,3178282449=>1,3179024774=>1,3179123984=>1,3179040916=>1,3178261112=>1,3178234710=>1,3177549431=>1,3177110917=>1,3177564377=>1,3178002114=>1,3178191728=>1,3178022422=>1,3179165938=>1,3179221289=>1,3183480094=>1,3181682290=>1,3183927297=>1,3183944852=>1,3184120611=>1,3184108051=>1,3181306827=>1,3180897981=>1,3179221455=>1,3179221433=>1,3179221469=>1,3179232200=>1,3180689927=>1,3177107690=>1,3177107433=>1,3176854232=>1,3176854189=>1,3176854601=>1,3176855111=>1,3176855441=>1,3176855374=>1,3176844127=>1,3176843506=>1,3176800954=>1,3176784757=>1,3176800988=>1,3176800995=>1,3176804642=>1,3176801534=>1,3176855703=>1,3176856004=>1,3176857237=>1,3176857064=>1,3176857504=>1,3176897644=>1,3177104790=>1,3176910010=>1,3176856714=>1,3176856571=>1,3176856020=>1,3176856005=>1,3176856374=>1,3176856440=>1,3176856530=>1,3174262960=>1,3174262957=>1,3170715665=>1,3170689868=>1,3170823036=>1,3170842790=>1,3170861512=>1,3170857695=>1,3170295956=>1,3170290755=>1,3170070451=>1,3170052413=>1,3170118425=>1,3170144489=>1,3170220244=>1,3170186475=>1,3170863905=>1,3170870305=>1,3171041656=>1,3171001995=>1,3171068502=>1,3171151266=>1,3171167434=>1,3171155590=>1,3171001986=>1,3170887746=>1,3170873612=>1,3170871067=>1,3170881546=>1,3170883700=>1,3170884591=>1,3170883798=>1,3169929563=>1,3169927594=>1,3168961112=>1,3168960576=>1,3168963909=>1,3168966012=>1,3168968584=>1,3168966765=>1,3168943790=>1,3168940633=>1,3168239746=>1,3168174421=>1,3168692975=>1,3168890484=>1,3168909469=>1,3168909090=>1,3168971631=>1,3168976944=>1,3169071508=>1,3169044870=>1,3169400114=>1,3169485433=>1,3169527291=>1,3169513690=>1,3168998025=>1,3168992693=>1,3168984563=>1,3168979160=>1,3168984595=>1,3168985519=>1,3168988570=>1,3171232114=>1,3171252362=>1,3173405975=>1,3173404951=>1,3173406730=>1,3173406740=>1,3173406908=>1,3173406852=>1,3173404938=>1,3173404692=>1,3173243968=>1,3173197204=>1,3173384969=>1,3173384973=>1,3173385433=>1,3173385425=>1,3173408531=>1,3173408532=>1,3174136270=>1,3174084599=>1,3174208917=>1,3174262934=>1,3174262955=>1,3174262937=>1,3174029174=>1,3173894739=>1,3173709628=>1,3173448671=>1,3173857378=>1,3173892100=>1,3173892101=>1,3173130748=>1,3172981591=>1,3171861420=>1,3171624149=>1,3171879177=>1,3171880379=>1,3172006258=>1,3171919087=>1,3171574115=>1,3171439186=>1,3171254637=>1,3171253095=>1,3171259502=>1,3171265952=>1,3171420804=>1,3171270931=>1,3172022946=>1,3172028131=>1,3172791487=>1,3172782307=>1,3172791641=>1,3172824604=>1,3172962298=>1,3172880721=>1,3172774141=>1,3172771407=>1,3172395298=>1,3172187004=>1,3172649625=>1,3172690895=>1,3172759282=>1,3184187529=>1,3184188610=>1,3187704684=>1,3187704677=>1,3187704690=>1,3187733290=>1,3187888675=>1,3187772397=>1,3187680006=>1,3187679506=>1,3185310905=>1,3185308915=>1,3185311093=>1,3185376903=>1,3187671598=>1,3187549865=>1,3187912782=>1,3187941042=>1,3188275951=>1,3188237861=>1,3188318716=>1,3188328498=>1,3188328600=>1,3188328516=>1,3188146674=>1,3188121224=>1,3188073680=>1,3188071832=>1,3188073983=>1,3188075925=>1,3188100208=>1,3188086147=>1,3185308827=>1,3185308074=>1,3185295253=>1,3185295231=>1,3185295288=>1,3185297122=>1,3185297344=>1,3185297271=>1,3185295148=>1,3185295134=>1,3185290482=>1,3185289942=>1,3185290503=>1,3185290825=>1,3185294898=>1,3185291431=>1,3185297367=>1,3185297399=>1,3185304100=>1,3185303029=>1,3185304746=>1,3185304907=>1,3185307404=>1,3185307307=>1,3185302932=>1,3185300531=>1,3185298570=>1,3185297929=>1,3185298859=>1,3185299995=>1,3185300464=>1,3188429782=>1,3188441138=>1,3190156857=>1,3190155647=>1,3190176582=>1,3190177241=>1,3190180631=>1,3190179852=>1,3190125762=>1,3190114910=>1,3190105660=>1,3190088334=>1,3190110159=>1,3190111210=>1,3190113566=>1,3190111540=>1,3190183452=>1,3190184957=>1,3190206029=>1,3190205572=>1,3190206237=>1,3190206302=>1,3190206928=>1,3190206744=>1,3190205107=>1,3190201803=>1,3190191330=>1,3190185362=>1,3190195591=>1,3190199065=>1,3190200058=>1,3190086239=>1,3190081095=>1,3188710965=>1,3188705311=>1,3188885019=>1,3189195634=>1,3189577463=>1,3189490434=>1,3188703352=>1,3188698714=>1,3188444570=>1,3188444569=>1,3188449758=>1,3188481075=>1,3188632260=>1,3188558676=>1,3189752455=>1,3189860194=>1,3190066647=>1,3190057774=>1,3190067636=>1,3190077001=>1,3190080257=>1,3190078100=>1,3190054634=>1,3190053851=>1,3189860196=>1,3189860195=>1,3190047134=>1,3190051579=>1,3190052893=>1,3185289793=>1,3185282653=>1,3185199277=>1,3185198535=>1,3185205431=>1,3185205556=>1,3185205892=>1,3185205571=>1,3185198367=>1,3185198179=>1,3185196595=>1,3185196579=>1,3185196936=>1,3185196993=>1,3185197038=>1,3185197023=>1,3185207312=>1,3185212432=>1,3185222781=>1,3185217817=>1,3185222953=>1,3185223717=>1,3185224066=>1,3185223967=>1,3185217766=>1,3185217559=>1,3185212752=>1,3185212536=>1,3185212890=>1,3185212977=>1,3185216972=>1,3185216175=>1,3185196447=>1,3185193595=>1,3184349570=>1,3184241746=>1,3184402002=>1,3184497120=>1,3184773181=>1,3184755421=>1,3184241162=>1,3184235387=>1,3184188611=>1,3168174357=>1,3184188614=>1,3184188615=>1,3184235287=>1,3184190314=>1,3184869730=>1,3184869731=>1,3185191876=>1,3185191042=>1,3185192040=>1,3185192158=>1,3185192931=>1,3185192287=>1,3185191018=>1,3185190948=>1,3185188866=>1,3184869740=>1,3185189547=>1,3185189994=>1,3185190541=>1,3185224093=>1,3185224129=>1,3185270130=>1,3185270018=>1,3185270323=>1,3185270330=>1,3185271054=>1,3185270832=>1,3185269987=>1,3185269183=>1,3185267955=>1,3185267011=>1,3185267980=>1,3185268031=>1,3185269134=>1,3185268348=>1,3185271103=>1,3185271178=>1,3185274043=>1,3185272536=>1,3185274480=>1,3185274951=>1,3185281152=>1,3185275033=>1,3185272468=>1,3185272378=>1,3185271503=>1,3185271486=>1,3185271525=>1,3185271546=>1,3185271552=>1,3185265670=>1,3185265429=>1,3185237377=>1,3185235832=>1,3185237839=>1,3185239359=>1,3185241265=>1,3185239918=>1,3185235559=>1,3185235540=>1,3185224726=>1,3185224131=>1,3185225138=>1,3185231295=>1,3185234287=>1,3185233840=>1,3185242608=>1,3185242796=>1,3185258832=>1,3185258811=>1,3185258844=>1,3185258935=>1,3185264850=>1,3185260452=>1,3185258770=>1,3185258697=>1,3185244574=>1,3185243332=>1,3185246564=>1,3185247762=>1,3185257604=>1,3184188609=>1,3168147324=>1,3156771056=>1,3156766098=>1,3156771062=>1,3156773975=>1,3156780573=>1,3156778874=>1,3156765645=>1,3156763461=>1,3156750678=>1,3156748659=>1,3156751336=>1,3156753232=>1,3156757619=>1,3156753650=>1,3156783621=>1,3156783946=>1,3157590368=>1,3157384203=>1,3157596460=>1,3157610269=>1,3157614403=>1,3157612635=>1,3157383025=>1,3157380561=>1,3156798423=>1,3156790789=>1,3156801593=>1,3156924499=>1,3156934191=>1,3156933895=>1,3156747767=>1,3156747728=>1,3156349774=>1,3156275956=>1,3156406098=>1,3156406183=>1,3156415769=>1,3156406745=>1,3156274309=>1,3156264517=>1,3155945869=>1,3155897873=>1,3156222702=>1,3156226983=>1,3156263459=>1,3156248512=>1,3156494383=>1,3156494982=>1,3156633897=>1,3156633895=>1,3156633899=>1,3156633900=>1,3156747725=>1,3156633902=>1,3156633883=>1,3156633881=>1,3156500467=>1,3156500326=>1,3156610265=>1,3156610273=>1,3156633880=>1,3157618765=>1,3157621128=>1,3161390700=>1,3161326957=>1,3161467853=>1,3161470297=>1,3161558365=>1,3161472150=>1,3161070758=>1,3161056251=>1,3160853885=>1,3160846225=>1,3160959893=>1,3160963052=>1,3161055652=>1,3161053677=>1,3161593585=>1,3161595737=>1,3161819225=>1,3161785875=>1,3161905644=>1,3161954156=>1,3162039084=>1,3162038847=>1,3161729034=>1,3161723264=>1,3161624187=>1,3161623564=>1,3161698301=>1,3161701643=>1,3161702197=>1,3160812445=>1,3160765084=>1,3158200153=>1,3157822283=>1,3158322537=>1,3158586779=>1,3158603837=>1,3158597799=>1,3157746836=>1,3157743822=>1,3157721967=>1,3157647837=>1,3157725776=>1,3157728919=>1,3157743281=>1,3157729762=>1,3158637144=>1,3158868747=>1,3160271563=>1,3160266059=>1,3160273686=>1,3160564188=>1,3160629244=>1,3160584589=>1,3160245715=>1,3160239883=>1,3159283353=>1,3159209481=>1,3159283479=>1,3159463537=>1,3160173270=>1,3155877873=>1,3155812712=>1,3147906562=>1,3147903543=>1,3147912434=>1,3147912637=>1,3147913416=>1,3147912681=>1,3147903406=>1,3147902781=>1,3147896403=>1,3147895741=>1,3147896502=>1,3147896772=>1,3147902709=>1,3147898096=>1,3147913675=>1,3147917694=>1,3147930717=>1,3147930708=>1,3147931069=>1,3147931569=>1,3147932392=>1,3147932188=>1,3147930580=>1,3147929685=>1,3147920430=>1,3147918097=>1,3147921463=>1,3147925605=>1,3147929612=>1,3147926720=>1,3147895389=>1,3147895038=>1,3147865975=>1,3147865740=>1,3147866091=>1,3147871518=>1,3147871651=>1,3147871540=>1,3147865399=>1,3147865291=>1,3147864604=>1,3147864583=>1,3147864612=>1,3147865155=>1,3147865264=>1,3147865210=>1,3147872113=>1,3147873869=>1,3147879073=>1,3147877860=>1,3147879957=>1,3147880804=>1,3147891318=>1,3147881352=>1,3147877857=>1,3147877588=>1,3147874059=>1,3147874015=>1,3147874116=>1,3147876876=>1,3147877269=>1,3147933850=>1,3147934182=>1,3153749271=>1,3153182183=>1,3153927655=>1,3153928169=>1,3154108627=>1,3153959776=>1,3153159025=>1,3151624946=>1,3149863188=>1,3149863183=>1,3149864402=>1,3150591559=>1,3151526502=>1,3151526501=>1,3154145427=>1,3154163602=>1,3155633854=>1,3155473454=>1,3155745504=>1,3155761754=>1,3155809763=>1,3155799390=>1,3155298148=>1,3155271589=>1,3154177159=>1,3154177028=>1,3154177168=>1,3154498677=>1,3154724747=>1,3149782727=>1,3149746905=>1,3147948881=>1,3147948653=>1,3147949272=>1,3147949746=>1,3148068265=>1,3147949978=>1,3147948015=>1,3147947439=>1,3147941455=>1,3147935691=>1,3147945450=>1,3147945641=>1,3147947420=>1,3147945670=>1,3148659002=>1,3148806787=>1,3149710488=>1,3149710091=>1,3149710489=>1,3149737402=>1,3149746453=>1,3149746283=>1,3149702454=>1,3149699631=>1,3148942952=>1,3148807208=>1,3149206326=>1,3149681188=>1,3149699630=>1,3162040263=>1,3162040858=>1,3166416755=>1,3166353293=>1,3166582013=>1,3166623297=>1,3166638401=>1,3166638314=>1,3166351853=>1,3166002517=>1,3165445304=>1,3165445283=>1,3165536609=>1,3165543573=>1,3165568531=>1,3165567400=>1,3166638436=>1,3166700061=>1,3166832872=>1,3166792455=>1,3166862184=>1,3166877019=>1,3166906819=>1,3166880486=>1,3166785347=>1,3166770921=>1,3166708278=>1,3166702770=>1,3166723338=>1,3166725218=>1,3166769734=>1,3166756014=>1,3165445266=>1,3165445149=>1,3165054307=>1,3165053477=>1,3165054451=>1,3165054623=>1,3165055176=>1,3165054958=>1,3165052968=>1,3165052942=>1,3165051855=>1,3165051581=>1,3165051936=>1,3165051966=>1,3165052599=>1,3165052163=>1,3165055481=>1,3165055938=>1,3165060685=>1,3165060399=>1,3165133312=>1,3165135450=>1,3165445138=>1,3165445127=>1,3165059706=>1,3165059387=>1,3165057218=>1,3165056059=>1,3165057710=>1,3165058521=>1,3165058666=>1,3166934481=>1,3166943948=>1,3168147266=>1,3168147264=>1,3168147272=>1,3168147273=>1,3168147277=>1,3168147274=>1,3168147259=>1,3168147255=>1,3168147242=>1,3168147239=>1,3168147244=>1,3168147247=>1,3168147251=>1,3168147249=>1,3168147282=>1,3168147283=>1,3168147318=>1,3168147315=>1,3168147319=>1,3168147320=>1,3147864529=>1,3168147323=>1,3168147310=>1,3168147309=>1,3168147289=>1,3168147286=>1,3168147299=>1,3168147300=>1,3168147302=>1,3168147237=>1,3168147236=>1,3168082348=>1,3168060063=>1,3168112503=>1,3168119400=>1,3168147202=>1,3168120417=>1,3168005939=>1,3168005933=>1,3167827053=>1,3167826210=>1,3168005894=>1,3168005896=>1,3168005920=>1,3168005903=>1,3168147203=>1,3168147205=>1,3168147221=>1,3168147216=>1,3168147224=>1,3168147227=>1,3168147233=>1,3168147229=>1,3168147215=>1,3168147213=>1,3168147207=>1,3168147206=>1,3168147209=>1,3168147211=>1,3168147212=>1,3165051525=>1,3165051170=>1,3163183419=>1,3163183146=>1,3163189308=>1,3163191840=>1,3163436101=>1,3163210674=>1,3163183121=>1,3163179636=>1,3163161049=>1,3163160998=>1,3163162921=>1,3163162929=>1,3163177565=>1,3163164965=>1,3163492640=>1,3163508551=>1,3164967325=>1,3164961780=>1,3164970579=>1,3164972195=>1,3164981790=>1,3164979907=>1,3164950456=>1,3164945195=>1,3164488352=>1,3164487578=>1,3164930219=>1,3164931650=>1,3164937211=>1,3164936717=>1,3163071020=>1,3162917843=>1,3162296471=>1,3162234246=>1,3162393106=>1,3162393155=>1,3162394390=>1,3162393164=>1,3162113441=>1,3162072838=>1,3162042668=>1,3162042661=>1,3162043008=>1,3162043168=>1,3162045313=>1,3162043904=>1,3162395035=>1,3162505509=>1,3162597201=>1,3162596827=>1,3162693965=>1,3162812418=>1,3162900034=>1,3162899804=>1,3162593662=>1,3162586677=>1,3162536566=>1,3162530654=>1,3162578700=>1,3162579278=>1,3162582644=>1,3164981839=>1,3164983870=>1,3165041672=>1,3165041549=>1,3165042020=>1,3165042204=>1,3165042719=>1,3165042411=>1,3165041208=>1,3165041155=>1,3165036936=>1,3165036132=>1,3165036967=>1,3165039685=>1,3165040605=>1,3165040577=>1,3165042806=>1,3165042894=>1,3165049019=>1,3165044300=>1,3165050761=>1,3165050827=>1,3165050939=>1,3165050830=>1,3165044295=>1,3165044256=>1,3165043277=>1,3165042981=>1,3165043508=>1,3165043591=>1,3165044113=>1,3165033855=>1,3165033847=>1,3164997784=>1,3164997082=>1,3164997959=>1,3164999767=>1,3165000003=>1,3164999771=>1,3164996817=>1,3164996717=>1,3164990482=>1,3164987728=>1,3164991752=>1,3164991960=>1,3164996174=>1,3164994925=>1,3165000040=>1,3165000278=>1,3165023729=>1,3165022621=>1,3165024453=>1,3165026007=>1,3165029765=>1,3165026874=>1,3165018017=>1,3165012967=>1,3165006765=>1,3165001599=>1,3165008443=>1,3165008595=>1,3165010650=>1,3168165249=>1,);?>
1
+ <?php return array(3264383306=>3264383307,3250739170=>3250739171,3250419108=>3250419109,3245036856=>3245036857,3243904086=>3243904089,3238752814=>3238752815,3236828416=>3236828671,3231737508=>3231737509,3231573808=>3231573809,3231573060=>3231573061,3224676166=>3224676167,3199679900=>3199679901,3199484948=>3199484949,3197016070=>3197016071,3195714262=>3195714263,3195714250=>3195714251,3195713998=>3195713999,3195566850=>3195566851,3237052523=>1,3237053208=>1,3237053221=>1,3237052560=>1,3237052573=>1,3237052725=>1,3237052988=>1,3237053244=>1,3237064602=>1,3237057644=>1,3237057592=>1,3237065662=>1,3237065755=>1,3237066106=>1,3237065891=>1,3237054014=>1,3237053433=>1,3237042996=>1,3237053242=>1,3237053249=>1,3237053253=>1,3237053417=>1,3237053259=>1,3237053234=>1,3236814224=>1,3233513292=>1,3233512546=>1,3234025482=>1,3234026374=>1,3234325928=>1,3234225770=>1,3233512510=>1,3233512508=>1,3233305216=>1,3233305098=>1,3233308271=>1,3233507947=>1,3233507948=>1,3235039490=>1,3235040016=>1,3236165732=>1,3236165730=>1,3236646419=>1,3236811316=>1,3236979093=>1,3237066217=>1,3236165554=>1,3236165553=>1,3235047020=>1,3235042171=>1,3236136640=>1,3236137955=>1,3236155781=>1,3236980202=>1,3237071529=>1,3240220695=>1,3239740406=>1,3240260734=>1,3240275270=>1,3240309813=>1,3240309808=>1,3239667452=>1,3239641501=>1,3239466052=>1,3238989828=>1,3239524904=>1,3239572724=>1,3239629438=>1,3239629126=>1,3240466631=>1,3240795242=>1,3243450435=>1,3243270684=>1,3243450890=>1,3243451057=>1,3243451388=>1,3243451302=>1,3243270490=>1,3243270351=>1,3242247444=>1,3241268507=>1,3242683681=>1,3242758329=>1,3243069573=>1,3238871550=>1,3238865453=>1,3237077399=>1,3237073569=>1,3237079499=>1,3237084223=>1,3237161180=>1,3237160106=>1,3237073509=>1,3237073345=>1,3237070442=>1,3237069746=>1,3233304992=>1,3237071574=>1,3237072995=>1,3237072555=>1,3237560215=>1,3237871330=>1,3238752815=>1,3238752813=>1,3238758038=>1,3238765811=>1,3238865420=>1,3238766274=>1,3238752811=>1,3238752444=>1,3238057258=>1,3238028418=>1,3238440377=>1,3238506975=>1,3238538756=>1,3237069149=>1,3232344103=>1,3227716411=>1,3227469690=>1,3227716552=>1,3227716757=>1,3227720871=>1,3227716912=>1,3227461362=>1,3227459764=>1,3227255787=>1,3227255150=>1,3227307396=>1,3227362914=>1,3227458447=>1,3227457994=>1,3227721749=>1,3227723164=>1,3227754541=>1,3227753194=>1,3227756646=>1,3227767947=>1,3227776560=>1,3227772665=>1,3227752573=>1,3227740019=>1,3227724657=>1,3227723306=>1,3227724750=>1,3227728624=>1,3227739034=>1,3227255074=>1,3226934354=>1,3225917220=>1,3224676167=>1,3225941284=>1,3225941385=>1,3226070034=>1,3225942290=>1,3224116776=>1,3224007841=>1,3223594529=>1,3223594520=>1,3224007014=>1,3224007525=>1,3224007696=>1,3224007526=>1,3226070447=>1,3226070867=>1,3226589833=>1,3226589566=>1,3226590865=>1,3226591153=>1,3226934300=>1,3226598006=>1,3226589176=>1,3226568393=>1,3226542626=>1,3226505898=>1,3226563003=>1,3226567448=>1,3226567726=>1,3227776613=>1,3227776769=>1,3232003279=>1,3231980022=>1,3232033024=>1,3232034323=>1,3232034667=>1,3232034463=>1,3231965235=>1,3231961333=>1,3231822897=>1,3231737509=>1,3231822973=>1,3231849035=>1,3231903075=>1,3231878453=>1,3232034738=>1,3232034762=>1,3243457704=>1,3232343709=>1,3232344264=>1,3232360992=>1,3232567284=>1,3232447857=>1,3232343363=>1,3232343169=>1,3232056318=>1,3232034787=>1,3232160315=>1,3232160497=>1,3232160703=>1,3231677324=>1,3231660984=>1,3229273830=>1,3229219993=>1,3229416019=>1,3229708806=>1,3231079985=>1,3231008278=>1,3229172802=>1,3228978366=>1,3228514720=>1,3227837757=>1,3228537902=>1,3228537945=>1,3228977205=>1,3231164878=>1,3231292148=>1,3231573071=>1,3231573000=>1,3231573101=>1,3231576051=>1,3231579517=>1,3231577470=>1,3231568934=>1,3231568927=>1,3231406196=>1,3231404901=>1,3231407461=>1,3231408094=>1,3231477418=>1,3233304949=>1,3243904090=>1,3269067599=>1,3268770607=>1,3269127514=>1,3269522201=>1,3270665900=>1,3269572869=>1,3268431393=>1,3268416210=>1,3267090932=>1,3267088173=>1,3267098996=>1,3267099015=>1,3268153769=>1,3268094141=>1,3270874189=>1,3270874194=>1,3272144113=>1,3272144105=>1,3272146161=>1,3272392230=>1,3273031584=>1,3272458101=>1,3272142577=>1,3272142065=>1,3271743067=>1,3271609536=>1,3271743291=>1,3271912947=>1,3272142057=>1,3267069253=>1,3267012670=>1,3265298183=>1,3265187274=>1,3265298422=>1,3265661379=>1,3265662001=>1,3265661830=>1,3264905281=>1,3264891602=>1,3264562177=>1,3264561171=>1,3264653391=>1,3264653407=>1,3264786958=>1,3264653420=>1,3265662100=>1,3265662418=>1,3266430733=>1,3265793329=>1,3266817297=>1,3266819555=>1,3267008203=>1,3266981192=>1,3265693319=>1,3265693187=>1,3265662917=>1,3265662746=>1,3265677042=>1,3265692106=>1,3265692626=>1,3273167774=>1,3273182617=>1,3277717874=>1,3277714057=>1,3277724938=>1,3278102944=>1,3279033613=>1,3278924770=>1,3277685002=>1,3277583458=>1,3277343692=>1,3277328218=>1,3277345851=>1,3277569851=>1,3277581718=>1,3277576582=>1,3279171183=>1,3279240659=>1,3280797273=>1,3280623268=>1,3280896453=>1,3281053861=>1,3281651149=>1,3281288391=>1,3280623216=>1,3280621199=>1,3279255810=>1,3279246097=>1,3279671648=>1,3279671736=>1,3280617626=>1,3276962927=>1,3276227668=>1,3274077630=>1,3274075327=>1,3274180139=>1,3274224931=>1,3274614692=>1,3274410722=>1,3274073372=>1,3273846809=>1,3273231446=>1,3273186634=>1,3273550812=>1,3273681433=>1,3273846426=>1,3274619173=>1,3275060794=>1,3275420998=>1,3275420994=>1,3275633978=>1,3276068638=>1,3276107234=>1,3276101418=>1,3275419642=>1,3275300044=>1,3275060974=>1,3275060798=>1,3275060983=>1,3275060989=>1,3275106886=>1,3263990917=>1,3263647998=>1,3247960177=>1,3247864130=>1,3248110409=>1,3248111220=>1,3248111561=>1,3248111329=>1,3247864090=>1,3247836775=>1,3247076872=>1,3246967925=>1,3247076958=>1,3247105029=>1,3247836732=>1,3247107980=>1,3248446235=>1,3248448857=>1,3249296873=>1,3249261210=>1,3249445098=>1,3249716215=>1,3249737244=>1,3249734002=>1,3249261206=>1,3249261202=>1,3248806229=>1,3248784693=>1,3248851402=>1,3249087672=>1,3249100676=>1,3246958530=>1,3246178049=>1,3244885843=>1,3244874806=>1,3244885858=>1,3244885954=>1,3244945409=>1,3244902736=>1,3244874787=>1,3244861699=>1,3243904087=>1,3243554841=>1,3243904088=>1,3243904089=>1,3244837643=>1,3223474352=>1,3244991771=>1,3244998881=>1,3245283862=>1,3245247146=>1,3245312162=>1,3245313010=>1,3246140944=>1,3245313403=>1,3245095425=>1,3245043996=>1,3245019463=>1,3245016294=>1,3245036857=>1,3245036861=>1,3245036862=>1,3249967157=>1,3249967183=>1,3257708425=>1,3257670193=>1,3258605849=>1,3258944486=>1,3259290675=>1,3258945035=>1,3257307635=>1,3256822226=>1,3254964688=>1,3254906483=>1,3255316230=>1,3255427248=>1,3256656023=>1,3256414513=>1,3259675982=>1,3259943139=>1,3261976276=>1,3261595748=>1,3262543763=>1,3263082397=>1,3263640914=>1,3263083713=>1,3261584993=>1,3261523446=>1,3260519335=>1,3260360026=>1,3260538760=>1,3261101507=>1,3261103690=>1,3254794530=>1,3254793325=>1,3250743123=>1,3250742944=>1,3251032365=>1,3251148490=>1,3251171779=>1,3251171600=>1,3250739179=>1,3250737078=>1,3250419124=>1,3250419109=>1,3250497589=>1,3250595202=>1,3250734372=>1,3252724523=>1,3252860017=>1,3253625174=>1,3253390798=>1,3253728020=>1,3253899464=>1,3254521115=>1,3254263900=>1,3253254285=>1,3253221692=>1,3252926906=>1,3252891987=>1,3252929546=>1,3252981521=>1,3252981729=>1,3243478737=>1,3223468497=>1,3201027858=>1,3201027095=>1,3201031821=>1,3201037726=>1,3201041984=>1,3201041852=>1,3201024410=>1,3201022224=>1,3201005612=>1,3201005581=>1,3201007453=>1,3201010283=>1,3201020992=>1,3201013354=>1,3201049617=>1,3201069976=>1,3201098788=>1,3201098339=>1,3201106285=>1,3201106485=>1,3201125042=>1,3201112072=>1,3201090414=>1,3201088824=>1,3201070455=>1,3201070278=>1,3201073769=>1,3201075331=>1,3201084946=>1,3201077931=>1,3201003092=>1,3201000172=>1,3200698036=>1,3200694455=>1,3200709822=>1,3200733290=>1,3200757223=>1,3200737785=>1,3200686456=>1,3200680512=>1,3200654972=>1,3200653967=>1,3200655905=>1,3200664022=>1,3200667220=>1,3200665920=>1,3200762733=>1,3200765883=>1,3200930542=>1,3200915522=>1,3200975427=>1,3200991547=>1,3200992144=>1,3200992012=>1,3200915073=>1,3200913803=>1,3200776796=>1,3200766877=>1,3200885056=>1,3200890551=>1,3200891322=>1,3201129262=>1,3201130861=>1,3201458778=>1,3201314269=>1,3201480365=>1,3201527346=>1,3201533782=>1,3201532423=>1,3201301205=>1,3201297788=>1,3201288582=>1,3201287178=>1,3201288665=>1,3201296567=>1,3201297568=>1,3201297297=>1,3201533787=>1,3201657562=>1,3201708157=>1,3201678401=>1,3201776072=>1,3201827464=>1,3201869941=>1,3201828354=>1,3201676330=>1,3201676328=>1,3201662115=>1,3201661176=>1,3201666020=>1,3201676324=>1,3201676326=>1,3201283959=>1,3201273517=>1,3201157035=>1,3201155636=>1,3201158077=>1,3201158292=>1,3201161884=>1,3201160939=>1,3201148498=>1,3201146436=>1,3201137972=>1,3201136189=>1,3201139656=>1,3201140313=>1,3201143933=>1,3201143044=>1,3201174633=>1,3201175418=>1,3201229279=>1,3201222683=>1,3201230752=>1,3201240399=>1,3201267384=>1,3201265739=>1,3201219854=>1,3201211691=>1,3201192844=>1,3201176550=>1,3201194568=>1,3201200526=>1,3201203238=>1,3200653232=>1,3200648289=>1,3196085025=>1,3196074194=>1,3196095470=>1,3196101178=>1,3196112502=>1,3196104054=>1,3195843924=>1,3195780859=>1,3195714243=>1,3195714004=>1,3195714258=>1,3195714278=>1,3195773472=>1,3195744116=>1,3196125581=>1,3196125582=>1,3196781223=>1,3196771350=>1,3196781654=>1,3196853842=>1,3196889638=>1,3196860602=>1,3196750470=>1,3196738318=>1,3196147155=>1,3196141877=>1,3196313554=>1,3196633226=>1,3196636218=>1,3195713996=>1,3195713990=>1,3195033176=>1,3195031757=>1,3195033655=>1,3195034543=>1,3195037785=>1,3195036232=>1,3195021912=>1,3195021450=>1,3194828521=>1,3194824454=>1,3194856529=>1,3194946842=>1,3195021366=>1,3194946845=>1,3195204581=>1,3195274459=>1,3195638930=>1,3195637778=>1,3195639031=>1,3195641458=>1,3195660146=>1,3195641466=>1,3195605724=>1,3195572943=>1,3195280635=>1,3195280410=>1,3195385148=>1,3195535286=>1,3195550887=>1,3196980276=>1,3196981689=>1,3199540145=>1,3199537896=>1,3199573738=>1,3199766702=>1,3199871612=>1,3199837665=>1,3199474447=>1,3199362417=>1,3198891089=>1,3198677774=>1,3199353276=>1,3199356362=>1,3199357327=>1,3199357240=>1,3199883482=>1,3200000147=>1,3200381278=>1,3200371293=>1,3200397826=>1,3200409078=>1,3200579451=>1,3200465096=>1,3200334351=>1,3200329644=>1,3200072525=>1,3200068382=>1,3200076446=>1,3200118122=>1,3200258722=>1,3198088546=>1,3197760518=>1,3197337697=>1,3197200694=>1,3197339187=>1,3197359526=>1,3197374317=>1,3197361189=>1,3197170117=>1,3197043875=>1,3196982680=>1,3196982069=>1,3196988691=>1,3196989193=>1,3197030457=>1,3197024792=>1,3197569762=>1,3197572883=>1,3197727299=>1,3197727212=>1,3197727524=>1,3197728816=>1,3197729142=>1,3197728852=>1,3197727052=>1,3197718005=>1,3197688374=>1,3197643831=>1,3197705648=>1,3197715596=>1,3197717845=>1,3201869943=>1,3201869945=>1,3216368795=>1,3216283795=>1,3216517995=>1,3216581178=>1,3216983180=>1,3216793638=>1,3216149316=>1,3212016251=>1,3212007268=>1,3212007213=>1,3212008450=>1,3212012532=>1,3212014374=>1,3212013428=>1,3217015613=>1,3217029422=>1,3220183131=>1,3220165596=>1,3220214969=>1,3220239517=>1,3220275936=>1,3220275935=>1,3219702578=>1,3219661798=>1,3218168258=>1,3217939388=>1,3218175012=>1,3219001474=>1,3219050913=>1,3212005757=>1,3212001703=>1,3211161134=>1,3211161110=>1,3211161322=>1,3211163331=>1,3211202897=>1,3211195837=>1,3211160477=>1,3211160162=>1,3211155442=>1,3211154090=>1,3211155806=>1,3211157254=>1,3211158713=>1,3211158403=>1,3211207214=>1,3211210550=>1,3211999183=>1,3211996364=>1,3211999293=>1,3211999715=>1,3212000957=>1,3212000201=>1,3211993531=>1,3211993157=>1,3211985837=>1,3211861340=>1,3211988048=>1,3211990303=>1,3211992072=>1,3220282814=>1,3220304034=>1,3221466363=>1,3221466217=>1,3221474500=>1,3221480241=>1,3222306060=>1,3221562393=>1,3221465948=>1,3221462914=>1,3221444707=>1,3221428579=>1,3221446198=>1,3221456696=>1,3221460635=>1,3221459995=>1,3223199788=>1,3223199964=>1,3223468489=>1,3223468358=>1,3194804486=>1,3223469354=>1,3223469706=>1,3223469428=>1,3223468196=>1,3223468177=>1,3223394350=>1,3223200504=>1,3223441950=>1,3223468058=>1,3223468140=>1,3221265705=>1,3221259589=>1,3220375161=>1,3220374734=>1,3220375331=>1,3220773156=>1,3220818035=>1,3220774166=>1,3220374626=>1,3220357569=>1,3220324283=>1,3220322308=>1,3220327428=>1,3220328262=>1,3220353695=>1,3220349575=>1,3220819174=>1,3220868087=>1,3221046327=>1,3220958544=>1,3221046758=>1,3221046827=>1,3221219009=>1,3221050718=>1,3220958128=>1,3220947708=>1,3220896634=>1,3220894251=>1,3220931601=>1,3220932046=>1,3220932085=>1,3211128742=>1,3211128658=>1,3204262453=>1,3204260678=>1,3204263035=>1,3204267038=>1,3204796677=>1,3204371340=>1,3203963298=>1,3203958662=>1,3203318228=>1,3203258582=>1,3203340682=>1,3203369861=>1,3203699722=>1,3203379462=>1,3204797169=>1,3204797292=>1,3204799624=>1,3204799394=>1,3204799763=>1,3204799984=>1,3204805258=>1,3204800459=>1,3204799349=>1,3204798753=>1,3204797574=>1,3204797310=>1,3204798174=>1,3204798221=>1,3204798638=>1,3203198107=>1,3203184695=>1,3202162133=>1,3202162130=>1,3202162134=>1,3202213417=>1,3202402014=>1,3202401964=>1,3202160542=>1,3202122858=>1,3201980472=>1,3201980419=>1,3201987112=>1,3201997914=>1,3202117235=>1,3202087641=>1,3202402023=>1,3202402035=>1,3202894919=>1,3202799569=>1,3202914006=>1,3202993106=>1,3203075403=>1,3203036430=>1,3202790959=>1,3202673896=>1,3202416564=>1,3202416209=>1,3202595753=>1,3202641602=>1,3202642459=>1,3204816169=>1,3204816291=>1,3210803399=>1,3210741496=>1,3210917771=>1,3211068288=>1,3211069762=>1,3211069047=>1,3207989641=>1,3207987547=>1,3206895597=>1,3206895589=>1,3206914690=>1,3206920921=>1,3207987283=>1,3206931986=>1,3211069897=>1,3211070340=>1,3211106119=>1,3211106065=>1,3211106537=>1,3211125441=>1,3211126161=>1,3211125924=>1,3211106012=>1,3211075412=>1,3211070444=>1,3211070382=>1,3211072901=>1,3211074440=>1,3211074494=>1,3206892330=>1,3206880769=>1,3204930238=>1,3204930229=>1,3204960313=>1,3204961534=>1,3206549075=>1,3206401006=>1,3204930148=>1,3204850579=>1,3204826315=>1,3204816319=>1,3204829698=>1,3204837088=>1,3204850314=>1,3204850190=>1,3206609198=>1,3206610718=>1,3206725852=>1,3206696590=>1,3206726973=>1,3206742074=>1,3206880276=>1,3206880272=>1,3206685999=>1,3206668851=>1,3206636607=>1,3206615288=>1,3206636929=>1,3206646949=>1,3206647907=>1,3223469961=>1,);?>
includes/vendor/MchHttp/bad-ip-lists/anonymizers-ips-38.php CHANGED
@@ -1 +1 @@
1
- <?php return array(3236828416=>3236828671,3220357569=>1,3220353695=>1,3220374626=>1,3220374734=>1,3220375278=>1,3220375161=>1,3220349575=>1,3220282814=>1,3220275936=>1,3220322308=>1,3220324283=>1,3220328262=>1,3220327428=>1,3220375331=>1,3220375342=>1,3220947708=>1,3220932046=>1,3220958128=>1,3220958544=>1,3221046654=>1,3221046327=>1,3220931601=>1,3220896634=>1,3220773156=>1,3220375414=>1,3220774166=>1,3220818035=>1,3220868087=>1,3220819174=>1,3220275935=>1,3220214969=>1,3215122645=>1,3212016699=>1,3216013484=>1,3216149316=>1,3216368795=>1,3216283795=>1,3212014374=>1,3212012532=>1,3212004710=>1,3212001703=>1,3212005757=>1,3212007213=>1,3212008450=>1,3212007271=>1,3216550459=>1,3216581178=>1,3219661798=>1,3219001474=>1,3219702578=>1,3220165596=>1,3221046758=>1,3220183131=>1,3218168258=>1,3217939388=>1,3216839741=>1,3216793638=>1,3216983180=>1,3217015613=>1,3217029422=>1,3220239517=>1,3221046827=>1,3224007841=>1,3224007696=>1,3224116776=>1,3224676166=>1,3225917220=>1,3224676167=>1,3224007526=>1,3224007525=>1,3223594520=>1,3223474352=>1,3223594529=>1,3223735299=>1,3224007014=>1,3223908481=>1,3225941284=>1,3225941385=>1,3226568393=>1,3226567726=>1,3226589176=>1,3226589566=>1,3226590865=>1,3226589833=>1,3226567448=>1,3226563003=>1,3226070034=>1,3225942290=>1,3226070447=>1,3226070867=>1,3226542626=>1,3226505898=>1,3223469961=>1,3223469706=>1,3221462914=>1,3221459995=>1,3221465948=>1,3221466217=>1,3221480241=>1,3221474500=>1,3221456696=>1,3221446198=>1,3221219009=>1,3221050718=>1,3221259589=>1,3221265705=>1,3221444707=>1,3221428579=>1,3221562393=>1,3223199788=>1,3223468196=>1,3223468177=>1,3223468358=>1,3223468489=>1,3223469428=>1,3223468497=>1,3223468140=>1,3223468058=>1,3223200504=>1,3223199964=>1,3223207435=>1,3223394350=>1,3223441950=>1,3212000957=>1,3211999715=>1,3204930238=>1,3204930229=>1,3204960313=>1,3204961534=>1,3206549075=>1,3206401006=>1,3204930148=>1,3204882695=>1,3204837088=>1,3204829801=>1,3204837095=>1,3204850190=>1,3204850579=>1,3204850314=>1,3206608141=>1,3206609198=>1,3206725852=>1,3206696590=>1,3206726973=>1,3206880272=>1,3206880769=>1,3206880276=>1,3206685999=>1,3206668851=>1,3206615288=>1,3206610718=>1,3206636607=>1,3206636929=>1,3206647907=>1,3206647018=>1,3204829765=>1,3204829698=>1,3204799392=>1,3204799349=>1,3204799394=>1,3204799440=>1,3204799540=>1,3204799537=>1,3204798853=>1,3204798753=>1,3204798221=>1,3204798174=>1,3204798276=>1,3204798456=>1,3204798638=>1,3204798458=>1,3204799624=>1,3204799693=>1,3204816297=>1,3204816291=>1,3204816319=>1,3204816370=>1,3204826315=>1,3204825497=>1,3204816261=>1,3204816169=>1,3204799984=>1,3204799763=>1,3204800355=>1,3204800459=>1,3204805258=>1,3206892330=>1,3206892338=>1,3211161322=>1,3211161110=>1,3211163331=>1,3211195837=>1,3211202897=>1,3211196409=>1,3211160477=>1,3211160162=>1,3211154090=>1,3211128742=>1,3211155442=>1,3211155806=>1,3211158713=>1,3211157254=>1,3211207214=>1,3211210550=>1,3211996364=>1,3211993531=>1,3211998289=>1,3211999183=>1,3226591153=>1,3211999293=>1,3211992072=>1,3211990303=>1,3211985837=>1,3211861340=>1,3211986600=>1,3211988048=>1,3211989876=>1,3211128658=>1,3211126161=>1,3207987283=>1,3206931986=>1,3207987547=>1,3207989641=>1,3210803399=>1,3208009894=>1,3206920955=>1,3206920921=>1,3206895597=>1,3206895589=>1,3206899965=>1,3206910649=>1,3206920118=>1,3206914690=>1,3210917771=>1,3210919957=>1,3211075412=>1,3211072901=>1,3211106537=>1,3211125441=>1,3211125924=>1,3211125551=>1,3211070382=>1,3211070340=>1,3211068920=>1,3211068288=>1,3211069047=>1,3211069743=>1,3211069897=>1,3212000201=>1,3226934300=>1,3237065755=>1,3237065662=>1,3237065891=>1,3237066106=>1,3237069149=>1,3237066217=>1,3237064602=>1,3237057644=>1,3237053249=>1,3237053244=>1,3237053253=>1,3237053259=>1,3237054014=>1,3237053417=>1,3237069746=>1,3237070442=>1,3237080859=>1,3237079499=>1,3237084223=>1,3237160106=>1,3237558283=>1,3237161180=>1,3237077399=>1,3237073569=>1,3237071574=>1,3237071529=>1,3237072555=>1,3237072995=>1,3237073509=>1,3237073345=>1,3237053242=>1,3237053221=>1,3235040016=>1,3235039490=>1,3235042171=>1,3236136640=>1,3236147183=>1,3236137955=>1,3234325928=>1,3234225770=>1,3233512510=>1,3233512508=>1,3233512546=>1,3233513292=>1,3234026374=>1,3234025482=>1,3236155781=>1,3236165553=>1,3237042996=>1,3236980202=>1,3237052560=>1,3237052573=>1,3237053208=>1,3237052988=>1,3236979093=>1,3236814224=>1,3236165730=>1,3236165554=>1,3236165732=>1,3236646419=>1,3236811316=>1,3237560215=>1,3237781927=>1,3243270684=>1,3243270490=>1,3243364918=>1,3243450435=>1,3243451302=>1,3243450890=>1,3243270351=>1,3243069573=>1,3240795242=>1,3240466631=>1,3241268507=>1,3242247444=>1,3242758329=>1,3242683681=>1,3243451388=>1,3243453974=>1,3244874787=>1,3244861699=>1,3244874806=>1,3244885843=>1,3244885866=>1,3244885858=>1,3244837643=>1,3243904090=>1,3243904086=>1,3243554841=>1,3243904087=>1,3243904088=>1,3243904089=>1,3240309813=>1,3240309808=>1,3238752814=>1,3238752813=>1,3238752815=>1,3238758038=>1,3238766274=>1,3238765811=>1,3238752811=>1,3238752444=>1,3238028418=>1,3237871330=>1,3238057258=>1,3238440377=>1,3238538756=>1,3238506975=>1,3238865420=>1,3238865453=>1,3239667452=>1,3239641501=>1,3239740406=>1,3240220695=>1,3240275270=>1,3240260734=>1,3239629438=>1,3239629126=>1,3238989828=>1,3238871550=>1,3239466052=>1,3239524904=>1,3239572724=>1,3233507948=>1,3233507947=>1,3227767947=>1,3227756646=>1,3227767995=>1,3227772665=>1,3227776560=>1,3227773270=>1,3227754541=>1,3227753194=>1,3227747240=>1,3227740019=>1,3227747949=>1,3227747950=>1,3227752573=>1,3227747951=>1,3227776613=>1,3227837757=>1,3229273830=>1,3229273734=>1,3229416019=>1,3229708806=>1,3231079985=>1,3231008278=>1,3229219993=>1,3229172809=>1,3228537902=>1,3228514720=>1,3228537945=>1,3228977205=>1,3229172806=>1,3228978366=>1,3227739034=>1,3227728781=>1,3227457994=>1,3227453587=>1,3227458447=>1,3227459764=>1,3227469690=>1,3227461362=>1,3227453586=>1,3227453584=>1,3226934354=>1,3204798142=>1,3227255074=>1,3227255150=>1,3227362914=>1,3227255787=>1,3227716411=>1,3227716552=>1,3227727685=>1,3227724750=>1,3227728624=>1,3227728654=>1,3227728780=>1,3227728779=>1,3227724657=>1,3227723306=>1,3227716912=>1,3227716757=>1,3227720871=>1,3227721749=>1,3227723164=>1,3231160986=>1,3231164878=>1,3232056318=>1,3232037862=>1,3232160315=>1,3232160497=>1,3232343169=>1,3232160703=>1,3232034787=>1,3232034762=>1,3232034423=>1,3232034136=>1,3232034523=>1,3232034599=>1,3232034738=>1,3232034667=>1,3232343363=>1,3232343709=>1,3233304949=>1,3233033029=>1,3233304992=>1,3233305098=>1,3233308271=>1,3233305216=>1,3232608191=>1,3232567284=>1,3232344264=>1,3232344103=>1,3232360992=>1,3232447427=>1,3232447857=>1,3232033024=>1,3232032933=>1,3231573060=>1,3231573000=>1,3231573061=>1,3231573071=>1,3231573808=>1,3231573101=>1,3231568934=>1,3231568927=>1,3231404901=>1,3231292148=>1,3231406196=>1,3231407461=>1,3231477418=>1,3231408094=>1,3231573809=>1,3231573814=>1,3231822973=>1,3231822897=>1,3231849035=>1,3231961333=>1,3231980022=>1,3231965235=>1,3231737509=>1,3231737508=>1,3231576423=>1,3231576051=>1,3231577470=>1,3231660984=>1,3231677324=>1,3226598006=>1,3204797574=>1,3194928411=>1,3194865268=>1,3194946842=>1,3194946845=>1,3195021366=>1,3194963795=>1,3194856529=>1,3194828521=>1,3194776422=>1,3194776136=>1,3194776858=>1,3194776868=>1,3194824454=>1,3194779555=>1,3195021450=>1,3195021912=>1,3195280410=>1,3195274459=>1,3195280635=>1,3195385148=>1,3195550887=>1,3195535286=>1,3195204581=>1,3195118222=>1,3195033176=>1,3195031757=>1,3195033655=>1,3195034543=>1,3195037785=>1,3195036232=>1,3194775799=>1,3194775762=>1,3194549922=>1,3194549543=>1,3194571943=>1,3194573276=>1,3194736129=>1,3194714866=>1,3194546485=>1,3194532398=>1,3194182669=>1,3194093126=>1,3194225716=>1,3194360304=>1,3194470958=>1,3194362152=>1,3194757894=>1,3194757895=>1,3194758100=>1,3194758097=>1,3194758116=>1,3194758120=>1,3194770982=>1,3194758129=>1,3194758089=>1,3194758081=>1,3194757910=>1,3194757909=>1,3194757930=>1,3194757933=>1,3194757940=>1,3195566850=>1,3195566851=>1,3196313554=>1,3196147155=>1,3196633226=>1,3196636218=>1,3196738318=>1,3196666709=>1,3196141877=>1,3196128054=>1,3196101178=>1,3196095470=>1,3196104054=>1,3196112502=>1,3196125582=>1,3196125581=>1,3196750470=>1,3196771350=>1,3196982237=>1,3196982069=>1,3196982680=>1,3196988691=>1,3197016070=>1,3196989193=>1,3196981689=>1,3196981350=>1,3196781654=>1,3196781223=>1,3196853842=>1,3196860602=>1,3196980276=>1,3196085025=>1,3196074194=>1,3195713990=>1,3195713621=>1,3195713996=>1,3195713998=>1,3195714000=>1,3195713999=>1,3195660146=>1,3195641466=>1,3195636386=>1,3195572943=>1,3195637778=>1,3195638930=>1,3195641458=>1,3195639031=>1,3195714004=>1,3195714008=>1,3195744116=>1,3195714278=>1,3195773472=>1,3195780859=>1,3195843924=>1,3195843896=>1,3195714263=>1,3195714262=>1,3195714243=>1,3195714209=>1,3195714250=>1,3195714251=>1,3195714258=>1,3194085922=>1,3193926966=>1,3192397690=>1,3192397256=>1,3192397809=>1,3192398523=>1,3192400591=>1,3192400529=>1,3192395759=>1,3192395472=>1,3192153852=>1,3192005237=>1,3192369192=>1,3192391118=>1,3192394469=>1,3192394286=>1,3192423985=>1,3192430008=>1,3192566380=>1,3192542066=>1,3192570176=>1,3192576657=>1,3192599492=>1,3192597201=>1,3192541437=>1,3192540619=>1,3192437501=>1,3192433105=>1,3192438136=>1,3192488104=>1,3192533501=>1,3192495165=>1,3191848514=>1,3191840238=>1,3190284336=>1,3190263841=>1,3190284517=>1,3190318827=>1,3190467141=>1,3190371304=>1,3190261435=>1,3190260971=>1,3190235500=>1,3190229919=>1,3190237647=>1,3190247006=>1,3190255485=>1,3190249037=>1,3190482676=>1,3190766095=>1,3191835718=>1,3191804195=>1,3191835719=>1,3191835723=>1,3191840226=>1,3191839498=>1,3191617950=>1,3191617824=>1,3191166531=>1,3191123788=>1,3191225283=>1,3191375698=>1,3191440398=>1,3192600192=>1,3192607909=>1,3192991599=>1,3192907256=>1,3193067930=>1,3193067931=>1,3193157142=>1,3193069069=>1,3192904577=>1,3192884795=>1,3192842041=>1,3192829144=>1,3192853643=>1,3192859572=>1,3192882370=>1,3192862768=>1,3193254523=>1,3193274898=>1,3193883710=>1,3193881341=>1,3193884607=>1,3193887037=>1,3193893497=>1,3193892878=>1,3193715717=>1,3193610842=>1,3193290642=>1,3193289558=>1,3193594899=>1,3193610834=>1,3193610837=>1,3192828598=>1,3192828241=>1,3192727245=>1,3192723948=>1,3192730498=>1,3192733980=>1,3192751712=>1,3192739185=>1,3192683898=>1,3192683473=>1,3192609525=>1,3192608597=>1,3192617226=>1,3192620364=>1,3192650940=>1,3192632740=>1,3192771408=>1,3192771492=>1,3192798188=>1,3192791861=>1,3192799395=>1,3192808055=>1,3192813026=>1,3192809853=>1,3192791007=>1,3192787308=>1,3192774902=>1,3192771746=>1,3192778806=>1,3192785514=>1,3192785988=>1,3197016072=>1,3197024042=>1,3201296567=>1,3201288582=>1,3201297297=>1,3201297568=>1,3201301205=>1,3201297788=>1,3201287816=>1,3201283959=>1,3201265739=>1,3201240399=>1,3201267384=>1,3201270513=>1,3201278539=>1,3201273517=>1,3201314269=>1,3201458778=>1,3201676324=>1,3201666020=>1,3201676326=>1,3201676328=>1,3201678401=>1,3201676330=>1,3201662115=>1,3201661176=>1,3201527346=>1,3201480365=>1,3201532423=>1,3201533782=>1,3201657562=>1,3201533787=>1,3201230752=>1,3201229279=>1,3201143044=>1,3201140313=>1,3201148498=>1,3201155636=>1,3201158077=>1,3201157035=>1,3201139656=>1,3201137972=>1,3201112072=>1,3201106485=>1,3201125042=>1,3201129262=>1,3201136189=>1,3201130861=>1,3201158292=>1,3201159232=>1,3201208580=>1,3201200526=>1,3201210635=>1,3201211691=>1,3201228098=>1,3201222683=>1,3201194568=>1,3201192844=>1,3201161884=>1,3201160939=>1,3201176550=>1,3201186081=>1,3201186284=>1,3201708157=>1,3201776072=>1,3203198107=>1,3203190778=>1,3203248988=>1,3203258582=>1,3203340682=>1,3203318228=>1,3203184695=>1,3203075403=>1,3202900845=>1,3202894919=>1,3202914006=>1,3202993106=>1,3203036430=>1,3203023551=>1,3203369861=>1,3203379462=>1,3204796753=>1,3204796677=>1,3204797030=>1,3204797169=>1,3204797310=>1,3204797292=>1,3204371340=>1,3204356237=>1,3203963298=>1,3203958662=>1,3204260678=>1,3204263035=>1,3204267038=>1,3202799569=>1,3202790959=>1,3202087641=>1,3201997914=>1,3202095464=>1,3202122858=>1,3202160542=>1,3202131785=>1,3201987112=>1,3201980472=>1,3201828354=>1,3201827464=>1,3201869941=>1,3201869943=>1,3201980419=>1,3201869945=>1,3202162130=>1,3202162133=>1,3202416564=>1,3202416209=>1,3202444993=>1,3202595753=>1,3202642459=>1,3202641602=>1,3202402035=>1,3202402023=>1,3202213417=>1,3202162134=>1,3202401890=>1,3202401964=>1,3202402014=>1,3201106285=>1,3201102749=>1,3199573738=>1,3199540145=>1,3199679900=>1,3199679901=>1,3199837665=>1,3199766702=>1,3199537896=>1,3199484949=>1,3199356362=>1,3199353276=>1,3199357240=>1,3199357327=>1,3199484948=>1,3199362417=>1,3199871612=>1,3199883482=>1,3200334351=>1,3200329644=>1,3200371293=>1,3200381278=>1,3200409078=>1,3200397826=>1,3200258722=>1,3200196614=>1,3200000147=>1,3199955898=>1,3200068382=>1,3200072525=>1,3200118122=>1,3200076446=>1,3198891089=>1,3198677774=>1,3197361189=>1,3197359526=>1,3197374317=>1,3197569762=>1,3197643831=>1,3197572883=>1,3197339187=>1,3197337697=>1,3197030457=>1,3197024792=>1,3197043875=>1,3197118186=>1,3197200694=>1,3197170117=>1,3197688374=>1,3197705648=>1,3197728852=>1,3197728816=>1,3197729142=>1,3197745899=>1,3198088546=>1,3197760518=>1,3197727524=>1,3197727299=>1,3197717845=>1,3197715596=>1,3197718005=>1,3197727052=>1,3197727212=>1,3200457945=>1,3200476474=>1,3201013354=>1,3201007453=>1,3201020992=>1,3201022224=>1,3201027095=>1,3201024410=>1,3201006154=>1,3201005612=>1,3200992012=>1,3200991547=>1,3200992144=>1,3201000172=>1,3201005581=>1,3201003092=>1,3201027858=>1,3201031821=>1,3201073769=>1,3201070455=>1,3201084677=>1,3201084946=>1,3201098339=>1,3201088824=>1,3201070278=>1,3201069976=>1,3201041852=>1,3201037726=>1,3201041984=>1,3201058044=>1,3201058644=>1,3200975427=>1,3200930542=>1,3200694455=>1,3200686456=>1,3200698036=>1,3200709822=>1,3200737785=>1,3200733290=>1,3200682742=>1,3200667220=>1,3200579451=>1,3200531245=>1,3200648289=>1,3200653967=>1,3200655905=>1,3200654972=>1,3200739167=>1,3200742621=>1,3200913803=>1,3200890551=>1,3200915073=>1,3200915075=>1,3200930540=>1,3200915522=>1,3200889341=>1,3200885056=>1,3200762227=>1,3200757223=>1,3200762733=>1,3200765883=>1,3200768433=>1,3190210143=>1,);?>
1
+ <?php return array(3370081082=>3370081083,3355835884=>3355835885,3355800850=>3355800851,3355430912=>3355432959,3351047168=>3351047679,3349700794=>3349700795,3346194176=>3346194431,3343172732=>3343172733,3328339008=>3328339009,3325639976=>3325639977,3322071592=>3322071599,3322071586=>3322071587,3318951130=>3318951131,3283236896=>3283236897,3356003852=>1,3355926595=>1,3355895796=>1,3356026425=>1,3355985011=>1,3355932713=>1,3355947163=>1,3356199282=>1,3356621387=>1,3356620698=>1,3356654874=>1,3356729122=>1,3356824989=>1,3356824987=>1,3356619623=>1,3356609617=>1,3356115874=>1,3356089471=>1,3355883916=>1,3356222548=>1,3356565844=>1,3356068195=>1,3355872440=>1,3355373109=>1,3354970578=>1,3355402021=>1,3355424916=>1,3355424967=>1,3355424935=>1,3354519013=>1,3354519001=>1,3353998701=>1,3353858839=>1,3354467807=>1,3354495689=>1,3354517348=>1,3355434840=>1,3355496762=>1,3355872416=>1,3355835882=>1,3356843458=>1,3355872444=>1,3355879810=>1,3355801117=>1,3355800852=>1,3355559986=>1,3355555198=>1,3355600808=>1,3355796858=>1,3355800010=>1,3355881940=>1,3357065522=>1,3358592298=>1,3358482122=>1,3358482114=>1,3358624555=>1,3358717467=>1,3358797517=>1,3358765712=>1,3358464114=>1,3358452782=>1,3358376307=>1,3358317379=>1,3358382340=>1,3358391059=>1,3358410534=>1,3358391774=>1,3358858202=>1,3358869009=>1,3359110094=>1,3359110093=>1,3359110103=>1,3359110117=>1,3359110129=>1,3359110123=>1,3359110089=>1,3359110087=>1,3358902282=>1,3358872931=>1,3359028450=>1,3359062738=>1,3359090221=>1,3359088986=>1,3358304023=>1,3358277979=>1,3357427594=>1,3357400118=>1,3357638750=>1,3357751998=>1,3357758886=>1,3357752551=>1,3357392789=>1,3357232970=>1,3357066994=>1,3353832705=>1,3357140806=>1,3357140911=>1,3357181677=>1,3357181675=>1,3357759203=>1,3357776291=>1,3358275708=>1,3358188092=>1,3358275833=>1,3358275837=>1,3358277967=>1,3358276093=>1,3358173186=>1,3358103353=>1,3357902915=>1,3357797655=>1,3357927234=>1,3357932748=>1,3357954871=>1,3357932750=>1,3356955316=>1,3351804018=>1,3337961377=>1,3337958216=>1,3338349374=>1,3338397062=>1,3338443077=>1,3338434895=>1,3337906350=>1,3337211045=>1,3335748178=>1,3335747236=>1,3335748287=>1,3335748822=>1,3335749437=>1,3335749106=>1,3338443115=>1,3338640767=>1,3340481310=>1,3340092187=>1,3340481326=>1,3340481506=>1,3340486464=>1,3340486412=>1,3339965872=>1,3339957979=>1,3339671951=>1,3339159526=>1,3339712631=>1,3339743009=>1,3339933180=>1,3335746744=>1,3335745591=>1,3334953523=>1,3334953045=>1,3334953849=>1,3334956111=>1,3334957120=>1,3334956978=>1,3334953042=>1,3334952821=>1,3334951162=>1,3334951151=>1,3334951470=>1,3334952364=>1,3334952380=>1,3334959225=>1,3334959627=>1,3335727769=>1,3335727764=>1,3335727777=>1,3335742501=>1,3335744624=>1,3335743106=>1,3335321044=>1,3335319634=>1,3334961250=>1,3334960774=>1,3334961398=>1,3334961582=>1,3334961651=>1,3340666996=>1,3341048499=>1,3350523690=>1,3350522604=>1,3350523734=>1,3350645630=>1,3351339015=>1,3351036469=>1,3350147743=>1,3349714072=>1,3346490086=>1,3346290887=>1,3347047062=>1,3349699987=>1,3349714071=>1,3349714051=>1,3351367994=>1,3351370826=>1,3351509909=>1,3351509460=>1,3359110132=>1,3351865910=>1,3353340330=>1,3352589333=>1,3351503205=>1,3351497733=>1,3351378069=>1,3351375062=>1,3351378073=>1,3351378349=>1,3351378355=>1,3346255352=>1,3346245163=>1,3341852741=>1,3341799360=>1,3341852742=>1,3341852745=>1,3342582064=>1,3342496116=>1,3341799258=>1,3341799114=>1,3341216348=>1,3341055257=>1,3341705857=>1,3341705938=>1,3341797659=>1,3342582078=>1,3343035529=>1,3344980491=>1,3344980275=>1,3345317652=>1,3345397866=>1,3346232788=>1,3346232199=>1,3344457976=>1,3344457975=>1,3343172734=>1,3343172733=>1,3343572651=>1,3344407291=>1,3344407295=>1,3353552927=>1,3359264962=>1,3370105738=>1,3369997586=>1,3370192103=>1,3370508598=>1,3370511482=>1,3370508729=>1,3369898500=>1,3369778163=>1,3368662166=>1,3368601800=>1,3368881490=>1,3369501795=>1,3369577682=>1,3369504517=>1,3370752517=>1,3370917003=>1,3371122059=>1,3371122017=>1,3371122071=>1,3371122072=>1,3371142589=>1,3371122171=>1,3371113671=>1,3371113595=>1,3371108476=>1,3371108017=>1,3371108506=>1,3371108951=>1,3371113237=>1,3371109215=>1,3368514274=>1,3368493626=>1,3367227811=>1,3366973521=>1,3367728146=>1,3367801538=>1,3368081034=>1,3368080546=>1,3366952396=>1,3366741830=>1,3366436835=>1,3366212877=>1,3366627480=>1,3366634819=>1,3366737564=>1,3366687055=>1,3368089674=>1,3368091332=>1,3368300649=>1,3368266002=>1,3368345730=>1,3368348190=>1,3368473773=>1,3368467929=>1,3368265498=>1,3368259091=>1,3368255522=>1,3368229058=>1,3368256154=>1,3368257475=>1,3368258994=>1,3371235562=>1,3371236614=>1,3375746974=>1,3375746597=>1,3375760755=>1,3375760757=>1,3375861754=>1,3375861505=>1,3375684803=>1,3375483692=>1,3375316610=>1,3375292559=>1,3375357139=>1,3375365986=>1,3375424249=>1,3375421076=>1,3375980834=>1,3375993622=>1,3376297687=>1,3376297549=>1,3376298380=>1,3376298398=>1,3376303403=>1,3376303396=>1,3376296878=>1,3376296774=>1,3376019714=>1,3376007813=>1,3376019722=>1,3376136090=>1,3376296611=>1,3376142979=>1,3374923849=>1,3374923446=>1,3373551714=>1,3373548715=>1,3373551718=>1,3373555268=>1,3373558357=>1,3373556018=>1,3373436994=>1,3373302198=>1,3371340037=>1,3371256034=>1,3371683861=>1,3372734549=>1,3373138307=>1,3372987090=>1,3373558914=>1,3373559082=>1,3374442141=>1,3374442111=>1,3374442178=>1,3374442199=>1,3374761010=>1,3374442228=>1,3374442017=>1,3374430442=>1,3373577850=>1,3373577756=>1,3373700144=>1,3373716743=>1,3374073674=>1,3366148572=>1,3365854393=>1,3360988592=>1,3360983741=>1,3360999223=>1,3361023486=>1,3361109356=>1,3361029062=>1,3360983385=>1,3360979382=>1,3360963901=>1,3360958332=>1,3360965707=>1,3360972184=>1,3360978277=>1,3360974396=>1,3361157330=>1,3361158555=>1,3361901933=>1,3361623918=>1,3361901949=>1,3362083544=>1,3362231910=>1,3362127052=>1,3361570588=>1,3361568327=>1,3361194019=>1,3361180517=>1,3361303326=>1,3361539626=>1,3361562197=>1,3361555457=>1,3360863689=>1,3360853654=>1,3359580300=>1,3359579482=>1,3359584010=>1,3359798060=>1,3359922985=>1,3359902044=>1,3359577036=>1,3359487053=>1,3359282610=>1,3334951010=>1,3359290843=>1,3359446347=>1,3359486193=>1,3359452942=>1,3359924201=>1,3360001322=>1,3360697066=>1,3360488358=>1,3360744970=>1,3360853506=>1,3360853627=>1,3360853587=>1,3360422638=>1,3360373459=>1,3360037260=>1,3360037210=>1,3360109936=>1,3360213626=>1,3360371604=>1,3362362442=>1,3362385570=>1,3363900250=>1,3363822275=>1,3363900377=>1,3363900409=>1,3364669354=>1,3363915522=>1,3363545721=>1,3363539685=>1,3363047037=>1,3362987201=>1,3363063961=>1,3363071178=>1,3363501954=>1,3363265133=>1,3364725418=>1,3364986633=>1,3365382146=>1,3365302886=>1,3365403122=>1,3365497089=>1,3365649018=>1,3365522454=>1,3365302884=>1,3365302644=>1,3365003459=>1,3364988265=>1,3365033012=>1,3365033410=>1,3365291134=>1,3362987137=>1,3362987073=>1,3362643550=>1,3362639541=>1,3362645059=>1,3362647092=>1,3362853653=>1,3362753354=>1,3362634749=>1,3362601514=>1,3362530108=>1,3362515985=>1,3362557819=>1,3362596599=>1,3362601357=>1,3362600910=>1,3362898709=>1,3362898710=>1,3362899934=>1,3362899933=>1,3362900013=>1,3362900086=>1,3362987025=>1,3362900195=>1,3362899782=>1,3362899781=>1,3362898910=>1,3362898909=>1,3362898925=>1,3362899205=>1,3362899725=>1,3359243974=>1,3334949909=>1,3301454761=>1,3291397398=>1,3301508703=>1,3301566318=>1,3301583515=>1,3301568507=>1,3291289685=>1,3291265389=>1,3291023785=>1,3291023642=>1,3291047554=>1,3291056592=>1,3291245432=>1,3291245355=>1,3301593546=>1,3301688673=>1,3302134105=>1,3302134021=>1,3302134122=>1,3302144780=>1,3302468802=>1,3302436093=>1,3302124109=>1,3302116877=>1,3301754388=>1,3301754386=>1,3301821284=>1,3301905414=>1,3302115871=>1,3302107182=>1,3290984501=>1,3290567241=>1,3286930478=>1,3286673491=>1,3286931542=>1,3286943955=>1,3287681031=>1,3287557297=>1,3286672850=>1,3286589799=>1,3286117451=>1,3285848263=>1,3286511024=>1,3286518677=>1,3286582701=>1,3286546063=>1,3287693722=>1,3287853388=>1,3290322570=>1,3289826605=>1,3290425217=>1,3290425218=>1,3290492385=>1,3290425546=>1,3289380642=>1,3289078329=>1,3288049263=>1,3287989226=>1,3288071394=>1,3288237900=>1,3288431971=>1,3305735817=>1,3306098494=>1,3314039563=>1,3314038789=>1,3314823716=>1,3314834274=>1,3314898970=>1,3314879374=>1,3312964674=>1,3312920272=>1,3310984186=>1,3310975417=>1,3310994472=>1,3310997939=>1,3312898213=>1,3312879441=>1,3314922316=>1,3315450609=>1,3315697458=>1,3315697063=>1,3315697843=>1,3315701848=>1,3315900541=>1,3315900417=>1,3315696043=>1,3315695970=>1,3315673136=>1,3315606256=>1,3315673230=>1,3315673584=>1,3315695024=>1,3310972474=>1,3310827044=>1,3307750436=>1,3307747135=>1,3307751297=>1,3307753356=>1,3307755133=>1,3307754701=>1,3307746008=>1,3307736045=>1,3307262725=>1,3306105608=>1,3307287038=>1,3307347839=>1,3307503418=>1,3307385726=>1,3307759093=>1,3307760118=>1,3308016218=>1,3307859590=>1,3308017834=>1,3308035542=>1,3310481095=>1,3308324589=>1,3307858356=>1,3307777711=>1,3307764337=>1,3307762768=>1,3307766416=>1,3307771999=>1,3307772731=>1,3285448532=>1,3285315599=>1,3281677079=>1,3281676601=>1,3281677207=>1,3281677324=>1,3281677443=>1,3281677390=>1,3281676597=>1,3281674656=>1,3281672826=>1,3281672167=>1,3281673021=>1,3281673099=>1,3281674539=>1,3281674506=>1,3281677725=>1,3281677900=>1,3281678792=>1,3281678755=>1,3281679161=>1,3281679592=>1,3281679798=>1,3281679779=>1,3281678671=>1,3281678646=>1,3281677945=>1,3281677941=>1,3281678023=>1,3281678197=>1,3281678382=>1,3281670836=>1,3281670744=>1,3281664044=>1,3281660517=>1,3281664133=>1,3281666333=>1,3281668564=>1,3281667714=>1,3281660434=>1,3281653731=>1,3281651823=>1,3281651787=>1,3281652129=>1,3281652802=>1,3281653088=>1,3281652882=>1,3281668647=>1,3281668948=>1,3281670508=>1,3281670429=>1,3281670510=>1,3281670569=>1,3281670645=>1,3281670627=>1,3281670087=>1,3281670016=>1,3281669108=>1,3281669029=>1,3281669153=>1,3281669525=>1,3281669747=>1,3281680044=>1,3281680838=>1,3283956661=>1,3283534077=>1,3283977730=>1,3284027763=>1,3284115248=>1,3284081105=>1,3283521039=>1,3283520770=>1,3283231062=>1,3283189397=>1,3283236899=>1,3283236901=>1,3283356612=>1,3283262936=>1,3284124747=>1,3284134365=>1,3285058696=>1,3285047496=>1,3285067421=>1,3285134868=>1,3285228531=>1,3285224324=>1,3285035824=>1,3284855612=>1,3284724933=>1,3284660402=>1,3284845663=>1,3284846140=>1,3284848674=>1,3283154713=>1,3282969687=>1,3281691308=>1,3281684677=>1,3281691682=>1,3281691891=>1,3281693464=>1,3281692150=>1,3281684655=>1,3281682583=>1,3281681374=>1,3281680928=>1,3281681379=>1,3281681963=>1,3281682490=>1,3281682422=>1,3281693718=>1,3281694157=>1,3282664930=>1,3282029662=>1,3282685750=>1,3282686915=>1,3282710050=>1,3282688191=>1,3282019010=>1,3281947438=>1,3281706312=>1,3281703259=>1,3281709858=>1,3281713945=>1,3281715118=>1,3315900725=>1,3315900971=>1,3325219638=>1,3325219230=>1,3325224726=>1,3325250469=>1,3325347622=>1,3325328695=>1,3325216907=>1,3325216903=>1,3325206156=>1,3325205582=>1,3325210179=>1,3325211101=>1,3325216899=>1,3325214559=>1,3325456889=>1,3325520262=>1,3325719506=>1,3325718239=>1,3325937995=>1,3325939614=>1,3326562626=>1,3325939854=>1,3325717301=>1,3325716202=>1,3325612069=>1,3325520279=>1,3325636938=>1,3325647470=>1,3325716160=>1,3325203270=>1,3325203196=>1,3323680477=>1,3323680292=>1,3323683256=>1,3323683286=>1,3323687745=>1,3323686180=>1,3323679265=>1,3323676105=>1,3323436497=>1,3323436456=>1,3323437456=>1,3323460426=>1,3323675345=>1,3323674839=>1,3323688796=>1,3324321032=>1,3325199861=>1,3325199514=>1,3325200341=>1,3325202760=>1,3325202895=>1,3325202872=>1,3325198601=>1,3325172253=>1,3324938792=>1,3324589114=>1,3324942643=>1,3324942713=>1,3325118779=>1,3326563479=>1,3326563480=>1,3332868453=>1,3332006532=>1,3333586364=>1,3333723657=>1,3334945638=>1,3334080918=>1,3331608999=>1,3331528274=>1,3330697718=>1,3330697582=>1,3331260835=>1,3331295460=>1,3331352920=>1,3331295469=>1,3334947019=>1,3334947026=>1,3334949623=>1,3334949526=>1,3334949655=>1,3281651320=>1,3334950462=>1,3334950325=>1,3334949458=>1,3334948764=>1,3334947228=>1,3334947033=>1,3334947708=>1,3334947955=>1,3334948249=>1,3329029619=>1,3328829118=>1,3326753818=>1,3326752959=>1,3326753923=>1,3326754099=>1,3327793044=>1,3327452880=>1,3326745894=>1,3326745800=>1,3326583203=>1,3326569524=>1,3326591380=>1,3326596229=>1,3326685767=>1,3326666729=>1,3328203393=>1,3328219907=>1,3328482102=>1,3328480402=>1,3328482139=>1,3328483126=>1,3328827282=>1,3328827194=>1,3328480368=>1,3328450163=>1,3328338957=>1,3328324308=>1,3328339064=>1,3328343458=>1,3328343460=>1,3323432731=>1,3323430179=>1,3316064920=>1,3316064750=>1,3316065584=>1,3316065952=>1,3316066711=>1,3316066587=>1,3316063430=>1,3316063164=>1,3316059561=>1,3316059529=>1,3316061280=>1,3316062012=>1,3316062694=>1,3316062393=>1,3316066746=>1,331