Sunday 27 August 2017

Auto Start wampserver On Windows 10 Startup Automatically

Harry

Before I show you how to auto start wampserver, I’ll talk about it a bit.

Wampserver is one of the best stacks for web development on the Windows platform. I prefer it over xampp because of the handy tray menu that lets me access any configuration.

You can download wampserver from this website wampserver

The problem

Recently I’ve tried installing wampserver on Windows 10, and it went well but there was a little problem.

When I tried to auto start wampserver at Windows 10 startup, I put the wampserver shortcut in this path

C:\Users\YourUserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

I found that wampserver did not autostart with Windows.

I searched the web for a solution for that problem and I found the following:

The first solution suggests putting the wampserver shortcut on the above-mentioned path and as I told you that does not auto start wampserver.

The second solution suggested enabling the wampapache service and wampmysqld services from Windows services.

Go to Control Panel and type services in the search box, and it will open the services like this:

wampserver services
wampserver services

Select wampapache and set the startup type to automatic and do the same for wampmysqld and hit OK. When you reboot your machine, you will notice that both apache and MySQL work.

wampserver-service-startup-type
wampserver-set-service-startup-type

So now I can auto start wampserver and everything is good.

Unfortunately, That solution does not show wampserver tray menu on the bottom.

wampserver-tray-menu
wampserver-tray-menu

Most of the wampserver users use it because they can quickly access everything from that tray menu including PHPMyAdmin, the www folder, PHP, Mysql and Apache configurations.

So I discovered the solution and I’d like to share it with you.

The Solution is to disable the UAC on Windows in order to make the program autostart with Windows.

If you go to Windows control panel and select user account control settings and change it to never notify that won’t work too.

disable-UAC

The Solution

The solution is a bit tricky but super easy.

Because what we have done to disable the UAC does not disable it completely and in order to disable UAC you have to disable it from the registry.

Just type regedit in the Windows menu search and go to this node:

regedit-to-disable-UAC

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

auto start wampserver
auto start wampserver

You will find a key named EnableLUA, set it’s value to zero and it will prompt you to restart the system.

You can save the following text as .reg file and run it as administrator and it will do the same job.

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
“EnableLUA”=dword:00000000

Keep in mind that disabling the UAC (User Access Control) is not a good idea, you may harm the system, but I suppose that you know what you are doing.

 

Friday 25 August 2017

Battlefield 1

Harry






Minimum System Requirements


OS: 64-bit Windows 7, Windows 8.1 and Windows 10
Processor (AMD): AMD FX-6350
Processor (Intel): Core i5 6600K
Memory: 8GB RAM
Graphics card (AMD): AMD Radeon HD 7850 2GB
Graphics card (Nvidia): Nvidia GeForce GTX 660 2GB
DirectX: 11.0 Compatible video card or equivalent
Hard-drive space: 50GB

Recommended System Requirements


OS: 64-bit Windows 10 or later
Processor (AMD): AMD FX 8350 Wraith
Processor (Intel): Intel Core i7 4790 or equivalent
Memory: 16GB RAM
Graphics card (AMD): AMD Radeon RX 480 4GB
Graphics card (Nvidia): Nvidia GeForce GTX 1060 3GB
DirectX: 11.1 Compatible video card or equivalent
Available Disk Space: 50GB

Download UTorrent


Download Winrar


Download Power ISO


Download Direct X 11


Download The Game Here

Thursday 24 August 2017

How to install Krita 3.2.0 released on Ubuntu 16.04, 17.04

Harry
   Krita is a professional FREE and open source painting program. It is made by artists that want to see affordable art tools for everyone.

  •     concept art
  •     texture and matte painters
  •     illustrations and comics

Krita 3.2.0 Changelog:
  • Don’t reset the LUT docker when moving the Krita window between moitors
  • Correctly initialize the exposure display filter in the LUT docker
  • Add the missing pan tool a ction
  • Improve the “Normal” blending mode performance by 30% (first patch for Krita by Daria Scherbatyuk!)
  • Fix a crash when creating a second view on an image
  • Fix a possible crash when creating a second window
  • Improve finding the gmic-qt plugin: Krita now first looks whether there is one available in the same place as the Krita executable
  • Fix scroll wheel behaviour if Krita is built with Qt 5.7.1. or later
  • Fix panning in gmic-qt when applying gmic-qt to a non-RGBA image
  • Scale channel values correctly when using a non-RGBA image with gmic-qt
  • Fix the default setting for allowing multiple krita instances 

Installation instructions:

   
Add the PPA to your system, update the local repository index and install the Krita package:

$ sudo add-apt-repository ppa:kritalime/ppa

$ sudo apt-get update

$ sudo apt-get install krita
    Optional, to remove Krita, do:

 $ sudo apt-get install ppa-purge && sudo ppa-purge ppa:kritalime/ppa


refer original : https://howto-ubuntunew.blogspot.com/



Tuesday 22 August 2017

How to install Visual Studio Code 1.15 Released on Ubuntu

Harry
   Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages (such as C++, C#, Python, PHP, Go) and runtimes (such as .NET and Unity).


Visual Studio Code 1.15 release highlights:
  •  Large file support - Improved performance for large files, no size limit on 64-bit machines.
  •  64-bit Windows builds - Use your computer's full address space with the 64-bit builds.
  •  Find in Markdown preview - Full search for Release Notes, Markdown preview, and Extensions.
  •  Auto-indent, Emmet 2.0 on by default - Source code auto-indenting and new Emmet support.
  •  Custom syntax highlighting - Easily adjust editor colors to your liking.
  •  Terminal environment variables - Preconfigure the Integrated Terminal environment.
  •  Color picker UI - Quickly create colors in your CSS, SASS, and Less files.
  •  Loaded Scripts Explorer - Easily review and step through loaded scripts during Node.js debugging.
  •  Markdown preview plugins - Add styles, scripts or plug-ins to Markdown previews.
  •  code.visualstudio.com updates - Tutorials for React, Angular and deploying Node.js to Azure.
  •  Preview: Multi-root workspaces - Settings and debug configurations across multiple projects (Insiders build).
Installation instructions:

    Download .deb package for Debian/Ubuntu at the link below:


 Then install it via command (Ctrl+Alt+T):
 

$ sudo dpkg -i ~/Downloads/code_*.deb; sudo apt -f install

   who want to receive updates for VS Code via Software Updater utility, add the Microsoft repository via following steps (64bit only):

$ sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'

$ curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg

$ sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg





How to Install MKVToolNix 15.0.0 on Ubuntu 16.04, 17.04

Harry
    MKVtoolnix is a set of tools to create, alter, split, join and inspect Matroska files(mkv). With these tools one can get information about (mkvinfo) Matroska files, extract tracks/data from (mkvextract) Matroska files and create (mkvmerge) Matroska files from other media files. Matroska is a multimedia file format aiming to become THE new container format for the future. Use MKVCleaver or gMKVExtractGUI to extract/demultiplex mkv video and audio files.


MKVToolNix 15.0.0 Changelog:
New features and enhancements
  •  MKVToolNix GUI: multiplex tool: added a new entry to the "source files" context menu labeled "Set destination file name from selected file's name". It will force the GUI to consider the selected file to be the reference for automatically setting the file name, no matter which file was originally added as the first file. It will also force setting the destination file name once if automatic destination file name generation is  turned off in the preferences. Implements part of #2058.
  •  MKVToolNix GUI: multiplex tool: added an option in the preferences on "Multiplexer" → "Output" labeled "Only use the first source file that contains a video track". If enabled, only source files containing video tracks will be used for setting the destination file name. Other files that are added are ignore. Implements the rest of #2058.
  •  MKVToolNix GUI: header editor: added support for editing the video colour attributes. Implements the second half of #2038.
  •  MKVToolNix GUI: header editor: added support for the "video projection" track header attributes. Part of the implementation of #2064.
  •  MKVToolNix GUI: job queue: selected jobs can now be move up and down by pressing the `Ctrl+Up` and `Ctrl+Down` keys. Additionally, push buttons to move them up & down are shown if the corresponding option is enabled in the preferences. Implements #2060.
  •  mkvmerge: added support for the "video projection" track header attributes. Part of the implementation of #2064.
  •  mkvinfo: added support for the "video projection" track header attributes. Part of the implementation of #2064.
  •  mkvpropedit: added support for editing the video colour attributes. Implements one half of #2038.
  •  mkvpropedit: added support for the "video projection" track header attributes. Part of the implementation of #2064.
Bug fixes
  •  all: selecting the program's language (e.g. via the `--ui-language` command-line option or via the GUI's preferences) did not work on Linux & Unix if the `LANGUAGE` environment variable was set and didn't include the desired language. Fixes #2070.
  •  MKVToolNix GUI: removed the keyboard shortcuts for switching between the different tools (e.g. `Ctrl+Alt+1` for the multiplexer). They overlapped with basic functionality on keyboards that use an `AltGr` key, e.g. German ones, where `AltGr+7` emits `{`. As `AltGr+key` is implemented as `Ctrl+Alt+key` under the hood, this means that `AltGr+7` is really
  •   `Ctrl+Alt+7` which the GUI now took to mean "switch to the job queue" instead of "insert `{`". Fixes #2056.
  •  MKVToolNix GUI: header editor: after saving the file the GUI wasn't updating its internal file modification timestamp. That lead to the GUI wrongfully claiming that the file had been modified externally when the user wanted to save the file once more, requiring a reload of the file losing all modifications made since saving the first time.
  •  mkvmerge: DTS handling: some source files provide timestamps for audio tracks only once every `n` audio frames. In such situations mkvmerge was buffering too much data resulting in a single gap in the timestamps of one frame duration after frame number `n - 1` (the second audio timestamp read from the source file was used one output frame too early). Fixes #2071.
  •  mkvinfo: fixed a null pointer dereference if an `EbmlBinary` element's data pointer is a null pointer. Fixes #2072.
 See release notes for full details

Installation instructions:

 Open terminal via Ctrl+Alt+T or by searching it from app launcher. When it opens, do following steps:

1. Add the  repository via command:


$ sudo sh -c 'echo "deb http://mkvtoolnix.download/ubuntu/$(lsb_release -sc)/ ./" >> /etc/apt/sources.list.d/bunkus.org.list'

For Linux Mint 18.x, replace $(lsb_release -sc) directly with xenial in the command. Type in your password when prompts and hit Enter.

2. Download and install the repository key via command:

$ wget -q -O - https://mkvtoolnix.download/gpg-pub-moritzbunkus.txt | sudo apt-key add -

3. Running command update and install:

$ sudo apt-get update

$ sudo apt-get install mkvtoolnix mkvtoolnix-gui

(Optional) To remove MKVToolNix, use command:

$ sudo apt-get remove mkvtoolnix mkvtoolnix-gui

$ sudo apt-get autoremove



 refer original : https://howto-ubuntunew.blogspot.com/

How to install Fotoxx 17.08.2 Photo Editor on Ubuntu 16.04, 17.04

Harry
   Fotoxx is a free Linux program for editing photos or other images and managing a large collection. Image directories (folders) can be viewed as a scrolling gallery of thumbnail images. Navigating directories and subdirectories is simple and fast. Click on a thumbnail for a full window view of the image. The image can be zoomed, panned and scrolled using the mouse. Gallery thumbnails can vary from small to huge. Popup windows can be used to view multiple images at any scale. Galleries are also used to display image search results and albums.


Fotoxx 17.08.2 Changelog:
Technical Changes
  • Thumbnails were enlarged to 512 pixels for faster galleries when using large thumbnails. To implement, delete your present thumbnails so that Fotoxx will generate new thumbnails.
  • Use of shell "cp" command was replaced with a copyfile() function, to make batch functions fail-safe against special characters in file names.
  • New widget types were implemented to make some dialogs smaller, to cover less of the image window. Numbers can be indexed up or down using the mouse wheel, arrow keys, or the +/- keys. The shift key can be held down to increase the step size and index speed by 10x.
Functional Changes
  • Video files display as both images (initial frame) and gallery thumbnails. Click to play. Otherwise they behave like image files - editable metadata, albums, search functions, slide show (auto play), etc.
  • Maps: save and recall named map locations - map position and scale.
  • Panorama: the flatten function was made variable and reversible.
  • Retouch Combo: the curve edit user interface was improved.
  • Galleries remember and restore their last scroll position with each view.
  • Select Hairy: improved algorithm, faster and better user interface.
  • Select Area > Find Gap: fatter lines are drawn for better visibility.
  • Custom Kernel: additional functionality. Ten more pre-installed filters.
  • Paint Image: added an HSL color chooser as an additional method.
  • Slide Show: 2 new transitions, 5 others made faster on slow computers.
  • Change Color Profile: EXIF profile name is updated and old profile deleted.
  • Export Image Files: added metadata relevant for photo web services.
  • Additional gallery view: small thumbnails with most relevant metadata.
Bug Fixes
  • Slide Show: workaround for GDK-pixbuf scaling bug.
  • Flickr Upload stopped working and was removed. Flickr and other photo web services can upload directly - see User Guide, Recent Changes.
  • A startup album name (if any) was getting replaced with blanks.
  • Retouch Combo: failed if "saved settings" directory missing (create it).
  • Index Image Files: failed if "recent files" file missing (create it).
  • Possible crash if Trim/Rotate [level] button is used (EXIF camera tilt).
  • Avoid crash if an invalid parameter is inherited from a previous install.
  • Crash if the new "list view" function is used with an image directory outside the declared image directories

Installation instructions:

   The GetDeb repository contains the latest packages of Fotoxx, available for Ubuntu 16.04,  Ubuntu 17.04 and derivatives.

1. Add the GetDeb repository via command:


$ sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu $(lsb_release -sc)-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'

For Linux Mint 18.x, replace $(lsb_release -sc) directly with xenial in the command. Type in your password when prompts and hit Enter.

2. Download and install the repository key via command:

$ wget -q -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -

3. Running command update and install:

$ sudo apt-get update

$ sudo apt-get install
fotoxx

(Optional) To remove Fotoxx, use command:

$ sudo apt-get remove fotoxx

$ sudo apt-get autoremove



 refer original : https://howto-ubuntunew.blogspot.com/



Monday 21 August 2017

How to install Shotwell 0.26.3 released on Ubuntu 16.04, 17.04

Harry
    Shotwell 0.26.3 is an image organizer designed to provide personal photo management for the GNOME desktop Shotwell can import photos and videos from a digital camera directly. Shotwell automatically groups photos and videos by date, and supports tagging. Its image editing features allow users to straighten, crop, eliminate red eye, and adjust levels and color balance. It also features an auto "enhance" option that will attempt to guess appropriate levels for the image.





Shotwell 0.26.3 Changelog

  • Fix missing XML escape in wallpaper.xml file
  • Fix missing “Photos” menu content
  • Fix missing “find” icon
  • Fix build macro for appstream
  • Fix data loss/corruption issue when importing from camera
  • Added/updated translations
    • cs, courtesy of Marek Černocký
    • de, courtesy of Christian Kirbach

Installation instructions: 
 
     We can add this PPA to Ubuntu Operating  Systems and install Shotwell with few easy commands.

Open terminal and insert command line...

$ sudo apt-get remove --purge shotwell shotwell-common

$ sudo add-apt-repository ppa:yg-jensge/shotwell

$ sudo apt-get update

$ sudo apt-get install shotwell
 

  refer original : https://howto-ubuntunew.blogspot.com/



How to Install Shotcut Video Editor 17.08.02 on Ubuntu 16.04, 17.04

Harry
    Shotcut is a free, open source, cross-platform video editor for Windows, Mac and Linux. Major features include support for a wide range of formats; no import required meaning native timeline editing; Blackmagic Design support for input and preview monitoring; and resolution support to 4k.


Shotcut  17.08.02 Changelog:
  • Increased maximum Timeline zoom level.
  • Increased Speed field precision to 3 decimal places.
  • Increased maximum value for Speed field to 200x.
  • Added Norwegian Bokmål translation.

Installation instructions:

   The GetDeb repository contains the latest packages of Shotcut, available for Ubuntu 16.04,  Ubuntu 17.04 and derivatives.

1. Add the GetDeb repository via command:

$ sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu $(lsb_release -sc)-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'

For Linux Mint 18.x, replace $(lsb_release -sc) directly with xenial in the command. Type in your password when prompts and hit Enter.

2. Download and install the repository key via command:

$ wget -q -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -

3. Running command update and install:

$ sudo apt-get update

$ sudo apt-get install
shotcut

(Optional) To remove Shotcut, use command:

$ sudo apt-get remove shotcut

$ sudo apt-get autoremove



 refer original : https://howto-ubuntunew.blogspot.com/



Sunday 20 August 2017

How to Install Avidemux 2.7.0 on Ubuntu 16.04, 17.04

Harry
   Avidemux is a free video editor designed for simple cutting, filtering and encoding tasks. It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks can be automated using projects, job queue and powerful scripting capabilities.


Avidemux is available for Linux, BSD, Mac OS X and Microsoft Windows under the GNU GPL license.

Avidemux 2.6.20 Changelog:
  • Core: The bundled FFmpeg has been updated to version 3.0.7
  • Core Encoder: A crash encoding MPEG-2 with B-frames disabled has been fixed
  • Core Encoder: An error due to invalid decoding timestamps at the end of encoding with MPEG-2 has been fixed
  • Core Audio: Sound issues including audio dropouts with AAC in MPEG TS fixed
  • Core Audio: External AAC audio misidentified as E-AC3 fixed
  • MKV Demuxer: FPS calculation improved
  • MKV Demuxer: A crash with audio tracks using lacing extensively fixed
  • MKV Muxer: The FPS value is set correctly now
  • FLV Demuxer: File kept open preventing deletion fixed
  • VPX Decoder: Swapped colors fixed, support for VP9 added
  • macOS: Passing command line arguments to the application fixed
  • VDPAU: Decode MPEG-1 instead of crashing
  • Qt / Properties Dialog: A button to copy the data to clipboard added
  • Qt / Filter Manager: Dynamically disable not applicable context menu entries in the list of active filters
  • Qt / Filter Manager: Horizontal scrolling in the list of available filters eliminated
  • Qt / MPlayer eq2 Plugin: The sliders on the right becoming squeezed horizontally fixed
  • UI: File dialog not adding a file name extension when saving projects fixed (not in 64 bit builds for Windows yet)
  • i18n: Russian and German translations updated (TotalCaesar659 / eumagga0x2a)
  • Debug: Avidemux now prints the correct version string to the console or to the application log 

Installation instructions:

   The GetDeb repository contains the latest packages of Avidemux, available for Ubuntu 16.04,  Ubuntu 17.04 and derivatives.

1. Add the GetDeb repository via command:


$ sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu xenial-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'

For Linux Mint 18.x, replace $(lsb_release -sc) directly with xenial in the command. Type in your password when prompts and hit Enter.

2. Download and install the repository key via command:


$ wget -q -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -

3. Running command update and install:


$ sudo apt-get update

$ sudo apt-get install
avidemux2.6-qt

(Optional) To remove Avidemux, use command:


$ sudo apt-get remove avidemux2.6-qt

$ sudo apt-get autoremove



 refer original : https://howto-ubuntunew.blogspot.com/


How to Install GScan2PDF 1.8.5 release on Ubuntu

Harry
  gscan2pdf is a GUI to ease the process of producing PDFs or DjVus from scanned documents. You scan one or several pages in with File/Scan, and create a PDF of selected pages with File/Save PDF. At maturity, the GUI will have similar features to that of the Windows Imaging program, but with the express objective of writing a PDF, including metadata. Scanning is handled with SANE via scanimage. PDF conversion is done by libtiff. Perl is used for portability and ease of programming, with gtk2-perl for the GUI. This should therefore work more or less out of the box on any system with gtk2-perl, scanimage, and libtiff.


GScan2PDF 1.8.5 Changelog:
  • support for Poppler (pdftops) as postscript backend.
  • support for libsane-perl
  • Reapply current scan settings for those scanners that reset them when forcing a reload
  • Eliminate unnecessary strings from gscan2pdf.pot to prevent unnecessary work and confusion on the part of the translators.
  • A3 to default paper sizes
  • Update to Hungarian translation (thanks to csola)
  • Update to Slovak translation (thanks to Dušan Kazik)

Installation instructions:

   Opening terminal (Ctrl+Alt+T) and running the command:


$ sudo add-apt-repository ppa:jeffreyratcliffe/ppa

$ sudo apt-get update

$ sudo apt-get install gscan2pdf

   Option, remove GScan2PDF 1.8.5:


$ sudo apt-get remove --autoremove gscan2pdf


 

Friday 18 August 2017

List of All Run Commands In Windows

Harry

List of All Run Commands In Windows

 Today I Will Share Commands of Windows.This Commands very Useful for You 

Here is the List of all RUN commands in Windows which play a very vital role in the System they can be accessed very easily without any problems. RUN command window can be opened by going to Start Menu and also By Using the Shortcut Key
Windows key+ R





Just type the command in the window and press Enter…
[A]        
Add/Remove Programs = appwiz.cpl
Administrative Tools = control admintools
Authorization Manager= azman.msc “New”
[C]
Calculator = calc
Certificate Manager = certmgr.msc
Character Map = charmap
Check Disk Utility = chkdsk
Control Panel = control “New”
Command Prompt = cmd.exe
Component Services = dcomcnfg
Computer Management = compmgmt.msc = CompMgmtLauncher “New”
[D]
Date and Time Properties = timedate.cpl
Downloads = Downloads “New”
Device Manager = devmgmt.msc
Direct X Troubleshooter = dxdiag
Disk Cleanup Utility = cleanmgr
Defragment User Interface = dfrgui “New”
Ditilizer Calibration Tool = tabcal “New”
Disk Management = diskmgmt.msc
Disk Parmelonion Manager = diskpart
Display Properties = control desktop or desk.cpl
DPI Scaling = dpiscaling “New”
Driver Package Installer = dpinst “New”
Driver Verifier Utility = verifier or /reset
DVD Player = dvdplay “New”
[E]
Encryption File System = rekeywiz “New”
Event Viewer = eventvwr.msc
[F]
Fax Cover Sheet Editor = fxscover “New”
File Signature Verification Tool = sigverif
Folders Properties = control folders
Fonts = control fonts
Free Cell Card Game = freecell


[G]
Game Controllers | joy.cpl
Group Policy Editor = gpedit.msc
[I]  
Internet Explorer = iexplore
Iexpress Wizard = iexpress
Internet Properties = inetcpl.cpl
IP Configuration = ipconfig.exe
iSCSI Initiator = iscsicpl “New”
[K]
Keyboard Properties = control keyboard
[L]
Libraries = explorer or Windows key + E
Local Security Settings = secpol.msc
Local Users and Groups = lusrmgr.msc
Logs You Out Of Windows = logoff
[M
Microsoft Support Diagnostic Tool = msdt “New”
Microsoft Paint = mspaint.exe
Mouse Properties = control mouse
Mouse Properties = main.cpl
Mobility Center (only on mobile) = mblctr or Windows key + X
[N
Network Connections = control netconnections
Network Connections = ncpa.cpl
Notepad = notepad
[O]
ODBC Data Source Administrator = odbcad32 “New”
Optional Features Manager = optionalfeatures “New”
On Screen Keyboard = osk or Windows key + U
[P
Package Installer = dpinst
Pen & Touch Options = tabletpc.cpl
People Near Me Identifier = collab.cpl
Performance Monitor = perfmon.msc
Phone and Modem Options = telephon.cpl
Power Configuration = powercfg.cpl
Printers and Faxes = control printers
Printer Migration = PrintBrmUi “New”
Private Character Editor = eudcedit
Problem Steps Recorder = psr.exe
Programs and Features = appwiz.cpl
[R]  
Regional Settings = intl.cpl
Registry Editor = regedit.exe
Remote Assistance = msra “New”
Remote Desktop = mstsc
Resultant Set of Policy = rsop.msc
[S]  
Scheduled Tasks = control schedtasks
Screen Resolution = desk.cpl
Security Center = wscui.cpl
Services = services.msc
Shared Folders/MMC = fsmgmt.msc
Shuts Down Windows = shutdown
Snipping Tool = snippingtool “New”
Sounds and Audio = mmsys.cpl
Sound Recorder = soundrecorder “New”
Sound Volume = sndvol “New”
Spider Solitare Card Game = spider
SQL Client Configuration = cliconfg
Stored User Names and Passwords = credwiz “New”
Sticky Note = StikyNot “New”
System Configuration Editor = sysedit
System Configuration Utility = msconfig
System File Checker Utility = sfc
System Information = msinfo32
System Properties = sysdm.cpl or Windows key + Pause/Break
System Restore = rstrui.exe


[T]  
Task Manager = taskmgr
Trusted Platform Module = TpmInit “New”
[U] 
Utility Manager = utilman
User Accounts = netplwiz or control userpasswords2
[W]   
Windows Activation = slui “New”
Windows Backup Utility = sdclt “New”
Windows Fax and Scan = wfs “New
Windows Firewall = fire


I Hope This All Run Commands In Windows Very Useful For You...

Thursday 17 August 2017

What is Cyber Security and Why is it Important ??

Harry

DISCLAIMER: Following data/info/files are not owned/made/uploaded by latesttrickes On our last article about a lot of people don't Know about Cyber Security and why is Important.So here i provided you all download link .


Content Of This Book

Chapter 1: What is Cyber Security and Why is it Important?
Chapter 2: Cyber Security Software
Chapter 3: Cyber Security Best Practices




Following This Book have full Theory of  What is Cyber Security and Why is it Important ??.So I Hope This Book is Useful For You.



Friday 11 August 2017

Biggest Tor IP List 2017

Harry


Today I Will Share Tor IPList and is all about Deep web .Deep Web is Not a Game For You.There Have So Many Risk . I Am Not Try To Say Enter There But I Am Sharing This Post For Knowledge Purpose Only . Daily Internet User Have Know About Deep Web History.Deep Web All Link Run In Only TOR Browser



IP LIST

109.169.229.10
109.171.55.143
109.189.37.209
109.189.45.126
109.192.127.63
109.192.166.254
109.192.228.117
109.254.6.63
109.74.193.250
109.74.195.194
109.74.196.114
109.86.25.129
109.91.184.121
110.164.68.101
110.174.43.136
110.24.67.58
112.135.184.51
112.141.23.157
112.213.105.113
116.87.240.71
117.18.75.235
117.19.254.62
118.172.34.165
118.91.78.79
119.110.103.59
119.42.144.18
12.161.212.22
12.36.200.153
120.50.40.184
120.50.41.54
121.112.158.95
121.133.186.164
121.82.163.91
122.120.218.170
122.155.3.145
122.168.213.247
123.108.108.147
123.243.109.119
124.101.111.252
124.122.157.111
124.155.122.200
124.217.230.88
125.15.3.213
125.238.169.206
125.238.24.238
125.238.66.34
128.117.43.34
128.12.91.109
128.130.204.91
128.138.207.47
128.232.110.16
128.238.88.52
128.31.0.34
128.31.0.34
128.6.224.103
129.133.8.31
129.187.150.131
129.242.19.196
129.25.11.27
130.104.74.142
130.194.252.8
131.130.245.155
131.220.137.122
131.254.208.11
132.248.204.208
134.106.137.68
134.34.147.22
134.60.91.222
137.56.163.117
138.100.10.100
138.100.10.146
138.100.10.209
138.100.12.108
140.112.42.158
140.113.214.144
140.121.214.151
140.180.130.93
140.180.53.14
140.192.218.139
141.219.155.230
141.219.78.247
142.217.95.84
143.89.126.12
145.97.229.64
147.83.175.49
149.20.54.45
149.9.0.57
149.9.0.58
149.9.0.59
150.206.2.101
151.16.186.248
151.21.87.195
151.95.251.183
152.13.224.3
152.23.97.222
155.54.182.213
159.149.105.57
161.53.160.104
161.53.29.203
163.25.104.5
165.124.119.103
166.70.54.100
166.70.81.17
166.70.99.91
168.105.228.220
168.150.251.13
168.150.251.39
173.100.224.252
173.11.138.177
173.14.249.26
173.160.180.189
173.162.144.179
173.183.145.137
173.2.219.169
173.203.211.73
173.206.142.213
173.208.143.114
173.208.143.122
173.208.143.194
173.212.200.141
173.212.232.194
173.212.241.50
173.212.243.114
173.23.71.206
173.23.82.239
173.24.212.5
173.30.231.82
173.30.9.62
173.35.190.2
173.45.227.179
173.51.233.54
173.55.192.144
173.57.17.40
173.57.30.46
173.58.167.94
173.62.201.193
173.65.67.64
173.71.128.102
173.75.248.251
173.76.253.125
173.76.42.128
173.79.123.111
173.79.159.218
173.80.96.124
173.83.26.26
173.83.26.34
173.89.30.129
173.9.115.13
174.0.232.90
174.100.170.121
174.102.204.241
174.112.28.194
174.123.134.91
174.132.94.122
174.137.54.238
174.138.169.222
174.139.240.2
174.139.243.68
174.139.250.130
174.139.251.9
174.142.75.26
174.143.240.157
174.143.243.204
174.143.243.243
174.20.206.245
174.22.168.191
174.23.145.114
174.27.127.139
174.34.146.248
174.36.42.107
174.37.99.107
174.5.177.38
174.6.180.255
178.120.17.182
178.128.39.244
178.24.133.147
178.24.228.28
178.25.166.93
178.32.33.38
178.63.248.45
18.42.3.252
184.56.230.206
184.73.66.181
187.105.5.108
188.100.189.53
188.100.209.167
188.101.78.121
188.103.134.188
188.103.206.242
188.104.159.160
188.105.203.235
188.106.252.170
188.108.255.37
188.116.33.15
188.120.228.46
188.134.12.107
188.134.16.230
188.134.20.232
188.134.4.177
188.141.70.187
188.16.59.160
188.165.35.106
188.165.45.229
188.165.47.11
188.168.37.6
188.18.69.157
188.187.11.195
188.193.254.69
188.194.101.75
188.22.162.80
188.36.213.176
188.40.126.20
188.40.137.150
188.40.157.47
188.40.166.29
188.40.206.42
188.40.209.99
188.40.33.150
188.40.33.217
188.40.70.187
188.40.77.107
188.40.82.19
188.40.84.150
188.62.91.76
188.65.65.16
188.72.225.96
188.92.9.214
189.139.1.207
189.149.11.26
189.26.14.33
190.191.102.58
192.150.94.190
192.251.226.206
192.42.113.248
193.111.155.195
193.138.118.3
193.142.245.235
193.23.244.244
193.239.28.145
193.25.115.47
193.34.150.69
193.68.14.32
193.77.221.51
194.0.229.54
194.109.206.212
194.14.56.70
194.145.200.128
194.208.250.184
194.231.186.250
194.255.112.81
194.47.250.233
194.8.56.148
195.111.98.30
195.113.20.121
195.134.67.52
195.198.195.177
195.202.180.115
195.202.181.58
195.206.96.13
195.230.15.198
195.230.168.83
195.234.10.45
195.234.100.13
195.240.25.146
195.242.152.250
195.254.134.10
195.36.224.83
195.64.140.190
195.68.152.188
195.71.68.84
195.74.246.65
198.202.25.251
199.74.151.234
200.122.160.25
200.35.150.105
200.46.73.34
200.55.100.13
200.58.118.143
200.85.152.198
201.199.135.74
201.21.130.190
201.212.3.21
201.250.117.126
201.34.56.176
201.68.194.108
201.93.207.221
202.144.207.213
202.156.184.80
202.67.236.74
202.71.103.246
202.71.111.240
202.75.35.227
203.179.254.218
203.206.173.63
203.206.183.149
203.206.41.170
203.217.173.146
203.86.232.6
204.12.215.18
204.13.164.27
204.14.159.188
204.14.159.190
204.191.6.98
204.210.249.24
204.232.197.251
204.27.61.10
204.74.215.131
205.168.84.133
206.124.142.226
206.125.172.234
206.217.134.2
206.222.28.93
206.222.29.14
206.248.128.10
207.112.105.217
207.229.152.103
208.100.23.168
208.100.43.23
208.111.3.167
208.115.115.26
208.127.165.15
208.43.127.247
208.75.140.179
208.75.57.100
208.75.88.34
208.75.91.19
208.83.223.34
208.88.125.191
209.123.162.130
209.123.162.66
209.123.234.150
209.151.236.27
209.162.33.44
209.169.89.26
209.20.75.107
209.20.78.22
209.20.84.99
209.20.91.3
209.20.94.99
209.221.206.114
209.237.247.213
209.237.247.67
209.240.71.9
209.250.2.254
209.44.114.178
209.44.99.188
209.59.209.188
212.105.78.196
212.112.235.78
212.112.241.30
212.112.241.44
212.112.242.89
212.114.234.219
212.117.160.22
212.117.162.192
212.117.162.194
212.117.165.197
212.117.166.26
212.117.177.110
212.117.183.200
212.123.146.152
212.13.194.142
212.13.195.34
212.150.184.108
212.159.112.196
212.159.72.216
212.160.173.87
212.181.174.218
212.183.61.63
212.185.231.29
212.187.20.144
212.187.57.137
212.201.68.152
212.204.40.86
212.235.189.115
212.28.90.153
212.40.172.22
212.42.236.140
212.50.10.152
212.67.153.165
212.74.233.43
212.75.37.82
212.85.158.24
212.92.166.196
213.112.109.122
213.114.116.149
213.114.150.214
213.115.239.118
213.115.6.58
213.133.103.39
213.154.227.200
213.163.64.43
213.163.65.50
213.163.71.100
213.163.72.149
213.178.31.1
213.180.77.94
213.191.105.54
213.207.245.241
213.21.110.244
213.220.211.238
213.220.233.230
213.238.236.50
213.239.201.240
213.239.205.148
213.239.206.110
213.239.212.133
213.251.167.55
213.253.1.10
213.37.237.175
213.41.232.42
213.46.138.76
213.47.179.93
213.73.112.135
213.79.103.146
213.89.173.127
216.106.8.190
216.110.217.24
216.115.3.26
216.139.240.0
216.195.133.27
216.224.124.114
216.224.124.124
216.24.174.245
216.55.190.121
216.80.141.112
216.86.61.205
217.114.211.20
217.116.195.20
217.116.195.24
217.13.196.70
217.131.90.100
217.148.84.179
217.150.241.142
217.150.244.116
217.150.250.224
217.160.16.56
217.168.130.38
217.17.44.20
217.172.183.219
217.172.186.125
217.20.117.129
217.20.127.15
217.208.70.200
217.227.164.103
217.23.13.48
217.23.4.172
217.232.182.207
217.75.136.22
217.79.182.95
217.79.189.236
217.81.235.226
217.83.71.185
217.84.173.146
217.85.144.16
217.91.163.164
218.212.103.89
218.40.127.163
219.17.148.28
219.57.38.13
219.74.111.112
220.233.243.243
221.23.108.51
222.107.34.53
222.6.21.49
24.116.150.114
24.118.106.116
24.124.0.65
24.130.115.152
24.136.37.58
24.144.60.146
24.17.243.100
24.185.87.115
24.19.8.221
24.211.34.71
24.23.181.188
24.239.141.246
24.24.150.181
24.241.224.95
24.247.71.53
24.249.130.132
24.250.133.107
24.255.56.69
24.36.126.21
24.5.28.20
24.80.230.96
24.83.161.65
24.83.175.218
24.84.205.50
24.89.140.38
24.94.65.2
41.140.15.41
41.140.31.34
41.189.39.111
41.201.216.201
41.203.22.108
41.238.180.201
41.92.26.22
58.120.227.83
58.227.247.160
59.146.252.59
59.147.62.16
60.41.167.192
60.50.65.151
61.114.205.25
61.206.121.71
61.222.193.186
61.32.46.3
61.82.139.228
62.108.200.236
62.109.12.37
62.112.194.60
62.128.27.167
62.141.42.186
62.141.46.231
62.141.53.224
62.141.58.13
62.143.145.166
62.147.205.94
62.152.156.136
62.16.226.206
62.165.253.243
62.193.228.18
62.197.40.155
62.2.182.229
62.209.250.10
62.212.67.209
62.212.74.134
62.226.15.137
62.241.240.82
62.40.184.106
62.75.143.154
62.75.155.145
62.75.162.230
62.75.165.107
62.75.211.152
62.75.242.16
62.80.200.184
62.99.212.217
63.194.144.82
63.225.203.144
63.248.9.35
64.113.35.250
64.126.80.136
64.128.30.232
64.142.42.61
64.191.109.53
64.191.22.197
64.22.125.39
64.22.71.226
64.238.172.157
64.38.234.54
64.5.53.220
64.81.61.235
64.85.168.43
64.90.29.217
64.94.184.234
65.18.168.216
65.183.151.13
65.185.76.32
65.23.157.86
65.29.98.198
65.38.17.23
65.40.42.74
65.41.197.71
65.74.115.151
66.116.103.156
66.118.193.34
66.134.56.228
66.135.38.164
66.146.193.29
66.168.26.219
66.192.6.34
66.196.40.252
66.197.161.181
66.197.251.69
66.199.236.106
66.249.9.183
66.250.216.134
66.57.230.157
66.58.186.210
66.65.42.90
66.79.163.180
66.90.103.27
66.90.110.156
66.90.75.206
66.92.45.253
66.92.68.122
66.96.16.32
67.100.94.85
67.102.179.29
67.151.215.233
67.159.37.30
67.160.142.114
67.160.172.165
67.174.250.117
67.176.74.66
67.18.92.141
67.183.121.172
67.205.102.185
67.205.112.74
67.205.112.82
67.205.89.142
67.205.89.146
67.206.232.107
67.207.130.66
67.207.136.94
67.208.112.74
67.212.93.230
67.222.116.25
67.23.178.146
67.234.99.244
67.241.25.16
67.55.28.54
68.101.129.248
68.105.190.243
68.11.181.174
68.13.166.252
68.147.253.8
68.162.65.225
68.170.181.127
68.184.140.168
68.186.59.81
68.2.69.84
68.205.97.3
68.210.140.62
68.231.37.179
68.4.198.117
68.4.213.246
68.52.178.131
68.9.222.128
68.94.122.93
68.98.46.213
69.10.141.75
69.10.4.66
69.12.177.210
69.126.123.82
69.140.60.76
69.141.172.197
69.156.12.126
69.164.195.92
69.164.196.211
69.164.196.245
69.164.208.206
69.165.165.126
69.175.111.162
69.221.8.60
69.241.40.20
69.247.78.160
69.28.72.69
69.28.72.78
69.31.13.209
69.39.49.200
69.40.11.93
69.46.207.58
69.65.42.44
69.71.222.187
69.93.118.174
69.93.127.176
70.114.140.223
70.123.142.91
70.124.88.49
70.18.155.174
70.226.196.244
70.242.177.30
70.31.193.102
70.38.81.51
70.57.172.35
70.57.192.19
70.79.133.59
70.85.129.120
71.111.238.38
71.116.88.164
71.12.23.15
71.123.249.90
71.17.49.77
71.178.19.93
71.178.63.160
71.178.8.149
71.180.77.66
71.201.72.138
71.224.152.176
71.233.82.236
71.237.130.234
71.245.80.53
71.43.23.242
71.74.128.194
71.8.5.103
71.83.124.90
71.93.195.139
72.0.206.120
72.14.177.218
72.14.179.91
72.14.182.177
72.148.54.247
72.149.199.227
72.2.79.205
72.209.158.185
72.214.15.27
72.218.3.252
72.218.3.252
72.219.156.30
72.232.255.48
72.241.204.133
72.47.35.186
72.50.36.158
72.55.174.112
72.64.53.136
74.106.205.48
74.111.17.243
74.128.204.245
74.130.130.88
74.138.231.222
74.192.107.29
74.192.3.56
74.197.217.196
74.207.231.186
74.207.233.40
74.207.241.245
74.207.243.101
74.207.247.39
74.207.249.11
74.207.251.182
74.208.12.147
74.208.184.107
74.218.85.126
74.238.240.47
74.238.241.32
74.243.96.95
74.246.252.55
74.40.150.114
74.63.64.4
74.71.63.246
74.74.92.191
74.86.210.130
75.1.247.251
75.101.62.89
75.101.91.44
75.111.170.192
75.138.78.32
75.142.97.183
75.145.96.180
75.169.235.199
75.177.118.161
75.177.16.165
75.185.223.73
75.25.152.141
75.36.223.243
75.57.70.84
75.61.234.221
75.62.143.92
75.72.218.95
75.73.40.9
75.73.43.136
75.79.68.252
75.83.131.151
76.10.176.79
76.10.188.49
76.104.132.98
76.105.159.99
76.121.168.82
76.123.154.78
76.173.60.185
76.173.98.237
76.185.171.217
76.191.187.180
76.237.81.89
76.244.158.78
76.28.11.209
76.68.152.10
76.70.123.55
76.73.27.154
76.74.207.112
77.108.119.134
77.109.136.158
77.120.91.75
77.127.46.26
77.178.31.190
77.179.92.108
77.183.170.220
77.183.32.167
77.188.31.154
77.189.103.121
77.189.115.45
77.189.44.9
77.190.70.223
77.191.229.148
77.193.52.103
77.194.134.14
77.195.161.50
77.20.65.111
77.202.114.120
77.21.87.230
77.23.177.234
77.23.181.67
77.23.8.201
77.236.3.240
77.242.222.88
77.246.107.69
77.247.214.181
77.249.215.53
77.251.80.169
77.35.247.147
77.41.76.160
77.41.78.126
77.5.250.154
77.64.168.132
77.91.200.27
77.91.24.201
78.105.162.248
78.105.84.108
78.107.233.82
78.107.237.16
78.110.55.35
78.111.144.229
78.111.152.243
78.111.66.168
78.111.75.190
78.111.76.89
78.111.92.195
78.113.104.175
78.113.104.175
78.115.118.136
78.129.201.189
78.130.140.131
78.134.12.165
78.142.142.246
78.142.145.141
78.144.129.236
78.15.221.95
78.225.101.56
78.225.20.80
78.236.37.12
78.238.184.176
78.238.200.181
78.25.19.181
78.250.50.126
78.251.45.94
78.31.67.155
78.34.165.156
78.41.115.221
78.42.205.36
78.42.206.101
78.43.169.131
78.43.200.169
78.46.135.209
78.46.152.141
78.46.192.124
78.46.246.116
78.46.251.229
78.46.50.180
78.46.68.3
78.46.71.181
78.46.94.151
78.46.98.198
78.47.133.217
78.47.154.189
78.47.18.110
78.47.2.118
78.47.209.229
78.47.226.39
78.47.226.40
78.47.251.210
78.47.29.82
78.47.34.155
78.47.77.110
78.48.170.153
78.48.234.81
78.49.121.186
78.50.135.25
78.50.90.188
78.51.43.14
78.52.128.143
78.53.213.34
78.53.8.151
78.53.96.11
78.54.12.205
78.55.167.170
78.55.223.244
78.55.8.1
78.70.79.72
78.86.43.15
79.136.27.212
79.136.30.211
79.136.50.205
79.140.39.227
79.142.206.192
79.142.243.121
79.156.30.235
79.163.118.138
79.163.136.188
79.165.180.243
79.165.182.132
79.17.149.236
79.170.233.15
79.19.134.48
79.193.56.173
79.194.18.50
79.195.79.11
79.214.80.168
79.215.12.126
79.224.25.181
79.231.91.6
79.235.199.153
79.241.209.194
79.241.220.148
79.242.53.124
79.52.113.192
79.80.137.5
79.80.210.66
79.81.156.39
79.82.62.189
79.85.178.83
79.85.230.91
79.88.250.165
79.90.114.102
79.90.88.207
79.91.121.121
79.92.110.115
79.99.236.2
80.101.128.228
80.101.87.55
80.108.112.183
80.127.15.41
80.135.18.84
80.138.114.95
80.140.136.138
80.166.148.208
80.171.111.48
80.177.246.35
80.184.34.154
80.189.51.31
80.190.246.100
80.190.250.90
80.193.114.10
80.197.5.166
80.216.188.204
80.218.148.187
80.221.35.20
80.236.108.26
80.238.126.107
80.244.252.89
80.249.90.209
80.47.83.7
80.67.115.124
80.67.172.19
80.67.176.122
80.68.95.172
80.73.242.142
80.75.106.6
80.8.1.216
80.81.183.178
80.81.243.235
80.86.105.59
80.9.142.202
80.99.12.144
81.0.225.25
81.111.102.143
81.111.62.81
81.141.122.98
81.166.101.28
81.167.165.145
81.169.136.104
81.169.136.161
81.169.136.64
81.169.138.49
81.169.142.26
81.169.157.6
81.169.168.142
81.169.173.120
81.169.174.124
81.169.175.227
81.169.181.87
81.169.182.71
81.169.183.122
81.169.184.38
81.169.188.235
81.174.22.172
81.174.47.188
81.174.66.93
81.185.32.237
81.202.185.168
81.210.245.231
81.217.88.41
81.218.173.252
81.221.127.96
81.224.46.7
81.226.218.187
81.234.207.86
81.251.12.164
81.39.147.4
81.57.130.117
81.57.208.135
81.57.40.124
81.57.79.150
81.89.105.32
81.90.68.90
81.94.205.173
82.115.33.235
82.120.36.215
82.128.201.238
82.143.158.39
82.165.144.169
82.166.126.113
82.169.46.210
82.17.80.64
82.170.175.141
82.181.161.18
82.182.15.84
82.183.140.104
82.194.86.135
82.202.125.19
82.209.163.80
82.216.254.19
82.223.163.137
82.225.137.94
82.225.147.145
82.226.254.187
82.227.12.18
82.227.240.129
82.227.76.76
82.228.252.20
82.229.210.252
82.229.56.40
82.229.60.245
82.231.155.14
82.234.238.102
82.234.4.56
82.237.54.179
82.238.13.138
82.238.35.175
82.239.228.31
82.241.215.102
82.242.152.211
82.243.189.153
82.243.235.59
82.243.239.230
82.245.41.171
82.246.131.238
82.247.118.177
82.247.24.185
82.251.145.30
82.251.80.139
82.255.254.135
82.26.203.125
82.27.59.82
82.32.73.43
82.38.46.23
82.41.41.103
82.45.203.35
82.55.109.62
82.59.99.254
82.6.108.62
82.65.150.23
82.65.167.14
82.66.131.125
82.66.170.111
82.66.212.76
82.80.248.177
82.82.132.156
82.83.70.76
82.84.223.136
82.94.226.190
82.94.251.203
82.94.251.204
82.95.118.50
82.99.17.241
83.101.87.22
83.103.94.196
83.112.120.33
83.134.86.211
83.135.66.68
83.145.241.231
83.150.113.228
83.150.121.132
83.150.82.122
83.161.210.23
83.161.251.214
83.163.154.248
83.169.2.213
83.169.34.45
83.170.95.133
83.171.153.7
83.171.158.13
83.171.183.193
83.172.206.130
83.191.136.247
83.191.241.168
83.193.21.239
83.194.75.254
83.195.225.157
83.196.26.235
83.199.140.150
83.218.160.157
83.221.91.183
83.226.224.152
83.226.245.174
83.227.136.135
83.227.225.36
83.233.38.94
83.246.72.228
83.246.72.239
83.249.200.255
83.249.213.30
83.249.251.233
83.254.117.168
83.44.112.103
83.65.91.108
83.87.66.44
83.91.86.29
83.92.151.242
84.100.103.78
84.100.232.75
84.103.13.60
84.103.15.178
84.131.57.39
84.141.137.186
84.159.248.199
84.165.115.119
84.176.142.168
84.178.41.99
84.179.62.149
84.179.79.47
84.184.136.124
84.19.164.176
84.19.166.136
84.19.167.105
84.19.167.46
84.19.167.90
84.19.191.213
84.191.165.189
84.202.12.104
84.209.29.47
84.215.112.17
84.22.122.5
84.23.64.114
84.23.71.125
84.239.252.206
84.245.33.183
84.3.13.237
84.30.18.17
84.38.64.114
84.46.51.52
84.49.90.206
84.53.254.183
84.55.121.130
84.56.31.198
84.56.91.171
84.58.185.147
84.60.19.149
84.62.186.191
84.73.189.203
84.73.190.10
84.73.210.237
84.74.99.107
84.75.16.26
84.75.179.251
84.99.184.47
84.99.233.165
85.10.198.236
85.10.209.67
85.114.131.226
85.118.225.157
85.124.171.192
85.125.222.141
85.125.223.198
85.126.48.6
85.127.86.16
85.132.251.235
85.133.198.152
85.138.77.163
85.14.198.50
85.144.124.47
85.144.145.159
85.17.139.22
85.17.146.148
85.17.177.73
85.17.220.35
85.17.239.28
85.17.58.33
85.17.92.13
85.170.222.199
85.176.138.225
85.177.222.113
85.177.237.89
85.178.69.143
85.179.152.166
85.179.58.177
85.179.84.234
85.181.0.37
85.181.131.0
85.182.76.67
85.183.71.17
85.183.97.9
85.190.42.183
85.207.202.7
85.214.100.237
85.214.101.91
85.214.121.249
85.214.123.111
85.214.125.252
85.214.152.119
85.214.37.137
85.214.43.75
85.214.52.156
85.214.54.254
85.214.65.74
85.214.68.105
85.214.68.153
85.214.71.145
85.214.73.63
85.214.80.249
85.214.80.92
85.214.85.74
85.225.51.142
85.226.142.107
85.226.146.12
85.230.166.158
85.238.100.43
85.25.144.94
85.25.148.13
85.25.149.144
85.25.152.187
85.25.184.125
85.25.251.254
85.25.61.5
85.31.186.211
85.31.187.225
85.4.10.100
85.68.63.236
85.8.93.78
85.82.28.4
85.88.28.154
85.89.21.42
86.10.220.212
86.103.198.41
86.106.15.14
86.111.64.45
86.111.70.191
86.137.13.115
86.14.70.44
86.15.196.112
86.164.65.153
86.17.177.45
86.185.135.94
86.186.39.63
86.196.88.223
86.197.136.73
86.198.208.11
86.201.146.38
86.205.177.200
86.205.37.245
86.207.12.197
86.212.189.117
86.212.254.192
86.218.237.106
86.220.184.232
86.220.233.57
86.33.72.27
86.49.117.11
86.49.3.230
86.59.21.163
86.59.21.251
86.59.21.38
86.59.70.22
86.63.106.164
86.66.195.80
86.68.208.24
86.68.67.89
86.69.92.215
86.72.164.216
86.72.188.132
86.72.70.222
86.74.242.135
86.76.250.6
86.77.4.220
87.103.243.46
87.105.53.88
87.106.189.238
87.106.191.95
87.106.82.46
87.112.21.33
87.117.200.206
87.118.101.175
87.118.103.142
87.118.104.203
87.118.108.176
87.118.116.61
87.118.118.37
87.118.118.57
87.118.120.182
87.118.120.200
87.118.124.80
87.118.93.11
87.118.93.122
87.120.199.10
87.122.123.145
87.139.38.91
87.153.94.253
87.157.76.126
87.160.239.205
87.162.26.208
87.163.103.190
87.166.181.116
87.166.56.228
87.17.203.38
87.172.111.75
87.175.167.246
87.186.106.143
87.194.125.162
87.194.142.149
87.194.155.153
87.194.45.28
87.195.154.211
87.205.225.207
87.223.126.59
87.227.83.103
87.228.203.14
87.228.36.34
87.230.11.166
87.230.17.230
87.230.9.166
87.234.133.97
87.234.205.226
87.234.224.85
87.236.199.73
87.241.92.191
87.3.23.35
87.50.6.10
87.78.194.211
87.78.98.152
87.79.107.207
87.79.149.238
87.79.152.132
87.8.206.206
87.9.116.194
87.98.146.116
87.98.158.137
88.113.111.251
88.117.83.230
88.130.204.87
88.130.213.36
88.134.184.212
88.146.65.80
88.149.156.182
88.149.159.74
88.149.194.154
88.151.101.208
88.151.99.67
88.153.186.190
88.159.171.248
88.160.116.144
88.161.100.184
88.167.101.27
88.167.229.244
88.168.21.26
88.168.242.87
88.173.182.118
88.176.253.212
88.177.149.163
88.177.202.125
88.181.82.19
88.182.124.157
88.182.45.143
88.183.18.44
88.183.216.162
88.186.144.95
88.186.66.67
88.198.130.212
88.198.158.98
88.198.16.100
88.198.172.198
88.198.2.173
88.198.21.150
88.198.22.13
88.198.38.215
88.198.45.235
88.198.56.140
88.198.57.247
88.198.6.155
88.198.81.46
88.199.184.75
88.217.105.56
88.217.119.76
88.240.60.49
88.64.94.203
88.65.185.27
88.67.193.0
88.67.215.168
88.68.49.173
88.71.54.130
88.74.227.125
88.74.48.4
88.75.43.127
88.78.143.153
88.78.152.41
88.80.180.242
88.80.28.3
88.84.144.189
88.84.144.58
88.84.155.209
89.0.169.80
89.103.130.25
89.110.158.53
89.112.2.176
89.112.71.175
89.137.129.139
89.149.206.52
89.149.207.172
89.149.209.187
89.150.134.195
89.16.175.194
89.160.32.161
89.164.163.246
89.176.113.205
89.178.199.3
89.178.240.218
89.185.188.54
89.229.131.209
89.245.53.155
89.246.13.111
89.246.196.56
89.253.105.39
89.253.87.40
89.3.128.232
89.3.190.158
89.33.13.80
89.73.54.142
89.74.105.221
89.74.58.135
89.74.9.53
89.79.100.155
89.80.201.144
89.87.244.206
90.10.185.21
90.10.240.198
90.190.191.202
90.190.231.172
90.192.40.94
90.201.10.200
90.22.194.56
90.233.190.61
90.27.0.24
90.36.115.242
90.40.7.27
90.44.166.26
90.45.58.90
90.48.73.115
90.49.155.220
90.50.169.188
90.52.46.21
90.56.32.76
90.6.60.241
90.9.64.76
91.108.219.116
91.111.27.77
91.121.104.209
91.121.107.91
91.121.108.41
91.121.142.53
91.121.179.115
91.121.64.197
91.121.85.130
91.121.90.91
91.122.53.238
91.123.193.36
91.123.195.179
91.13.231.137
91.143.83.206
91.143.87.107
91.143.90.155
91.146.60.101
91.18.88.56
91.185.203.253
91.189.216.42
91.194.80.143
91.194.85.222
91.198.227.49
91.2.120.170
91.20.155.61
91.203.146.58
91.203.25.37
91.206.27.119
91.208.34.12
91.209.162.126
91.210.213.34
91.210.213.51
91.211.82.66
91.22.125.124
91.43.65.46
91.50.113.134
91.53.213.187
91.53.241.178
91.54.51.103
91.63.18.41
91.64.11.176
91.64.130.133
91.64.130.253
91.64.77.62
91.77.83.189
91.78.181.56
91.78.190.134
91.78.250.70
91.82.147.37
91.89.44.105
91.91.228.53
92.101.187.183
92.130.111.11
92.130.32.101
92.14.204.123
92.149.66.157
92.150.208.169
92.150.217.40
92.157.180.101
92.161.20.163
92.19.97.49
92.200.116.73
92.200.166.132
92.203.48.120
92.224.246.200
92.224.55.46
92.225.196.43
92.227.147.98
92.228.60.181
92.229.148.55
92.239.205.30
92.241.165.77
92.241.168.24
92.241.168.90
92.243.0.245
92.243.20.30
92.243.8.139
92.243.9.166
92.252.114.96
92.48.72.92
92.49.96.224
92.50.116.211
92.52.3.191
93.104.164.93
93.115.241.2
93.132.2.44
93.135.194.111
93.14.187.51
93.146.181.126
93.15.220.194
93.15.66.215
93.152.155.25
93.16.245.226
93.163.77.31
93.167.245.178
93.174.138.75
93.182.164.42
93.185.101.76
93.185.109.191
93.186.127.171
93.199.234.143
93.202.189.129
93.206.93.248
93.209.190.52
93.21.226.206
93.217.252.62
93.218.105.197
93.218.87.205
93.222.34.15
93.231.145.249
93.233.20.220
93.233.56.167
93.25.199.16
93.31.131.109
93.70.125.149
93.73.28.150
93.83.133.214
93.96.165.211
93.97.174.147
93.97.21.99
93.97.239.3
93.97.42.123
94.112.117.8
94.112.138.41
94.113.107.163
94.136.16.242
94.138.12.128
94.142.241.138
94.179.159.72
94.189.249.5
94.193.157.237
94.194.178.0
94.194.62.153
94.195.154.45
94.210.219.82
94.214.112.30
94.216.167.163
94.222.120.8
94.23.158.26
94.23.164.23
94.23.164.42
94.23.168.19
94.23.215.184
94.23.46.33
94.254.43.50
94.255.220.232
94.36.40.241
94.50.0.207
94.70.49.97
94.75.228.29
94.76.192.48
94.76.252.210
94.77.52.51
95.104.55.144
95.105.169.146
95.115.26.25
95.116.35.246
95.128.241.80
95.143.192.159
95.143.192.45
95.154.219.4
95.156.202.19
95.16.32.102
95.165.212.42
95.170.245.53
95.172.23.82
95.208.127.60
95.208.195.168
95.208.224.15
95.211.10.25
95.211.102.78
95.211.13.145
95.211.24.122
95.211.27.212
95.211.65.222
95.211.84.146
95.221.179.20
95.222.31.207
95.223.244.158
95.237.127.239
95.25.189.52
95.25.49.96
95.52.252.214
95.90.235.194
95.90.244.150
95.91.2.57
96.0.203.106
96.0.203.114
96.0.203.122
96.0.203.98
96.11.211.122
96.23.95.155
96.237.177.125
96.237.245.33
96.238.188.21
96.241.175.54
96.241.69.18
96.242.91.163
96.255.186.235
96.30.192.45
96.32.64.230
96.36.117.14
96.54.166.2
96.57.72.218
96.9.183.149
97.107.129.217
97.107.130.179
97.107.132.48
97.107.133.214
97.107.138.150
97.107.142.133
97.95.142.73
98.117.194.125
98.117.98.114
98.122.132.0
98.126.32.194
98.126.42.26
98.126.76.186
98.126.77.2
98.14.30.208
98.167.220.101
98.183.225.121
98.190.217.23
98.201.94.185
98.207.78.237
98.209.78.20
98.227.233.175
98.24.152.231
98.242.94.159
98.245.58.131
98.249.215.224
98.252.134.209
99.131.51.87
99.168.109.197
99.51.55.48
99.52.176.41
99.56.95.167
99.91.232.209

Educational Purposes Only