CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
adasegroup

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: adasegroup/NEUROML2022
Path: blob/main/Seminar_0_intro/shell_intro.ipynb
Views: 63
Kernel: Python 3

Contexts

Context is the most important thing when you deal with complex environment. You should learn figuring out where you are wherever you are and bring the context to others.

Your Python code in Jupyter Notebooks hosted on Colab is running on the following nested environment

Colab

Docker Machine

Shell

Jupyter

python code

!shell command

python code

long_living_variable = 42 print(f'python:\t{long_living_variable}') !echo -e "shell:\t$SHELL" # You can't do it on Windows easy way print(f'python:\t{long_living_variable + 1}')
python: 42 shell: /bin/bash python: 43

Colab gives you access to ⟼ Docker runtime environment that runs ⟼ some shell which starts ⟼ Jupyter web-server where ⟻ Colab connects to and runs ⟼ cells with python code or shell command.

You even can access to the python variable from other cells executed previously

print(long_living_variable - 1)
41

You knew it if you use Jupyter before. But what does it mean?

That means python namespace lives forever until you restart the kernel of Jupyter Notebook

print(long_living_variable - 1)
41

Inside Jupyter the lifetime of shell environment (name it session) is shorter and spans single line, not even single cell.

Exclamation point ! starts new instance of the shell and teleports you from Cell to Shell until the line ends

Jupyter

!shell command

!shell command

!short_living_variable='shell instance'; echo "session 1 episode 1: $short_living_variable"; echo "session 1 episode 2: $short_living_variable" !echo "session 2: $short_living_variable"
session 1 episode 1: shell instance session 1 episode 2: shell instance session 2:

The scope of namespaces is not important when you're working in the shell interactively within single session, but it does matter when you're making your own Docker Image, especially with environment driven control flow.

Connect Colab to Local Jupyter

To mount your Google Drive into Jupyter hosted on Colab run cell below (not locally) and follow Colab intructions

from google.colab import drive drive.mount('/content/drive')
Mounted at /content/drive

Mount means you attach remote disk and inject its content somewhere on current filesystem. Without mounting you will have to rebuild disk content of Jupyter instace everytime you restart Colab.

However, you have an option to switch Colab runtimes from Google host to your own local host (e.g. your laptop) and work on your home disk. You will need Anaconda. Open your terminal and do the following.

Install module for web sockets:

pip install --upgrade 'jupyter_http_over_ws>=0.0.7' && jupyter serverextension enable --py jupyter_http_over_ws

Run your Jupyter locally allowing Colab access to it:

jupyter-lab --NotebookApp.allow_origin='https://colab.research.google.com' --port=8888 --NotebookApp.port_retries=0

Copy from your terminal and paste Jupyter backend URL into Colab:

http://localhost:8888/?token=e01060f000d010b0800060f0c0a080600050f0e080d06050

In this case your Jupyter Notebooks still are hosted on Google Drive, but Jupyter web-server and it's environment are hosted on your machine

Colab

Local Machine

Shell

Jupyter

python code

!shell command

python code

Away

You can be free if you can explain or guess what the following command does

(set | cut -d= -f1) | grep -v -E "'$(env | cut -d= -f1 | tr '\n' '|')'"

First Hour at the Terminal

Who?

What is my login name?

! whoami
root

Who else is there?

! who

Typically all users has own directory at /home, but not on Colab where you're alone

!ls /home
! ls /
bin dev lib32 NGC-DL-CONTAINER-LICENSE root sys var boot etc lib64 opt run tmp content home media proc sbin tools datalab lib mnt python-apt srv usr

When I was here last time?

! last
wtmp begins Thu Sep 1 13:37:16 2022

What is my machine name?

! hostname
065b365805a2

Where?

Where am I on the filesystem? Print work directory

! pwd
/content

What is on the filesystem? List long format with all (including hidden) files

! ls -la /content
total 20 drwxr-xr-x 1 root root 4096 Sep 4 20:49 . drwxr-xr-x 1 root root 4096 Sep 4 20:49 .. drwxr-xr-x 4 root root 4096 Aug 31 13:47 .config drwx------ 5 root root 4096 Sep 4 20:49 drive drwxr-xr-x 1 root root 4096 Aug 31 13:47 sample_data

There are two default directories: current . (omitted in ls)

! ls
drive sample_data

and parent ..

! ls ..
bin dev lib32 NGC-DL-CONTAINER-LICENSE root sys var boot etc lib64 opt run tmp content home media proc sbin tools datalab lib mnt python-apt srv usr

Here parent directry is root / directory

! ls /
bin dev lib32 NGC-DL-CONTAINER-LICENSE root sys var boot etc lib64 opt run tmp content home media proc sbin tools datalab lib mnt python-apt srv usr

What is directory structure?

! tree
/bin/bash: tree: command not found
! apt install tree
Reading package lists... Done Building dependency tree Reading state information... Done The following package was automatically installed and is no longer required: libnvidia-common-460 Use 'apt autoremove' to remove it. The following NEW packages will be installed: tree 0 upgraded, 1 newly installed, 0 to remove and 20 not upgraded. Need to get 40.7 kB of archives. After this operation, 105 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic/universe amd64 tree amd64 1.7.0-5 [40.7 kB] Fetched 40.7 kB in 0s (300 kB/s) Selecting previously unselected package tree. (Reading database ... 155685 files and directories currently installed.) Preparing to unpack .../tree_1.7.0-5_amd64.deb ... Unpacking tree (1.7.0-5) ... Setting up tree (1.7.0-5) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
! tree
Streaming output truncated to the last 5000 lines. │   │   │   │   ├── 20160119room2room.txt │   │   │   │   ├── 20160119sociallydrivengenes.txt │   │   │   │   ├── 20160119special-delivery.txt │   │   │   │   ├── 20160119spiderman-cannot-exist.txt │   │   │   │   ├── 20160119they-took-our-jobs.txt │   │   │   │   ├── 20160119those-danish-turbines.txt │   │   │   │   ├── 20160119ultrasound.txt │   │   │   │   ├── 20160119xti.txt │   │   │   │   ├── 20160120123456.txt │   │   │   │   ├── 20160120armor.txt │   │   │   │   ├── 20160120astrobee.txt │   │   │   │   ├── 20160120control.txt │   │   │   │   ├── 20160120Decapitated-gladiators.txt │   │   │   │   ├── 20160120defense.txt │   │   │   │   ├── 20160120drone-hawk.txt │   │   │   │   ├── 20160120goleft.txt │   │   │   │   ├── 20160120head-transplant.txt │   │   │   │   ├── 20160120heartbeat.txt │   │   │   │   ├── 20160120heat-bacterias.txt │   │   │   │   ├── 20160120language-learning.txt │   │   │   │   ├── 20160120microbes-not-found.txt │   │   │   │   ├── 20160120moving-landing.txt │   │   │   │   ├── 20160120Notocolossus-gonzalezparejasi.txt │   │   │   │   ├── 20160120particlesandpyramids.txt │   │   │   │   ├── 20160120planetX.txt │   │   │   │   ├── 20160120subs.txt │   │   │   │   ├── 20160120tbgyrase.txt │   │   │   │   ├── 20160120worldview.txt │   │   │   │   ├── 20160121antifreeze-dna.txt │   │   │   │   ├── 20160121brain-hdd.txt │   │   │   │   ├── 20160121calories-counting-app.txt │   │   │   │   ├── 20160121common-cold-or-not.txt │   │   │   │   ├── 20160121drones.txt │   │   │   │   ├── 20160121energy.txt │   │   │   │   ├── 20160121fairytailes-history.txt │   │   │   │   ├── 20160121gambling.txt │   │   │   │   ├── 20160121gimball-crevasse.txt │   │   │   │   ├── 20160121graphenebarrier.txt │   │   │   │   ├── 20160121heavy-weight.txt │   │   │   │   ├── 20160121hurricanes.txt │   │   │   │   ├── 20160121jurassic-dinosaur.txt │   │   │   │   ├── 20160121no-pasaran-Nosema-apis.txt │   │   │   │   ├── 20160121no-spoon.txt │   │   │   │   ├── 20160121prime.txt │   │   │   │   ├── 20160121stroller.txt │   │   │   │   ├── 20160121testing.txt │   │   │   │   ├── 20160121the-drone-is-on-fire.txt │   │   │   │   ├── 20160121underwatervolcanoes.txt │   │   │   │   ├── 20160122antidepressant-questionnaire.txt │   │   │   │   ├── 20160122beetles.txt │   │   │   │   ├── 20160122consolation-behavior.txt │   │   │   │   ├── 20160122deeplearning.txt │   │   │   │   ├── 20160122deploy.txt │   │   │   │   ├── 20160122gene-therapy.txt │   │   │   │   ├── 20160122google-mountains.txt │   │   │   │   ├── 20160122grafted.txt │   │   │   │   ├── 20160122hover.txt │   │   │   │   ├── 20160122noble.txt │   │   │   │   ├── 20160122organic-drone.txt │   │   │   │   ├── 20160122Prehistoric-massacre.txt │   │   │   │   ├── 20160122school-capital.txt │   │   │   │   ├── 20160122Sweet-trap.txt │   │   │   │   ├── 20160122twogiantplanets.txt │   │   │   │   ├── 20160122uavs.txt │   │   │   │   ├── 20160122weapon.txt │   │   │   │   ├── 20160122weavingoforganicthreads.txt │   │   │   │   ├── 20160123agile-drone.txt │   │   │   │   ├── 20160123kitt.txt │   │   │   │   ├── 20160123launch-land-repeat.txt │   │   │   │   ├── 20160123night-side.txt │   │   │   │   ├── 20160123Uncharted-U-31.txt │   │   │   │   ├── 20160125AI-hedge-fund.txt │   │   │   │   ├── 20160125Equus-stripes.txt │   │   │   │   ├── 20160125floating-bonsai.txt │   │   │   │   ├── 20160125habit.txt │   │   │   │   ├── 20160125mathematical.txt │   │   │   │   ├── 20160125microwave-nanotubes.txt │   │   │   │   ├── 20160125missile.txt │   │   │   │   ├── 20160125quantumknots.txt │   │   │   │   ├── 20160125refuel.txt │   │   │   │   ├── 20160125reusable.txt │   │   │   │   ├── 20160125scenic-neural.txt │   │   │   │   ├── 20160125Scorbut-scorbut.txt │   │   │   │   ├── 20160125scott-kelly.txt │   │   │   │   ├── 20160125trace-circuits.txt │   │   │   │   ├── 20160125ultra-metal-poor-star.txt │   │   │   │   ├── 20160125waterlikeice.txt │   │   │   │   ├── 20160125winglets.txt │   │   │   │   ├── 20160125work-it-faster.txt │   │   │   │   ├── 20160126airplane.txt │   │   │   │   ├── 20160126ancestors-india.txt │   │   │   │   ├── 20160126asd-monkey.txt │   │   │   │   ├── 20160126blackjack.txt │   │   │   │   ├── 20160126brainsize.txt │   │   │   │   ├── 20160126cloudy-chance-of-pain.txt │   │   │   │   ├── 20160126Domestic-leopard-cat.txt │   │   │   │   ├── 20160126engine.txt │   │   │   │   ├── 20160126food-related-backfire.txt │   │   │   │   ├── 20160126hellcrab.txt │   │   │   │   ├── 20160126lift-me-up.txt │   │   │   │   ├── 20160126magneticcompass.txt │   │   │   │   ├── 20160126moon-landing-pad.txt │   │   │   │   ├── 20160126museum.txt │   │   │   │   ├── 20160126neuro-sans.txt │   │   │   │   ├── 20160126onco-microscope.txt │   │   │   │   ├── 20160126plaguestructured.txt │   │   │   │   ├── 20160126red-tape.txt │   │   │   │   ├── 20160126remind-me-later.txt │   │   │   │   ├── 20160126speed-limit.txt │   │   │   │   ├── 20160126zika-no-pregnancy.txt │   │   │   │   ├── 20160127acoustic-tweezers.txt │   │   │   │   ├── 20160127altay.txt │   │   │   │   ├── 20160127beating-the-unbeatable.txt │   │   │   │   ├── 20160127bigdata.txt │   │   │   │   ├── 20160127conspiraciesreveal.txt │   │   │   │   ├── 20160127Cyprinodon-diabolis.txt │   │   │   │   ├── 20160127epi-ms.txt │   │   │   │   ├── 20160127kfx.txt │   │   │   │   ├── 20160127lonelyplanet.txt │   │   │   │   ├── 20160127migration-passways.txt │   │   │   │   ├── 20160127multifractal-litterature.txt │   │   │   │   ├── 20160127no-difference.txt │   │   │   │   ├── 20160127origami-tessellations.txt │   │   │   │   ├── 20160127peppers.txt │   │   │   │   ├── 20160127sig.txt │   │   │   │   ├── 20160127smart-padlock.txt │   │   │   │   ├── 20160127social-networks-sleep.txt │   │   │   │   ├── 20160127spider.txt │   │   │   │   ├── 20160127Tegu-reproductive-endothermy.txt │   │   │   │   ├── 20160127time-is-the-answer.txt │   │   │   │   ├── 20160127try-to-set-the-night-on-fire.txt │   │   │   │   ├── 20160128automatic-brake.txt │   │   │   │   ├── 20160128chimera-pope.txt │   │   │   │   ├── 20160128consciousness.txt │   │   │   │   ├── 20160128dmc12.txt │   │   │   │   ├── 20160128fighter.txt │   │   │   │   ├── 20160128good-bye-java.txt │   │   │   │   ├── 20160128Kisameet-clay.txt │   │   │   │   ├── 20160128legochima.txt │   │   │   │   ├── 20160128microfluidic-liver.txt │   │   │   │   ├── 20160128nerve-magnetism.txt │   │   │   │   ├── 20160128parachutes-test.txt │   │   │   │   ├── 20160128reisen.txt │   │   │   │   ├── 20160128sea-antenna.txt │   │   │   │   ├── 20160128starcluster.txt │   │   │   │   ├── 20160128structureofprotons.txt │   │   │   │   ├── 20160128sweat-sensor.txt │   │   │   │   ├── 20160128to-kill-or-not-to-kill.txt │   │   │   │   ├── 20160129Babylon.txt │   │   │   │   ├── 20160129bwb.txt │   │   │   │   ├── 20160129calibration-tools.txt │   │   │   │   ├── 20160129configurationalentropy.txt │   │   │   │   ├── 20160129dangerous.txt │   │   │   │   ├── 20160129droneboarding.txt │   │   │   │   ├── 20160129expansion.txt │   │   │   │   ├── 20160129low-temperature-electron.txt │   │   │   │   ├── 20160129noymale.txt │   │   │   │   ├── 20160129octo-fight.txt │   │   │   │   ├── 20160129opioid.txt │   │   │   │   ├── 20160129raptor.txt │   │   │   │   ├── 20160129schizogene.txt │   │   │   │   ├── 20160129silo.txt │   │   │   │   ├── 20160129skills-practicing.txt │   │   │   │   ├── 20160129spectrometer.txt │   │   │   │   ├── 20160129trophy.txt │   │   │   │   ├── 20160130albedo.txt │   │   │   │   ├── 20160130b737max.txt │   │   │   │   ├── 20160130ceres.txt │   │   │   │   ├── 20160130fighters.txt │   │   │   │   ├── 20160130gps.txt │   │   │   │   ├── 20160130houses.txt │   │   │   │   ├── 20160130laser.txt │   │   │   │   ├── 20160130martian-mashrooms.txt │   │   │   │   ├── 20160130navi.txt │   │   │   │   ├── 20160130neurographene.txt │   │   │   │   ├── 20160130no-guns-today.txt │   │   │   │   ├── 20160130prophet.txt │   │   │   │   ├── 20160130sail.txt │   │   │   │   ├── 20160130tasty-eggs-of-Genyornis.txt │   │   │   │   ├── 20160130thoughts.txt │   │   │   │   ├── 20160201antarcticdinosaurs.txt │   │   │   │   ├── 20160201britaincrispr.txt │   │   │   │   ├── 20160201colour-moon.txt │   │   │   │   ├── 20160201crisprvsblindness.txt │   │   │   │   ├── 20160201dniwe.txt │   │   │   │   ├── 20160201drill.txt │   │   │   │   ├── 20160201eagle.txt │   │   │   │   ├── 20160201finger-tracing.txt │   │   │   │   ├── 20160201gentle-gripper.txt │   │   │   │   ├── 20160201hyperloop-pods.txt │   │   │   │   ├── 20160201instagram-selfie-relationships.txt │   │   │   │   ├── 20160201lunartides.txt │   │   │   │   ├── 20160201methanolfuel.txt │   │   │   │   ├── 20160201missiles.txt │   │   │   │   ├── 20160201new-Plesiosauria.txt │   │   │   │   ├── 20160201pluto-water.txt │   │   │   │   ├── 20160201tanker.txt │   │   │   │   ├── 20160201white-light-on-streets.txt │   │   │   │   ├── 20160201wires.txt │   │   │   │   ├── 20160202Abusir-non-royal-find.txt │   │   │   │   ├── 20160202astropi.txt │   │   │   │   ├── 20160202brainfolding.txt │   │   │   │   ├── 20160202dishonestbehavior.txt │   │   │   │   ├── 20160202drought-resistance.txt │   │   │   │   ├── 20160202easyjet.txt │   │   │   │   ├── 20160202epigenetic-reprogramming.txt │   │   │   │   ├── 20160202impact.txt │   │   │   │   ├── 20160202neoseptin.txt │   │   │   │   ├── 20160202newfrogs.txt │   │   │   │   ├── 20160202organic-co-olygomers.txt │   │   │   │   ├── 20160202Pleistocen-tortuases.txt │   │   │   │   ├── 20160202shinshin.txt │   │   │   │   ├── 20160202soft-incompatible.txt │   │   │   │   ├── 20160202synch.txt │   │   │   │   ├── 20160202time-and-time-again.txt │   │   │   │   ├── 20160202universal-semantics.txt │   │   │   │   ├── 20160202zika-world-danger.txt │   │   │   │   ├── 20160203artificialgraphene.txt │   │   │   │   ├── 20160203brainwrongspell.txt │   │   │   │   ├── 20160203cancer-mutations.txt │   │   │   │   ├── 20160203coffecirrhosis.txt │   │   │   │   ├── 20160203dji.txt │   │   │   │   ├── 20160203i-got-a-poison.txt │   │   │   │   ├── 20160203kevlar.txt │   │   │   │   ├── 20160203laser.txt │   │   │   │   ├── 20160203long-x-ray-jet.txt │   │   │   │   ├── 20160203media-stereotypes.txt │   │   │   │   ├── 20160203no-gps.txt │   │   │   │   ├── 20160203off-clip-on.txt │   │   │   │   ├── 20160203rareearthelements.txt │   │   │   │   ├── 20160203smart-mirror.txt │   │   │   │   ├── 20160203snowball-machine-gun.txt │   │   │   │   ├── 20160203twitter-bots.txt │   │   │   │   ├── 20160203uncommon-surnames.txt │   │   │   │   ├── 20160203will-serve.txt │   │   │   │   ├── 20160203zika-usa.txt │   │   │   │   ├── 20160204ancientbutterfly.txt │   │   │   │   ├── 20160204arctic.txt │   │   │   │   ├── 20160204attack.txt │   │   │   │   ├── 20160204cutter.txt │   │   │   │   ├── 20160204deceptive-buttons.txt │   │   │   │   ├── 20160204degrees-of-separation.txt │   │   │   │   ├── 20160204harry-potter-economy.txt │   │   │   │   ├── 20160204latvia-droneboarding.txt │   │   │   │   ├── 20160204legionellosis.txt │   │   │   │   ├── 20160204mitichondria-fixed.txt │   │   │   │   ├── 20160204moor.txt │   │   │   │   ├── 20160204nsa-vs-quantum.txt │   │   │   │   ├── 20160204pact.txt │   │   │   │   ├── 20160204rain.txt │   │   │   │   ├── 20160204safety-truck.txt │   │   │   │   ├── 20160204senescenceclear.txt │   │   │   │   ├── 20160204senescence-mitophagy.txt │   │   │   │   ├── 20160204vtol.txt │   │   │   │   ├── 20160204women-yawning.txt │   │   │   │   ├── 20160205biggestwindfarm.txt │   │   │   │   ├── 20160205catgras.txt │   │   │   │   ├── 20160205dope-passion.txt │   │   │   │   ├── 20160205gammarays.txt │   │   │   │   ├── 20160205hairfollicleaging.txt │   │   │   │   ├── 20160205hypoxia.txt │   │   │   │   ├── 20160205light-up.txt │   │   │   │   ├── 20160205macchiarini-fired.txt │   │   │   │   ├── 20160205mushrooms-after-death.txt │   │   │   │   ├── 20160205now-i-am-complete.txt │   │   │   │   ├── 20160205pluto-hills.txt │   │   │   │   ├── 20160205radars.txt │   │   │   │   ├── 20160205robot.txt │   │   │   │   ├── 20160205solar-magnetic-field.txt │   │   │   │   ├── 20160205unreal-editor.txt │   │   │   │   ├── 20160205when-the-spider-comes-around.txt │   │   │   │   ├── 20160206diatoms-aglae.txt │   │   │   │   ├── 20160206elastic-spheres.txt │   │   │   │   ├── 20160206fuori-circumstellar-envelope.txt │   │   │   │   ├── 20160206google-wireless-chargers.txt │   │   │   │   ├── 20160206robot-arm-lipstic.txt │   │   │   │   ├── 20160208anka.txt │   │   │   │   ├── 20160208bearbacter.txt │   │   │   │   ├── 20160208boomerang.txt │   │   │   │   ├── 20160208dangerous-black-faces.txt │   │   │   │   ├── 20160208engine.txt │   │   │   │   ├── 20160208f35a.txt │   │   │   │   ├── 20160208flu-comp.txt │   │   │   │   ├── 20160208google-vr.txt │   │   │   │   ├── 20160208helmet.txt │   │   │   │   ├── 20160208hybrid.txt │   │   │   │   ├── 20160208mers-autopsy.txt │   │   │   │   ├── 20160208msu-luminiscent-polips.txt │   │   │   │   ├── 20160208pollenanodes.txt │   │   │   │   ├── 20160208procrastinators-unite-tomorrow.txt │   │   │   │   ├── 20160208wireless-charger.txt │   │   │   │   ├── 20160208worms-lungs.txt │   │   │   │   ├── 20160208your-own-astro-pi.txt │   │   │   │   ├── 20160208zenit.txt │   │   │   │   ├── 20160209arsenal.txt │   │   │   │   ├── 20160209australopithecusdiet.txt │   │   │   │   ├── 20160209cognitive-season.txt │   │   │   │   ├── 20160209cotton-organs.txt │   │   │   │   ├── 20160209gravitationalwaves.txt │   │   │   │   ├── 20160209helicasepump.txt │   │   │   │   ├── 20160209insurance.txt │   │   │   │   ├── 20160209last-resort.txt │   │   │   │   ├── 20160209longuav.txt │   │   │   │   ├── 20160209mitaka-multiple-languages.txt │   │   │   │   ├── 20160209new-horizons-continue-exploration.txt │   │   │   │   ├── 20160209paper-planes.txt │   │   │   │   ├── 20160209quad.txt │   │   │   │   ├── 20160209sighing-peptide.txt │   │   │   │   ├── 20160209stenrod.txt │   │   │   │   ├── 20160209subs.txt │   │   │   │   ├── 20160209synechocystis.txt │   │   │   │   ├── 20160209uav.txt │   │   │   │   ├── 20160209wob-wob-clay.txt │   │   │   │   ├── 20160209wolf-dialects.txt │   │   │   │   ├── 20160210cell-stasis.txt │   │   │   │   ├── 20160210chase.txt │   │   │   │   ├── 20160210chemicalnanocages.txt │   │   │   │   ├── 20160210collision.txt │   │   │   │   ├── 20160210delivery.txt │   │   │   │   ├── 20160210great-attractor.txt │   │   │   │   ├── 20160210mammal-brain-cryopreservation.txt │   │   │   │   ├── 20160210multi.txt │   │   │   │   ├── 20160210naked-mole-cancer.txt │   │   │   │   ├── 20160210neurons-laser.txt │   │   │   │   ├── 20160210no-fly-today.txt │   │   │   │   ├── 20160210parkinson-placebo.txt │   │   │   │   ├── 20160210pedestrian.txt │   │   │   │   ├── 20160210photonelectroncrystal.txt │   │   │   │   ├── 20160210real-human-being.txt │   │   │   │   ├── 20160210reversible.txt │   │   │   │   ├── 20160210ride.txt │   │   │   │   ├── 20160210robot.txt │   │   │   │   ├── 20160210star-wars-graph.txt │   │   │   │   ├── 20160210thatwasntameteorite.txt │   │   │   │   ├── 20160210uavs.txt │   │   │   │   ├── 20160211atlast.txt │   │   │   │   ├── 20160211base.txt │   │   │   │   ├── 20160211biopiracy.txt │   │   │   │   ├── 20160211blind-typing.txt │   │   │   │   ├── 20160211climat-changes-affects-airplanes.txt │   │   │   │   ├── 20160211dipole-record.txt │   │   │   │   ├── 20160211fire-drones.txt │   │   │   │   ├── 20160211ligo-announcement.txt │   │   │   │   ├── 20160211model-3.txt │   │   │   │   ├── 20160211ok-go.txt │   │   │   │   ├── 20160211punitive-gods.txt │   │   │   │   ├── 20160211radiation-blindness.txt │   │   │   │   ├── 20160211run-like-hell.txt │   │   │   │   ├── 20160211sneezing-fluid.txt │   │   │   │   ├── 20160211successor.txt │   │   │   │   ├── 20160211tickdna.txt │   │   │   │   ├── 20160211UDAV.txt │   │   │   │   ├── 20160211zika-research.txt │   │   │   │   ├── 20160212arlington.txt │   │   │   │   ├── 20160212astroh.txt │   │   │   │   ├── 20160212bleeding.txt │   │   │   │   ├── 20160212chemicallandscape.txt │   │   │   │   ├── 20160212dreeem.txt │   │   │   │   ├── 20160212duck-hunt.txt │   │   │   │   ├── 20160212howitzer.txt │   │   │   │   ├── 20160212imperfectxray.txt │   │   │   │   ├── 20160212impossiblesalt.txt │   │   │   │   ├── 20160212keplerexoplanets.txt │   │   │   │   ├── 20160212loneliness.txt │   │   │   │   ├── 20160212neanderthal-genes.txt │   │   │   │   ├── 20160212paper.txt │   │   │   │   ├── 20160212plutomapgeology.txt │   │   │   │   ├── 20160212scientists-struggles.txt │   │   │   │   ├── 20160212smartbeacons.txt │   │   │   │   ├── 20160212tx.txt │   │   │   │   ├── 20160212universal.txt │   │   │   │   ├── 20160212who-let-the-dogs-out.txt │   │   │   │   ├── 20160213humanvaluestorobots.txt │   │   │   │   ├── 20160213newice.txt │   │   │   │   ├── 20160213seismicsmartphones.txt │   │   │   │   ├── 20160213zikavirusmicrocephaly.txt │   │   │   │   ├── 20160215darpa-drone.txt │   │   │   │   ├── 20160215dinamometr.txt │   │   │   │   ├── 20160215fermi-cetus.txt │   │   │   │   ├── 20160215fightmice.txt │   │   │   │   ├── 20160215friedpotato.txt │   │   │   │   ├── 20160215Gastornis.txt │   │   │   │   ├── 20160215genderbiasinopensource.txt │   │   │   │   ├── 20160215giant-rubik-cube.txt │   │   │   │   ├── 20160215good-old-soft.txt │   │   │   │   ├── 20160215magnetotail-flow.txt │   │   │   │   ├── 20160215one-year-of-sun.txt │   │   │   │   ├── 20160215planets.txt │   │   │   │   ├── 20160215poweregg.txt │   │   │   │   ├── 20160215riskychimp.txt │   │   │   │   ├── 20160215virtual-depression.txt │   │   │   │   ├── 20160215workingmemorysystems.txt │   │   │   │   ├── 20160215zika-projection.txt │   │   │   │   ├── 20160215zika-ru.txt │   │   │   │   ├── 201602163d-tissue-printing.txt │   │   │   │   ├── 201602165ddd.txt │   │   │   │   ├── 20160216a-few-dollars-less.txt │   │   │   │   ├── 20160216daytime-test-perfomance.txt │   │   │   │   ├── 20160216drone-crash.txt │   │   │   │   ├── 20160216faeces-bank.txt │   │   │   │   ├── 20160216feed-the-worm.txt │   │   │   │   ├── 20160216hobbits.txt │   │   │   │   ├── 20160216hybrid-octreotide.txt │   │   │   │   ├── 20160216invisiblemesh.txt │   │   │   │   ├── 20160216strip-loin.txt │   │   │   │   ├── 20160216tech-and-magic.txt │   │   │   │   ├── 20160216unknown-poems-tolkien.txt │   │   │   │   ├── 20160217acte.txt │   │   │   │   ├── 20160217astrohlaunch.txt │   │   │   │   ├── 20160217blackout.txt │   │   │   │   ├── 20160217c2sa.txt │   │   │   │   ├── 20160217cancer-breakthrough.txt │   │   │   │   ├── 20160217chemicalregulators.txt │   │   │   │   ├── 20160217china-gravitational-wave-projects.txt │   │   │   │   ├── 20160217flexible.txt │   │   │   │   ├── 20160217freedom-251.txt │   │   │   │   ├── 20160217lidarrome.txt │   │   │   │   ├── 20160217magnetocambrian.txt │   │   │   │   ├── 20160217newhotjupiters.txt │   │   │   │   ├── 20160217no-way.txt │   │   │   │   ├── 20160217organic-milk-n-meat.txt │   │   │   │   ├── 20160217prosthetic-fingers.txt │   │   │   │   ├── 20160217red-map.txt │   │   │   │   ├── 20160217sentinel-the-third.txt │   │   │   │   ├── 20160217skorost.txt │   │   │   │   ├── 20160217stem-cells.txt │   │   │   │   ├── 20160217superearthatmosphere.txt │   │   │   │   ├── 20160217windows.txt │   │   │   │   ├── 20160218abrams.txt │   │   │   │   ├── 20160218asteroid-destruction.txt │   │   │   │   ├── 20160218biomimetic-anthropomorphic.txt │   │   │   │   ├── 20160218bipedalizard.txt │   │   │   │   ├── 20160218cooper-age-settlement.txt │   │   │   │   ├── 20160218dronebox.txt │   │   │   │   ├── 20160218extrasensory-perception.txt │   │   │   │   ├── 20160218gluons-protons-angular-moment.txt │   │   │   │   ├── 20160218it-is-alive.txt │   │   │   │   ├── 20160218neurosurgery-virtual.txt │   │   │   │   ├── 20160218olderoxygen.txt │   │   │   │   ├── 20160218oppernanophotonics.txt │   │   │   │   ├── 20160218predatortrilobits.txt │   │   │   │   ├── 20160218robotdrummer.txt │   │   │   │   ├── 20160218robot.txt │   │   │   │   ├── 20160218runaway.txt │   │   │   │   ├── 20160218sb1.txt │   │   │   │   ├── 20160218shortsightedness.txt │   │   │   │   ├── 20160218support.txt │   │   │   │   ├── 20160218translate-everything.txt │   │   │   │   ├── 20160219A-Possible-Ancient-Ocean.txt │   │   │   │   ├── 20160219car.txt │   │   │   │   ├── 20160219cat-flir.txt │   │   │   │   ├── 20160219cubepercolation.txt │   │   │   │   ├── 20160219entaglement-naked-eye.txt │   │   │   │   ├── 20160219exoplanetrotation.txt │   │   │   │   ├── 20160219green-wave.txt │   │   │   │   ├── 20160219gripen.txt │   │   │   │   ├── 20160219importozames.txt │   │   │   │   ├── 20160219ironrobot.txt │   │   │   │   ├── 20160219lrsb.txt │   │   │   │   ├── 20160219martian-papas.txt │   │   │   │   ├── 20160219meteorites-of-antarctica.txt │   │   │   │   ├── 20160219Modular-Imaging-System.txt │   │   │   │   ├── 20160219novelmilgram.txt │   │   │   │   ├── 20160219radars.txt │   │   │   │   ├── 20160219the-latest-wheel-copper-age.txt │   │   │   │   ├── 20160219uhv.txt │   │   │   │   ├── 20160220cardio-rna.txt │   │   │   │   ├── 20160220cinemacinemacinema.txt │   │   │   │   ├── 20160220disconnect.txt │   │   │   │   ├── 20160220dnarotor.txt │   │   │   │   ├── 20160220kc46a.txt │   │   │   │   ├── 20160220leidenfrostdroplet.txt │   │   │   │   ├── 20160220maps-too-difficult.txt │   │   │   │   ├── 20160220no-no-gmo.txt │   │   │   │   ├── 20160220nuclear.txt │   │   │   │   ├── 20160220oldest-dress-known.txt │   │   │   │   ├── 20160220penis-transplant.txt │   │   │   │   ├── 20160220semi.txt │   │   │   │   ├── 20160220stm-bergman.txt │   │   │   │   ├── 20160220triton.txt │   │   │   │   ├── 20160220unityvirgingalactic.txt │   │   │   │   ├── 20160222density.txt │   │   │   │   ├── 20160222justbubbles.txt │   │   │   │   ├── 20160222lg-modular.txt │   │   │   │   ├── 20160222mobile-control.txt │   │   │   │   ├── 20160222moverio-bt-300.txt │   │   │   │   ├── 20160222osirisrex.txt │   │   │   │   ├── 20160222samsung-phones.txt │   │   │   │   ├── 20160222vive-preorder.txt │   │   │   │   ├── 20160224all-new-atlas.txt │   │   │   │   ├── 20160224deep-dream-excibition.txt │   │   │   │   ├── 20160224droid-5p34k.txt │   │   │   │   ├── 20160224e-stethoscope.txt │   │   │   │   ├── 20160224flight.txt │   │   │   │   ├── 20160224hydrocarbonfuel.txt │   │   │   │   ├── 20160224LIGO-twin-black-holes.txt │   │   │   │   ├── 20160224LISA-free-fall.txt │   │   │   │   ├── 20160224malnutrition.txt │   │   │   │   ├── 20160224milky-way-starforming.txt │   │   │   │   ├── 20160224more-likes.txt │   │   │   │   ├── 20160224nanoscissors.txt │   │   │   │   ├── 20160224nerves.txt │   │   │   │   ├── 20160224paint.txt │   │   │   │   ├── 20160224pipistrel.txt │   │   │   │   ├── 20160224planetx.txt │   │   │   │   ├── 20160224quickdrink.txt │   │   │   │   ├── 20160224sensor1.txt │   │   │   │   ├── 20160224sputnikmayak.txt │   │   │   │   ├── 20160224titanium-beak.txt │   │   │   │   ├── 20160224trojan-origami.txt │   │   │   │   ├── 20160224wifi.txt │   │   │   │   ├── 20160225applause-machine.txt │   │   │   │   ├── 20160225black-holes-throwing-matter-into-voids.txt │   │   │   │   ├── 20160225driver-distraction.txt │   │   │   │   ├── 20160225ebola-complications.txt │   │   │   │   ├── 20160225forestsimulation.txt │   │   │   │   ├── 20160225google-planet.txt │   │   │   │   ├── 20160225hybrid.txt │   │   │   │   ├── 20160225King-Davids-robes.txt │   │   │   │   ├── 20160225long-flight.txt │   │   │   │   ├── 20160225m1A.txt │   │   │   │   ├── 20160225mass.txt │   │   │   │   ├── 20160225power-of-plants-and-animals.txt │   │   │   │   ├── 20160225predatorbacteria.txt │   │   │   │   ├── 20160225racemode.txt │   │   │   │   ├── 20160225radioburst-source.txt │   │   │   │   ├── 20160225shield.txt │   │   │   │   ├── 20160225squishy-embryo.txt │   │   │   │   ├── 20160225supernovalight.txt │   │   │   │   ├── 20160225touchneurons.txt │   │   │   │   ├── 20160225uavs.txt │   │   │   │   ├── 20160226blur.txt │   │   │   │   ├── 20160226bombers.txt │   │   │   │   ├── 20160226Canaan-figurine.txt │   │   │   │   ├── 20160226capable-floppy.txt │   │   │   │   ├── 20160226chiralsnail.txt │   │   │   │   ├── 20160226cowtech.txt │   │   │   │   ├── 20160226drones.txt │   │   │   │   ├── 20160226fourth-try.txt │   │   │   │   ├── 20160226happiness-paradox.txt │   │   │   │   ├── 20160226linespace.txt │   │   │   │   ├── 20160226musicalgenes.txt │   │   │   │   ├── 20160226new-launcher.txt │   │   │   │   ├── 20160226obese-memory.txt │   │   │   │   ├── 20160226pentacarboalkoxycyclopentadiene.txt │   │   │   │   ├── 20160226radiohalo.txt │   │   │   │   ├── 20160226rheinmetall.txt │   │   │   │   ├── 20160226swimmingmicrorobot.txt │   │   │   │   ├── 20160226syers2.txt │   │   │   │   ├── 20160226tetraquark.txt │   │   │   │   ├── 20160226trials.txt │   │   │   │   ├── 20160227biomolecularcomputer.txt │   │   │   │   ├── 20160227rogue-waves.txt │   │   │   │   ├── 20160227thirdpartypunishment.txt │   │   │   │   ├── 20160228mesolitic-pendant.txt │   │   │   │   ├── 20160229arsenal.txt │   │   │   │   ├── 20160229battles-map.txt │   │   │   │   ├── 20160229boeing3dprinting.txt │   │   │   │   ├── 20160229Canterbury-children-diet.txt │   │   │   │   ├── 20160229deep-vr.txt │   │   │   │   ├── 20160229down-brain.txt │   │   │   │   ├── 20160229electrotraining.txt │   │   │   │   ├── 20160229gan.txt │   │   │   │   ├── 20160229hubble-blue-bubble.txt │   │   │   │   ├── 20160229ibex-observations-pin-down-interstellar-magnetic-f.txt │   │   │   │   ├── 20160229lrsb.txt │   │   │   │   ├── 20160229mq9lr.txt │   │   │   │   ├── 20160229onchip.txt │   │   │   │   ├── 20160229piramidane.txt │   │   │   │   ├── 20160229promiscuitophobia.txt │   │   │   │   ├── 20160229smartLAMP.txt │   │   │   │   ├── 20160229sony-glove.txt │   │   │   │   ├── 20160229subradiancebillionRb.txt │   │   │   │   ├── 20160229vive-start-preorder.txt │   │   │   │   ├── 20160229wait.txt │   │   │   │   ├── 20160229whales-dialects.txt │   │   │   │   ├── 20160229wireless-pi.txt │   │   │   │   ├── 20160301antianti.txt │   │   │   │   ├── 20160301applefbicourt.txt │   │   │   │   ├── 20160301chemical-fire.txt │   │   │   │   ├── 20160301cvah.txt │   │   │   │   ├── 20160301depp-effect.txt │   │   │   │   ├── 20160301first-time.txt │   │   │   │   ├── 20160301flip-phone.txt │   │   │   │   ├── 20160301forecastviolence.txt │   │   │   │   ├── 20160301graphenelighttrapping.txt │   │   │   │   ├── 20160301hud.txt │   │   │   │   ├── 20160301ivf-chip.txt │   │   │   │   ├── 20160301lasers.txt │   │   │   │   ├── 20160301misterious-western-pans.txt │   │   │   │   ├── 20160301mummified-captain.txt │   │   │   │   ├── 20160301mummy-cancer.txt │   │   │   │   ├── 20160301mushroomwinds.txt │   │   │   │   ├── 20160301openness.txt │   │   │   │   ├── 20160301paleobiology-fossilized-nerves.txt │   │   │   │   ├── 20160301quietersupersonicjet.txt │   │   │   │   ├── 20160301superhydrophobicity.txt │   │   │   │   ├── 20160301think-fast-die-last.txt │   │   │   │   ├── 20160301trust-robots.txt │   │   │   │   ├── 20160302adolesdiction.txt │   │   │   │   ├── 20160302archive.txt │   │   │   │   ├── 20160302brain-prize.txt │   │   │   │   ├── 20160302Chlorpyrifos-dumbs-bees.txt │   │   │   │   ├── 20160302disordered-pairs.txt │   │   │   │   ├── 20160302end-of-the-console.txt │   │   │   │   ├── 20160302gray-hair.txt │   │   │   │   ├── 20160302ius.txt │   │   │   │   ├── 20160302kelly-kornienko-go-home.txt │   │   │   │   ├── 20160302munchies.txt │   │   │   │   ├── 20160302oldestfungi.txt │   │   │   │   ├── 20160302planets-in-habitable-zones.txt │   │   │   │   ├── 20160302quadcoptersphantom.txt │   │   │   │   ├── 20160302RCW-106.txt │   │   │   │   ├── 20160302repairs.txt │   │   │   │   ├── 20160302sentinel-3A.txt │   │   │   │   ├── 20160302sixth.txt │   │   │   │   ├── 20160302sling.txt │   │   │   │   ├── 20160302stop-argentine-ants.txt │   │   │   │   ├── 20160302stylish-mars-maps.txt │   │   │   │   ├── 20160302superconducting-seebek.txt │   │   │   │   ├── 20160302swarm-bacteria.txt │   │   │   │   ├── 20160302twitter-word-vectors.txt │   │   │   │   ├── 20160302Wadi-Sura-mistery.txt │   │   │   │   ├── 20160302weapons.txt │   │   │   │   ├── 20160302x2.txt │   │   │   │   ├── 20160302year-in-space-back.txt │   │   │   │   ├── 20160303adsb.txt │   │   │   │   ├── 20160303bullet-time.txt │   │   │   │   ├── 20160303captain-mummy.txt │   │   │   │   ├── 20160303electrostatic-catalisys.txt │   │   │   │   ├── 20160303finalflight.txt │   │   │   │   ├── 20160303google-zika.txt │   │   │   │   ├── 20160303long-way.txt │   │   │   │   ├── 20160303Lud-settlement.txt │   │   │   │   ├── 20160303meta-dev-kit.txt │   │   │   │   ├── 20160303microwave-heat-can-do.txt │   │   │   │   ├── 20160303MOOV.txt │   │   │   │   ├── 20160303new-born-star.txt │   │   │   │   ├── 20160303pay-hands-free.txt │   │   │   │   ├── 20160303repeatingradioburst.txt │   │   │   │   ├── 20160303robots.txt │   │   │   │   ├── 20160303sneezometer.txt │   │   │   │   ├── 20160303sound-steal.txt │   │   │   │   ├── 20160303sphericaltires.txt │   │   │   │   ├── 20160303super-kek.txt │   │   │   │   ├── 20160303Tharsis-Tholus.txt │   │   │   │   ├── 20160303tubetits.txt │   │   │   │   ├── 20160303visual.txt │   │   │   │   ├── 20160303waterlilybeetle.txt │   │   │   │   ├── 20160304aurora.txt │   │   │   │   ├── 20160304bmichair.txt │   │   │   │   ├── 20160304CdTe-solar.txt │   │   │   │   ├── 20160304chameleo.txt │   │   │   │   ├── 20160304creator-retraction.txt │   │   │   │   ├── 20160304electroluminescentskin.txt │   │   │   │   ├── 20160304ems.txt │   │   │   │   ├── 20160304evolutioninnateimmunity.txt │   │   │   │   ├── 20160304fail-of-psychology-studies-fail-reproducibility.txt │   │   │   │   ├── 20160304handofcreation.txt │   │   │   │   ├── 20160304huble-gn-z-11.txt │   │   │   │   ├── 20160304liquid-metal.txt │   │   │   │   ├── 20160304mwxbuldge.txt │   │   │   │   ├── 20160304mycenaean-cemetery.txt │   │   │   │   ├── 20160304obesity-cancer.txt │   │   │   │   ├── 20160304osher-map-library.txt │   │   │   │   ├── 20160304psycho.txt │   │   │   │   ├── 20160304salmon-heart.txt │   │   │   │   ├── 20160304scalable-Shor-algorithm.txt │   │   │   │   ├── 20160304skywall.txt │   │   │   │   ├── 20160304sorry-banksy.txt │   │   │   │   ├── 20160304superfecundation.txt │   │   │   │   ├── 20160304trail-sled.txt │   │   │   │   ├── 20160305falcon-fail.txt │   │   │   │   ├── 20160305finally.txt │   │   │   │   ├── 20160305more-or-less.txt │   │   │   │   ├── 20160305newoctopus.txt │   │   │   │   ├── 20160305sandpaper.txt │   │   │   │   ├── 20160305zika-hnpc.txt │   │   │   │   ├── 20160307chameleon.txt │   │   │   │   ├── 20160307e-mail.txt │   │   │   │   ├── 20160309ahrlac.txt │   │   │   │   ├── 20160309bigtits.txt │   │   │   │   ├── 20160309bioglue-ph-clock.txt │   │   │   │   ├── 20160309bionicfinger.txt │   │   │   │   ├── 20160309blueorigin.txt │   │   │   │   ├── 20160309drone.txt │   │   │   │   ├── 20160309emotional-drones.txt │   │   │   │   ├── 20160309expansion-of-the-Universe-.txt │   │   │   │   ├── 20160309f35.txt │   │   │   │   ├── 20160309hydra-mouth.txt │   │   │   │   ├── 20160309insight-departure-delayed.txt │   │   │   │   ├── 20160309iron.txt │   │   │   │   ├── 20160309know-they-dont-know.txt │   │   │   │   ├── 20160309martian-and-moon-simulant.txt │   │   │   │   ├── 20160309mini.txt │   │   │   │   ├── 20160309North-Carolina-steamer.txt │   │   │   │   ├── 20160309no-way.txt │   │   │   │   ├── 20160309old-star-disc.txt │   │   │   │   ├── 20160309order-disorder.txt │   │   │   │   ├── 20160309ornamental-lime-trees.txt │   │   │   │   ├── 20160309Sonic-hedgehog-mistake.txt │   │   │   │   ├── 20160309synserb.txt │   │   │   │   ├── 20160309virtualbrushing.txt │   │   │   │   ├── 20160309v-sign-machine-learning.txt │   │   │   │   ├── 20160310140-millions-Pinus-mundayi.txt │   │   │   │   ├── 201603103dnes-emulator-nintendo-games-3d-super-mario.txt │   │   │   │   ├── 20160310atomicvibration.txt │   │   │   │   ├── 20160310braces.txt │   │   │   │   ├── 20160310churi-solar-system-old.txt │   │   │   │   ├── 20160310corruption-society-lies.txt │   │   │   │   ├── 20160310Deep-Learning-for-Robots.txt │   │   │   │   ├── 20160310fasterloading.txt │   │   │   │   ├── 20160310fingerprints.txt │   │   │   │   ├── 20160310hammerhead.txt │   │   │   │   ├── 20160310Hello-Brian.txt │   │   │   │   ├── 20160310homochew.txt │   │   │   │   ├── 20160310hydrogen-bonding-boron.txt │   │   │   │   ├── 20160310ka52.txt │   │   │   │   ├── 20160310lens-regrow.txt │   │   │   │   ├── 20160310lingvo.txt │   │   │   │   ├── 20160310raptor.txt │   │   │   │   ├── 20160310safety.txt │   │   │   │   ├── 20160310second-trial.txt │   │   │   │   ├── 20160310three-more-left.txt │   │   │   │   ├── 20160310uterustransplant.txt │   │   │   │   ├── 20160310video.txt │   │   │   │   ├── 20160310XFEL-undulator.txt │   │   │   │   ├── 20160311adultneurogen.txt │   │   │   │   ├── 20160311alloys.txt │   │   │   │   ├── 20160311bad-tesla.txt │   │   │   │   ├── 20160311domain-map.txt │   │   │   │   ├── 20160311eating-plastic-is-fantastic.txt │   │   │   │   ├── 20160311elephant.txt │   │   │   │   ├── 20160311f135.txt │   │   │   │   ├── 20160311fire-it-up.txt │   │   │   │   ├── 20160311hyperloop.txt │   │   │   │   ├── 20160311LHC-the-magnificent.txt │   │   │   │   ├── 20160311missiles.txt │   │   │   │   ├── 20160311New-Olduvai-research.txt │   │   │   │   ├── 20160311nucleardetonation.txt │   │   │   │   ├── 20160311pi-zza.txt │   │   │   │   ├── 20160311radio.txt │   │   │   │   ├── 20160311Semantic-Style-Transfer.txt │   │   │   │   ├── 20160311snapology.txt │   │   │   │   ├── 20160311translatorservice.txt │   │   │   │   ├── 20160312chirpa.txt │   │   │   │   ├── 20160312crank.txt │   │   │   │   ├── 20160312deciding-match.txt │   │   │   │   ├── 20160312engines.txt │   │   │   │   ├── 20160312last-resort.txt │   │   │   │   ├── 20160312speed.txt │   │   │   │   ├── 20160312spray.txt │   │   │   │   ├── 20160312stingray.txt │   │   │   │   ├── 20160312submarines.txt │   │   │   │   ├── 20160312uavs.txt │   │   │   │   ├── 20160312weaponize.txt │   │   │   │   ├── 20160312wildlife.txt │   │   │   │   ├── 20160313finish-him.txt │   │   │   │   ├── 20160313one-more-time.txt │   │   │   │   ├── 20160314car-dragging-robots.txt │   │   │   │   ├── 20160314Ce-homo-in-fur.txt │   │   │   │   ├── 20160314dinolegs.txt │   │   │   │   ├── 20160314dna-chips.txt │   │   │   │   ├── 20160314drone-raing-dubai.txt │   │   │   │   ├── 20160314exomars-launch.txt │   │   │   │   ├── 20160314foodporn.txt │   │   │   │   ├── 20160314forensic-lipstick.txt │   │   │   │   ├── 20160314Healing-cannabis.txt │   │   │   │   ├── 20160314iron-eating.txt │   │   │   │   ├── 20160314mathprimes.txt │   │   │   │   ├── 20160314opf-ppf.txt │   │   │   │   ├── 20160314Teyujagua-paradoxa.txt │   │   │   │   ├── 20160314thinnest-lens.txt │   │   │   │   ├── 20160314yandex-to-the-mars.txt │   │   │   │   ├── 20160315abel-for-last-Fermat.txt │   │   │   │   ├── 20160315aureus.txt │   │   │   │   ├── 20160315brain-task.txt │   │   │   │   ├── 20160315depressun.txt │   │   │   │   ├── 20160315diamonds-from-the-sky.txt │   │   │   │   ├── 20160315enceladus-orion.txt │   │   │   │   ├── 20160315eraole.txt │   │   │   │   ├── 20160315Extreme-spider.txt │   │   │   │   ├── 20160315f35.txt │   │   │   │   ├── 20160315fatepigene.txt │   │   │   │   ├── 20160315flaw-victory.txt │   │   │   │   ├── 20160315graphen-filter.txt │   │   │   │   ├── 20160315harder-better.txt │   │   │   │   ├── 20160315i-like-to-move-it.txt │   │   │   │   ├── 20160315just-quit.txt │   │   │   │   ├── 20160315kj500.txt │   │   │   │   ├── 20160315laser.txt │   │   │   │   ├── 20160315Pigeon-monitor.txt │   │   │   │   ├── 20160315smart-glass.txt │   │   │   │   ├── 20160315spiders-vegeterians.txt │   │   │   │   ├── 20160315tattoo-SIgA.txt │   │   │   │   ├── 20160315Vasco-da-Gama.txt │   │   │   │   ├── 201603162D-distance-gesture-control.txt │   │   │   │   ├── 201603163d-antenna.txt │   │   │   │   ├── 20160316anti-EBV.txt │   │   │   │   ├── 20160316ceres-spots.txt │   │   │   │   ├── 20160316deice.txt │   │   │   │   ├── 20160316drones-not-dangerous.txt │   │   │   │   ├── 20160316echo.txt │   │   │   │   ├── 20160316hotaru.txt │   │   │   │   ├── 20160316hybrid-patch.txt │   │   │   │   ├── 20160316laserweapon.txt │   │   │   │   ├── 20160316Latin-English-Bible.txt │   │   │   │   ├── 20160316lightbiobot.txt │   │   │   │   ├── 20160316master-star.txt │   │   │   │   ├── 20160316mastication-sound.txt │   │   │   │   ├── 20160316mi28ne.txt │   │   │   │   ├── 20160316moving-microrobots.txt │   │   │   │   ├── 20160316nofire.txt │   │   │   │   ├── 20160316october.txt │   │   │   │   ├── 20160316quantum-thermometer.txt │   │   │   │   ├── 20160316rafale.txt │   │   │   │   ├── 20160316sima-de-los-huesos.txt │   │   │   │   ├── 20160316v404.txt │   │   │   │   ├── 20160316vr.txt │   │   │   │   ├── 20160316wingtra.txt │   │   │   │   ├── 20160317alzmemories.txt │   │   │   │   ├── 20160317Ancient-puppy.txt │   │   │   │   ├── 20160317autolaces.txt │   │   │   │   ├── 20160317cappa-ceti-tought.txt │   │   │   │   ├── 20160317cyrkon.txt │   │   │   │   ├── 20160317decoherence.txt │   │   │   │   ├── 20160317drunk-twitter.txt │   │   │   │   ├── 20160317firefly.txt │   │   │   │   ├── 20160317graphen-origami.txt │   │   │   │   ├── 20160317haploid-stem-cells.txt │   │   │   │   ├── 20160317HL-Tau.txt │   │   │   │   ├── 20160317japan-drones.txt │   │   │   │   ├── 20160317mems.txt │   │   │   │   ├── 20160317mig35.txt │   │   │   │   ├── 20160317moving.txt │   │   │   │   ├── 20160317patriot.txt │   │   │   │   ├── 20160317railgun.txt │   │   │   │   ├── 20160317rock-climbing-drone.txt │   │   │   │   ├── 20160317Sagittarius-A.txt │   │   │   │   ├── 20160317sr72.txt │   │   │   │   ├── 20160317Tully-monster-mistery.txt │   │   │   │   ├── 20160317weapons.txt │   │   │   │   ├── 20160317Who-is-there.txt │   │   │   │   ├── 20160318aligners.txt │   │   │   │   ├── 20160318alzchip.txt │   │   │   │   ├── 20160318cleaning.txt │   │   │   │   ├── 20160318exomars-captured.txt │   │   │   │   ├── 20160318fat-and-short-less-opportunities.txt │   │   │   │   ├── 20160318flying-ball.txt │   │   │   │   ├── 20160318graviton-or-higgs-boson.txt │   │   │   │   ├── 20160318i400.txt │   │   │   │   ├── 20160318kalina.txt │   │   │   │   ├── 20160318lateactive.txt │   │   │   │   ├── 20160318monster-stars.txt │   │   │   │   ├── 20160318picture-of-last-ice-age.txt │   │   │   │   ├── 20160318pizza.txt │   │   │   │   ├── 20160318pluto-atmosphere-new.txt │   │   │   │   ├── 20160318seek-locate.txt │   │   │   │   ├── 20160318visualize.txt │   │   │   │   ├── 2016031947-48.txt │   │   │   │   ├── 20160319Cruel-cololbuses.txt │   │   │   │   ├── 20160319edge-chrome.txt │   │   │   │   ├── 20160319frbutmost.txt │   │   │   │   ├── 20160319magikarp.txt │   │   │   │   ├── 20160319new-crew.txt │   │   │   │   ├── 20160319quad-submarine.txt │   │   │   │   ├── 20160319sulon.txt │   │   │   │   ├── 20160321all-new-again.txt │   │   │   │   ├── 20160321Bear-bone-discovery.txt │   │   │   │   ├── 20160321cleaning.txt │   │   │   │   ├── 20160321cleft-palate.txt │   │   │   │   ├── 20160321Denmarks-oldest-crucifix.txt │   │   │   │   ├── 20160321durus.txt │   │   │   │   ├── 20160321eccentric-planet.txt │   │   │   │   ├── 20160321face2face.txt │   │   │   │   ├── 20160321fastest-vision.txt │   │   │   │   ├── 20160321fb-occufamily.txt │   │   │   │   ├── 20160321H3SMeissnerremeasure.txt │   │   │   │   ├── 20160321hotwinter.txt │   │   │   │   ├── 20160321hunters-gatherers.txt │   │   │   │   ├── 20160321ipad-pro-mini.txt │   │   │   │   ├── 20160321i-see-a-red-door.txt │   │   │   │   ├── 20160321liam.txt │   │   │   │   ├── 20160321neurons-for-transplantation.txt │   │   │   │   ├── 20160321periscope.txt │   │   │   │   ├── 20160321shockwaves.txt │   │   │   │   ├── 20160321toonz.txt │   │   │   │   ├── 20160322ceres.txt │   │   │   │   ├── 20160322endocannabinoid-anxiety.txt │   │   │   │   ├── 20160322fish-bonding.txt │   │   │   │   ├── 20160322graphene-diabetes.txt │   │   │   │   ├── 20160322gravity-view-mars.txt │   │   │   │   ├── 20160322harrier.txt │   │   │   │   ├── 20160322herculanum.txt │   │   │   │   ├── 20160322hivedited.txt │   │   │   │   ├── 20160322levitation-helium.txt │   │   │   │   ├── 20160322mirror-self-awareness.txt │   │   │   │   ├── 20160322nano.txt │   │   │   │   ├── 20160322optogenetherapy.txt │   │   │   │   ├── 20160322relay.txt │   │   │   │   ├── 20160322restore.txt │   │   │   │   ├── 20160322retractable.txt │   │   │   │   ├── 20160322searching.txt │   │   │   │   ├── 20160322seat.txt │   │   │   │   ├── 20160322silicon-enzime.txt │   │   │   │   ├── 20160322Skinbow-danio-rerio.txt │   │   │   │   ├── 20160322supernova.txt │   │   │   │   ├── 20160322timecut.txt │   │   │   │   ├── 20160322wave.txt │   │   │   │   ├── 20160322weather.txt │   │   │   │   ├── 20160323a321.txt │   │   │   │   ├── 20160323at-least-you-can-try.txt │   │   │   │   ├── 20160323biofuels.txt │   │   │   │   ├── 20160323bolt.txt │   │   │   │   ├── 20160323comp-alzheimer.txt │   │   │   │   ├── 20160323ctws.txt │   │   │   │   ├── 20160323exomars.txt │   │   │   │   ├── 20160323frog-foam.txt │   │   │   │   ├── 20160323happy-tree-friends.txt │   │   │   │   ├── 20160323japanese-spinning-top.txt │   │   │   │   ├── 20160323pluto-rivers-lakes.txt │   │   │   │   ├── 20160323ponzi.txt │   │   │   │   ├── 20160323primordial-black-holes-.txt │   │   │   │   ├── 20160323railgun.txt │   │   │   │   ├── 20160323risk-preferences.txt │   │   │   │   ├── 20160323schizofun.txt │   │   │   │   ├── 20160323sperm-activation.txt │   │   │   │   ├── 20160323unhappy-salary.txt │   │   │   │   ├── 20160323wrestling.txt │   │   │   │   ├── 20160324benzene-with-a-twist.txt │   │   │   │   ├── 20160324camo.txt │   │   │   │   ├── 20160324champ.txt │   │   │   │   ├── 20160324Chinggiskhaania-bifurcata-rulez.txt │   │   │   │   ├── 20160324engine.txt │   │   │   │   ├── 20160324eye.txt │   │   │   │   ├── 20160324finally-computer.txt │   │   │   │   ├── 20160324google-demolition.txt │   │   │   │   ├── 20160324jupiter.txt │   │   │   │   ├── 20160324lactodefense.txt │   │   │   │   ├── 20160324lost-medieval-castle.txt │   │   │   │   ├── 20160324maps-quietest-spots.txt │   │   │   │   ├── 20160324mean-Game-theory.txt │   │   │   │   ├── 20160324moderate-drinkers.txt │   │   │   │   ├── 20160324moon-axis.txt │   │   │   │   ├── 20160324museum.txt │   │   │   │   ├── 20160324pdgf-maggots.txt │   │   │   │   ├── 20160324potteryJomon.txt │   │   │   │   ├── 20160324radioneuron.txt │   │   │   │   ├── 20160324syn3dot0.txt │   │   │   │   ├── 20160324tay.txt │   │   │   │   ├── 20160324y20.txt │   │   │   │   ├── 20160325baidu-crowds-map.txt │   │   │   │   ├── 20160325conestoga.txt │   │   │   │   ├── 20160325cryo-structure.txt │   │   │   │   ├── 20160325Cryptotora-walking-fish.txt │   │   │   │   ├── 20160325cychlidselfsex.txt │   │   │   │   ├── 20160325Dracos-invasion.txt │   │   │   │   ├── 20160325El-Nio.txt │   │   │   │   ├── 20160325emerging-rexton.txt │   │   │   │   ├── 20160325f35.txt │   │   │   │   ├── 20160325giraffe.txt │   │   │   │   ├── 20160325hypoxia.txt │   │   │   │   ├── 20160325methane-catalysis.txt │   │   │   │   ├── 20160325novel-machine.txt │   │   │   │   ├── 20160325nuclear-membrane-burst.txt │   │   │   │   ├── 20160325saturn-moons.txt │   │   │   │   ├── 20160325sleep-protein.txt │   │   │   │   ├── 20160325sox21.txt │   │   │   │   ├── 20160325titan-peak.txt │   │   │   │   ├── 20160325tobacco-tbc.txt │   │   │   │   ├── 20160325wing.txt │   │   │   │   ├── 20160326cygnus.txt │   │   │   │   ├── 20160326dodo-paleo.txt │   │   │   │   ├── 20160326horsehead.txt │   │   │   │   ├── 20160326whisky.txt │   │   │   │   ├── 20160328astro-h-communication-failure.txt │   │   │   │   ├── 20160328clouds.txt │   │   │   │   ├── 20160328drone-artist.txt │   │   │   │   ├── 20160328drones.txt │   │   │   │   ├── 20160328EggBot.txt │   │   │   │   ├── 20160328engines.txt │   │   │   │   ├── 20160328enigma.txt │   │   │   │   ├── 20160328facial-expression.txt │   │   │   │   ├── 20160328fission.txt │   │   │   │   ├── 20160328fredkin-gate.txt │   │   │   │   ├── 20160328haski.txt │   │   │   │   ├── 20160328HD-80606.txt │   │   │   │   ├── 20160328holoportation.txt │   │   │   │   ├── 20160328injured.txt │   │   │   │   ├── 20160328leap-reading-machine.txt │   │   │   │   ├── 20160328moose.txt │   │   │   │   ├── 20160328Newton-penned-manuscript.txt │   │   │   │   ├── 20160328psychogrammar.txt │   │   │   │   ├── 20160328pterosaur.txt │   │   │   │   ├── 20160328RGS-chemistry.txt │   │   │   │   ├── 20160328robotaxi.txt │   │   │   │   ├── 20160328rotationalDopplernonlinear.txt │   │   │   │   ├── 20160328smart-windshield.txt │   │   │   │   ├── 20160328turnstile-molecule.txt │   │   │   │   ├── 20160329coronoid.txt │   │   │   │   ├── 20160329dominant-body-posture.txt │   │   │   │   ├── 20160329Electric-fork.txt │   │   │   │   ├── 20160329enceladus-tiger-stripes.txt │   │   │   │   ├── 20160329fbi-hacked-apple.txt │   │   │   │   ├── 20160329goodbadugly.txt │   │   │   │   ├── 20160329Internet-Connected-Printers-Spit-Out-Racist-Flyers.txt │   │   │   │   ├── 20160329jstars.txt │   │   │   │   ├── 20160329jupiter-bang.txt │   │   │   │   ├── 20160329kuvee.txt │   │   │   │   ├── 20160329lidarphone.txt │   │   │   │   ├── 20160329maluuba.txt │   │   │   │   ├── 20160329NASA-methane-sensor.txt │   │   │   │   ├── 20160329poedji.txt │   │   │   │   ├── 20160329printed-eggs.txt │   │   │   │   ├── 20160329traveler.txt │   │   │   │   ├── 20160329waste-to-energy.txt │   │   │   │   ├── 20160330bash.txt │   │   │   │   ├── 20160330bitcoin-consume-as-much-as-denmark.txt │   │   │   │   ├── 20160330britecloud.txt │   │   │   │   ├── 20160330BTWC.txt │   │   │   │   ├── 20160330bye-bye-drones.txt │   │   │   │   ├── 20160330center.txt │   │   │   │   ├── 20160330echo-engine.txt │   │   │   │   ├── 20160330hitomi-maybe-alive.txt │   │   │   │   ├── 20160330Idmonarachne.txt │   │   │   │   ├── 20160330laser-fridge.txt │   │   │   │   ├── 20160330lte.txt │   │   │   │   ├── 20160330picobug.txt │   │   │   │   ├── 20160330pilimachine.txt │   │   │   │   ├── 20160330tetraquark-fail.txt │   │   │   │   ├── 20160330uav.txt │   │   │   │   ├── 20160330vegan.txt │   │   │   │   ├── 20160330YFe2Ge2Fermi3Dsuperconductor.txt │   │   │   │   ├── 20160331blackjack.txt │   │   │   │   ├── 20160331face-melody.txt │   │   │   │   ├── 20160331Gebel-el-SilSila-necropolis.txt │   │   │   │   ├── 20160331get-a-jab.txt │   │   │   │   ├── 20160331GW150914.txt │   │   │   │   ├── 20160331laser.txt │   │   │   │   ├── 20160331lmh1.txt │   │   │   │   ├── 20160331methade.txt │   │   │   │   ├── 20160331methylome-sample.txt │   │   │   │   ├── 20160331mfti-exoplanets.txt │   │   │   │   ├── 20160331Micrixalidae-tadpoles.txt │   │   │   │   ├── 20160331mig31.txt │   │   │   │   ├── 20160331robot-beetle.txt │   │   │   │   ├── 20160331superearth-temperature.txt │   │   │   │   ├── 20160331uavs.txt │   │   │   │   ├── 20160331vr-abbey-road.txt │   │   │   │   ├── 20160331vr-painkiller.txt │   │   │   │   ├── 20160331weapons.txt │   │   │   │   ├── 20160331wi-fi-navigation.txt │   │   │   │   ├── 20160331writetoauthors.txt │   │   │   │   ├── 20160331zikaxl.txt │   │   │   │   ├── 20160401april-exomars.txt │   │   │   │   ├── 20160401ar-fools.txt │   │   │   │   ├── 20160401b2.txt │   │   │   │   ├── 20160401D-ox-white-dwarf.txt │   │   │   │   ├── 20160401fatty-year.txt │   │   │   │   ├── 20160401goodbadneuro.txt │   │   │   │   ├── 20160401hackthepentagon.txt │   │   │   │   ├── 20160401harfang.txt │   │   │   │   ├── 20160401hiv-transplant.txt │   │   │   │   ├── 20160401memasique.txt │   │   │   │   ├── 20160401model-3.txt │   │   │   │   ├── 20160401perceptional-illusion.txt │   │   │   │   ├── 20160401seek-locate-communicate.txt │   │   │   │   ├── 20160401smart-and-colorful.txt │   │   │   │   ├── 20160401successful-death.txt │   │   │   │   ├── 20160401thermite.txt │   │   │   │   ├── 20160401vispering-mode.txt │   │   │   │   ├── 20160401vortex.txt │   │   │   │   ├── 20160401vzv-glioma.txt │   │   │   │   ├── 20160401zika.txt │   │   │   │   ├── 201604023D-printed-bonsai.txt │   │   │   │   ├── 20160402ancient-dna-americans.txt │   │   │   │   ├── 20160402graph-game-of-thrones.txt │   │   │   │   ├── 20160402hw-hydra-rings.txt │   │   │   │   ├── 20160402triple-star-system.txt │   │   │   │   ├── 20160404actuv.txt │   │   │   │   ├── 20160404artificial-sweat.txt │   │   │   │   ├── 20160404atj.txt │   │   │   │   ├── 20160404blue-origin-part-three.txt │   │   │   │   ├── 20160404dutch-antidrone.txt │   │   │   │   ├── 20160404fatigue.txt │   │   │   │   ├── 20160404flowpharma.txt │   │   │   │   ├── 20160404gamma-tomato.txt │   │   │   │   ├── 20160404ibm-sCAPA.txt │   │   │   │   ├── 20160404interactome.txt │   │   │   │   ├── 20160404manned-unmanned.txt │   │   │   │   ├── 20160404martian-winds.txt │   │   │   │   ├── 20160404Metal-scourge-in-Rufford-abbey.txt │   │   │   │   ├── 20160404nepali-textile.txt │   │   │   │   ├── 20160404nosportmice.txt │   │   │   │   ├── 20160404oculus-shmoculus.txt │   │   │   │   ├── 20160404photo-silhouette.txt │   │   │   │   ├── 20160404robospider.txt │   │   │   │   ├── 20160404rwanda.txt │   │   │   │   ├── 20160404saw-drone.txt │   │   │   │   ├── 20160404uavs.txt │   │   │   │   ├── 201604053d-ovaries.txt │   │   │   │   ├── 20160405android-auto.txt │   │   │   │   ├── 20160405Aquilonifer-brood-care.txt │   │   │   │   ├── 20160405dna-rectifier.txt │   │   │   │   ├── 20160405dronephone.txt │   │   │   │   ├── 20160405embarassing-robots.txt │   │   │   │   ├── 20160405fence-drone.txt │   │   │   │   ├── 20160405fence.txt │   │   │   │   ├── 20160405flat-boron-2.txt │   │   │   │   ├── 20160405gremlins.txt │   │   │   │   ├── 20160405hannibalps.txt │   │   │   │   ├── 20160405la-t7.txt │   │   │   │   ├── 20160405lightning.txt │   │   │   │   ├── 20160405microcin.txt │   │   │   │   ├── 20160405microvesicles.txt │   │   │   │   ├── 20160405ocean-salinity.txt │   │   │   │   ├── 20160405oganesiy.txt │   │   │   │   ├── 20160405part-time-editor.txt │   │   │   │   ├── 20160405Ritual-human-sacrifice.txt │   │   │   │   ├── 20160405suicidality.txt │   │   │   │   ├── 20160405uavs.txt │   │   │   │   ├── 20160405whatsapp-encryption.txt │   │   │   │   ├── 20160405whoisondutytoday.txt │   │   │   │   ├── 201604063d-hydraulics.txt │   │   │   │   ├── 20160406airplane.txt │   │   │   │   ├── 20160406chroma-key.txt │   │   │   │   ├── 20160406coevolution.txt │   │   │   │   ├── 20160406creepy.txt │   │   │   │   ├── 20160406guided-cryo.txt │   │   │   │   ├── 20160406hawk.txt │   │   │   │   ├── 20160406mhtk.txt │   │   │   │   ├── 20160406moleskine.txt │   │   │   │   ├── 20160406nonpaternity.txt │   │   │   │   ├── 20160406plastic.txt │   │   │   │   ├── 20160406rembrandt.txt │   │   │   │   ├── 20160406roborace.txt │   │   │   │   ├── 20160406Second-temple-artefact.txt │   │   │   │   ├── 20160406time-domain-wave.txt │   │   │   │   ├── 20160406Venus-Moon.txt │   │   │   │   ├── 20160406xenoheart.txt │   │   │   │   ├── 20160406xenon-cluster.txt │   │   │   │   ├── 20160406yabot.txt │   │   │   │   ├── 20160407Another-first-folio.txt │   │   │   │   ├── 20160407better-than.txt │   │   │   │   ├── 20160407broom.txt │   │   │   │   ├── 20160407brown-dwarf.txt │   │   │   │   ├── 20160407china-roads.txt │   │   │   │   ├── 20160407europe.txt │   │   │   │   ├── 20160407fatty.txt │   │   │   │   ├── 20160407fire.txt │   │   │   │   ├── 20160407game-boy-zero.txt │   │   │   │   ├── 20160407hurkus.txt │   │   │   │   ├── 20160407internet.txt │   │   │   │   ├── 20160407maintenance-treatment.txt │   │   │   │   ├── 20160407mushroomsbatteries.txt │   │   │   │   ├── 20160407ngc-1600-black-hole.txt │   │   │   │   ├── 20160407nograviwavesmbhdetection.txt │   │   │   │   ├── 20160407orgasm-anatomy.txt │   │   │   │   ├── 20160407Peak-friendship-time.txt │   │   │   │   ├── 20160407sentinel-thermal.txt │   │   │   │   ├── 20160407sonobuoy.txt │   │   │   │   ├── 20160407spin-glass.txt │   │   │   │   ├── 20160407tamdead.txt │   │   │   │   ├── 20160407uavs.txt │   │   │   │   ├── 20160408apobecevo.txt │   │   │   │   ├── 20160408arizone.txt │   │   │   │   ├── 20160408ar.txt │   │   │   │   ├── 20160408dna-pictures.txt │   │   │   │   ├── 20160408extinct.txt │   │   │   │   ├── 20160408falcon-nine-is-online.txt │   │   │   │   ├── 20160408icecrystalHD100546.txt │   │   │   │   ├── 20160408lift-bit.txt │   │   │   │   ├── 20160408m777.txt │   │   │   │   ├── 20160408micra-in-da-heart.txt │   │   │   │   ├── 20160408mig31.txt │   │   │   │   ├── 20160408mml.txt │   │   │   │   ├── 20160408money-can-buy-happiness.txt │   │   │   │   ├── 20160408phorbol.txt │   │   │   │   ├── 20160408picky.txt │   │   │   │   ├── 20160408ribose-comet.txt │   │   │   │   ├── 20160408spacex-dragon-flight.txt │   │   │   │   ├── 20160408switch-off.txt │   │   │   │   ├── 20160408system.txt │   │   │   │   ├── 20160408volocopter.txt │   │   │   │   ├── 20160409autonomous-tractor.txt │   │   │   │   ├── 20160409bipedal.txt │   │   │   │   ├── 20160409cocooner.txt │   │   │   │   ├── 20160409cracks-on-pluto.txt │   │   │   │   ├── 20160409falcon-reuse.txt │   │   │   │   ├── 20160409good-landing-good-resolution.txt │   │   │   │   ├── 20160409why-on-earth-anyone-need-that.txt │   │   │   │   ├── 20160411alco-coca.txt │   │   │   │   ├── 20160411carter.txt │   │   │   │   ├── 20160411crisprfail.txt │   │   │   │   ├── 20160411destroyer.txt │   │   │   │   ├── 20160411EMIEW3.txt │   │   │   │   ├── 20160411finally-true-hoverboard.txt │   │   │   │   ├── 20160411Glass-Kilns.txt │   │   │   │   ├── 20160411kepler-is-back.txt │   │   │   │   ├── 20160411Kremlin-excavations.txt │   │   │   │   ├── 20160411lhc-first-collision.txt │   │   │   │   ├── 20160411nanoelectrode.txt │   │   │   │   ├── 20160411nightonomy.txt │   │   │   │   ├── 20160411propulsion.txt │   │   │   │   ├── 20160411xs1.txt │   │   │   │   ├── 20160411zika-adem.txt │   │   │   │   ├── 20160412alignment-of-jets.txt │   │   │   │   ├── 20160412android-voice.txt │   │   │   │   ├── 20160412attack.txt │   │   │   │   ├── 20160412be-rich-live-long.txt │   │   │   │   ├── 20160412drone-dome.txt │   │   │   │   ├── 20160412e-sail.txt │   │   │   │   ├── 20160412evo-hg.txt │   │   │   │   ├── 20160412hawking-secret.txt │   │   │   │   ├── 20160412hot-superearths.txt │   │   │   │   ├── 20160412hyper.txt │   │   │   │   ├── 20160412lol.txt │   │   │   │   ├── 20160412lsdbrain.txt │   │   │   │   ├── 20160412lytro-cinema.txt │   │   │   │   ├── 20160412museum.txt │   │   │   │   ├── 20160412neuroticism.txt │   │   │   │   ├── 20160412quarks-radii.txt │   │   │   │   ├── 20160412revl-arc.txt │   │   │   │   ├── 20160412textalyzer.txt │   │   │   │   ├── 20160412yandex-gagarin.txt │   │   │   │   ├── 20160413Arad-sherds.txt │   │   │   │   ├── 20160413astrophysical-neutrino.txt │   │   │   │   ├── 20160413bsod.txt │   │   │   │   ├── 20160413drone-racing.txt │   │   │   │   ├── 20160413fb-camera.txt │   │   │   │   ├── 20160413flappy-smoke.txt │   │   │   │   ├── 20160413galaxies-in-fornax.txt │   │   │   │   ├── 20160413google-goals-app.txt │   │   │   │   ├── 20160413greenhouse.txt │   │   │   │   ├── 20160413high-velocity-stars.txt │   │   │   │   ├── 20160413math-gender-differences.txt │   │   │   │   ├── 20160413monogood.txt │   │   │   │   ├── 20160413muromets.txt │   │   │   │   ├── 20160413New-Novgorod-artefacts.txt │   │   │   │   ├── 20160413protect.txt │   │   │   │   ├── 20160413sonicboom.txt │   │   │   │   ├── 20160413so-sorry.txt │   │   │   │   ├── 20160413tree-of-life.txt │   │   │   │   ├── 20160413venus-shots.txt │   │   │   │   ├── 20160413xs1.txt │   │   │   │   ├── 20160414apollo-15-zeiss-tele-tessar.txt │   │   │   │   ├── 20160414dogstagram.txt │   │   │   │   ├── 20160414exomars-image.txt │   │   │   │   ├── 20160414flexible-matrix.txt │   │   │   │   ├── 20160414minimaxibacter.txt │   │   │   │   ├── 20160414missile.txt │   │   │   │   ├── 20160414namer.txt │   │   │   │   ├── 20160414neural-bypass.txt │   │   │   │   ├── 20160414nova-first-papers.txt │   │   │   │   ├── 20160414Pyrophilic-hominins.txt │   │   │   │   ├── 20160414quantum-moves.txt │   │   │   │   ├── 20160414register.txt │   │   │   │   ├── 20160414self-made-arcade-machines.txt │   │   │   │   ├── 20160414separation.txt │   │   │   │   ├── 20160414snow-words.txt │   │   │   │   ├── 20160414Time-taveller-mummy.txt │   │   │   │   ├── 20160414Tully-monster-vertebrate.txt │   │   │   │   ├── 20160414uavs.txt │   │   │   │   ├── 20160414vr.txt │   │   │   │   ├── 20160414weird-talking-robot.txt │   │   │   │   ├── 20160415armata.txt │   │   │   │   ├── 20160415armor.txt │   │   │   │   ├── 20160415camera.txt │   │   │   │   ├── 20160415carusel.txt │   │   │   │   ├── 20160415cassiny-dust-grains.txt │   │   │   │   ├── 20160415holmium-atom-magnet.txt │   │   │   │   ├── 20160415long-url-short.txt │   │   │   │   ├── 20160415magic-pony.txt │   │   │   │   ├── 20160415math-mistakes.txt │   │   │   │   ├── 20160415mattress.txt │   │   │   │   ├── 20160415Neanderthals-toothpicks.txt │   │   │   │   ├── 20160415pig-latin-consciousness.txt │   │   │   │   ├── 20160415Stuttering.txt │   │   │   │   ├── 20160415wheelchair.txt │   │   │   │   ├── 20160416beam-docking.txt │   │   │   │   ├── 20160416comparision.txt │   │   │   │   ├── 20160416hidden-dark-galaxy.txt │   │   │   │   ├── 20160416pluto-gravity-waves.txt │   │   │   │   ├── 20160416tsar-bell.txt │   │   │   │   ├── 20160418aussie-drone-post.txt │   │   │   │   ├── 20160418carbon-nanotubes.txt │   │   │   │   ├── 20160418drone.txt │   │   │   │   ├── 20160418eLISA-early-start.txt │   │   │   │   ├── 20160418gloves.txt │   │   │   │   ├── 20160418hitomi-fail.txt │   │   │   │   ├── 20160418hybrid.txt │   │   │   │   ├── 20160418Lost-and-found-patent.txt │   │   │   │   ├── 20160418matrice-600.txt │   │   │   │   ├── 20160418peru-zika.txt │   │   │   │   ├── 20160418porco-dronso.txt │   │   │   │   ├── 20160418real-time-titanic.txt │   │   │   │   ├── 20160418Rhinopithecus-gives-birth.txt │   │   │   │   ├── 20160418risky-romance.txt │   │   │   │   ├── 20160418sensor.txt │   │   │   │   ├── 20160418uav.txt │   │   │   │   ├── 20160419ai2.txt │   │   │   │   ├── 20160419avenger.txt │   │   │   │   ├── 20160419Birth-rate-vs-lifespan.txt │   │   │   │   ├── 20160419cerebre.txt │   │   │   │   ├── 20160419chandra-x-ray.txt │   │   │   │   ├── 20160419decline.txt │   │   │   │   ├── 20160419embryorbit.txt │   │   │   │   ├── 20160419exoplanet.txt │   │   │   │   ├── 20160419firstflight.txt │   │   │   │   ├── 20160419hawc.txt │   │   │   │   ├── 20160419jellyfish.txt │   │   │   │   ├── 20160419kn06.txt │   │   │   │   ├── 20160419milk-scanner.txt │   │   │   │   ├── 20160419more-than-34.txt │   │   │   │   ├── 20160419MraY.txt │   │   │   │   ├── 20160419rbk500.txt │   │   │   │   ├── 20160419Roman-villa-in-my-yard.txt │   │   │   │   ├── 20160419root.txt │   │   │   │   ├── 20160419testing.txt │   │   │   │   ├── 20160419youtube-360-live.txt │   │   │   │   ├── 20160419zirkon.txt │   │   │   │   ├── 20160420cheetah.txt │   │   │   │   ├── 20160420chrome-vr.txt │   │   │   │   ├── 20160420cwd-in-europe.txt │   │   │   │   ├── 20160420drink-anyway.txt │   │   │   │   ├── 20160420fossil-heart.txt │   │   │   │   ├── 20160420galactic-outer-ring.txt │   │   │   │   ├── 20160420gender-in-math.txt │   │   │   │   ├── 20160420gill-limbs.txt │   │   │   │   ├── 20160420hawking-D-mark.txt │   │   │   │   ├── 20160420Leggett-Garg-inequality.txt │   │   │   │   ├── 20160420lesee.txt │   │   │   │   ├── 20160420lightning.txt │   │   │   │   ├── 20160420lm100j.txt │   │   │   │   ├── 20160420lwir.txt │   │   │   │   ├── 20160420nasa-satellite-flares.txt │   │   │   │   ├── 20160420swimming-snake.txt │   │   │   │   ├── 20160420two-volcanoes-trigger-crises.txt │   │   │   │   ├── 20160421aarduino.txt │   │   │   │   ├── 20160421AviRTE-fossil.txt │   │   │   │   ├── 20160421Blind-size-up-by-hearing.txt │   │   │   │   ├── 20160421cgtoat.txt │   │   │   │   ├── 20160421cosmic-liver.txt │   │   │   │   ├── 20160421diagnostics.txt │   │   │   │   ├── 20160421doctor-who.txt │   │   │   │   ├── 20160421duckietown.txt │   │   │   │   ├── 20160421duck-legs.txt │   │   │   │   ├── 20160421engines.txt │   │   │   │   ├── 20160421loneliness.txt │   │   │   │   ├── 20160421long-vacation.txt │   │   │   │   ├── 20160421microwires.txt │   │   │   │   ├── 20160421mosquito-killers.txt │   │   │   │   ├── 20160421mother-perception.txt │   │   │   │   ├── 20160421nanowire.txt │   │   │   │   ├── 20160421oh-these-scientists.txt │   │   │   │   ├── 20160421planet-X.txt │   │   │   │   ├── 20160421plutonium.txt │   │   │   │   ├── 20160421seven-new-giant-exoplanets.txt │   │   │   │   ├── 20160421si2-good-to-go.txt │   │   │   │   ├── 20160421Stone-age-billboards.txt │   │   │   │   ├── 20160421tamir.txt │   │   │   │   ├── 20160421vpn-opera.txt │   │   │   │   ├── 20160422abrams.txt │   │   │   │   ├── 20160422antbo.txt │   │   │   │   ├── 20160422bell-correlations.txt │   │   │   │   ├── 20160422BURST-computer-code.txt │   │   │   │   ├── 20160422ch53k.txt │   │   │   │   ├── 20160422crawl-and-print.txt │   │   │   │   ├── 20160422doom-death-match.txt │   │   │   │   ├── 20160422esa-hershel.txt │   │   │   │   ├── 20160422foliage.txt │   │   │   │   ├── 20160422hubble.txt │   │   │   │   ├── 20160422ipsc-ros.txt │   │   │   │   ├── 20160422Iron-age-cheese.txt │   │   │   │   ├── 20160422linux-musk.txt │   │   │   │   ├── 20160422night-watch.txt │   │   │   │   ├── 20160422power-of-positive-thinking.txt │   │   │   │   ├── 20160422same-stuff.txt │   │   │   │   ├── 20160422skull-vibrations.txt │   │   │   │   ├── 20160422subs.txt │   │   │   │   ├── 20160422they-see-me-rollin.txt │   │   │   │   ├── 20160422x2.txt │   │   │   │   ├── 20160423battery.txt │   │   │   │   ├── 20160423big-big-data.txt │   │   │   │   ├── 20160423blasts.txt │   │   │   │   ├── 20160423fighter.txt │   │   │   │   ├── 20160423fly.txt │   │   │   │   ├── 20160423leap.txt │   │   │   │   ├── 20160423progs.txt │   │   │   │   ├── 20160423rifle.txt │   │   │   │   ├── 20160423robots.txt │   │   │   │   ├── 20160423shinshin.txt │   │   │   │   ├── 20160423testing.txt │   │   │   │   ├── 20160423uav.txt │   │   │   │   ├── 20160423winglets.txt │   │   │   │   ├── 20160424hello-again.txt │   │   │   │   ├── 201604251000-years-later.txt │   │   │   │   ├── 20160425Be-cheerful-enjoy-life.txt │   │   │   │   ├── 20160425echidna-torpor.txt │   │   │   │   ├── 20160425go-find-em-boy.txt │   │   │   │   ├── 20160425ibm.txt │   │   │   │   ├── 20160425icebacteria.txt │   │   │   │   ├── 20160425manufacture.txt │   │   │   │   ├── 20160425mating.txt │   │   │   │   ├── 20160425robot-monk.txt │   │   │   │   ├── 20160425tesla.txt │   │   │   │   ├── 20160425tunnelberyl.txt │   │   │   │   ├── 20160425Unique-Tombs.txt │   │   │   │   ├── 20160425ziro.txt │   │   │   │   ├── 20160426close.txt │   │   │   │   ├── 20160426cs-smartwatch.txt │   │   │   │   ├── 20160426cyberweap.txt │   │   │   │   ├── 20160426dcns.txt │   │   │   │   ├── 20160426design.txt │   │   │   │   ├── 20160426drones.txt │   │   │   │   ├── 20160426flight.txt │   │   │   │   ├── 20160426hideit.txt │   │   │   │   ├── 20160426iff.txt │   │   │   │   ├── 20160426male-burst.txt │   │   │   │   ├── 20160426martian-surface.txt │   │   │   │   ├── 20160426multicellular.txt │   │   │   │   ├── 20160426observing-makes-people-contribute.txt │   │   │   │   ├── 20160426osprey.txt │   │   │   │   ├── 20160426peptibodies.txt │   │   │   │   ├── 20160426plantprions.txt │   │   │   │   ├── 20160426qwerty-effect.txt │   │   │   │   ├── 20160426robots.txt │   │   │   │   ├── 20160426sentinel-1b.txt │   │   │   │   ├── 20160426vr-lan-party.txt │   │   │   │   ├── 20160426x2.txt │   │   │   │   ├── 20160427binge-mouse.txt │   │   │   │   ├── 20160427dawn-jab.txt │   │   │   │   ├── 20160427double.txt │   │   │   │   ├── 20160427hormoneskin.txt │   │   │   │   ├── 20160427hover.txt │   │   │   │   ├── 20160427Iron-law-of-oligarchy.txt │   │   │   │   ├── 20160427kc46.txt │   │   │   │   ├── 20160427makemake.txt │   │   │   │   ├── 20160427oilspills.txt │   │   │   │   ├── 20160427postpone.txt │   │   │   │   ├── 20160427prendiamouncaffe.txt │   │   │   │   ├── 20160427protected.txt │   │   │   │   ├── 20160427red-planet.txt │   │   │   │   ├── 20160427rifle.txt │   │   │   │   ├── 20160427rover-tiles.txt │   │   │   │   ├── 20160427runway.txt │   │   │   │   ├── 20160427smart-raven.txt │   │   │   │   ├── 20160427twisted-firestarter.txt │   │   │   │   ├── 20160427vr-backpack.txt │   │   │   │   ├── 20160428collision.txt │   │   │   │   ├── 20160428Deep-male-voice.txt │   │   │   │   ├── 20160428germ-like.txt │   │   │   │   ├── 20160428kombucha-tea.txt │   │   │   │   ├── 20160428msu-scholars-found-manuscript.txt │   │   │   │   ├── 20160428night.txt │   │   │   │   ├── 20160428no-drone.txt │   │   │   │   ├── 20160428no-pain-no-gain.txt │   │   │   │   ├── 20160428oceanone.txt │   │   │   │   ├── 20160428photos-colorized-by-AI.txt │   │   │   │   ├── 20160428railgun.txt │   │   │   │   ├── 20160428shiv-bnab.txt │   │   │   │   ├── 20160428V1331-Cygni.txt │   │   │   │   ├── 20160428vostochny.txt │   │   │   │   ├── 20160428wordsmapped.txt │   │   │   │   ├── 20160428work-live.txt │   │   │   │   ├── 20160428x2.txt │   │   │   │   ├── 201604293d-foam.txt │   │   │   │   ├── 20160429dreamylizard.txt │   │   │   │   ├── 20160429fathom.txt │   │   │   │   ├── 20160429ford.txt │   │   │   │   ├── 20160429glide.txt │   │   │   │   ├── 20160429gut-69.txt │   │   │   │   ├── 20160429heptic.txt │   │   │   │   ├── 20160429hoverbike.txt │   │   │   │   ├── 20160429how-old-are-you.txt │   │   │   │   ├── 20160429hunter.txt │   │   │   │   ├── 20160429ka62-2.txt │   │   │   │   ├── 20160429ka62.txt │   │   │   │   ├── 20160429mine.txt │   │   │   │   ├── 20160429no-choice.txt │   │   │   │   ├── 20160429retweeting-memory.txt │   │   │   │   ├── 20160429risky-drivers.txt │   │   │   │   ├── 20160429Sentinel-1B-delivers-pics.txt │   │   │   │   ├── 20160429the-truth-is-out-there.txt │   │   │   │   ├── 20160429vzdumal-ko-mne-lezt.txt │   │   │   │   ├── 20160429Weasel-halts-LHC-experiments.txt │   │   │   │   ├── 20160430blackroom-delay.txt │   │   │   │   ├── 20160430inject-lens.txt │   │   │   │   ├── 20160430manx-object.txt │   │   │   │   ├── 20160430Roman-coins-in-Spain.txt │   │   │   │   ├── 20160430thz-lens.txt │   │   │   │   ├── 20160430webb-gold.txt │   │   │   │   ├── 20160502hoverboard-world-record.txt │   │   │   │   ├── 20160502mummy-with-baby.txt │   │   │   │   ├── 20160502pluto-sunken-heart.txt │   │   │   │   ├── 20160502si2-go-you-boy.txt │   │   │   │   ├── 20160502space-debris.txt │   │   │   │   ├── 20160502space-x-price.txt │   │   │   │   ├── 20160503monospinner.txt │   │   │   │   ├── 20160503si2-on-schedule.txt │   │   │   │   ├── 20160503three-planets.txt │   │   │   │   ├── 20160503win-95.txt │   │   │   │   ├── 20160504Air-rage-in-econom-class.txt │   │   │   │   ├── 20160504carpageddon.txt │   │   │   │   ├── 20160504childish-gossip.txt │   │   │   │   ├── 20160504flu-jab.txt │   │   │   │   ├── 20160504Genetic-history-of-Europe.txt │   │   │   │   ├── 20160504GeoOrbital.txt │   │   │   │   ├── 20160504gravity.txt │   │   │   │   ├── 20160504herbal-hazard.txt │   │   │   │   ├── 20160504medical-errors.txt │   │   │   │   ├── 20160504quantum-cloud.txt │   │   │   │   ├── 20160504self-driving-minivan.txt │   │   │   │   ├── 20160504sony-ar-lens.txt │   │   │   │   ├── 20160504Za-chto-aborigeny-seli-Kuka.txt │   │   │   │   ├── 2016050513-days.txt │   │   │   │   ├── 201605053d-bone.txt │   │   │   │   ├── 20160505ampa-not-nmda.txt │   │   │   │   ├── 20160505drone-shield.txt │   │   │   │   ├── 20160505floop-the-pig.txt │   │   │   │   ├── 20160505holoflex.txt │   │   │   │   ├── 20160505Human-paradox.txt │   │   │   │   ├── 20160505neoneo.txt │   │   │   │   ├── 20160505no-fear.txt │   │   │   │   ├── 20160505partially-passenger.txt │   │   │   │   ├── 20160505pre-touch.txt │   │   │   │   ├── 20160505sinful.txt │   │   │   │   ├── 20160505Turtle-soup.txt │   │   │   │   ├── 20160506biogases.txt │   │   │   │   ├── 20160506em-id.txt │   │   │   │   ├── 20160506mSMS.txt │   │   │   │   ├── 20160506no-cancer.txt │   │   │   │   ├── 20160506osome-memes.txt │   │   │   │   ├── 20160506regular-day-in-sweden.txt │   │   │   │   ├── 20160506second-time.txt │   │   │   │   ├── 20160506tatoo.txt │   │   │   │   ├── 20160506there-is-no-possessions.txt │   │   │   │   ├── 20160506too-late.txt │   │   │   │   ├── 20160506touchskin.txt │   │   │   │   ├── 20160507atopodentatus.txt │   │   │   │   ├── 20160507esa-lilium.txt │   │   │   │   ├── 20160507nasa-for-free.txt │   │   │   │   ├── 20160507PAD.txt │   │   │   │   ├── 20160509dim3.txt │   │   │   │   ├── 20160510batflight.txt │   │   │   │   ├── 20160510check.txt │   │   │   │   ├── 20160510connected-nes.txt │   │   │   │   ├── 20160510Digital-media.txt │   │   │   │   ├── 20160510Dromedary-domesticated.txt │   │   │   │   ├── 20160510kepler-press.txt │   │   │   │   ├── 20160510module.txt │   │   │   │   ├── 20160510moon-landing-pad-trial.txt │   │   │   │   ├── 20160510nash-shab.txt │   │   │   │   ├── 20160510new-class.txt │   │   │   │   ├── 20160510nn-video.txt │   │   │   │   ├── 20160510Oldest-paddy-field.txt │   │   │   │   ├── 20160510parazero.txt │   │   │   │   ├── 20160510pistol.txt │   │   │   │   ├── 20160510poisson.txt │   │   │   │   ├── 20160510radar.txt │   │   │   │   ├── 20160510second-landing.txt │   │   │   │   ├── 20160510sterile-neutrino-search.txt │   │   │   │   ├── 20160510swaddling-sids.txt │   │   │   │   ├── 20160510uavs.txt │   │   │   │   ├── 20160510xpl.txt │   │   │   │   ├── 20160510yellowpages.txt │   │   │   │   ├── 20160511acoustic.txt │   │   │   │   ├── 20160511airforceone.txt │   │   │   │   ├── 20160511display-on-your-display.txt │   │   │   │   ├── 20160511dont-care.txt │   │   │   │   ├── 20160511first-test.txt │   │   │   │   ├── 20160511flying.txt │   │   │   │   ├── 20160511gamma-plastic.txt │   │   │   │   ├── 20160511league.txt │   │   │   │   ├── 20160511moon-no-effect.txt │   │   │   │   ├── 20160511nozika.txt │   │   │   │   ├── 20160511opensat.txt │   │   │   │   ├── 20160511ppi.txt │   │   │   │   ├── 20160511subaru-fastsound.txt │   │   │   │   ├── 20160511trainer.txt │   │   │   │   ├── 20160511unsafe.txt │   │   │   │   ├── 20160511uranus.txt │   │   │   │   ├── 20160511whatsapp-desktop.txt │   │   │   │   ├── 201605122007OR10.txt │   │   │   │   ├── 20160512advanced.txt │   │   │   │   ├── 20160512cannabis-maya.txt │   │   │   │   ├── 20160512doublet.txt │   │   │   │   ├── 20160512eleven.txt │   │   │   │   ├── 20160512em-sled.txt │   │   │   │   ├── 20160512genderbot.txt │   │   │   │   ├── 20160512haptic-and-visual.txt │   │   │   │   ├── 20160512hearts.txt │   │   │   │   ├── 20160512kepler-223.txt │   │   │   │   ├── 20160512long-live-the-prog.txt │   │   │   │   ├── 20160512sarmat.txt │   │   │   │   ├── 20160512scientists-music-classification.txt │   │   │   │   ├── 20160512shipborne.txt │   │   │   │   ├── 20160512silicate-dust.txt │   │   │   │   ├── 20160512urban-children.txt │   │   │   │   ├── 20160512Welcome-Cynarctus-wangi.txt │   │   │   │   ├── 20160512Youngest-mummified-foetus.txt │   │   │   │   ├── 20160513AI-poetry.txt │   │   │   │   ├── 20160513botox-why.txt │   │   │   │   ├── 20160513ceramics.txt │   │   │   │   ├── 20160513cinema-in-air.txt │   │   │   │   ├── 20160513disney-robot.txt │   │   │   │   ├── 20160513earth-formative-years.txt │   │   │   │   ├── 20160513esorvd.txt │   │   │   │   ├── 20160513exosuit-updated.txt │   │   │   │   ├── 20160513f35tailhook.txt │   │   │   │   ├── 20160513homobeetle.txt │   │   │   │   ├── 20160513hubble-captured-comet.txt │   │   │   │   ├── 20160513Hyundai-wearable-robot.txt │   │   │   │   ├── 20160513ingestible-origami-robot.txt │   │   │   │   ├── 20160513manetic-field.txt │   │   │   │   ├── 20160513nomytochon.txt │   │   │   │   ├── 20160513orion.txt │   │   │   │   ├── 20160513si2-11-landing.txt │   │   │   │   ├── 20160513sn-1572.txt │   │   │   │   ├── 20160513uavs.txt │   │   │   │   ├── 20160513vvv.txt │   │   │   │   ├── 20160514purine.txt │   │   │   │   ├── 20160514shark-fast.txt │   │   │   │   ├── 20160514underwater-site.txt │   │   │   │   ├── 20160516adsb.txt │   │   │   │   ├── 20160516compass.txt │   │   │   │   ├── 20160516dandruff.txt │   │   │   │   ├── 20160516doc.txt │   │   │   │   ├── 20160516drone-on-the-ceiling.txt │   │   │   │   ├── 20160516drones.txt │   │   │   │   ├── 20160516era-of-flash-ended.txt │   │   │   │   ├── 20160516gender-inequality-math.txt │   │   │   │   ├── 20160516GOE-date.txt │   │   │   │   ├── 20160516japan-embryo.txt │   │   │   │   ├── 20160516landing.txt │   │   │   │   ├── 20160516laser.txt │   │   │   │   ├── 20160516Midnight-poem-date.txt │   │   │   │   ├── 20160516nasa-galaxy-snowflake.txt │   │   │   │   ├── 20160516no-gluten-free.txt │   │   │   │   ├── 20160516smart-laser-watch.txt │   │   │   │   ├── 20160516tesla-field-crystal.txt │   │   │   │   ├── 20160516transparent-wood.txt │   │   │   │   ├── 20160516twodays.txt │   │   │   │   ├── 20160517autopiloting.txt │   │   │   │   ├── 20160517bike-mine.txt │   │   │   │   ├── 20160517Caesaria-shipwreck.txt │   │   │   │   ├── 20160517Cooperative-shalk-bass.txt │   │   │   │   ├── 20160517drones.txt │   │   │   │   ├── 20160517g4.txt │   │   │   │   ├── 20160517geladaspeech.txt │   │   │   │   ├── 20160517hywind-scotland.txt │   │   │   │   ├── 20160517individobacter.txt │   │   │   │   ├── 20160517kamikaze.txt │   │   │   │   ├── 20160517kurilka.txt │   │   │   │   ├── 20160517looking-glass-protein.txt │   │   │   │   ├── 20160517magnetic-fields-interplay.txt │   │   │   │   ├── 20160517otto.txt │   │   │   │   ├── 20160517recommend.txt │   │   │   │   ├── 20160517smarter.txt │   │   │   │   ├── 20160517spiderweb.txt │   │   │   │   ├── 20160517spring.txt │   │   │   │   ├── 20160517sprn.txt │   │   │   │   ├── 20160517tb-29v.txt │   │   │   │   ├── 20160517unethical-amnesia.txt │   │   │   │   ├── 20160517unexpected.txt │   │   │   │   ├── 20160517visionary.txt │   │   │   │   ├── 20160517voice-social.txt │   │   │   │   ├── 20160517Water-distribution-in-Naples.txt │   │   │   │   ├── 20160518ai-nobel-prize-experiments.txt │   │   │   │   ├── 20160518be-happy.txt │   │   │   │   ├── 20160518china-multicellular.txt │   │   │   │   ├── 20160518Cubimorph.txt │   │   │   │   ├── 20160518cyber.txt │   │   │   │   ├── 20160518europa-ocean.txt │   │   │   │   ├── 20160518giraffeneck.txt │   │   │   │   ├── 20160518google-cam-digital-art.txt │   │   │   │   ├── 20160518gravity-measure.txt │   │   │   │   ├── 20160518hypoxia.txt │   │   │   │   ├── 20160518levitation-gloves.txt │   │   │   │   ├── 20160518no-harm.txt │   │   │   │   ├── 20160518proximity.txt │   │   │   │   ├── 20160518sea-trials.txt │   │   │   │   ├── 20160518Starry-night-in-3D.txt │   │   │   │   ├── 20160518Tomb-in-Sivilri.txt │   │   │   │   ├── 20160518transelbow.txt │   │   │   │   ├── 20160518vehicle.txt │   │   │   │   ├── 20160518wasp.txt │   │   │   │   ├── 20160518zika-alert.txt │   │   │   │   ├── 20160519ak400.txt │   │   │   │   ├── 20160519bombs.txt │   │   │   │   ├── 20160519comet-orbiting.txt │   │   │   │   ├── 20160519crawfish-whistles.txt │   │   │   │   ├── 20160519darwinolide.txt │   │   │   │   ├── 20160519dome.txt │   │   │   │   ├── 20160519duck.txt │   │   │   │   ├── 20160519gallium.txt │   │   │   │   ├── 20160519gripene.txt │   │   │   │   ├── 20160519hack-hack-hack.txt │   │   │   │   ├── 20160519in-cars.txt │   │   │   │   ├── 20160519io-216.txt │   │   │   │   ├── 20160519Machairoceratops-found.txt │   │   │   │   ├── 20160519martian-tsunami-waves.txt │   │   │   │   ├── 20160519missile.txt │   │   │   │   ├── 20160519narco-waste.txt │   │   │   │   ├── 20160519no-giants-allowed.txt │   │   │   │   ├── 20160519nose-shape.txt │   │   │   │   ├── 20160519pedestrians.txt │   │   │   │   ├── 20160519ruins-metro-rome.txt │   │   │   │   ├── 20160519schemes.txt │   │   │   │   ├── 20160519six-state-memory.txt │   │   │   │   ├── 20160519stellar-cannibalism.txt │   │   │   │   ├── 20160519suavecicle.txt │   │   │   │   ├── 20160519upper-limit-of-friends.txt │   │   │   │   ├── 20160519win.txt │   │   │   │   ├── 20160520android-system-for-robot.txt │   │   │   │   ├── 20160520app-solves-math-equations.txt │   │   │   │   ├── 20160520bright-light.txt │   │   │   │   ├── 20160520Contagious-dog-cancer.txt │   │   │   │   ├── 20160520del12-asgr1.txt │   │   │   │   ├── 20160520driveless-bolt.txt │   │   │   │   ├── 20160520driveless-uber.txt │   │   │   │   ├── 20160520engine.txt │   │   │   │   ├── 20160520fuel.txt │   │   │   │   ├── 20160520gmsalmon.txt │   │   │   │   ├── 20160520go-green.txt │   │   │   │   ├── 20160520lasers.txt │   │   │   │   ├── 20160520neutrino-mix.txt │   │   │   │   ├── 20160520r-and-r.txt │   │   │   │   ├── 20160520robobee-perching.txt │   │   │   │   ├── 20160520sentinel-aircraft.txt │   │   │   │   ├── 20160520sidestick.txt │   │   │   │   ├── 20160520Staphylococcus-aureus.txt │   │   │   │   ├── 20160520the-faintest-galaxy.txt │   │   │   │   ├── 20160521Back-home.txt │   │   │   │   ├── 20160521jacquard.txt │   │   │   │   ├── 20160521light-rider.txt │   │   │   │   ├── 20160521project-ara.txt │   │   │   │   ├── 20160521put-it-back.txt │   │   │   │   ├── 20160521si2-leg13.txt │   │   │   │   ├── 201605233DVarius-Paulina.txt │   │   │   │   ├── 20160523aad.txt │   │   │   │   ├── 20160523akatsuki-night-venus.txt │   │   │   │   ├── 20160523baby-cry-cognitive.txt │   │   │   │   ├── 20160523c2c2.txt │   │   │   │   ├── 20160523certificate.txt │   │   │   │   ├── 20160523colloid-crystal.txt │   │   │   │   ├── 20160523destroyer.txt │   │   │   │   ├── 20160523f35coating.txt │   │   │   │   ├── 20160523hifire.txt │   │   │   │   ├── 20160523magenta.txt │   │   │   │   ├── 20160523mppi.txt │   │   │   │   ├── 20160523Oxyrhynchus-magic-papyri.txt │   │   │   │   ├── 20160523poplarbacter.txt │   │   │   │   ├── 20160523PO-starforming.txt │   │   │   │   ├── 20160523rifle.txt │   │   │   │   ├── 20160523scientists-created-farmer-robot.txt │   │   │   │   ├── 20160523Tap-strap-controller.txt │   │   │   │   ├── 20160523t-rex-teeth.txt │   │   │   │   ├── 20160523vlf.txt │   │   │   │   ├── 20160523vtol.txt │   │   │   │   ├── 20160523women-gamers.txt │   │   │   │   ├── 20160524Ancient-beer-recipe.txt │   │   │   │   ├── 20160524cillia.txt │   │   │   │   ├── 20160524faint-sun-paradox.txt │   │   │   │   ├── 20160524ice.txt │   │   │   │   ├── 20160524infant-immaturity-intelligence.txt │   │   │   │   ├── 20160524ivyglue.txt │   │   │   │   ├── 20160524Le-myope.txt │   │   │   │   ├── 20160524madbritishman.txt │   │   │   │   ├── 20160524marvel-will-sue-you.txt │   │   │   │   ├── 20160524missile.txt │   │   │   │   ├── 20160524noretro.txt │   │   │   │   ├── 20160524Not-so-hard.txt │   │   │   │   ├── 20160524pebble-heart-rate.txt │   │   │   │   ├── 20160524Pot-sherds-after-Black-Death.txt │   │   │   │   ├── 20160524sticks-and-stones.txt │   │   │   │   ├── 20160524teb.txt │   │   │   │   ├── 20160524terahertz.txt │   │   │   │   ├── 20160524two-new-craters.txt │   │   │   │   ├── 20160524uav.txt │   │   │   │   ├── 20160525acoumucus.txt │   │   │   │   ├── 20160525apas.txt │   │   │   │   ├── 20160525deck.txt │   │   │   │   ├── 20160525fgf1.txt │   │   │   │   ├── 20160525First-is-on-the-way.txt │   │   │   │   ├── 20160525hifire.txt │   │   │   │   ├── 20160525internet-lost-capital-letter.txt │   │   │   │   ├── 20160525luminous-infrared-arp220.txt │   │   │   │   ├── 20160525mi-drone.txt │   │   │   │   ├── 20160525migraine-generator.txt │   │   │   │   ├── 20160525mil-spec-oil.txt │   │   │   │   ├── 20160525pain-robots.txt │   │   │   │   ├── 20160525poverty-methylation.txt │   │   │   │   ├── 20160525samsung-scroll.txt │   │   │   │   ├── 20160525stem-hand.txt │   │   │   │   ├── 20160525taranis.txt │   │   │   │   ├── 20160525vr-jacket.txt │   │   │   │   ├── 20160525wasps.txt │   │   │   │   ├── 20160526amyloid-mistake.txt │   │   │   │   ├── 20160526Aristotle-tomb.txt │   │   │   │   ├── 20160526beam.txt │   │   │   │   ├── 20160526black-holes-make-graveyards.txt │   │   │   │   ├── 20160526bob-amazed.txt │   │   │   │   ├── 20160526Corded-ware-culture-women.txt │   │   │   │   ├── 20160526crystallisation.txt │   │   │   │   ├── 20160526dates.txt │   │   │   │   ├── 20160526fifth-force.txt │   │   │   │   ├── 20160526fighters.txt │   │   │   │   ├── 20160526floppy.txt │   │   │   │   ├── 20160526flysperm.txt │   │   │   │   ├── 20160526high-altitude-archaeology.txt │   │   │   │   ├── 20160526lasers.txt │   │   │   │   ├── 20160526mmrrws.txt │   │   │   │   ├── 20160526neander.txt │   │   │   │   ├── 20160526osmo.txt │   │   │   │   ├── 20160526rapberry-droid.txt │   │   │   │   ├── 20160526robots.txt │   │   │   │   ├── 20160526system.txt │   │   │   │   ├── 20160526try-again-later.txt │   │   │   │   ├── 20160527aerion.txt │   │   │   │   ├── 20160527cern-radio.txt │   │   │   │   ├── 20160527customized-tablets.txt │   │   │   │   ├── 20160527engines.txt │   │   │   │   ├── 20160527ForcePower.txt │   │   │   │   ├── 20160527hack-troika-so-good.txt │   │   │   │   ├── 20160527interstate69.txt │   │   │   │   ├── 20160527latechildpsycho.txt │   │   │   │   ├── 20160527mars-ice-age-evidence.txt │   │   │   │   ├── 20160527math.txt │   │   │   │   ├── 20160527perseid-meteors.txt │   │   │   │   ├── 20160527photoshop.txt │   │   │   │   ├── 20160527probuphine.txt │   │   │   │   ├── 20160527psychological-manipulations.txt │   │   │   │   ├── 20160527shame-on-you.txt │   │   │   │   ├── 20160527silver-boa.txt │   │   │   │   ├── 20160527space-pills.txt │   │   │   │   ├── 20160527Subsea-cable.txt │   │   │   │   ├── 20160527sure-why-not.txt │   │   │   │   ├── 20160527syers.txt │   │   │   │   ├── 20160527there-is-no-possession.txt │   │   │   │   ├── 20160527welcome-back.txt │   │   │   │   ├── 20160528beam.txt │   │   │   │   ├── 20160528bicycle.txt │   │   │   │   ├── 20160528dancing.txt │   │   │   │   ├── 20160528falcon.txt │   │   │   │   ├── 20160528flows.txt │   │   │   │   ├── 20160528irondome.txt │   │   │   │   ├── 20160528messages.txt │   │   │   │   ├── 20160528mv22.txt │   │   │   │   ├── 20160528night.txt │   │   │   │   ├── 20160528railway.txt │   │   │   │   ├── 20160528real.txt │   │   │   │   ├── 20160530baykal.txt │   │   │   │   ├── 20160530city-scanner.txt │   │   │   │   ├── 20160530doublecatSh.txt │   │   │   │   ├── 20160530glycine.txt │   │   │   │   ├── 20160530juno-gravity.txt │   │   │   │   ├── 20160530Karl-Marx-kurgan.txt │   │   │   │   ├── 20160530neverwilt.txt │   │   │   │   ├── 20160530not-supported.txt │   │   │   │   ├── 20160530pentagram-doom.txt │   │   │   │   ├── 20160530pluto-surface-wow.txt │   │   │   │   ├── 20160530schizobrain.txt │   │   │   │   ├── 20160530sharkindivid.txt │   │   │   │   ├── 20160530Sn2016cok.txt │   │   │   │   ├── 20160530so-french.txt │   │   │   │   ├── 20160530Weather-is-the-reason.txt │   │   │   │   ├── 20160530whiskers.txt │   │   │   │   ├── 20160530zenbo.txt │   │   │   │   ├── 20160531aacus.txt │   │   │   │   ├── 20160531beeelectro.txt │   │   │   │   ├── 20160531cake-is-a-lie.txt │   │   │   │   ├── 20160531flexible-integrated-circuit.txt │   │   │   │   ├── 20160531flyer.txt │   │   │   │   ├── 20160531graphene.txt │   │   │   │   ├── 20160531hawk-moth.txt │   │   │   │   ├── 20160531kultura-general-relativity.txt │   │   │   │   ├── 20160531Madagascan-mystery-answer.txt │   │   │   │   ├── 20160531moxi.txt │   │   │   │   ├── 20160531new-xe-oxides.txt │   │   │   │   ├── 20160531ok-chikenpox.txt │   │   │   │   ├── 20160531opium-paradox.txt │   │   │   │   ├── 20160531Phaethon.txt │   │   │   │   ├── 20160531plasmon-bw-c.txt │   │   │   │   ├── 20160531safe-or-abstain.txt │   │   │   │   ├── 20160531shaw-prize.txt │   │   │   │   ├── 20160531women-language.txt │   │   │   │   ├── 20160531xs1.txt │   │   │   │   ├── 201606012AU-2.txt │   │   │   │   ├── 20160601abbyy.txt │   │   │   │   ├── 20160601ar-firefighters.txt │   │   │   │   ├── 20160601chinese.txt │   │   │   │   ├── 20160601design-freedom.txt │   │   │   │   ├── 20160601dr-death.txt │   │   │   │   ├── 20160601droplet-bowler-hat.txt │   │   │   │   ├── 20160601foldable-galaxy.txt │   │   │   │   ├── 20160601htt40.txt │   │   │   │   ├── 20160601matrix.txt │   │   │   │   ├── 20160601microglialoss.txt │   │   │   │   ├── 20160601microsoft-opens-os.txt │   │   │   │   ├── 20160601morality-and-opinion.txt │   │   │   │   ├── 20160601newferroSC.txt │   │   │   │   ├── 20160601new-ring.txt │   │   │   │   ├── 20160601precocious-puberty.txt │   │   │   │   ├── 20160601rising-star-cave.txt │   │   │   │   ├── 20160601Snopbot-project.txt │   │   │   │   ├── 20160601xstat.txt │   │   │   │   ├── 20160602Ancient-Roman-tablets.txt │   │   │   │   ├── 20160602ar-rubik.txt │   │   │   │   ├── 20160602cls.txt │   │   │   │   ├── 20160602convection-pluto.txt │   │   │   │   ├── 20160602eLife.txt │   │   │   │   ├── 20160602google-midi.txt │   │   │   │   ├── 20160602grenades.txt │   │   │   │   ├── 20160602hydrogen-search.txt │   │   │   │   ├── 20160602jackrabot.txt │   │   │   │   ├── 20160602kavli-prize.txt │   │   │   │   ├── 20160602lessthc.txt │   │   │   │   ├── 20160602meta-skin.txt │   │   │   │   ├── 20160602observational-distance-record.txt │   │   │   │   ├── 20160602of-moths-and-lightbulbs.txt │   │   │   │   ├── 20160602painkiller.txt │   │   │   │   ├── 20160602pairs.txt │   │   │   │   ├── 20160602super-mario-bros-pspace.txt │   │   │   │   ├── 20160602theology-doctor.txt │   │   │   │   ├── 20160602traffic.txt │   │   │   │   ├── 20160603aeroport-map.txt │   │   │   │   ├── 20160603afterlife-urn.txt │   │   │   │   ├── 20160603brain-likes-reaction.txt │   │   │   │   ├── 20160603chopper.txt │   │   │   │   ├── 20160603driveless-honk.txt │   │   │   │   ├── 20160603Dual-origin-of-dogs.txt │   │   │   │   ├── 20160603emals.txt │   │   │   │   ├── 20160603endurance.txt │   │   │   │   ├── 20160603first.txt │   │   │   │   ├── 20160603gong.txt │   │   │   │   ├── 20160603gums-would-bear.txt │   │   │   │   ├── 20160603het.txt │   │   │   │   ├── 20160603hgp-write.txt │   │   │   │   ├── 20160603hooray.txt │   │   │   │   ├── 20160603meta-lens-high-NA.txt │   │   │   │   ├── 20160603shot-glass-adapter.txt │   │   │   │   ├── 20160603swimhereandthere.txt │   │   │   │   ├── 20160603tatoo-ai.txt │   │   │   │   ├── 20160603unfreeze.txt │   │   │   │   ├── 20160603universe-expansion-fast.txt │   │   │   │   ├── 20160603vamps.txt │   │   │   │   ├── 20160604big-red-button.txt │   │   │   │   ├── 20160604davd.txt │   │   │   │   ├── 20160604high-price.txt │   │   │   │   ├── 20160604rc-helmet.txt │   │   │   │   ├── 20160604tiny-quadruped.txt │   │   │   │   ├── 20160606adnexbiota.txt │   │   │   │   ├── 20160606asteroid-mining.txt │   │   │   │   ├── 20160606Dance-your-thesis-2016.txt │   │   │   │   ├── 20160606go-ahead.txt │   │   │   │   ├── 20160606ke.txt │   │   │   │   ├── 20160606machinegun.txt │   │   │   │   ├── 20160606narcissism-social-hierarchy.txt │   │   │   │   ├── 20160606Norway-gasoline-cars.txt │   │   │   │   ├── 20160606nuclearatp.txt │   │   │   │   ├── 20160606patton.txt │   │   │   │   ├── 20160606pregnant.txt │   │   │   │   ├── 20160606proteus-born.txt │   │   │   │   ├── 20160606quantum-enigma.txt │   │   │   │   ├── 20160606robots.txt │   │   │   │   ├── 20160606s500.txt │   │   │   │   ├── 20160606system.txt │   │   │   │   ├── 20160606thor.txt │   │   │   │   ├── 20160606too-loud.txt │   │   │   │   ├── 20160606wind-tunnel.txt │   │   │   │   ├── 20160606y20.txt │   │   │   │   ├── 201606072012dn.txt │   │   │   │   ├── 20160607asteroid-history.txt │   │   │   │   ├── 20160607be-zero.txt │   │   │   │   ├── 20160607bionic-leaf.txt │   │   │   │   ├── 20160607black-hole-algorithm.txt │   │   │   │   ├── 20160607cest-la-vie.txt │   │   │   │   ├── 20160607control-economic-decisions.txt │   │   │   │   ├── 20160607dock.txt │   │   │   │   ├── 20160607egg-senescence.txt │   │   │   │   ├── 20160607Electric-eels-shocking-leap.txt │   │   │   │   ├── 20160607femtonewton.txt │   │   │   │   ├── 20160607haero.txt │   │   │   │   ├── 20160607hello.txt │   │   │   │   ├── 20160607ipsc-glaucoma.txt │   │   │   │   ├── 20160607jagm.txt │   │   │   │   ├── 20160607migrafarmers.txt │   │   │   │   ├── 20160607multilevel.txt │   │   │   │   ├── 20160607power-glove.txt │   │   │   │   ├── 20160607quesst.txt │   │   │   │   ├── 20160607rubber-hand-illusion.txt │   │   │   │   ├── 20160607samsung-foldable.txt │   │   │   │   ├── 201606086000-of-global-urbanisation.txt │   │   │   │   ├── 20160608alarm.txt │   │   │   │   ├── 20160608blood-microbiome.txt │   │   │   │   ├── 20160608case-droid.txt │   │   │   │   ├── 20160608cybersport.txt │   │   │   │   ├── 20160608Daydream-googly-eyes.txt │   │   │   │   ├── 20160608ehang-test.txt │   │   │   │   ├── 20160608fenix.txt │   │   │   │   ├── 20160608happy-couples-ugly-others.txt │   │   │   │   ├── 20160608hotwater.txt │   │   │   │   ├── 20160608invisiblequid.txt │   │   │   │   ├── 20160608LISA-pathfinder-success.txt │   │   │   │   ├── 20160608magic-leap.txt │   │   │   │   ├── 20160608ms21.txt │   │   │   │   ├── 20160608new-names.txt │   │   │   │   ├── 20160608red-giants-missing.txt │   │   │   │   ├── 20160608stripes.txt │   │   │   │   ├── 20160608this-fall-rocket-shall-not-fall.txt │   │   │   │   ├── 20160608vibrophone.txt │   │   │   │   ├── 20160608yellow-meranti.txt │   │   │   │   ├── 20160609aerophobia.txt │   │   │   │   ├── 20160609auross.txt │   │   │   │   ├── 20160609cheaper-s.txt │   │   │   │   ├── 20160609decisivemould.txt │   │   │   │   ├── 20160609emotions.txt │   │   │   │   ├── 20160609Eurasian-alloys-in-Alaska.txt │   │   │   │   ├── 20160609hyper.txt │   │   │   │   ├── 20160609i-never-asked-for-this.txt │   │   │   │   ├── 20160609Insure-your-driveless-car.txt │   │   │   │   ├── 20160609lapd-electro.txt │   │   │   │   ├── 20160609pictures-on-cigarettes.txt │   │   │   │   ├── 20160609robattle.txt │   │   │   │   ├── 20160609robowin.txt │   │   │   │   ├── 20160609see.txt │   │   │   │   ├── 20160609space-oddity.txt │   │   │   │   ├── 20160609tires.txt │   │   │   │   ├── 20160609tooksandbaggins.txt │   │   │   │   ├── 20160609water-hot-jupiters.txt │   │   │   │   ├── 20160610almost-modular.txt │   │   │   │   ├── 20160610be-be-be.txt │   │   │   │   ├── 20160610brain-activity.txt │   │   │   │   ├── 20160610ch47.txt │   │   │   │   ├── 20160610child-exoskeleton.txt │   │   │   │   ├── 20160610crime-odor.txt │   │   │   │   ├── 20160610driveless-tractor.txt │   │   │   │   ├── 20160610drones-found-petra.txt │   │   │   │   ├── 20160610get-it-stoned.txt │   │   │   │   ├── 20160610icebreaker.txt │   │   │   │   ├── 20160610industry.txt │   │   │   │   ├── 20160610lenovo.txt │   │   │   │   ├── 20160610martian-seasonal-dust-stormes.txt │   │   │   │   ├── 20160610moleculcontrol.txt │   │   │   │   ├── 20160610noicebreaker.txt │   │   │   │   ├── 20160610reboot.txt │   │   │   │   ├── 20160610tango.txt │   │   │   │   ├── 20160610tetroresist.txt │   │   │   │   ├── 20160610vaylon.txt │   │   │   │   ├── 20160610vyo.txt │   │   │   │   ├── 20160610yeah-skynet.txt │   │   │   │   ├── 20160611antikythera.txt │   │   │   │   ├── 20160611fb-video.txt │   │   │   │   ├── 20160611si2.txt │   │   │   │   ├── 20160611vaxchora.txt │   │   │   │   ├── 20160611VO-Substrata.txt │   │   │   │   ├── 20160613cambodia-hidden-cities.txt │   │   │   │   ├── 20160613earth-processes.txt │   │   │   │   ├── 20160613light-pollution-hides-milkyway.txt │   │   │   │   ├── 20160613pictures-increase-positive-feelings.txt │   │   │   │   ├── 20160614101hero.txt │   │   │   │   ├── 20160614ai-silent-videos.txt │   │   │   │   ├── 20160614akpp.txt │   │   │   │   ├── 20160614bramble-cay-melomys.txt │   │   │   │   ├── 20160614brown-dwarf-flash.txt │   │   │   │   ├── 20160614circumbinary.txt │   │   │   │   ├── 20160614dorsal-straddle.txt │   │   │   │   ├── 20160614engage.txt │   │   │   │   ├── 20160614Farmbot-is-coming.txt │   │   │   │   ├── 20160614iss-minion.txt │   │   │   │   ├── 20160614m3rig.txt │   │   │   │   ├── 20160614pegase.txt │   │   │   │   ├── 20160614pip-boy.txt │   │   │   │   ├── 20160614quasicrystal.txt │   │   │   │   ├── 20160614rememberface.txt │   │   │   │   ├── 20160614ship-to-shore.txt │   │   │   │   ├── 20160614sleep-and-memory.txt │   │   │   │   ├── 20160614spk-fix.txt │   │   │   │   ├── 20160614Sverris-saga-confirmation.txt │   │   │   │   ├── 20160614tattoo-machine-prosthesis.txt │   │   │   │   ├── 20160614Zea-Mounichia-harbours.txt │   │   │   │   ├── 20160615ares.txt │   │   │   │   ├── 20160615butter-old.txt │   │   │   │   ├── 20160615chirality-in-space.txt │   │   │   │   ├── 20160615data.txt │   │   │   │   ├── 20160615drain-it.txt │   │   │   │   ├── 20160615electro-davidson.txt │   │   │   │   ├── 20160615ligo-the-second.txt │   │   │   │   ├── 20160615lynx.txt │   │   │   │   ├── 20160615Marty-the-robot.txt │   │   │   │   ├── 20160615nasa-mars-exploration.txt │   │   │   │   ├── 20160615neural-network-vision.txt │   │   │   │   ├── 20160615opi-dose.txt │   │   │   │   ├── 20160615pituitarymice.txt │   │   │   │   ├── 20160615robots.txt │   │   │   │   ├── 20160615russian-telescopes.txt │   │   │   │   ├── 20160615serial.txt │   │   │   │   ├── 20160615speech.txt │   │   │   │   ├── 20160615whistling.txt │   │   │   │   ├── 20160616ChurCryptXenon.txt │   │   │   │   ├── 20160616coke-machine.txt │   │   │   │   ├── 20160616driverless.txt │   │   │   │   ├── 20160616exomars-sees-mars.txt │   │   │   │   ├── 20160616exoplanets-atmosphere.txt │   │   │   │   ├── 20160616gimmemore.txt │   │   │   │   ├── 20160616icebreaker.txt │   │   │   │   ├── 20160616myoferment.txt │   │   │   │   ├── 20160616new-earths-satellite.txt │   │   │   │   ├── 20160616no-cac.txt │   │   │   │   ├── 20160616pegda-pmmo.txt │   │   │   │   ├── 20160616psy-ops.txt │   │   │   │   ├── 20160616quantum-communication.txt │   │   │   │   ├── 20160616roscosmos-price.txt │   │   │   │   ├── 20160616snca.txt │   │   │   │   ├── 20160617barefeet-rule.txt │   │   │   │   ├── 20160617Betty-robot-office-manager.txt │   │   │   │   ├── 20160617blast.txt │   │   │   │   ├── 20160617btr.txt │   │   │   │   ├── 20160617crisprotocol.txt │   │   │   │   ├── 20160617fuel-save.txt │   │   │   │   ├── 20160617hack-a-drone.txt │   │   │   │   ├── 20160617long-live-nad.txt │   │   │   │   ├── 20160617night.txt │   │   │   │   ├── 20160617oxygen-in-a-far-far-away-galaxy.txt │   │   │   │   ├── 20160617red-eyed-sprinters.txt │   │   │   │   ├── 20160617single-molecule.txt │   │   │   │   ├── 20160617special-algorythm.txt │   │   │   │   ├── 20160617welcome-back.txt │   │   │   │   ├── 20160618aesa.txt │   │   │   │   ├── 20160618cockpit.txt │   │   │   │   ├── 20160618cyber.txt │   │   │   │   ├── 20160618gearbox.txt │   │   │   │   ├── 20160618hack.txt │   │   │   │   ├── 20160618navi.txt │   │   │   │   ├── 20160618thrust-reversers.txt │   │   │   │   ├── 20160618uavs.txt │   │   │   │   ├── 20160618weather.txt │   │   │   │   ├── 20160618xmv3.txt │   │   │   │   ├── 20160620ai-ant-soccer.txt │   │   │   │   ├── 20160620Amazon-Kiva.txt │   │   │   │   ├── 20160620blue-origin-fourth-launch.txt │   │   │   │   ├── 20160620cesium-16-atoms.txt │   │   │   │   ├── 20160620contact-ci.txt │   │   │   │   ├── 20160620deap.txt │   │   │   │   ├── 20160620dynomammals.txt │   │   │   │   ├── 20160620first-law.txt │   │   │   │   ├── 20160620memory-boost.txt │   │   │   │   ├── 20160620nasa-hybrid.txt │   │   │   │   ├── 20160620plastic-to-the-fuel.txt │   │   │   │   ├── 20160620sateng.txt │   │   │   │   ├── 20160620si2.txt │   │   │   │   ├── 20160620twitter-links.txt │   │   │   │   ├── 20160620Vikings-gold-treasure.txt │   │   │   │   ├── 20160620vr-motion-sickness.txt │   │   │   │   ├── 20160621airobotics.txt │   │   │   │   ├── 20160621boiler-drones.txt │   │   │   │   ├── 20160621browser-wars.txt │   │   │   │   ├── 20160621bulava.txt │   │   │   │   ├── 20160621cones2rods.txt │   │   │   │   ├── 20160621educoma.txt │   │   │   │   ├── 20160621electroshock-o.txt │   │   │   │   ├── 20160621fighter.txt │   │   │   │   ├── 20160621go-crispr.txt │   │   │   │   ├── 20160621hurry-up-and-give-money.txt │   │   │   │   ├── 20160621m346.txt │   │   │   │   ├── 20160621missile.txt │   │   │   │   ├── 20160621open-rotor.txt │   │   │   │   ├── 20160621pollution-deep-oceans.txt │   │   │   │   ├── 20160621reading-and-implanting-thoughts.txt │   │   │   │   ├── 20160621reverse-time.txt │   │   │   │   ├── 20160621thalidomide.txt │   │   │   │   ├── 20160621youngest-exoplanet.txt │   │   │   │   ├── 20160621zika-vacc.txt │   │   │   │   ├── 20160622anti-scalping-bill.txt │   │   │   │   ├── 20160622champ-hunter.txt │   │   │   │   ├── 20160622Creative-Cloud-update.txt │   │   │   │   ├── 20160622deadgenes.txt │   │   │   │   ├── 20160622enceladus-ocean.txt │   │   │   │   ├── 20160622e-person.txt │   │   │   │   ├── 20160622hug-predictor.txt │   │   │   │   ├── 20160622human-shield.txt │   │   │   │   ├── 20160622medium-compact.txt │   │   │   │   ├── 20160622missile.txt │   │   │   │   ├── 20160622nihao.txt │   │   │   │   ├── 20160622nimb.txt │   │   │   │   ├── 20160622Oxytocin-bonds-and-divides.txt │   │   │   │   ├── 20160622pluto.txt │   │   │   │   ├── 20160622rarok.txt │   │   │   │   ├── 20160622safe-sex-attractive-women.txt │   │   │   │   ├── 20160622urban-tits.txt │   │   │   │   ├── 20160622venus-electric-winds.txt │   │   │   │   ├── 20160623ai-safety.txt │   │   │   │   ├── 20160623apss.txt │   │   │   │   ├── 20160623babybrainhypoxy.txt │   │   │   │   ├── 20160623blindness.txt │   │   │   │   ├── 20160623browser-wars-opera-strikes-back.txt │   │   │   │   ├── 20160623Chuck-Taylor-All-Wah.txt │   │   │   │   ├── 20160623dance-moves.txt │   │   │   │   ├── 20160623deep-learning-for-vr.txt │   │   │   │   ├── 20160623dicty-race.txt │   │   │   │   ├── 20160623engine.txt │   │   │   │   ├── 20160623mars-mineral.txt │   │   │   │   ├── 20160623new-word.txt │   │   │   │   ├── 20160623perfume-67P.txt │   │   │   │   ├── 20160623quantum-computer.txt │   │   │   │   ├── 20160623record.txt │   │   │   │   ├── 20160623si2-seville.txt │   │   │   │   ├── 20160623SMBH.txt │   │   │   │   ├── 20160623storm.txt │   │   │   │   ├── 20160623terrafugia.txt │   │   │   │   ├── 20160623turn-em-off.txt │   │   │   │   ├── 20160624Arbe-Robotics-system.txt │   │   │   │   ├── 20160624faint-sun-paradox-solution.txt │   │   │   │   ├── 20160624fighters.txt │   │   │   │   ├── 20160624full-load.txt │   │   │   │   ├── 20160624Mi-QiCYCLE.txt │   │   │   │   ├── 20160624neptune.txt │   │   │   │   ├── 20160624NIST4.txt │   │   │   │   ├── 20160624no-gmo.txt │   │   │   │   ├── 20160624nomemento.txt │   │   │   │   ├── 20160624nuff-said.txt │   │   │   │   ├── 20160624pelevin-was-right.txt │   │   │   │   ├── 20160624polyelemental-nanoparticles.txt │   │   │   │   ├── 20160624Project-discovery-live.txt │   │   │   │   ├── 20160624rbw.txt │   │   │   │   ├── 20160624social-dilemma-av.txt │   │   │   │   ├── 20160624Solar-Roadways-2.txt │   │   │   │   ├── 20160624spotmini.txt │   │   │   │   ├── 20160624stem-neoplasma.txt │   │   │   │   ├── 20160624triton.txt │   │   │   │   ├── 20160625juno-start-making-photos.txt │   │   │   │   ├── 20160625pentafoil-knot.txt │   │   │   │   ├── 20160625post-K.txt │   │   │   │   ├── 20160625robofootball.txt │   │   │   │   ├── 20160627Canaanites-imported-animals.txt │   │   │   │   ├── 20160627china-orbital.txt │   │   │   │   ├── 20160627cozmo.txt │   │   │   │   ├── 20160627cps-6.txt │   │   │   │   ├── 20160627debriscamo.txt │   │   │   │   ├── 20160627drone-9.txt │   │   │   │   ├── 20160627fire-in-the-hole.txt │   │   │   │   ├── 20160627googlephone.txt │   │   │   │   ├── 20160627juno-pictures.txt │   │   │   │   ├── 20160627LHC-luminosity.txt │   │   │   │   ├── 20160627lucky-pupils.txt │   │   │   │   ├── 20160627machines-are-okay-without-us.txt │   │   │   │   ├── 20160627metalens-chirality.txt │   │   │   │   ├── 20160627million-face-database.txt │   │   │   │   ├── 20160627Phanagoria-temple.txt │   │   │   │   ├── 20160627resistance-genes.txt │   │   │   │   ├── 20160627s-cataracta.txt │   │   │   │   ├── 20160627SgrA-size.txt │   │   │   │   ├── 20160627skeletons-in-Pompeii-shop.txt │   │   │   │   ├── 201606283d-cartilage.txt │   │   │   │   ├── 201606283DNESWindows.txt │   │   │   │   ├── 20160628blocks.txt │   │   │   │   ├── 20160628Goffineconomic.txt │   │   │   │   ├── 20160628google-maps-high-res.txt │   │   │   │   ├── 20160628helium.txt │   │   │   │   ├── 20160628intelligence-placebo.txt │   │   │   │   ├── 20160628neuro-grob.txt │   │   │   │   ├── 20160628play-cards.txt │   │   │   │   ├── 20160628Robotic-diagnostic-glove.txt │   │   │   │   ├── 20160628rosetta-shadow.txt │   │   │   │   ├── 20160628sign-language.txt │   │   │   │   ├── 20160628sls-booster.txt │   │   │   │   ├── 20160628smbh-merge.txt │   │   │   │   ├── 20160628space.txt │   │   │   │   ├── 20160628spleenfiltermod.txt │   │   │   │   ├── 20160628three-lens-camera.txt │   │   │   │   ├── 20160629Daisy-Bell.txt │   │   │   │   ├── 20160629feathers-in-amber.txt │   │   │   │   ├── 20160629Great-white-napping.txt │   │   │   │   ├── 20160629looks-like-wi-fi.txt │   │   │   │   ├── 20160629MDIQKD.txt │   │   │   │   ├── 20160629no-musk-way.txt │   │   │   │   ├── 20160629Old-school-pub.txt │   │   │   │   ├── 20160629sandwich-cycle.txt │   │   │   │   ├── 20160629springbuds.txt │   │   │   │   ├── 20160629tango-everywhere.txt │   │   │   │   ├── 20160629Ultra-Deep-Survey.txt │   │   │   │   ├── 20160629you-know-nothing.txt │   │   │   │   ├── 20160630AI-exoplanets.txt │   │   │   │   ├── 20160630another-salt.txt │   │   │   │   ├── 20160630antianti.txt │   │   │   │   ├── 20160630bagel.txt │   │   │   │   ├── 20160630brainprints.txt │   │   │   │   ├── 20160630FASTER-come-online.txt │   │   │   │   ├── 20160630Gateway-to-Pan.txt │   │   │   │   ├── 20160630HC2superconductorrotation.txt │   │   │   │   ├── 20160630jupiter-aurora.txt │   │   │   │   ├── 20160630mercury-surface.txt │   │   │   │   ├── 20160630Ponar-escape-tunnel.txt │   │   │   │   ├── 20160630power-of-the-power.txt │   │   │   │   ├── 20160630prehistoric-tombs.txt │   │   │   │   ├── 20160630ron-don-don.txt │   │   │   │   ├── 20160630rosetta-grand-finale.txt │   │   │   │   ├── 20160630stiction.txt │   │   │   │   ├── 20160701attention-of-robots.txt │   │   │   │   ├── 20160701dat-name.txt │   │   │   │   ├── 20160701Death-house-of-vikings.txt │   │   │   │   ├── 20160701earth-center.txt │   │   │   │   ├── 20160701great-frigate.txt │   │   │   │   ├── 20160701hepresclean.txt │   │   │   │   ├── 20160701jupiter-part.txt │   │   │   │   ├── 20160701ozon-hole.txt │   │   │   │   ├── 20160701Pemphigusvulgaris.txt │   │   │   │   ├── 20160701remake-stories.txt │   │   │   │   ├── 20160701tesla.txt │   │   │   │   ├── 20160701vr-mode.txt │   │   │   │   ├── 20160702bmw-driveless.txt │   │   │   │   ├── 20160702jupiter-song.txt │   │   │   │   ├── 20160702martian-dunes.txt │   │   │   │   ├── 20160702new-horizons-new-target.txt │   │   │   │   ├── 20160702pneuhound.txt │   │   │   │   ├── 20160702trainer-drone.txt │   │   │   │   ├── 20160702you-stay.txt │   │   │   │   ├── 20160704fast-telescope.txt │   │   │   │   ├── 20160704gabacter.txt │   │   │   │   ├── 20160704grin-without-a-cat.txt │   │   │   │   ├── 20160704i-can-do-better.txt │   │   │   │   ├── 20160704june-sky.txt │   │   │   │   ├── 20160704micro-pac-man.txt │   │   │   │   ├── 20160704Smog-free-tower.txt │   │   │   │   ├── 20160704toyota.txt │   │   │   │   ├── 20160704uzi-bell.txt │   │   │   │   ├── 20160704well-adjusted.txt │   │   │   │   ├── 20160705angrywasps.txt │   │   │   │   ├── 20160705bloodhound-ssc.txt │   │   │   │   ├── 20160705delta.txt │   │   │   │   ├── 20160705dji-flyability.txt │   │   │   │   ├── 20160705false-fmri.txt │   │   │   │   ├── 20160705higgs-pizza.txt │   │   │   │   ├── 20160705juno-finally.txt │   │   │   │   ├── 20160705juno-maneur-end.txt │   │   │   │   ├── 20160705Juno-maneur.txt │   │   │   │   ├── 20160705juno-photos.txt │   │   │   │   ├── 20160705mars.txt │   │   │   │   ├── 20160705monarchboost.txt │   │   │   │   ├── 20160705pasta-ok.txt │   │   │   │   ├── 20160705reward-immunity.txt │   │   │   │   ├── 20160705rnanovaccines.txt │   │   │   │   ├── 20160705spector.txt │   │   │   │   ├── 20160706amazon-picking-challenge.txt │   │   │   │   ├── 20160706DJI-GEO-update.txt │   │   │   │   ├── 20160706goatfriends.txt │   │   │   │   ├── 20160706hayward-fault.txt │   │   │   │   ├── 20160706ideal-rope.txt │   │   │   │   ├── 20160706lietome.txt │   │   │   │   ├── 20160706life-on-Titan.txt │   │   │   │   ├── 20160706pan-saturn.txt │   │   │   │   ├── 20160706pokemon-go-plus.txt │   │   │   │   ├── 20160706pupils.txt │   │   │   │   ├── 20160706robot-hunter.txt │   │   │   │   ├── 20160706supernova.txt │   │   │   │   ├── 20160706too-smart-watch.txt │   │   │   │   ├── 20160707200-mb-dna.txt │   │   │   │   ├── 20160707antares-ice-cube-neutrino-search.txt │   │   │   │   ├── 20160707deal-with-it.txt │   │   │   │   ├── 20160707Godspots.txt │   │   │   │   ├── 20160707Hitomi-last.txt │   │   │   │   ├── 20160707human-eye-contact.txt │   │   │   │   ├── 20160707Huqoq-mosaics.txt │   │   │   │   ├── 20160707kidults.txt │   │   │   │   ├── 20160707med-mj.txt │   │   │   │   ├── 20160707rapidmutation.txt │   │   │   │   ├── 20160707removable-ufs.txt │   │   │   │   ├── 20160707soyuz-ms.txt │   │   │   │   ├── 20160707supermassive-black-holes.txt │   │   │   │   ├── 20160707the-flopotron.txt │   │   │   │   ├── 20160707time-leap.txt │   │   │   │   ├── 20160708absorb-gt1.txt │   │   │   │   ├── 20160708apollo-github.txt │   │   │   │   ├── 20160708Cannibalism-and-bones-as-tools.txt │   │   │   │   ├── 20160708cart-hold.txt │   │   │   │   ├── 20160708DeNA.txt │   │   │   │   ├── 20160708Eurocontrol-gaming-system.txt │   │   │   │   ├── 20160708Ferret-Last-Hope.txt │   │   │   │   ├── 20160708gossip-chat.txt │   │   │   │   ├── 20160708hubble-crab.txt │   │   │   │   ├── 20160708metarhizium.txt │   │   │   │   ├── 20160708plot-curve.txt │   │   │   │   ├── 20160708quantum-paranoia.txt │   │   │   │   ├── 20160708rayrat.txt │   │   │   │   ├── 20160708spin-dependence.txt │   │   │   │   ├── 20160708three-suns-planet.txt │   │   │   │   ├── 20160709amr-mummy.txt │   │   │   │   ├── 20160709d-place.txt │   │   │   │   ├── 20160709fb-allowed.txt │   │   │   │   ├── 20160709soyuz-mks.txt │   │   │   │   ├── 20160709viral-hepatitis.txt │   │   │   │   ├── 20160711aircarrier.txt │   │   │   │   ├── 20160711Ashkelon-philistine-cemetry.txt │   │   │   │   ├── 20160711bacterotors.txt │   │   │   │   ├── 20160711engines.txt │   │   │   │   ├── 20160711ferroelectric.txt │   │   │   │   ├── 20160711galaxy-quench.txt │   │   │   │   ├── 20160711graphene.txt │   │   │   │   ├── 20160711hcmi.txt │   │   │   │   ├── 20160711lcm-seq.txt │   │   │   │   ├── 20160711LUKE-arm.txt │   │   │   │   ├── 20160711nail-biting.txt │   │   │   │   ├── 20160711radars.txt │   │   │   │   ├── 20160711russian-exoplanet.txt │   │   │   │   ├── 20160711sea-trials.txt │   │   │   │   ├── 20160711si2-circumnavigatory.txt │   │   │   │   ├── 20160711train.txt │   │   │   │   ├── 20160711water-on-ceres.txt │   │   │   │   ├── 20160712camera-nasa-bombs.txt │   │   │   │   ├── 20160712family.txt │   │   │   │   ├── 20160712flight.txt │   │   │   │   ├── 20160712fulmar.txt │   │   │   │   ├── 20160712healing-nat.txt │   │   │   │   ├── 20160712ngr.txt │   │   │   │   ├── 20160712overridden-uncertainty.txt │   │   │   │   ├── 20160712rr245.txt │   │   │   │   ├── 20160712sengs.txt │   │   │   │   ├── 20160712stall.txt │   │   │   │   ├── 20160712three-stream.txt │   │   │   │   ├── 20160712time-reversal.txt │   │   │   │   ├── 20160712transport.txt │   │   │   │   ├── 20160712vision-restored.txt │   │   │   │   ├── 20160713armor.txt │   │   │   │   ├── 20160713aurora.txt │   │   │   │   ├── 20160713cinnamon.txt │   │   │   │   ├── 20160713durus.txt │   │   │   │   ├── 20160713hamsters-masterpieces.txt │   │   │   │   ├── 20160713HF-endofullerene.txt │   │   │   │   ├── 20160713it-has-began.txt │   │   │   │   ├── 20160713juno-orbit-shots.txt │   │   │   │   ├── 20160713knuckleballs.txt │   │   │   │   ├── 20160713lay-down.txt │   │   │   │   ├── 20160713pedal-powered-robot.txt │   │   │   │   ├── 20160713polarotateye.txt │   │   │   │   ├── 20160713robots.txt │   │   │   │   ├── 20160713si2-cairo.txt │   │   │   │   ├── 20160713starry-night.txt │   │   │   │   ├── 20160713sub.txt │   │   │   │   ├── 20160713t100.txt │   │   │   │   ├── 20160713Telipogondiabolicus.txt │   │   │   │   ├── 20160713video.txt │   │   │   │   ├── 20160714bad-musical-taste-why.txt │   │   │   │   ├── 20160714capuchins.txt │   │   │   │   ├── 20160714davids.txt │   │   │   │   ├── 20160714Glazkov-culture-people.txt │   │   │   │   ├── 20160714ifn-gamma.txt │   │   │   │   ├── 20160714missiles.txt │   │   │   │   ├── 20160714neanderpoor.txt │   │   │   │   ├── 20160714nintendo-aww.txt │   │   │   │   ├── 20160714obesity-kills.txt │   │   │   │   ├── 20160714oseltamivir.txt │   │   │   │   ├── 20160714Rembrandt-used-optics.txt │   │   │   │   ├── 20160714Simply-BUM.txt │   │   │   │   ├── 20160714suzumori.txt │   │   │   │   ├── 20160714video.txt │   │   │   │   ├── 20160714water-snowline.txt │   │   │   │   ├── 20160715assist.txt │   │   │   │   ├── 20160715coarse.txt │   │   │   │   ├── 20160715fishjoints.txt │   │   │   │   ├── 20160715galaxy-map.txt │   │   │   │   ├── 20160715GRB160625B.txt │   │   │   │   ├── 20160715instalikes.txt │   │   │   │   ├── 20160715intense-joy-pain.txt │   │   │   │   ├── 20160715Massive-shipwreck-Fourni.txt │   │   │   │   ├── 20160715matryoshka.txt │   │   │   │   ├── 20160715oxygen.txt │   │   │   │   ├── 20160715russian-map.txt │   │   │   │   ├── 20160715swag-bag.txt │   │   │   │   ├── 20160715video-simulates-landing.txt │   │   │   │   ├── 20160715watch.txt │   │   │   │   ├── 20160715wing.txt │   │   │   │   ├── 20160715zelator2.txt │   │   │   │   ├── 20160715zelator.txt │   │   │   │   ├── 20160716aurora-is-back.txt │   │   │   │   ├── 20160716ducklings-thinking.txt │   │   │   │   ├── 20160716gamma-ray-burst-1409.txt │   │   │   │   ├── 20160716martian-rover-2020.txt │   │   │   │   ├── 20160716solar-aileron-roll.txt │   │   │   │   ├── 201607183D-system.txt │   │   │   │   ├── 20160718airbus.txt │   │   │   │   ├── 20160718engine.txt │   │   │   │   ├── 20160718intercept.txt │   │   │   │   ├── 20160718invisibility-cloak.txt │   │   │   │   ├── 20160718jamming.txt │   │   │   │   ├── 20160718musk-four.txt │   │   │   │   ├── 20160718one-bit-one-atom.txt │   │   │   │   ├── 20160718pics-radio-telescope.txt │   │   │   │   ├── 20160718quantum-complication.txt │   │   │   │   ├── 20160718shells4dig.txt │   │   │   │   ├── 20160718spacex-first-reuse.txt │   │   │   │   ├── 20160718trials.txt │   │   │   │   ├── 20160718zy.txt │   │   │   │   ├── 20160719Black-boxes-self-driving-cars.txt │   │   │   │   ├── 20160719bus.txt │   │   │   │   ├── 20160719Crawling-biohybrid-robot.txt │   │   │   │   ├── 20160719hungermantis.txt │   │   │   │   ├── 20160719inkunzi.txt │   │   │   │   ├── 20160719kc46a.txt │   │   │   │   ├── 20160719Kepler.txt │   │   │   │   ├── 20160719manyfold.txt │   │   │   │   ├── 20160719neutrino-violation.txt │   │   │   │   ├── 20160719Sexualizaton-of-Female-Video-Game-Characters.txt │   │   │   │   ├── 20160719superbase.txt │   │   │   │   ├── 20160719Thermo-the-thermometr.txt │   │   │   │   ├── 20160719venus-surface-influence.txt │   │   │   │   ├── 20160719voice.txt │   │   │   │   ├── 20160719wisdom-tree-game.txt │   │   │   │   ├── 20160720bill.txt │   │   │   │   ├── 20160720engine.txt │   │   │   │   ├── 20160720mine-clearing.txt │   │   │   │   ├── 20160720pay.txt │   │   │   │   ├── 20160720penguin-leg.txt │   │   │   │   ├── 20160720prisma-android.txt │   │   │   │   ├── 20160720quantum-neural-networks.txt │   │   │   │   ├── 20160720san-andreas.txt │   │   │   │   ├── 20160720sherman.txt │   │   │   │   ├── 20160720singlesight.txt │   │   │   │   ├── 20160720sonar.txt │   │   │   │   ├── 20160720systems.txt │   │   │   │   ├── 20160720thread.txt │   │   │   │   ├── 20160720two-super-earths.txt │   │   │   │   ├── 20160720wb-photo.txt │   │   │   │   ├── 20160721ballistic.txt │   │   │   │   ├── 20160721exomars-quasar.txt │   │   │   │   ├── 20160721explosion.txt │   │   │   │   ├── 20160721hubble-atmosphere-exoplanet.txt │   │   │   │   ├── 20160721lider.txt │   │   │   │   ├── 20160721Master-plan-part-two.txt │   │   │   │   ├── 20160721megaraptor.txt │   │   │   │   ├── 20160721mikron.txt │   │   │   │   ├── 20160721multicore.txt │   │   │   │   ├── 20160721Obi-the-robot.txt │   │   │   │   ├── 20160721phone.txt │   │   │   │   ├── 20160721pokemon-go-benefits.txt │   │   │   │   ├── 20160721protoplanet-formed-lunar-crator.txt │   │   │   │   ├── 20160721scorpion.txt │   │   │   │   ├── 20160721Teal.txt │   │   │   │   ├── 20160721VHS-goodbye.txt │   │   │   │   ├── 201607223D-prints-will-help.txt │   │   │   │   ├── 20160722aircarrier.txt │   │   │   │   ├── 20160722Amazon-docking-station.txt │   │   │   │   ├── 20160722aquila.txt │   │   │   │   ├── 20160722e-coli-compute.txt │   │   │   │   ├── 20160722game.txt │   │   │   │   ├── 20160722go-crispr.txt │   │   │   │   ├── 20160722hominiguts.txt │   │   │   │   ├── 20160722hybrid.txt │   │   │   │   ├── 20160722meet-graham.txt │   │   │   │   ├── 20160722not-more.txt │   │   │   │   ├── 20160722pressure.txt │   │   │   │   ├── 20160722scramjet.txt │   │   │   │   ├── 20160722Silver-denarius-in-Empuries.txt │   │   │   │   ├── 20160722submarines.txt │   │   │   │   ├── 20160722superbook.txt │   │   │   │   ├── 20160723drones.txt │   │   │   │   ├── 20160723drone.txt │   │   │   │   ├── 20160723engine.txt │   │   │   │   ├── 20160723groot.txt │   │   │   │   ├── 20160723howitzer.txt │   │   │   │   ├── 20160723Leonardo-studies-of-Friction.txt │   │   │   │   ├── 20160723uavs.txt │   │   │   │   ├── 20160723warfare.txt │   │   │   │   ├── 20160725active.txt │   │   │   │   ├── 20160725adversarial.txt │   │   │   │   ├── 20160725dreadds.txt │   │   │   │   ├── 20160725ev-vesta.txt │   │   │   │   ├── 20160725Indicator-indicator-collaborates-human.txt │   │   │   │   ├── 20160725lider.txt │   │   │   │   ├── 20160725microbots.txt │   │   │   │   ├── 20160725picosecond.txt │   │   │   │   ├── 20160725plane.txt │   │   │   │   ├── 20160725poop-sticks.txt │   │   │   │   ├── 20160725prisma-for-everyone.txt │   │   │   │   ├── 20160725sphenopus-exilis.txt │   │   │   │   ├── 20160725two-atoms-one-photon.txt │   │   │   │   ├── 20160726Amazon-tests-drones-delivery-UK.txt │   │   │   │   ├── 20160726Ancient-rope-making.txt │   │   │   │   ├── 20160726bbyby.txt │   │   │   │   ├── 20160726birds-better-than-sattelite.txt │   │   │   │   ├── 20160726cards.txt │   │   │   │   ├── 20160726cheap.txt │   │   │   │   ├── 20160726Egypt-statue-in-Tel-Hazor.txt │   │   │   │   ├── 20160726europe-zika.txt │   │   │   │   ├── 20160726finally.txt │   │   │   │   ├── 20160726halflifeluca.txt │   │   │   │   ├── 20160726magazine.txt │   │   │   │   ├── 20160726marks.txt │   │   │   │   ├── 20160726museum.txt │   │   │   │   ├── 20160726ovo-ex-vitro.txt │   │   │   │   ├── 20160726russia-medals.txt │   │   │   │   ├── 20160726scholar.txt │   │   │   │   ├── 20160726spider-web.txt │   │   │   │   ├── 20160726start-the-fire.txt │   │   │   │   ├── 20160726vr-robot.txt │   │   │   │   ├── 20160727100-years-of-growth.txt │   │   │   │   ├── 20160727actuv.txt │   │   │   │   ├── 20160727Aerochromics-shirts.txt │   │   │   │   ├── 20160727cockpit.txt │   │   │   │   ├── 20160727cowarobot-r1.txt │   │   │   │   ├── 20160727crater-wiping-away.txt │   │   │   │   ├── 20160727fluffy-star-motion.txt │   │   │   │   ├── 20160727gasotransmitters.txt │   │   │   │   ├── 20160727ice-is-ok.txt │   │   │   │   ├── 20160727marksman.txt │   │   │   │   ├── 20160727matrix.txt │   │   │   │   ├── 20160727med-nepotism.txt │   │   │   │   ├── 20160727QSL.txt │   │   │   │   ├── 20160727rosetta-to-philae-stop.txt │   │   │   │   ├── 20160727sippc.txt │   │   │   │   ├── 20160727spider.txt │   │   │   │   ├── 20160727they-see-me-crawling.txt │   │   │   │   ├── 20160727veeso.txt │   │   │   │   ├── 20160728aircarrier.txt │   │   │   │   ├── 20160728attractionbyrepulsion.txt │   │   │   │   ├── 20160728double-red-and-white.txt │   │   │   │   ├── 20160728Drogon-Viserion.txt │   │   │   │   ├── 20160728gen.txt │   │   │   │   ├── 20160728just-one-hour.txt │   │   │   │   ├── 20160728lmtx.txt │   │   │   │   ├── 20160728lugdunin.txt │   │   │   │   ├── 20160728mytoshares.txt │   │   │   │   ├── 20160728protector.txt │   │   │   │   ├── 20160728sun-dynamo.txt │   │   │   │   ├── 20160728system.txt │   │   │   │   ├── 20160728truck.txt │   │   │   │   ├── 20160728vk-prisma.txt │   │   │   │   ├── 20160728wifi.txt │   │   │   │   ├── 20160729algorithm.txt │   │   │   │   ├── 20160729ar-qr.txt │   │   │   │   ├── 20160729burn.txt │   │   │   │   ├── 20160729color-holography.txt │   │   │   │   ├── 20160729dopasmoke.txt │   │   │   │   ├── 20160729go-pub.txt │   │   │   │   ├── 20160729ipatrol.txt │   │   │   │   ├── 20160729Krunan-shipwreck.txt │   │   │   │   ├── 20160729Smart-Tactile-Paving.txt │   │   │   │   ├── 20160729stay-here.txt │   │   │   │   ├── 20160729thats-it.txt │   │   │   │   ├── 20160729twisted-light.txt │   │   │   │   ├── 20160729Ultimaker-2Go.txt │   │   │   │   ├── 20160729wheeled-and-squishy.txt │   │   │   │   ├── 20160729x-ray-focus.txt │   │   │   │   ├── 20160730gullies-are-not-what-they-are.txt │   │   │   │   ├── 20160730personal-battle-robot.txt │   │   │   │   ├── 20160730thermostat.txt │   │   │   │   ├── 20160730venus-flytrap.txt │   │   │   │   ├── 20160801apojove-juno.txt │   │   │   │   ├── 20160801bf.txt │   │   │   │   ├── 20160801bioreactor.txt │   │   │   │   ├── 20160801blacker-than-the-blackest-black-times-infinity.txt │   │   │   │   ├── 20160801blades.txt │   │   │   │   ├── 20160801capture-virus.txt │   │   │   │   ├── 20160801Chudov-monastery-excavations.txt │   │   │   │   ├── 20160801convert.txt │   │   │   │   ├── 20160801Delphi-tests-self-driving-car-Singapore.txt │   │   │   │   ├── 20160801galvani.txt │   │   │   │   ├── 20160801icho-2016.txt │   │   │   │   ├── 20160801jammer.txt │   │   │   │   ├── 20160801ovurgasm.txt │   │   │   │   ├── 20160801poop-fail.txt │   │   │   │   ├── 20160801rec.txt │   │   │   │   ├── 20160801Seabin-cleaning.txt │   │   │   │   ├── 2016080223-and-mdd.txt │   │   │   │   ├── 20160802aminoacid-transformation.txt │   │   │   │   ├── 20160802b61.txt │   │   │   │   ├── 20160802bonobofeminists.txt │   │   │   │   ├── 20160802eitan.txt │   │   │   │   ├── 20160802fake-floss.txt │   │   │   │   ├── 20160802no-youngsters.txt │   │   │   │   ├── 20160802osprey.txt │   │   │   │   ├── 20160802sn-1987A-radio.txt │   │   │   │   ├── 20160802target.txt │   │   │   │   ├── 20160802uav.txt │   │   │   │   ├── 20160802Virgin-Galactic-license.txt │   │   │   │   ├── 20160803activepokemon.txt │   │   │   │   ├── 20160803arthritosaur.txt │   │   │   │   ├── 20160803blood-drops.txt │   │   │   │   ├── 20160803comms.txt │   │   │   │   ├── 20160803CRONZY-pen.txt │   │   │   │   ├── 20160803io-atmosphere.txt │   │   │   │   ├── 20160803Jain-managed.txt │   │   │   │   ├── 20160803jeep.txt │   │   │   │   ├── 20160803lightning.txt │   │   │   │   ├── 20160803meat-vs-plant.txt │   │   │   │   ├── 20160803no-sex-for-millenials.txt │   │   │   │   ├── 20160803plasm-for-fee.txt │   │   │   │   ├── 20160803portal.txt │   │   │   │   ├── 20160803spider.txt │   │   │   │   ├── 20160803sqashplate.txt │   │   │   │   ├── 20160803Zipline-program-USA.txt │   │   │   │   ├── 201608042primehydroxy.txt │   │   │   │   ├── 20160804air.txt │   │   │   │   ├── 20160804birdsleep.txt │   │   │   │   ├── 20160804center.txt │   │   │   │   ├── 20160804ceres-map.txt │   │   │   │   ├── 20160804cut-then-conceive.txt │   │   │   │   ├── 20160804LHC-750-GeV.txt │   │   │   │   ├── 20160804Masaya-Wi-Fi.txt │   │   │   │   ├── 20160804video.txt │   │   │   │   ├── 20160804wax.txt │   │   │   │   ├── 20160805750-GeV.txt │   │   │   │   ├── 20160805emma.txt │   │   │   │   ├── 20160805fabric.txt │   │   │   │   ├── 20160805go-go.txt │   │   │   │   ├── 20160805Higgs-LHC-Run-2.txt │   │   │   │   ├── 20160805hover.txt │   │   │   │   ├── 20160805Mars-city-design.txt │   │   │   │   ├── 20160805mars-rover.txt │   │   │   │   ├── 20160805neurokad.txt │   │   │   │   ├── 20160805read-books.txt │   │   │   │   ├── 20160805scaner.txt │   │   │   │   ├── 20160805tattoo.txt │   │   │   │   ├── 20160805thirstyneuro.txt │   │   │   │   ├── 20160805us-chimeras.txt │   │   │   │   ├── 20160806brain-age.txt │   │   │   │   ├── 20160806filaments.txt │   │   │   │   ├── 20160806flee-engraving.txt │   │   │   │   ├── 20160806nya.txt │   │   │   │   ├── 20160806Phanagoria-Darius.txt │   │   │   │   ├── 20160806sunflower.txt │   │   │   │   ├── 20160808airlander10.txt │   │   │   │   ├── 20160808ancient-whales.txt │   │   │   │   ├── 20160808blood-to-electricity.txt │   │   │   │   ├── 20160808blue-tornado.txt │   │   │   │   ├── 20160808dvd-superfast.txt │   │   │   │   ├── 20160808first-smile.txt │   │   │   │   ├── 20160808food-and-social-identity.txt │   │   │   │   ├── 20160808Glassify.txt │   │   │   │   ├── 20160808Jishi-great-flood.txt │   │   │   │   ├── 20160808kepler-alive.txt │   │   │   │   ├── 20160808Modobag-welcome.txt │   │   │   │   ├── 20160808neurodust.txt │   │   │   │   ├── 20160808olfactobronchi.txt │   │   │   │   ├── 20160808parka-survival.txt │   │   │   │   ├── 20160808rgo-river.txt │   │   │   │   ├── 20160808Vantan-drones-course.txt │   │   │   │   ├── 20160809Ambling-horses-origin.txt │   │   │   │   ├── 20160809bacteria-and-supernova.txt │   │   │   │   ├── 20160809battery-dissolves.txt │   │   │   │   ├── 20160809bloody-tools.txt │   │   │   │   ├── 20160809faceless-recognition-system.txt │   │   │   │   ├── 20160809heart-grows.txt │   │   │   │   ├── 20160809jc-denton.txt │   │   │   │   ├── 20160809mercury-volcanoes.txt │   │   │   │   ├── 20160809money-back.txt │   │   │   │   ├── 20160809psychologists-make-disappear.txt │   │   │   │   ├── 20160809Royal-maya-tomb.txt │   │   │   │   ├── 20160809spacevr.txt │   │   │   │   ├── 20160809tabby-star.txt │   │   │   │   ├── 20160810archimedes-stop.txt │   │   │   │   ├── 20160810coffiest.txt │   │   │   │   ├── 20160810DNA-nano.txt │   │   │   │   ├── 20160810drop-freezing.txt │   │   │   │   ├── 20160810flying-ring.txt │   │   │   │   ├── 20160810good-teachers.txt │   │   │   │   ├── 20160810gorgeous-flame.txt │   │   │   │   ├── 20160810hammerside.txt │   │   │   │   ├── 20160810if-it-bleeds-we-can-kill-it.txt │   │   │   │   ├── 20160810long-trunk.txt │   │   │   │   ├── 20160810piltdown-hoax.txt │   │   │   │   ├── 20160810prospector1.txt │   │   │   │   ├── 20160810taser-ekg.txt │   │   │   │   ├── 20160810vr-social.txt │   │   │   │   ├── 20160811bello.txt │   │   │   │   ├── 20160811colonization.txt │   │   │   │   ├── 20160811drone-that-looks-like-a-face.txt │   │   │   │   ├── 20160811edges-orion.txt │   │   │   │   ├── 20160811elvencells.txt │   │   │   │   ├── 20160811Hala-Sultan-Tekke.txt │   │   │   │   ├── 20160811humpbacks.txt │   │   │   │   ├── 20160811martinostat.txt │   │   │   │   ├── 20160811neon-nickel.txt │   │   │   │   ├── 20160811retro-tno.txt │   │   │   │   ├── 20160811serbia-magic-spell.txt │   │   │   │   ├── 20160811titan-flooded-canyons.txt │   │   │   │   ├── 20160811yeah-science.txt │   │   │   │   ├── 20160812affectiveforecast.txt │   │   │   │   ├── 20160812avoid-germs.txt │   │   │   │   ├── 20160812CMV-control.txt │   │   │   │   ├── 20160812estream.txt │   │   │   │   ├── 20160812Mount-Lykaion-finding.txt │   │   │   │   ├── 20160812muonic-deutron.txt │   │   │   │   ├── 20160812not-so-bad.txt │   │   │   │   ├── 20160812Somniosus-microcephalus-.txt │   │   │   │   ├── 20160812touchpad.txt │   │   │   │   ├── 20160812venus-could-support-life.txt │   │   │   │   ├── 20160812zika-sperm.txt │   │   │   │   ├── 20160813ancient-mosaic-cyprus.txt │   │   │   │   ├── 20160813golden-leaf.txt │   │   │   │   ├── 20160813hubble-two-galaxies.txt │   │   │   │   ├── 20160813spy-hdd.txt │   │   │   │   ├── 20160813we-require-more-cameras.txt │   │   │   │   ├── 20160813Yet-another-sauropod.txt │   │   │   │   ├── 20160815200-spiders.txt │   │   │   │   ├── 20160815Borusci-Novgorod-trade.txt │   │   │   │   ├── 20160815C-Finder.txt │   │   │   │   ├── 20160815coral-bleeching.txt │   │   │   │   ├── 20160815eurocancer.txt │   │   │   │   ├── 20160815fuchsia.txt │   │   │   │   ├── 20160815imprinting.txt │   │   │   │   ├── 20160815kepler-spots.txt │   │   │   │   ├── 20160815levitation.txt │   │   │   │   ├── 20160815petmobile.txt │   │   │   │   ├── 20160815repair-protein.txt │   │   │   │   ├── 20160815slow-dance.txt │   │   │   │   ├── 20160816audi-green-light.txt │   │   │   │   ├── 20160816behave.txt │   │   │   │   ├── 20160816circavirus.txt │   │   │   │   ├── 20160816kids-found-the-ones-who-owe-them.txt │   │   │   │   ├── 20160816liquid-crack.txt │   │   │   │   ├── 20160816mc-1-lp.txt │   │   │   │   ├── 20160816omnicopter.txt │   │   │   │   ├── 20160816quantum-radiation-hawking.txt │   │   │   │   ├── 20160816quess.txt │   │   │   │   ├── 20160816renegade.txt │   │   │   │   ├── 20160816scientists-found-first-meteorite.txt │   │   │   │   ├── 20160816wooden-stohedge.txt │   │   │   │   ├── 20160817adult-words.txt │   │   │   │   ├── 20160817alloy.txt │   │   │   │   ├── 20160817carbontreerings.txt │   │   │   │   ├── 20160817ford.txt │   │   │   │   ├── 20160817hd-87646.txt │   │   │   │   ├── 20160817hololens-nes.txt │   │   │   │   ├── 20160817kernel.txt │   │   │   │   ├── 20160817majorana.txt │   │   │   │   ├── 20160817nasa-july.txt │   │   │   │   ├── 20160817nine-open-clusters.txt │   │   │   │   ├── 20160817not-so-gold.txt │   │   │   │   ├── 20160817reddit-ai.txt │   │   │   │   ├── 20160818Ama-XpertEye.txt │   │   │   │   ├── 20160818dont-do-it.txt │   │   │   │   ├── 20160818drone-taxi.txt │   │   │   │   ├── 20160818fins2fingers.txt │   │   │   │   ├── 20160818flight.txt │   │   │   │   ├── 20160818goat.txt │   │   │   │   ├── 20160818hooray.txt │   │   │   │   ├── 20160818instapression.txt │   │   │   │   ├── 20160818MoS2.txt │   │   │   │   ├── 20160818nova-v1213cen.txt │   │   │   │   ├── 20160818uber.txt │   │   │   │   ├── 20160819call-your-eggs.txt │   │   │   │   ├── 20160819Castor-foot.txt │   │   │   │   ├── 20160819chinese-supernova.txt │   │   │   │   ├── 20160819ez-finland.txt │   │   │   │   ├── 20160819ions-cooling.txt │   │   │   │   ├── 20160819lift.txt │   │   │   │   ├── 20160819nacreartificial.txt │   │   │   │   ├── 20160819otzi.txt │   │   │   │   ├── 20160819recodechurch.txt │   │   │   │   ├── 20160819Teotihuacan.txt │   │   │   │   ├── 20160819tough-mtb.txt │   │   │   │   ├── 20160820LHC-luminosity-110pc.txt │   │   │   │   ├── 20160820pentaquark.txt │   │   │   │   ├── 20160820t-rex-15-th.txt │   │   │   │   ├── 20160822aewc.txt │   │   │   │   ├── 20160822bavar.txt │   │   │   │   ├── 20160822carousel.txt │   │   │   │   ├── 20160822crisprmemo.txt │   │   │   │   ├── 20160822drones.txt │   │   │   │   ├── 20160822edible-pack.txt │   │   │   │   ├── 20160822fake-drugs.txt │   │   │   │   ├── 20160822Fort-Caroline.txt │   │   │   │   ├── 20160822minoga.txt │   │   │   │   ├── 20160822parkingene.txt │   │   │   │   ├── 20160822roskosmos.txt │   │   │   │   ├── 20160822rydberg-dimer.txt │   │   │   │   ├── 20160822Seldon-codex.txt │   │   │   │   ├── 20160822stellar-giant-birth.txt │   │   │   │   ├── 20160822tx.txt │   │   │   │   ├── 20160822wingtips.txt │   │   │   │   ├── 20160823andromeda.txt │   │   │   │   ├── 20160823bagpiper-lung.txt │   │   │   │   ├── 20160823bwb.txt │   │   │   │   ├── 20160823cooperation-in-chimpanze.txt │   │   │   │   ├── 20160823decon.txt │   │   │   │   ├── 20160823devbot.txt │   │   │   │   ├── 20160823fascinesprin.txt │   │   │   │   ├── 20160823laser.txt │   │   │   │   ├── 20160823medalphone.txt │   │   │   │   ├── 20160823Old-old-needle.txt │   │   │   │   ├── 20160823piton.txt │   │   │   │   ├── 20160823pubspace.txt │   │   │   │   ├── 20160823rnarnarna.txt │   │   │   │   ├── 20160823robot.txt │   │   │   │   ├── 20160823self-assembling-phone.txt │   │   │   │   ├── 20160823silence-will-fall.txt │   │   │   │   ├── 20160823swir.txt │   │   │   │   ├── 20160823trueairspeed.txt │   │   │   │   ├── 20160823windows.txt │   │   │   │   ├── 20160824carriages.txt │   │   │   │   ├── 20160824delphi-driveless.txt │   │   │   │   ├── 20160824dive.txt │   │   │   │   ├── 20160824fishing-on-java.txt │   │   │   │   ├── 20160824gender-houshold-chores.txt │   │   │   │   ├── 20160824icing.txt │   │   │   │   ├── 20160824lsd-word-retrieval.txt │   │   │   │   ├── 20160824microsporemegacell.txt │   │   │   │   ├── 20160824model-s-upgrade.txt │   │   │   │   ├── 20160824not700.txt │   │   │   │   ├── 20160824poweregg.txt │   │   │   │   ├── 20160824rapamycin.txt │   │   │   │   ├── 20160824trials.txt │   │   │   │   ├── 20160824Ursus-spelaeus-extinction-reason.txt │   │   │   │   ├── 20160824x32.txt │   │   │   │   ├── 20160825bps.txt │   │   │   │   ├── 20160825cell.txt │   │   │   │   ├── 20160825dexmo.txt │   │   │   │   ├── 20160825mars-is-red.txt │   │   │   │   ├── 20160825mhtk.txt │   │   │   │   ├── 20160825model400.txt │   │   │   │   ├── 20160825mother-languages.txt │   │   │   │   ├── 20160825NuTonomy-the-first.txt │   │   │   │   ├── 20160825safe.txt │   │   │   │   ├── 20160825soft-octopus.txt │   │   │   │   ├── 20160825solartohydrogen.txt │   │   │   │   ├── 20160825tbk1.txt │   │   │   │   ├── 20160825tre-dmn.txt │   │   │   │   ├── 20160826chembio.txt │   │   │   │   ├── 20160826chip.txt │   │   │   │   ├── 20160826eco-speed.txt │   │   │   │   ├── 20160826italian-publishing-house.txt │   │   │   │   ├── 20160826landslide-on-67p.txt │   │   │   │   ├── 20160826missile.txt │   │   │   │   ├── 20160826muss.txt │   │   │   │   ├── 20160826nospiders.txt │   │   │   │   ├── 20160826thought-controlled.txt │   │   │   │   ├── 20160826wheels.txt │   │   │   │   ├── 20160826zero-day-apple.txt │   │   │   │   ├── 20160827baidu.txt │   │   │   │   ├── 20160827bridge.txt │   │   │   │   ├── 20160827engine.txt │   │   │   │   ├── 20160827robot.txt │   │   │   │   ├── 20160827stratasys.txt │   │   │   │   ├── 20160827virtual.txt │   │   │   │   ├── 20160829Believe-in-meat.txt │   │   │   │   ├── 20160829chaotic-process-time-reversal.txt │   │   │   │   ├── 20160829chutes.txt │   │   │   │   ├── 20160829facebookgpu.txt │   │   │   │   ├── 20160829juno-1st-orbit.txt │   │   │   │   ├── 20160829pea.txt │   │   │   │   ├── 20160829rotor.txt │   │   │   │   ├── 20160829sperm-immunity.txt │   │   │   │   ├── 20160829Tridika.txt │   │   │   │   ├── 20160829tubes.txt │   │   │   │   ├── 20160829uav.txt │   │   │   │   ├── 20160829upbeat-music-influence.txt │   │   │   │   ├── 20160829vrheadset.txt │   │   │   │   ├── 201608304d-print.txt │   │   │   │   ├── 20160830animap.txt │   │   │   │   ├── 20160830blazar-i-choose-you.txt │   │   │   │   ├── 20160830cutter.txt │   │   │   │   ├── 20160830drug-lenses.txt │   │   │   │   ├── 20160830engine.txt │   │   │   │   ├── 20160830fall-out.txt │   │   │   │   ├── 20160830hawaii-experiment.txt │   │   │   │   ├── 20160830immerge.txt │   │   │   │   ├── 20160830Kiwi-diversification.txt │   │   │   │   ├── 20160830laser.txt │   │   │   │   ├── 20160830pull.txt │   │   │   │   ├── 20160830sao-ran-comment.txt │   │   │   │   ├── 20160830seti-project.txt │   │   │   │   ├── 20160830tiltrotor.txt │   │   │   │   ├── 20160830vr-control.txt │   │   │   │   ├── 20160831As3Si3.txt │   │   │   │   ├── 20160831brainmesh.txt │   │   │   │   ├── 20160831checks.txt │   │   │   │   ├── 20160831dogs-recognize-words.txt │   │   │   │   ├── 20160831drone.txt │   │   │   │   ├── 20160831mriya.txt │   │   │   │   ├── 20160831need-more-blood.txt │   │   │   │   ├── 20160831pvo.txt │   │   │   │   ├── 20160831sedna-second.txt │   │   │   │   ├── 20160831sentinel-hit.txt │   │   │   │   ├── 20160831ses-launch.txt │   │   │   │   ├── 20160831software.txt │   │   │   │   ├── 20160901aducanumab.txt │   │   │   │   ├── 20160901be-sure-to-wear-no-pedals-in-your-car.txt │   │   │   │   ├── 20160901bodytemp.txt │   │   │   │   ├── 20160901boeing.txt │   │   │   │   ├── 20160901dark-ages.txt │   │   │   │   ├── 20160901mriya2.txt │   │   │   │   ├── 20160901new-small-pterosaur.txt │   │   │   │   ├── 20160901plague-seq.txt │   │   │   │   ├── 20160901qf4.txt │   │   │   │   ├── 20160901radar.txt │   │   │   │   ├── 20160901space-afm.txt │   │   │   │   ├── 20160901spacex-explosion.txt │   │   │   │   ├── 20160901statistics.txt │   │   │   │   ├── 20160901stromatolites.txt │   │   │   │   ├── 20160902adaptive.txt │   │   │   │   ├── 20160902airlander.txt │   │   │   │   ├── 20160902ara-suspended.txt │   │   │   │   ├── 20160902baidu.txt │   │   │   │   ├── 20160902boeing.txt │   │   │   │   ├── 20160902ceres-volcanoes.txt │   │   │   │   ├── 20160902cooling-clothes.txt │   │   │   │   ├── 20160902cuttlefishcount.txt │   │   │   │   ├── 20160902Gambling-wolves.txt │   │   │   │   ├── 20160902robot-whip.txt │   │   │   │   ├── 20160902su33.txt │   │   │   │   ├── 20160902trash.txt │   │   │   │   ├── 20160902water-on-ceres-oxo.txt │   │   │   │   ├── 20160903december-will-show.txt │   │   │   │   ├── 20160903juno-new-jupiter-shots.txt │   │   │   │   ├── 20160903nanotube-domine.txt │   │   │   │   ├── 20160905ant-dystopia.txt │   │   │   │   ├── 20160905brem.txt │   │   │   │   ├── 20160905checks.txt │   │   │   │   ├── 20160905cuore.txt │   │   │   │   ├── 20160905HSBC-selfie.txt │   │   │   │   ├── 20160905new-taste.txt │   │   │   │   ├── 20160905philae-found.txt │   │   │   │   ├── 20160905prince-of-the-universe.txt │   │   │   │   ├── 20160905Rapid-evolution-of-devils.txt │   │   │   │   ├── 20160905segmentvirus.txt │   │   │   │   ├── 20160906BZ-PZ.txt │   │   │   │   ├── 20160906fathom-one.txt │   │   │   │   ├── 20160906InSight-go.txt │   │   │   │   ├── 20160906lemurs-hibernate-or-sleep.txt │   │   │   │   ├── 20160906magnetobrain.txt │   │   │   │   ├── 20160906roadmapping.txt │   │   │   │   ├── 20160906second-tabby.txt │   │   │   │   ├── 20160906shalebacrevo.txt │   │   │   │   ├── 20160906sion.txt │   │   │   │   ├── 20160907dji-maic.txt │   │   │   │   ├── 20160907double-trouble.txt │   │   │   │   ├── 20160907Endangered-vulnerable.txt │   │   │   │   ├── 20160907fusion-record.txt │   │   │   │   ├── 20160907HMS-Tarpon.txt │   │   │   │   ├── 20160907iphone7.txt │   │   │   │   ├── 20160907mapspatial.txt │   │   │   │   ├── 20160907nopainnogain.txt │   │   │   │   ├── 20160907squeeze.txt │   │   │   │   ├── 20160907vision-van.txt │   │   │   │   ├── 20160908crops.txt │   │   │   │   ├── 20160908damselfish-songs.txt │   │   │   │   ├── 20160908hairprints.txt │   │   │   │   ├── 20160908luh.txt │   │   │   │   ├── 20160908mothership.txt │   │   │   │   ├── 20160908notsonaturalselection.txt │   │   │   │   ├── 20160908osiris-rex.txt │   │   │   │   ├── 20160908safety.txt │   │   │   │   ├── 20160908solid-organic.txt │   │   │   │   ├── 20160908titan-cassini.txt │   │   │   │   ├── 20160908uavs.txt │   │   │   │   ├── 20160909blackwing.txt │   │   │   │   ├── 20160909bomber.txt │   │   │   │   ├── 20160909dark-matter.txt │   │   │   │   ├── 20160909decnef.txt │   │   │   │   ├── 20160909dna-stacking-measured.txt │   │   │   │   ├── 20160909drones.txt │   │   │   │   ├── 20160909fidget.txt │   │   │   │   ├── 20160909Henry-the-winner.txt │   │   │   │   ├── 20160909kupi-moyu-shavermu.txt │   │   │   │   ├── 20160909megapetridish.txt │   │   │   │   ├── 20160909obamai.txt │   │   │   │   ├── 20160909online-osiris.txt │   │   │   │   ├── 20160909osiris-start.txt │   │   │   │   ├── 20160910dronesurfing.txt │   │   │   │   ├── 20160910htc-wifive.txt │   │   │   │   ├── 20160910prodrone.txt │   │   │   │   ├── 20160910unity.txt │   │   │   │   ├── 20160912Balansing-Atlas.txt │   │   │   │   ├── 20160912iq-level.txt │   │   │   │   ├── 20160912nanofish.txt │   │   │   │   ├── 20160912protection.txt │   │   │   │   ├── 20160912radars.txt │   │   │   │   ├── 20160912radar.txt │   │   │   │   ├── 20160912sharksaw.txt │   │   │   │   ├── 20160912The-Ox.txt │   │   │   │   ├── 20160912uav.txt │   │   │   │   ├── 20160912Yeast-domestication.txt │   │   │   │   ├── 20160913afm-for-braf.txt │   │   │   │   ├── 20160913amazon-new-glenn.txt │   │   │   │   ├── 20160913Another-car-park-tomb.txt │   │   │   │   ├── 20160913blind.txt │   │   │   │   ├── 20160913closed.txt │   │   │   │   ├── 20160913HMS-Terror-found.txt │   │   │   │   ├── 20160913languages.txt │   │   │   │   ├── 20160913milky-way-simulation.txt │   │   │   │   ├── 20160913missile.txt │   │   │   │   ├── 20160913monkeytype.txt │   │   │   │   ├── 20160913motor.txt │   │   │   │   ├── 20160913robots.txt │   │   │   │   ├── 20160913tide-quake.txt │   │   │   │   ├── 20160913transform-it.txt │   │   │   │   ├── 20160913viralmuscle.txt │   │   │   │   ├── 20160914august-burns.txt │   │   │   │   ├── 20160914close-your-windows.txt │   │   │   │   ├── 20160914comma.txt │   │   │   │   ├── 20160914dronessar.txt │   │   │   │   ├── 20160914gcas.txt │   │   │   │   ├── 20160914google-ai-voice.txt │   │   │   │   ├── 20160914hinsc.txt │   │   │   │   ├── 20160914peeronimus.txt │   │   │   │   ├── 20160914stellar-evolution.txt │   │   │   │   ├── 20160914submunitions.txt │   │   │   │   ├── 20160914toothedbrain.txt │   │   │   │   ├── 20160914without.txt │   │   │   │   ├── 20160915autonomous.txt │   │   │   │   ├── 20160915build-em-up.txt │   │   │   │   ├── 20160915chewing-stingray.txt │   │   │   │   ├── 20160915colour-matters.txt │   │   │   │   ├── 20160915drones.txt │   │   │   │   ├── 20160915helicopter.txt │   │   │   │   ├── 20160915mordor-mystery.txt │   │   │   │   ├── 20160915Oldest-indigo-textile.txt │   │   │   │   ├── 20160915print-and-shoot.txt │   │   │   │   ├── 20160915second-species-of-raven.txt │   │   │   │   ├── 20160915success.txt │   │   │   │   ├── 20160915uav.txt │   │   │   │   ├── 20160916airframe.txt │   │   │   │   ├── 20160916crowd-behaviour.txt │   │   │   │   ├── 20160916drones.txt │   │   │   │   ├── 20160916dungitoring.txt │   │   │   │   ├── 20160916extrememicrobeshome.txt │   │   │   │   ├── 20160916fishing-watch.txt │   │   │   │   ├── 20160916lhbdelusion.txt │   │   │   │   ├── 20160916pack.txt │   │   │   │   ├── 20160916Pope-increased-chicken-number.txt │   │   │   │   ├── 20160916robot.txt │   │   │   │   ├── 20160916so-old.txt │   │   │   │   ├── 20160917admit-it.txt │   │   │   │   ├── 20160917again.txt │   │   │   │   ├── 20160917no-droppings.txt │   │   │   │   ├── 20160917oldest-hooks.txt │   │   │   │   ├── 20160919ads.txt │   │   │   │   ├── 20160919brain-structure.txt │   │   │   │   ├── 20160919britecloud.txt │   │   │   │   ├── 20160919flaps.txt │   │   │   │   ├── 20160919gmo-pesticides.txt │   │   │   │   ├── 20160919procratinatebrain.txt │   │   │   │   ├── 20160919spz.txt │   │   │   │   ├── 20160920antikythera-skeleton.txt │   │   │   │   ├── 20160920b21.txt │   │   │   │   ├── 20160920bicycle.txt │   │   │   │   ├── 20160920bio.txt │   │   │   │   ├── 20160920conversuslik.txt │   │   │   │   ├── 20160920cussion.txt │   │   │   │   ├── 20160920dmthypoxia.txt │   │   │   │   ├── 20160920drone.txt │   │   │   │   ├── 20160920foldit-rulez.txt │   │   │   │   ├── 20160920GoPro-HERO5.txt │   │   │   │   ├── 20160920karma.txt │   │   │   │   ├── 20160920miniatur.txt │   │   │   │   ├── 20160920pigeonspellingchamps.txt │   │   │   │   ├── 20160920shoot.txt │   │   │   │   ├── 20160920yes-they-could.txt │   │   │   │   ├── 20160921brain-atlas.txt │   │   │   │   ├── 20160921cityphotonteleport.txt │   │   │   │   ├── 20160921danger.txt │   │   │   │   ├── 20160921doubtful-peg.txt │   │   │   │   ├── 20160921engine.txt │   │   │   │   ├── 20160921eq-radio.txt │   │   │   │   ├── 20160921gun.txt │   │   │   │   ├── 20160921martian-lakes.txt │   │   │   │   ├── 20160921mega.txt │   │   │   │   ├── 20160921stop-right-here.txt │   │   │   │   ├── 20160921truenorthcnn.txt │   │   │   │   ├── 20160921why-so-tough.txt │   │   │   │   ├── 20160922acoustic-holograms.txt │   │   │   │   ├── 20160922aircarrier.txt │   │   │   │   ├── 20160922airman.txt │   │   │   │   ├── 20160922at-last.txt │   │   │   │   ├── 20160922Ein-Gedi-scroll.txt │   │   │   │   ├── 20160922hydrogen.txt │   │   │   │   ├── 20160922jpals.txt │   │   │   │   ├── 20160922Otzi-speaks.txt │   │   │   │   ├── 20160922outofafrics.txt │   │   │   │   ├── 20160922sgnl.txt │   │   │   │   ├── 20160922symbolhorses.txt │   │   │   │   ├── 20160922the-cure.txt │   │   │   │   ├── 20160922tree-drones.txt │   │   │   │   ├── 20160923armed.txt │   │   │   │   ├── 20160923florecaust.txt │   │   │   │   ├── 20160923gremlins.txt │   │   │   │   ├── 20160923ig-nobel-prize.txt │   │   │   │   ├── 20160923lego-drone.txt │   │   │   │   ├── 20160923nasa-golden-records.txt │   │   │   │   ├── 20160923pluto-heart-reasons.txt │   │   │   │   ├── 20160923rotating-universe.txt │   │   │   │   ├── 20160923tanker.txt │   │   │   │   ├── 20160923tesla.txt │   │   │   │   ├── 20160923the-delftacopter.txt │   │   │   │   ├── 20160924grenade.txt │   │   │   │   ├── 20160924power.txt │   │   │   │   ├── 20160924spacex.txt │   │   │   │   ├── 20160924speed.txt │   │   │   │   ├── 20160924wingmen.txt │   │   │   │   ├── 20160926crisprchronology.txt │   │   │   │   ├── 20160926europa-ocean-hubble.txt │   │   │   │   ├── 20160926extinguish.txt │   │   │   │   ├── 20160926landing.txt │   │   │   │   ├── 20160926lavatory.txt │   │   │   │   ├── 20160926nano-tattoo.txt │   │   │   │   ├── 20160926nasa-europa-announce.txt │   │   │   │   ├── 20160926neuroshop.txt │   │   │   │   ├── 20160926photonrecord-data-storage.txt │   │   │   │   ├── 20160926radio-FAST.txt │   │   │   │   ├── 20160926test-fire.txt │   │   │   │   ├── 20160926trans-lioness.txt │   │   │   │   ├── 20160926v247.txt │   │   │   │   ├── 20160927chain-bots.txt │   │   │   │   ├── 20160927gremlins.txt │   │   │   │   ├── 20160927mitobaby.txt │   │   │   │   ├── 20160927morningsick.txt │   │   │   │   ├── 20160927neuro-loon.txt │   │   │   │   ├── 20160927quantum.txt │   │   │   │   ├── 20160927sats.txt │   │   │   │   ├── 20160927trials.txt │   │   │   │   ├── 20160927two-stars-one-planet.txt │   │   │   │   ├── 20160927youtube-go.txt │   │   │   │   ├── 20160928ato.txt │   │   │   │   ├── 20160928cat-movie-meow-meow.txt │   │   │   │   ├── 20160928mavic.txt │   │   │   │   ├── 20160928neurogoogletrans.txt │   │   │   │   ├── 20160928nissan-chair.txt │   │   │   │   ├── 20160928nocancersniff.txt │   │   │   │   ├── 20160928ostrichprot.txt │   │   │   │   ├── 20160928pass.txt │   │   │   │   ├── 20160928robot.txt │   │   │   │   ├── 20160928sounds.txt │   │   │   │   ├── 20160928tectonically-active.txt │   │   │   │   ├── 20160929bb8.txt │   │   │   │   ├── 20160929boneink.txt │   │   │   │   ├── 20160929first.txt │   │   │   │   ├── 20160929fmrp.txt │   │   │   │   ├── 20160929foreign-language-morality.txt │   │   │   │   ├── 20160929lifesogood.txt │   │   │   │   ├── 20160929print.txt │   │   │   │   ├── 20160929rosetta-finale.txt │   │   │   │   ├── 20160929tethered-drone.txt │   │   │   │   ├── 20160929uav.txt │   │   │   │   ├── 20160929yak152.txt │   │   │   │   ├── 20160930antennas.txt │   │   │   │   ├── 20160930eLife-fee.txt │   │   │   │   ├── 20160930last-photo-rosetta.txt │   │   │   │   ├── 20160930machine-vision.txt │   │   │   │   ├── 20160930munition.txt │   │   │   │   ├── 20160930orwl.txt │   │   │   │   ├── 20160930rosetta-collision-finish.txt │   │   │   │   ├── 20160930rosetta-collision-start.txt │   │   │   │   ├── 20160930rosetta-collision-time.txt │   │   │   │   ├── 20160930rosetta-finale-esa-confirm.txt │   │   │   │   ├── 20160930star-has-two-arms.txt │   │   │   │   ├── 20160930turbine.txt │   │   │   │   ├── 20160930two-times-longer.txt │   │   │   │   ├── 20161001abandon-shepard.txt │   │   │   │   ├── 20161001drone-rescue.txt │   │   │   │   ├── 20161001flexible.txt │   │   │   │   ├── 20161001revolt.txt │   │   │   │   ├── 20161003bit-commitment-24-hours.txt │   │   │   │   ├── 20161003bullets.txt │   │   │   │   ├── 20161003jb10.txt │   │   │   │   ├── 20161003physionobel.txt │   │   │   │   ├── 20161003rassor.txt │   │   │   │   ├── 20161003rifle.txt │   │   │   │   ├── 20161003rosetta-stone.txt │   │   │   │   ├── 20161003solar.txt │   │   │   │   ├── 20161003sphere-mono.txt │   │   │   │   ├── 20161003uav.txt │   │   │   │   ├── 20161003wind.txt │   │   │   │   ├── 20161003yeast-map.txt │   │   │   │   ├── 20161004102-no.txt │   │   │   │   ├── 20161004cake-drones.txt │   │   │   │   ├── 20161004controls.txt │   │   │   │   ├── 20161004fate.txt │   │   │   │   ├── 20161004hold-the-door.txt │   │   │   │   ├── 20161004hydrogen.txt │   │   │   │   ├── 20161004nobel-prize-physics.txt │   │   │   │   ├── 20161004pixel.txt │   │   │   │   ├── 20161004protocellshunt.txt │   │   │   │   ├── 20161004qf16.txt │   │   │   │   ├── 20161004shock-absorbing.txt │   │   │   │   ├── 20161004submarine.txt │   │   │   │   ├── 20161005china-space-tourism.txt │   │   │   │   ├── 20161005daydream.txt │   │   │   │   ├── 20161005diona-ocean.txt │   │   │   │   ├── 20161005nobel-prize-chemistry.txt │   │   │   │   ├── 20161005pompeii-reconstruction.txt │   │   │   │   ├── 20161005pulltherope.txt │   │   │   │   ├── 20161005robot.txt │   │   │   │   ├── 20161005scan.txt │   │   │   │   ├── 20161005shuttle.txt │   │   │   │   ├── 20161005toxi-chip.txt │   │   │   │   ├── 20161005tr75.txt │   │   │   │   ├── 20161005where-is-my-vr-biscuits.txt │   │   │   │   ├── 20161005yawn-longer.txt │   │   │   │   ├── 201610064ekolka-vozidlo.txt │   │   │   │   ├── 20161006botocontinence.txt │   │   │   │   ├── 20161006g12h.txt │   │   │   │   ├── 20161006helicopter.txt │   │   │   │   ├── 20161006justsoastronomy.txt │   │   │   │   ├── 20161006kabuku-honda.txt │   │   │   │   ├── 20161006literature-nobel.txt │   │   │   │   ├── 20161006new-shepard.txt │   │   │   │   ├── 20161006oh-no.txt │   │   │   │   ├── 20161006onera.txt │   │   │   │   ├── 20161006parkeyboard.txt │   │   │   │   ├── 20161006quantum-connection.txt │   │   │   │   ├── 20161006timewhatistime.txt │   │   │   │   ├── 20161006valor.txt │   │   │   │   ├── 20161007filter.txt │   │   │   │   ├── 20161007hopping-robot.txt │   │   │   │   ├── 20161007oculus.txt │   │   │   │   ├── 20161007play-the-game.txt │   │   │   │   ├── 20161007rest-in-weed.txt │   │   │   │   ├── 20161007santa-cruz.txt │   │   │   │   ├── 20161007solitoneasymethod.txt │   │   │   │   ├── 20161007spartan.txt │   │   │   │   ├── 20161007uav.txt │   │   │   │   ├── 20161007wandering-black-hole.txt │   │   │   │   ├── 20161008cnt-stem.txt │   │   │   │   ├── 20161008drink-beer-and-die.txt │   │   │   │   ├── 20161008fund-researchers.txt │   │   │   │   ├── 20161008good-to-go.txt │   │   │   │   ├── 201610101-nm-transistor.txt │   │   │   │   ├── 20161010airplane.txt │   │   │   │   ├── 20161010automate.txt │   │   │   │   ├── 20161010ban-ice.txt │   │   │   │   ├── 20161010negative-refraction.txt │   │   │   │   ├── 20161010nobel-economics.txt │   │   │   │   ├── 20161010robot.txt │   │   │   │   ├── 20161010vityazi.txt │   │   │   │   ├── 20161010weather.txt │   │   │   │   ├── 20161011bb-8-gold.txt │   │   │   │   ├── 20161011bombsights.txt │   │   │   │   ├── 20161011concrete.txt │   │   │   │   ├── 20161011convertiplane.txt │   │   │   │   ├── 20161011gears.txt │   │   │   │   ├── 20161011hydrogen-cooling.txt │   │   │   │   ├── 20161011o-privet.txt │   │   │   │   ├── 20161011phosphorenauxetic.txt │   │   │   │   ├── 20161011viknano.txt │   │   │   │   ├── 20161012blackspiderwolba.txt │   │   │   │   ├── 20161012e-sticker.txt │   │   │   │   ├── 20161012falcon-eight-plus.txt │   │   │   │   ├── 20161012hydrogen-bond-vs-uv.txt │   │   │   │   ├── 20161012keep-calm-and-ditch-humans.txt │   │   │   │   ├── 20161012mice-songs.txt │   │   │   │   ├── 20161012no-pain.txt │   │   │   │   ├── 20161012oocyte-for-youth.txt │   │   │   │   ├── 20161012RR-lyrae.txt │   │   │   │   ├── 20161012uavs.txt │   │   │   │   ├── 20161013co2-to-ethanol.txt │   │   │   │   ├── 20161013five-in-one.txt │   │   │   │   ├── 20161013gas.txt │   │   │   │   ├── 20161013literature-nobel.txt │   │   │   │   ├── 20161013lunar-RO-imact-rate.txt │   │   │   │   ├── 20161013m3d.txt │   │   │   │   ├── 20161013modal-vr.txt │   │   │   │   ├── 20161013proxima-centauri-sunlike.txt │   │   │   │   ├── 20161013sat.txt │   │   │   │   ├── 20161013scacrispr.txt │   │   │   │   ├── 20161013STEMisotope.txt │   │   │   │   ├── 20161013syrinx.txt │   │   │   │   ├── 20161013weapon.txt │   │   │   │   ├── 20161014agroworm.txt │   │   │   │   ├── 20161014airspace.txt │   │   │   │   ├── 20161014feel-the-touch.txt │   │   │   │   ├── 20161014obc.txt │   │   │   │   ├── 20161014photo-cooler.txt │   │   │   │   ├── 20161014whammyphone.txt │   │   │   │   ├── 20161014x37b.txt │   │   │   │   ├── 20161015lego-hologram.txt │   │   │   │   ├── 20161015rqc-diamond-platform.txt │   │   │   │   ├── 20161015safranin.txt │   │   │   │   ├── 20161016ESA-confirm.txt │   │   │   │   ├── 20161016juno-postponed.txt │   │   │   │   ├── 20161016Schiaparelli-descent.txt │   │   │   │   ├── 20161016telemetry-restored.txt │   │   │   │   ├── 20161016TGO-no-telemetry.txt │   │   │   │   ├── 20161017acoustic-levitation-display.txt │   │   │   │   ├── 20161017blood.txt │   │   │   │   ├── 20161017inst-singapore.txt │   │   │   │   ├── 20161017kengoro.txt │   │   │   │   ├── 20161017ltev.txt │   │   │   │   ├── 20161017quadro.txt │   │   │   │   ├── 20161017shenzhou-11-success.txt │   │   │   │   ├── 20161017shrapnel.txt │   │   │   │   ├── 20161017tgo-maneur.txt │   │   │   │   ├── 20161017universal.txt │   │   │   │   ├── 20161017vertical.txt │   │   │   │   ├── 20161017XeN4.txt │   │   │   │   ├── 201610181000-watt.txt │   │   │   │   ├── 20161018drones.txt │   │   │   │   ├── 20161018fish-can-be-fooled.txt │   │   │   │   ├── 20161018hornet.txt │   │   │   │   ├── 20161018l91.txt │   │   │   │   ├── 20161018pilotless.txt │   │   │   │   ├── 20161018robots.txt │   │   │   │   ├── 20161018Take-rod-and-help-yourself.txt │   │   │   │   ├── 20161018tomato-taste-the-same-but-flavour-less.txt │   │   │   │   ├── 20161019drone.txt │   │   │   │   ├── 20161019eccentric-crank-rover.txt │   │   │   │   ├── 20161019extracellular.txt │   │   │   │   ├── 20161019finally-solved.txt │   │   │   │   ├── 20161019fitness-faker.txt │   │   │   │   ├── 20161019inflapression.txt │   │   │   │   ├── 20161019juno-news.txt │   │   │   │   ├── 20161019metro.txt │   │   │   │   ├── 20161019net.txt │   │   │   │   ├── 20161019new-crew.txt │   │   │   │   ├── 20161019robot.txt │   │   │   │   ├── 20161019rodents.txt │   │   │   │   ├── 20161019Schiaparelli-atmosphere.txt │   │   │   │   ├── 20161019tesla.txt │   │   │   │   ├── 20161019TGO-orbital-capture.txt │   │   │   │   ├── 20161019wisent.txt │   │   │   │   ├── 20161020airblock.txt │   │   │   │   ├── 20161020autopilot.txt │   │   │   │   ├── 20161020capuchins-flake-tools.txt │   │   │   │   ├── 20161020deformable.txt │   │   │   │   ├── 20161020drive-me-closer.txt │   │   │   │   ├── 20161020feel-my-pain.txt │   │   │   │   ├── 20161020juno-cloud.txt │   │   │   │   ├── 20161020kcz.txt │   │   │   │   ├── 20161020robocut.txt │   │   │   │   ├── 20161020sciaparelli-mars.txt │   │   │   │   ├── 20161020shift-it.txt │   │   │   │   ├── 20161020speech-recognition.txt │   │   │   │   ├── 20161020submarine.txt │   │   │   │   ├── 20161020x-ray-flares.txt │   │   │   │   ├── 20161021azure-winged-magpies.txt │   │   │   │   ├── 20161021biotechnojeylogy.txt │   │   │   │   ├── 20161021bli.txt │   │   │   │   ├── 20161021cars.txt │   │   │   │   ├── 20161021ge9x.txt │   │   │   │   ├── 20161021Great-revolt-breach.txt │   │   │   │   ├── 20161021lomonosov-and-master.txt │   │   │   │   ├── 20161021neural-porn.txt │   │   │   │   ├── 20161021point-of-care.txt │   │   │   │   ├── 20161021robot.txt │   │   │   │   ├── 20161021schiaparelli-crater.txt │   │   │   │   ├── 20161021scorpion.txt │   │   │   │   ├── 20161021stomp-o-matic.txt │   │   │   │   ├── 20161021zooids.txt │   │   │   │   ├── 20161022microrocket.txt │   │   │   │   ├── 20161022saturn-hexagon-change.txt │   │   │   │   ├── 20161022subfs.txt │   │   │   │   ├── 20161024accelerating-or-not.txt │   │   │   │   ├── 20161024airtaxi.txt │   │   │   │   ├── 20161024astronomers-oldest-disk.txt │   │   │   │   ├── 20161024cctv.txt │   │   │   │   ├── 20161024cocoa-ok.txt │   │   │   │   ├── 20161024drones.txt │   │   │   │   ├── 20161024marlowe-shakespeare.txt │   │   │   │   ├── 20161024rebreather.txt │   │   │   │   ├── 20161024sarmat.txt │   │   │   │   ├── 20161024stallion.txt │   │   │   │   ├── 20161024star-shrink.txt │   │   │   │   ├── 20161024Stone-map.txt │   │   │   │   ├── 2016102540-shipwrecks.txt │   │   │   │   ├── 20161025agr-decoys.txt │   │   │   │   ├── 20161025AI-predict.txt │   │   │   │   ├── 20161025blueleaves.txt │   │   │   │   ├── 20161025buble-nuclei.txt │   │   │   │   ├── 20161025femalco.txt │   │   │   │   ├── 20161025heart-on-chip.txt │   │   │   │   ├── 20161025light-bulb.txt │   │   │   │   ├── 20161025linux-closed.txt │   │   │   │   ├── 20161025oceania.txt │   │   │   │   ├── 20161025pack.txt │   │   │   │   ├── 20161025print.txt │   │   │   │   ├── 20161025procover.txt │   │   │   │   ├── 20161025singapore-pilot.txt │   │   │   │   ├── 20161025talons.txt │   │   │   │   ├── 20161025vests.txt │   │   │   │   ├── 20161026electric-current.txt │   │   │   │   ├── 20161026gearbox.txt │   │   │   │   ├── 20161026lie-more.txt │   │   │   │   ├── 20161026long-before.txt │   │   │   │   ├── 20161026metameta.txt │   │   │   │   ├── 20161026otto.txt │   │   │   │   ├── 20161026pna.txt │   │   │   │   ├── 20161026siberianparrot.txt │   │   │   │   ├── 20161026wing.txt │   │   │   │   ├── 20161026xiaomi.txt │   │   │   │   ├── 20161026zh2.txt │   │   │   │   ├── 20161027bounced.txt │   │   │   │   ├── 20161027Cave-lions-pelts.txt │   │   │   │   ├── 20161027dance-your-phd.txt │   │   │   │   ├── 20161027drop-splash.txt │   │   │   │   ├── 20161027gel-tetris.txt │   │   │   │   ├── 20161027giant-vacuum-cleaner.txt │   │   │   │   ├── 20161027guppy.txt │   │   │   │   ├── 20161027hiv-usa.txt │   │   │   │   ├── 20161027Jerusalem-note.txt │   │   │   │   ├── 20161027knees.txt │   │   │   │   ├── 20161027red-dwarfs.txt │   │   │   │   ├── 20161027refueling.txt │   │   │   │   ├── 20161027stylechangegoogle.txt │   │   │   │   ├── 20161027surface-studio.txt │   │   │   │   ├── 20161027tuning.txt │   │   │   │   ├── 20161028aircraftcarrier.txt │   │   │   │   ├── 20161028airtaxi.txt │   │   │   │   ├── 20161028apus-apus.txt │   │   │   │   ├── 20161028bonoboadmixture.txt │   │   │   │   ├── 20161028cmb.txt │   │   │   │   ├── 20161028comma-in-coma.txt │   │   │   │   ├── 20161028corvette.txt │   │   │   │   ├── 20161028First-fossilised-brain.txt │   │   │   │   ├── 20161028izdelie.txt │   │   │   │   ├── 20161028mare-orientale.txt │   │   │   │   ├── 20161028new-horizons.txt │   │   │   │   ├── 20161028no-feedback.txt │   │   │   │   ├── 20161028pumpkin-stars.txt │   │   │   │   ├── 20161028schiaparelli-crater-2.txt │   │   │   │   ├── 20161028smoker-on-chip.txt │   │   │   │   ├── 20161028sovereignty.txt │   │   │   │   ├── 20161028telegram-youre-next.txt │   │   │   │   ├── 20161028thinkingsoil.txt │   │   │   │   ├── 20161029extender.txt │   │   │   │   ├── 20161029packs.txt │   │   │   │   ├── 20161029tiles.txt │   │   │   │   ├── 20161029uavs.txt │   │   │   │   ├── 20161029wave.txt │   │   │   │   ├── 20161031777x.txt │   │   │   │   ├── 20161031anthropomorphism.txt │   │   │   │   ├── 20161031asd-mtdna.txt │   │   │   │   ├── 20161031bus.txt │   │   │   │   ├── 20161031chain.txt │   │   │   │   ├── 20161031falcon-anomaly.txt │   │   │   │   ├── 20161031faraday-future.txt │   │   │   │   ├── 20161031Mo4Pb4VSbS15.txt │   │   │   │   ├── 20161031placebo-within-brain.txt │   │   │   │   ├── 20161031teraegg.txt │   │   │   │   ├── 20161031tiltrotor.txt │   │   │   │   ├── 20161031zee.txt │   │   │   │   ├── 20161101accept-friend-request.txt │   │   │   │   ├── 20161101birth-of-moon.txt │   │   │   │   ├── 20161101crowded-cell.txt │   │   │   │   ├── 20161101flaps.txt │   │   │   │   ├── 20161101fluoutbreaks.txt │   │   │   │   ├── 20161101learn-and-live.txt │   │   │   │   ├── 20161101piccolissimo.txt │   │   │   │   ├── 20161101saturn-rings.txt │   │   │   │   ├── 20161101spinach.txt │   │   │   │   ├── 20161101tango-consumer.txt │   │   │   │   ├── 20161101volvo-camouflage.txt │   │   │   │   ├── 20161102amurleopard.txt │   │   │   │   ├── 20161102batstradeoff.txt │   │   │   │   ├── 20161102blocks.txt │   │   │   │   ├── 20161102c929.txt │   │   │   │   ├── 20161102fighter.txt │   │   │   │   ├── 20161102gauge.txt │   │   │   │   ├── 20161102igzo-fem-lens.txt │   │   │   │   ├── 20161102it-will-be-fine.txt │   │   │   │   ├── 20161102kite.txt │   │   │   │   ├── 20161102lanscape-popularity.txt │   │   │   │   ├── 20161102nanodrum.txt │   │   │   │   ├── 20161102sheets-n-ramps.txt │   │   │   │   ├── 20161102uber-discrimination.txt │   │   │   │   ├── 20161102yandex-ai-wow.txt │   │   │   │   ├── 201611033d-printed-house.txt │   │   │   │   ├── 20161103africanstriped.txt │   │   │   │   ├── 20161103Arabidpsis-stem.txt │   │   │   │   ├── 20161103diffusioosmosis.txt │   │   │   │   ├── 20161103eye.txt │   │   │   │   ├── 20161103face-on.txt │   │   │   │   ├── 20161103glasses.txt │   │   │   │   ├── 20161103hololens.txt │   │   │   │   ├── 20161103prints.txt │   │   │   │   ├── 20161103schiaparelli-crater-3-colour.txt │   │   │   │   ├── 20161103spud.txt │   │   │   │   ├── 20161103usv.txt │   │   │   │   ├── 20161104hue.txt │   │   │   │   ├── 20161104magnetic-ink.txt │   │   │   │   ├── 20161104police-bumper.txt │   │   │   │   ├── 20161104rem-or-non-rem.txt │   │   │   │   ├── 20161107arctic.txt │   │   │   │   ├── 20161107CaFe2As2superconductor.txt │   │   │   │   ├── 20161107candida-auris.txt │   │   │   │   ├── 20161107days.txt │   │   │   │   ├── 20161107drones.txt │   │   │   │   ├── 20161107ferry.txt │   │   │   │   ├── 20161107gamma-rays-source.txt │   │   │   │   ├── 20161107hell-its-about-time.txt │   │   │   │   ├── 20161107more-virulent.txt │   │   │   │   ├── 20161107nanolaser-dye.txt │   │   │   │   ├── 20161107pHe.txt │   │   │   │   ├── 20161107spine-repair.txt │   │   │   │   ├── 20161107that-fish.txt │   │   │   │   ├── 20161108algaefishing.txt │   │   │   │   ├── 20161108auto.txt │   │   │   │   ├── 20161108book-cover.txt │   │   │   │   ├── 20161108DIY-skills.txt │   │   │   │   ├── 20161108doublecore.txt │   │   │   │   ├── 20161108earworms.txt │   │   │   │   ├── 20161108emdrive-to-be.txt │   │   │   │   ├── 20161108flexfoil.txt │   │   │   │   ├── 20161108lips-reading-ai.txt │   │   │   │   ├── 20161108metamaterial-chip.txt │   │   │   │   ├── 20161108readingglasses.txt │   │   │   │   ├── 20161108theoryofmind.txt │   │   │   │   ├── 20161108why-puked.txt │   │   │   │   ├── 20161108window.txt │   │   │   │   ├── 20161108zikv-117.txt │   │   │   │   ├── 201611093dteeth.txt │   │   │   │   ├── 20161109babysitters.txt │   │   │   │   ├── 20161109betaglobins.txt │   │   │   │   ├── 20161109birds-speed-record.txt │   │   │   │   ├── 20161109Cheese-disgust.txt │   │   │   │   ├── 20161109detector.txt │   │   │   │   ├── 20161109earth-invertion.txt │   │   │   │   ├── 20161109jammer.txt │   │   │   │   ├── 20161109mimics-differences.txt │   │   │   │   ├── 20161109protoplanetary-structure.txt │   │   │   │   ├── 20161109quantity-matters.txt │   │   │   │   ├── 20161109radar.txt │   │   │   │   ├── 20161109trials.txt │   │   │   │   ├── 20161110adversary.txt │   │   │   │   ├── 20161110books.txt │   │   │   │   ├── 20161110forget-it.txt │   │   │   │   ├── 20161110hiv-on-chip.txt │   │   │   │   ├── 20161110implants.txt │   │   │   │   ├── 20161110microswimmers.txt │   │   │   │   ├── 20161110mks.txt │   │   │   │   ├── 20161110narwhal.txt │   │   │   │   ├── 20161110predix.txt │   │   │   │   ├── 20161110Starch-dogs.txt │   │   │   │   ├── 20161110turkey.txt │   │   │   │   ├── 20161111aim2.txt │   │   │   │   ├── 20161111atmosphere-features-saturn.txt │   │   │   │   ├── 20161111beagle-2-so-close.txt │   │   │   │   ├── 20161111cyclogyro.txt │   │   │   │   ├── 20161111game.txt │   │   │   │   ├── 20161111leprosy.txt │   │   │   │   ├── 20161111onboard.txt │   │   │   │   ├── 20161111Out-of-Africa-adaptation.txt │   │   │   │   ├── 20161111single-molecule-cavity.txt │   │   │   │   ├── 20161111smart.txt │   │   │   │   ├── 20161111ticklishness.txt │   │   │   │   ├── 20161111Tongtianlong-limosus.txt │   │   │   │   ├── 20161111will-you-die-from-flu.txt │   │   │   │   ├── 20161112british-science.txt │   │   │   │   ├── 20161114ai-learns-about-physical-properties.txt │   │   │   │   ├── 20161114ara.txt │   │   │   │   ├── 20161114atomic-gravimeter.txt │   │   │   │   ├── 20161114black-holes-influence.txt │   │   │   │   ├── 20161114Chimp-fathers.txt │   │   │   │   ├── 20161114dysprosiumdroplet.txt │   │   │   │   ├── 20161114e-cigaretes-harm.txt │   │   │   │   ├── 20161114panther.txt │   │   │   │   ├── 20161114t80bv.txt │   │   │   │   ├── 20161114utm.txt │   │   │   │   ├── 20161114verticalspace.txt │   │   │   │   ├── 20161114zeptosecond.txt │   │   │   │   ├── 20161115black-silicone.txt │   │   │   │   ├── 20161115cropsweregood.txt │   │   │   │   ├── 20161115drone.txt │   │   │   │   ├── 20161115europe-ocean.txt │   │   │   │   ├── 20161115faraday.txt │   │   │   │   ├── 20161115fat-vertigo.txt │   │   │   │   ├── 20161115feringa-motors.txt │   │   │   │   ├── 20161115fight-germs-be-equal.txt │   │   │   │   ├── 20161115finalvicnano.txt │   │   │   │   ├── 20161115gorgon.txt │   │   │   │   ├── 20161115phoneanalysis.txt │   │   │   │   ├── 20161115rest-in-peace.txt │   │   │   │   ├── 20161115sexcircuit.txt │   │   │   │   ├── 20161115sounds.txt │   │   │   │   ├── 20161115swarms.txt │   │   │   │   ├── 20161115thermalswitches.txt │   │   │   │   ├── 20161115turn.txt │   │   │   │   ├── 2016111610-photon.txt │   │   │   │   ├── 20161116aircraft.txt │   │   │   │   ├── 20161116alexa.txt │   │   │   │   ├── 20161116Ancient-diary.txt │   │   │   │   ├── 20161116chemicalmessages.txt │   │   │   │   ├── 20161116crisprtested.txt │   │   │   │   ├── 20161116cute-men.txt │   │   │   │   ├── 20161116enlightener2016.txt │   │   │   │   ├── 20161116firefighting.txt │   │   │   │   ├── 20161116google-raisr.txt │   │   │   │   ├── 20161116Huns-structures.txt │   │   │   │   ├── 20161116killfie.txt │   │   │   │   ├── 20161116oldbutpotato.txt │   │   │   │   ├── 20161116pibot.txt │   │   │   │   ├── 20161116pigpersonality.txt │   │   │   │   ├── 20161116play-ai.txt │   │   │   │   ├── 20161116post-truth.txt │   │   │   │   ├── 20161116scanner.txt │   │   │   │   ├── 20161116xb1.txt │   │   │   │   ├── 20161117anti-hiv.txt │   │   │   │   ├── 20161117birdpoop.txt │   │   │   │   ├── 20161117carrier.txt │   │   │   │   ├── 20161117drones.txt │   │   │   │   ├── 20161117effector.txt │   │   │   │   ├── 20161117fast-moving-stars.txt │   │   │   │   ├── 20161117helicopter.txt │   │   │   │   ├── 20161117helmet.txt │   │   │   │   ├── 20161117MoGespincurrent.txt │   │   │   │   ├── 20161117pluto-new.txt │   │   │   │   ├── 20161117quitfacebook.txt │   │   │   │   ├── 20161117second.txt │   │   │   │   ├── 20161117soyuz-03.txt │   │   │   │   ├── 20161117stethoscope-patch.txt │   │   │   │   ├── 20161118BTX.txt │   │   │   │   ├── 20161118comet-seasons.txt │   │   │   │   ├── 20161118dartjet.txt │   │   │   │   ├── 20161118doublescotch.txt │   │   │   │   ├── 20161118ducklings.txt │   │   │   │   ├── 20161118fat-and-thin.txt │   │   │   │   ├── 20161118homeofail.txt │   │   │   │   ├── 20161118lm100j.txt │   │   │   │   ├── 20161118photosynthesis.txt │   │   │   │   ├── 20161118quantummm.txt │   │   │   │   ├── 20161118rustom.txt │   │   │   │   ├── 20161118sniper.txt │   │   │   │   ├── 20161118start.txt │   │   │   │   ├── 20161118Velocity-matters.txt │   │   │   │   ├── 20161119autocar.txt │   │   │   │   ├── 20161119box.txt │   │   │   │   ├── 20161119fat-dogs.txt │   │   │   │   ├── 20161119line.txt │   │   │   │   ├── 20161119tailsitter.txt │   │   │   │   ├── 20161119trauma.txt │   │   │   │   ├── 20161121adrift.txt │   │   │   │   ├── 20161121biodegradable-adidas.txt │   │   │   │   ├── 20161121ceres-new-pics.txt │   │   │   │   ├── 20161121dnamuscles.txt │   │   │   │   ├── 20161121facebook.txt │   │   │   │   ├── 20161121failsafe.txt │   │   │   │   ├── 20161121hi-fetus.txt │   │   │   │   ├── 20161121hree.txt │   │   │   │   ├── 20161121old-head-new-body.txt │   │   │   │   ├── 20161121photon-neural-network.txt │   │   │   │   ├── 20161121solar-roof.txt │   │   │   │   ├── 20161121sprayquencing.txt │   │   │   │   ├── 20161121vision.txt │   │   │   │   ├── 20161121world.txt │   │   │   │   ├── 2016112250feet.txt │   │   │   │   ├── 20161122barguzin.txt │   │   │   │   ├── 20161122congress-nanoindustry.txt │   │   │   │   ├── 20161122edna.txt │   │   │   │   ├── 20161122emdrive-published.txt │   │   │   │   ├── 20161122gut-with-nerves.txt │   │   │   │   ├── 20161122ironclad.txt │   │   │   │   ├── 20161122lifespanequality.txt │   │   │   │   ├── 20161122-newdesalinationdevice.txt │   │   │   │   ├── 20161122polittuber.txt │   │   │   │   ├── 20161122populationdecline.txt │   │   │   │   ├── 20161122robot.txt │   │   │   │   ├── 20161122Tuscany-Prosthesis.txt │   │   │   │   ├── 20161122twistwdlightnew.txt │   │   │   │   ├── 201611233d-regolith.txt │   │   │   │   ├── 20161123beta-keratine.txt │   │   │   │   ├── 20161123bloodstop.txt │   │   │   │   ├── 20161123criminalface.txt │   │   │   │   ├── 20161123drone-ramsay.txt │   │   │   │   ├── 20161123memoir.txt │   │   │   │   ├── 20161123neural-network.txt │   │   │   │   ├── 20161123phobia-cure.txt │   │   │   │   ├── 20161123realtek.txt │   │   │   │   ├── 20161123savekoalas.txt │   │   │   │   ├── 20161123sonar-cane.txt │   │   │   │   ├── 20161123ttfs.txt │   │   │   │   ├── 20161123zumwalt.txt │   │   │   │   ├── 20161124Abydos-new-city.txt │   │   │   │   ├── 20161124bells-inequality.txt │   │   │   │   ├── 20161124coconutcrab.txt │   │   │   │   ├── 20161124cws.txt │   │   │   │   ├── 20161124episodical-memory.txt │   │   │   │   ├── 20161124flee.txt │   │   │   │   ├── 20161124food.txt │   │   │   │   ├── 20161124help-from-ago.txt │   │   │   │   ├── 20161124liquorice.txt │   │   │   │   ├── 20161124nylon-muscles.txt │   │   │   │   ├── 20161124Philidris-nagasau.txt │   │   │   │   ├── 20161124quieter.txt │   │   │   │   ├── 20161124Sanivation.txt │   │   │   │   ├── 20161124shorebirds.txt │   │   │   │   ├── 20161124solitaire.txt │   │   │   │   ├── 20161124space-microbots.txt │   │   │   │   ├── 20161124subsurface-icy-sea.txt │   │   │   │   ├── 20161124sweat-sensing.txt │   │   │   │   ├── 20161124termopainting.txt │   │   │   │   ├── 201611253d-embryo.txt │   │   │   │   ├── 20161125a350.txt │   │   │   │   ├── 20161125African-recordsman.txt │   │   │   │   ├── 20161125ballu.txt │   │   │   │   ├── 20161125electric-balaclava.txt │   │   │   │   ├── 20161125gripen.txt │   │   │   │   ├── 20161125iwantsomesleep.txt │   │   │   │   ├── 20161125linguisticpositivity.txt │   │   │   │   ├── 20161125macaques.txt │   │   │   │   ├── 20161125net.txt │   │   │   │   ├── 20161125retrieval-rules.txt │   │   │   │   ├── 20161125teenageninjaprion.txt │   │   │   │   ├── 20161125thunderstorm-asthma.txt │   │   │   │   ├── 20161125winter-boots.txt │   │   │   │   ├── 20161126graphelmet.txt │   │   │   │   ├── 20161126isab.txt │   │   │   │   ├── 20161126self-mobile.txt │   │   │   │   ├── 20161126why-14.txt │   │   │   │   ├── 20161128an132.txt │   │   │   │   ├── 20161128carbon-14-battery.txt │   │   │   │   ├── 20161128collider-robot.txt │   │   │   │   ├── 20161128cryogenic.txt │   │   │   │   ├── 20161128dianamonkeys.txt │   │   │   │   ├── 20161128gearbasedmetamaterial.txt │   │   │   │   ├── 20161128il-1ra.txt │   │   │   │   ├── 20161128mobviolence.txt │   │   │   │   ├── 20161128monographenefriction.txt │   │   │   │   ├── 20161128Plimoth.txt │   │   │   │   ├── 20161128reinforced.txt │   │   │   │   ├── 20161128sentinel.txt │   │   │   │   ├── 20161128Strange-finding.txt │   │   │   │   ├── 20161128vocoder.txt │   │   │   │   ├── 20161128window.txt │   │   │   │   ├── 20161129AI-predicts-the-future.txt │   │   │   │   ├── 20161129alcohol.txt │   │   │   │   ├── 20161129dal-or-not-dal.txt │   │   │   │   ├── 20161129DroneGun.txt │   │   │   │   ├── 20161129forfree.txt │   │   │   │   ├── 20161129game-toddler.txt │   │   │   │   ├── 20161129Listen-how-corn-grows.txt │   │   │   │   ├── 20161129mapollution.txt │   │   │   │   ├── 20161129moon-water.txt │   │   │   │   ├── 20161129mtl-navigation.txt │   │   │   │   ├── 20161129run-like-hell.txt │   │   │   │   ├── 20161129shot-em-up.txt │   │   │   │   ├── 20161129smart.txt │   │   │   │   ├── 20161130Abrikosovbroom.txt │   │   │   │   ├── 20161130antkiss.txt │   │   │   │   ├── 20161130bacteriafossils.txt │   │   │   │   ├── 20161130charging.txt │   │   │   │   ├── 20161130dr-dl.txt │   │   │   │   ├── 20161130eeeee.txt │   │   │   │   ├── 20161130feel-the-spirit.txt │   │   │   │   ├── 20161130ford-europe.txt │   │   │   │   ├── 20161130google-gif.txt │   │   │   │   ├── 20161130inspire.txt │   │   │   │   ├── 20161130og-mc.txt │   │   │   │   ├── 20161130phononiclamb.txt │   │   │   │   ├── 20161130tail.txt │   │   │   │   ├── 20161130telescopic-walls.txt │   │   │   │   ├── 20161130tgo-first-shots.txt │   │   │   │   ├── 20161130Uperoleia-Mahonyi.txt │   │   │   │   ├── 20161130who-cmon.txt │   │   │   │   ├── 20161201alfred.txt │   │   │   │   ├── 20161201bloodthinnerpatch.txt │   │   │   │   ├── 20161201comma-vsem-darom.txt │   │   │   │   ├── 20161201draco.txt │   │   │   │   ├── 20161201f22.txt │   │   │   │   ├── 20161201handicap.txt │   │   │   │   ├── 20161201lighthouse-positioning.txt │   │   │   │   ├── 20161201mitoring.txt │   │   │   │   ├── 20161201predator.txt │   │   │   │   ├── 20161201progress-fail.txt │   │   │   │   ├── 20161201sentinel.txt │   │   │   │   ├── 20161201sexual-tms.txt │   │   │   │   ├── 20161201snowmobile.txt │   │   │   │   ├── 20161201soft-lcd.txt │   │   │   │   ├── 20161201submarines.txt │   │   │   │   ├── 20161201technosphere.txt │   │   │   │   ├── 20161202aerostat.txt │   │   │   │   ├── 20161202atlas-walkies.txt │   │   │   │   ├── 20161202BicrystalSC.txt │   │   │   │   ├── 20161202cargo.txt │   │   │   │   ├── 20161202ceramicturkey.txt │   │   │   │   ├── 20161202cgrp-imaging.txt │   │   │   │   ├── 20161202cs9pt4h.txt │   │   │   │   ├── 20161202drug-implant.txt │   │   │   │   ├── 20161202early-galaxy-forming.txt │   │   │   │   ├── 20161202esa-happy.txt │   │   │   │   ├── 20161202flip-disc.txt │   │   │   │   ├── 20161202isotope-lead-book.txt │   │   │   │   ├── 20161202lucyintheskywithdiamonds.txt │   │   │   │   ├── 20161202neural-x-mas.txt │   │   │   │   ├── 20161202nikola.txt │   │   │   │   ├── 20161202plutos-heart.txt │   │   │   │   ├── 20161202quantumsuperpositiontwocolors.txt │   │   │   │   ├── 20161202sniffing.txt │   │   │   │   ├── 20161202stateofmemory.txt │   │   │   │   ├── 20161202this-is-my-december.txt │   │   │   │   ├── 20161202underground.txt │   │   │   │   ├── 20161203plp-reduction.txt │   │   │   │   ├── 20161203ultem.txt │   │   │   │   ├── 20161205breakthrough-prize-16.txt │   │   │   │   ├── 20161205buttrecognition.txt │   │   │   │   ├── 20161205glide-test.txt │   │   │   │   ├── 20161205nimbus.txt │   │   │   │   ├── 20161205noise.txt │   │   │   │   ├── 20161205rde.txt │   │   │   │   ├── 20161205swipe-to-undrive.txt │   │   │   │   ├── 20161205there-is-a-spoon.txt │   │   │   │   ├── 20161205uav.txt │   │   │   │   ├── 20161205vacuumbirefringence.txt │   │   │   │   ├── 201612063d-wind-tool.txt │   │   │   │   ├── 20161206ai-universe.txt │   │   │   │   ├── 20161206amazon-go.txt │   │   │   │   ├── 20161206ancient-plasmodium.txt │   │   │   │   ├── 20161206Beckery-chapel.txt │   │   │   │   ├── 20161206cassini-F-ring-rev.txt │   │   │   │   ├── 20161206direct-brain-stimulation.txt │   │   │   │   ├── 20161206droplets.txt │   │   │   │   ├── 20161206electric.txt │   │   │   │   ├── 20161206false.txt │   │   │   │   ├── 20161206memory.txt │   │   │   │   ├── 20161206meteorite.txt │   │   │   │   ├── 20161206nosafelevelsmoking.txt │   │   │   │   ├── 20161206plants-association.txt │   │   │   │   ├── 20161206quantumdotsteraherz.txt │   │   │   │   ├── 20161206rolblok.txt │   │   │   │   ├── 20161206such-design.txt │   │   │   │   ├── 20161206teb.txt │   │   │   │   ├── 20161206tejas.txt │   │   │   │   ├── 20161207agile-bot.txt │   │   │   │   ├── 20161207aphrodisiac.txt │   │   │   │   ├── 20161207clam.txt │   │   │   │   ├── 20161207cosmic-dust-particles-on-rooftops.txt │   │   │   │   ├── 20161207curiosity-failure.txt │   │   │   │   ├── 20161207disney-recreated-teeth.txt │   │   │   │   ├── 20161207exoskeleton-arms.txt │   │   │   │   ├── 20161207globemaster.txt │   │   │   │   ├── 20161207grassffiti.txt │   │   │   │   ├── 20161207intake.txt │   │   │   │   ├── 20161207j20.txt │   │   │   │   ├── 20161207phobos-mars.txt │   │   │   │   ├── 20161207visa-people-take-care.txt │   │   │   │   ├── 20161207Wendelstein-7-X.txt │   │   │   │   ├── 201612083d-creepy-faces.txt │   │   │   │   ├── 20161208babylon-earth-rotation.txt │   │   │   │   ├── 20161208breathing.txt │   │   │   │   ├── 20161208chainform.txt │   │   │   │   ├── 20161208engines.txt │   │   │   │   ├── 20161208fetopelvic.txt │   │   │   │   ├── 20161208lighttherapy.txt │   │   │   │   ├── 20161208magnet-body.txt │   │   │   │   ├── 20161208navi.txt │   │   │   │   ├── 20161208next-year.txt │   │   │   │   ├── 20161208science-rules.txt │   │   │   │   ├── 20161208stop-bleeding.txt │   │   │   │   ├── 20161208Superdad-spider.txt │   │   │   │   ├── 20161208wing.txt │   │   │   │   ├── 20161208worldviz.txt │   │   │   │   ├── 201612095gcomms.txt │   │   │   │   ├── 20161209Altar-of-Heaven.txt │   │   │   │   ├── 20161209Appearance.txt │   │   │   │   ├── 20161209art-of-burial.txt │   │   │   │   ├── 20161209engines.txt │   │   │   │   ├── 20161209false-memories-meta.txt │   │   │   │   ├── 20161209fearfulmice.txt │   │   │   │   ├── 20161209fu-science.txt │   │   │   │   ├── 20161209pollution.txt │   │   │   │   ├── 20161209qr-elders.txt │   │   │   │   ├── 20161209quasicrystal.txt │   │   │   │   ├── 20161209silly-putty.txt │   │   │   │   ├── 20161209singingbirds.txt │   │   │   │   ├── 20161209tactics.txt │   │   │   │   ├── 20161209thermofloyd.txt │   │   │   │   ├── 20161210feldspars.txt │   │   │   │   ├── 20161210nanotubesstamping.txt │   │   │   │   ├── 20161210qudits-in-circle.txt │   │   │   │   ├── 20161212aggressive-drones.txt │   │   │   │   ├── 20161212approved.txt │   │   │   │   ├── 20161212bridge.txt │   │   │   │   ├── 20161212C-ring-age.txt │   │   │   │   ├── 20161212greenlandicemelted.txt │   │   │   │   ├── 20161212michigan-on-the-frontier.txt │   │   │   │   ├── 20161212plane.txt │   │   │   │   ├── 20161212rewritable-optical-chips.txt │   │   │   │   ├── 20161212sailor-nail.txt │   │   │   │   ├── 20161212Smallpox-XVI-version.txt │   │   │   │   ├── 20161212speech.txt │   │   │   │   ├── 20161212timefly.txt │   │   │   │   ├── 20161212timetoclimb.txt │   │   │   │   ├── 20161213brain-age.txt │   │   │   │   ├── 20161213cancer.txt │   │   │   │   ├── 20161213candida.txt │   │   │   │   ├── 20161213display.txt │   │   │   │   ├── 20161213dragon-wait.txt │   │   │   │   ├── 20161213jericho-look.txt │   │   │   │   ├── 20161213laser.txt │   │   │   │   ├── 20161213lucy-in-the-sky-with-corundum.txt │   │   │   │   ├── 20161213merry-issmas.txt │   │   │   │   ├── 20161213mig35.txt │   │   │   │   ├── 20161213panasonic-shopping.txt │   │   │   │   ├── 20161213pesticide.txt │   │   │   │   ├── 20161213pure-lonsdaleite.txt │   │   │   │   ├── 20161213relativity.txt │   │   │   │   ├── 20161213school-of-fish-flock-of-bird.txt │   │   │   │   ├── 20161213stroke.txt │   │   │   │   ├── 20161213Vlochos-hill.txt │   │   │   │   ├── 20161214baculum.txt │   │   │   │   ├── 20161214ceramics.txt │   │   │   │   ├── 20161214chewie.txt │   │   │   │   ├── 20161214deicing.txt │   │   │   │   ├── 20161214emucancer.txt │   │   │   │   ├── 20161214jerks.txt │   │   │   │   ├── 20161214kill-men.txt │   │   │   │   ├── 20161214proxima-b.txt │   │   │   │   ├── 20161214supercool.txt │   │   │   │   ├── 20161214swipebasednanogenerator.txt │   │   │   │   ├── 20161214tailsitter.txt │   │   │   │   ├── 20161214v2v.txt │   │   │   │   ├── 20161214volvo-uber.txt │   │   │   │   ├── 20161214vr-drone.txt │   │   │   │   ├── 20161214waymo.txt │   │   │   │   ├── 20161215engines.txt │   │   │   │   ├── 20161215first-detection-of-boron.txt │   │   │   │   ├── 20161215glowworms.txt │   │   │   │   ├── 20161215quake-detection-app.txt │   │   │   │   ├── 20161215russian-cyborg-astronauts.txt │   │   │   │   ├── 20161215seahorse.txt │   │   │   │   ├── 20161215tiny-glasses.txt │   │   │   │   ├── 20161215uk-drones.txt │   │   │   │   ├── 20161215useful-feature.txt │   │   │   │   ├── 20161215you-shall-not-drive.txt │   │   │   │   ├── 20161216ceres-water-everywhere.txt │   │   │   │   ├── 20161216confidence.txt │   │   │   │   ├── 20161216deeplearningbachstyle.txt │   │   │   │   ├── 20161216doom-optimus.txt │   │   │   │   ├── 20161216drone-bird.txt │   │   │   │   ├── 20161216holographic.txt │   │   │   │   ├── 20161216last-words.txt │   │   │   │   ├── 20161216m113.txt │   │   │   │   ├── 20161216Maya-sacred-sharks.txt │   │   │   │   ├── 20161216Meat-and-potato.txt │   │   │   │   ├── 20161216module.txt │   │   │   │   ├── 20161216OSKM.txt │   │   │   │   ├── 20161216pegasus.txt │   │   │   │   ├── 20161216pitcher.txt │   │   │   │   ├── 20161216slide.txt │   │   │   │   ├── 20161216water-mems.txt │   │   │   │   ├── 20161217aquila.txt │   │   │   │   ├── 20161217charging.txt │   │   │   │   ├── 20161217corvideswingmorphology.txt │   │   │   │   ├── 20161217neptun-like-planets.txt │   │   │   │   ├── 20161217pbn.txt │   │   │   │   ├── 20161217refueling.txt │   │   │   │   ├── 20161219ameba.txt │   │   │   │   ├── 20161219boring-company.txt │   │   │   │   ├── 20161219chemical-echoes.txt │   │   │   │   ├── 20161219crabs.txt │   │   │   │   ├── 20161219fca-waymo.txt │   │   │   │   ├── 20161219glider.txt │   │   │   │   ├── 20161219hungry-sun.txt │   │   │   │   ├── 20161219imagine.txt │   │   │   │   ├── 20161219shutter.txt │   │   │   │   ├── 20161219skinhairsensor.txt │   │   │   │   ├── 20161219van-der-waals.txt │   │   │   │   ├── 20161219why-not.txt │   │   │   │   ├── 20161220antihydrogen-spectrum.txt │   │   │   │   ├── 20161220boundary.txt │   │   │   │   ├── 20161220camelot-of-king-arthur.txt │   │   │   │   ├── 20161220cern-sun-axion-telescope.txt │   │   │   │   ├── 20161220famous-red-star-betelgeuse.txt │   │   │   │   ├── 20161220graphene-diagnostics.txt │   │   │   │   ├── 20161220high-social-status.txt │   │   │   │   ├── 20161220newspecies.txt │   │   │   │   ├── 20161220ownership.txt │   │   │   │   ├── 20161220photokinase.txt │   │   │   │   ├── 20161220pregnancy.txt │   │   │   │   ├── 20161220roads.txt │   │   │   │   ├── 20161220rules.txt │   │   │   │   ├── 20161220solo.txt │   │   │   │   ├── 20161220tiny-radio-receiver.txt │   │   │   │   ├── 20161220verylongfusion.txt │   │   │   │   ├── 20161220visibleuniversesurvey.txt │   │   │   │   ├── 20161221aero.txt │   │   │   │   ├── 20161221aromaticity.txt │   │   │   │   ├── 20161221indifferent.txt │   │   │   │   ├── 20161221Largegemdiamondsfrommetallicliquid.txt │   │   │   │   ├── 20161221martian-spiders.txt │   │   │   │   ├── 20161221nanoscale-snowman.txt │   │   │   │   ├── 20161221parasites.txt │   │   │   │   ├── 20161221speed.txt │   │   │   │   ├── 20161221stradivari.txt │   │   │   │   ├── 20161221tx.txt │   │   │   │   ├── 20161221vortexlarvae.txt │   │   │   │   ├── 20161222blinding.txt │   │   │   │   ├── 20161222bodymass.txt │   │   │   │   ├── 20161222British-Isles-blind.txt │   │   │   │   ├── 20161222coo.txt │   │   │   │   ├── 20161222dyslexia.txt │   │   │   │   ├── 20161222electric.txt │   │   │   │   ├── 20161222honda.txt │   │   │   │   ├── 20161222mail.txt │   │   │   │   ├── 20161222mechanosensor.txt │   │   │   │   ├── 20161222melt-not.txt │   │   │   │   ├── 20161222self-assembly.txt │   │   │   │   ├── 20161222tx.txt │   │   │   │   ├── 20161222uber.txt │   │   │   │   ├── 20161223arizona.txt │   │   │   │   ├── 20161223arms.txt │   │   │   │   ├── 20161223bats-AI.txt │   │   │   │   ├── 20161223bigbrains.txt │   │   │   │   ├── 20161223borealis.txt │   │   │   │   ├── 20161223double.txt │   │   │   │   ├── 20161223electron-photon-coupling.txt │   │   │   │   ├── 20161223five-mph.txt │   │   │   │   ├── 20161223lamprey.txt │   │   │   │   ├── 20161223lift.txt │   │   │   │   ├── 20161223solar.txt │   │   │   │   ├── 20161223spintronicartificialintelligence.txt │   │   │   │   ├── 20161223sweatglands.txt │   │   │   │   ├── 20161224cool.txt │   │   │   │   ├── 20161224long-arm.txt │   │   │   │   ├── 20161224second-glide-test.txt │   │   │   │   ├── 20161224tesla-on-mars.txt │   │   │   │   ├── 20161226african-american.txt │   │   │   │   ├── 20161226ar.txt │   │   │   │   ├── 20161226bliss-wallpaper.txt │   │   │   │   ├── 20161226Hyrcanus.txt │   │   │   │   ├── 20161226Knockout-SPDT.txt │   │   │   │   ├── 20161226lorenz-symmetry.txt │   │   │   │   ├── 20161226mytogamete.txt │   │   │   │   ├── 20161226podmoskovie.txt │   │   │   │   ├── 20161226quittingfacebookleadstohigherlevelsofwellbeing-.txt │   │   │   │   ├── 20161226response-political-beliefs.txt │   │   │   │   ├── 20161226scorpion.txt │   │   │   │   ├── 20161226sentry.txt │   │   │   │   ├── 20161227big-champain-bubbles.txt │   │   │   │   ├── 20161227boss-sensor.txt │   │   │   │   ├── 20161227double-kill.txt │   │   │   │   ├── 20161227gaze.txt │   │   │   │   ├── 20161227melanoma-learning.txt │   │   │   │   ├── 20161227mi-mi-mi.txt │   │   │   │   ├── 20161227nanowires-CuS.txt │   │   │   │   ├── 20161227oxytocin.txt │   │   │   │   ├── 20161227reverse.txt │   │   │   │   ├── 20161227shaanxi.txt │   │   │   │   ├── 20161228alexa-where-is-the-gardener.txt │   │   │   │   ├── 20161228Chinchorro-mummies.txt │   │   │   │   ├── 20161228nano-ag.txt │   │   │   │   ├── 20161228new-fast-radio-burst.txt │   │   │   │   ├── 20161228perovskite.txt │   │   │   │   ├── 20161228scales.txt │   │   │   │   ├── 20161228switch.txt │   │   │   │   ├── 20161228tesla-radar.txt │   │   │   │   ├── 20161228wolverineinspiredmaterial.txt │   │   │   │   ├── 20161229Amazon-go-ahead.txt │   │   │   │   ├── 20161229drinking-women.txt │   │   │   │   ├── 20161229earth-lightnings.txt │   │   │   │   ├── 20161229hydrogen-atoms.txt │   │   │   │   ├── 20161229paper-planes.txt │   │   │   │   ├── 20161229second-generation.txt │   │   │   │   ├── 20161229solargeoengineeringwithnoozoneloss.txt │   │   │   │   ├── 20161230Aphaenogaster.txt │   │   │   │   ├── 20161230Countermeasures.txt │   │   │   │   ├── 20161230diamond-and-light.txt │   │   │   │   ├── 20161230eye-contact.txt │   │   │   │   ├── 20161230new-comet.txt │   │   │   │   ├── 20161230orcas.txt │   │   │   │   ├── 20161230penileimplant.txt │   │   │   │   ├── 20161230switchoff.txt │   │   │   │   ├── 20170103falcon-9-new-start.txt │   │   │   │   ├── 20170103graphene-oled.txt │   │   │   │   ├── 20170103NDR-silicone-atom.txt │   │   │   │   ├── 20170104autogyro.txt │   │   │   │   ├── 20170104dive.txt │   │   │   │   ├── 20170104ff91.txt │   │   │   │   ├── 20170104taxi.txt │   │   │   │   ├── 20170104vr.txt │   │   │   │   ├── 20170105alexa.txt │   │   │   │   ├── 20170105powerray.txt │   │   │   │   ├── 20170105take-my-money.txt │   │   │   │   ├── 20170105xavier.txt │   │   │   │   ├── 20170105zenfone-ar.txt │   │   │   │   ├── 20170106no-swabs.txt │   │   │   │   ├── 20170106plutoscope.txt │   │   │   │   ├── 20170106solanaceae.txt │   │   │   │   ├── 20170109biodegradable.txt │   │   │   │   ├── 20170109bnsf.txt │   │   │   │   ├── 20170109graphene-strength.txt │   │   │   │   ├── 20170109honda.txt │   │   │   │   ├── 20170109nanofluidics.txt │   │   │   │   ├── 20170109nissan.txt │   │   │   │   ├── 20170109no-scars.txt │   │   │   │   ├── 20170109road-salt.txt │   │   │   │   ├── 20170109stretch-transistor.txt │   │   │   │   ├── 20170109system.txt │   │   │   │   ├── 20170109uav.txt │   │   │   │   ├── 20170110aptasensor.txt │   │   │   │   ├── 20170110contentanalysisofbritishperiodicals.txt │   │   │   │   ├── 20170110drones.txt │   │   │   │   ├── 20170110kilobots.txt │   │   │   │   ├── 20170110laser.txt │   │   │   │   ├── 20170110missile.txt │   │   │   │   ├── 20170110multi-mega-giga-impact.txt │   │   │   │   ├── 20170110no-redistribution.txt │   │   │   │   ├── 20170110pre-birth.txt │   │   │   │   ├── 20170110wheel.txt │   │   │   │   ├── 20170111augmented.txt │   │   │   │   ├── 20170111beta-poker.txt │   │   │   │   ├── 20170111bomb.txt │   │   │   │   ├── 20170111charon-protected-pluto-atmosphere.txt │   │   │   │   ├── 20170111drive-me.txt │   │   │   │   ├── 20170111energy.txt │   │   │   │   ├── 20170111garganornisbalmanni.txt │   │   │   │   ├── 20170111hydrogel.txt │   │   │   │   ├── 20170111Jorunnadavidbowiei.txt │   │   │   │   ├── 20170111mice-binge-drinking-linked-with-hunger.txt │   │   │   │   ├── 20170111molecular-fountain.txt │   │   │   │   ├── 20170111paperfuge.txt │   │   │   │   ├── 20170111skywalker-gibbons.txt │   │   │   │   ├── 20170111sustainedprotectionagainstplantviruses.txt │   │   │   │   ├── 201701123dprint.txt │   │   │   │   ├── 20170112Bloody-Diphylla-ecaudata.txt │   │   │   │   ├── 20170112bye-bye-drilling.txt │   │   │   │   ├── 20170112energyrus.txt │   │   │   │   ├── 20170112energy.txt │   │   │   │   ├── 20170112lily-go-away.txt │   │   │   │   ├── 20170112ok-adobe-make-funny-meme.txt │   │   │   │   ├── 20170112peng-idds.txt │   │   │   │   ├── 20170112relativistic-gold.txt │   │   │   │   ├── 20170112titan.txt │   │   │   │   ├── 20170112trip.txt │   │   │   │   ├── 20170112tuna.txt │   │   │   │   ├── 20170112vietnameesepygmydormouse.txt │   │   │   │   ├── 20170113carbocene.txt │   │   │   │   ├── 20170113eggbot.txt │   │   │   │   ├── 20170113goal-neurons.txt │   │   │   │   ├── 20170113Hallreversebymetamaterial.txt │   │   │   │   ├── 20170113Hungry.txt │   │   │   │   ├── 20170113neon.txt │   │   │   │   ├── 20170113papioscream.txt │   │   │   │   ├── 20170113predatormice.txt │   │   │   │   ├── 20170113raisr.txt │   │   │   │   ├── 20170113rogue-planet-x.txt │   │   │   │   ├── 20170113stemselltherapyblindness.txt │   │   │   │   ├── 20170113triple-eightfoil.txt │   │   │   │   ├── 20170114bacteria-e-messages.txt │   │   │   │   ├── 20170114falcon-is-back.txt │   │   │   │   ├── 20170114falcon-launch.txt │   │   │   │   ├── 20170114leaf-uk.txt │   │   │   │   ├── 20170114moon-express.txt │   │   │   │   ├── 20170114peace-or-victory.txt │   │   │   │   ├── 20170114polymer-modification.txt │   │   │   │   ├── 20170114ultimate-dongle.txt │   │   │   │   ├── 201701163d-is-a-lie.txt │   │   │   │   ├── 20170116all-resistant.txt │   │   │   │   ├── 20170116blitab.txt │   │   │   │   ├── 20170116dark-matter-season.txt │   │   │   │   ├── 20170116electro-dakar.txt │   │   │   │   ├── 20170116fire-extinguisher.txt │   │   │   │   ├── 20170116laser.txt │   │   │   │   ├── 20170116milky-way-steal-stars.txt │   │   │   │   ├── 20170116msu-space-faculty.txt │   │   │   │   ├── 20170116production.txt │   │   │   │   ├── 20170116rhcp-live.txt │   │   │   │   ├── 20170116sesame.txt │   │   │   │   ├── 20170116shark-asexual-reproduction.txt │   │   │   │   ├── 20170116stop-dea.txt │   │   │   │   ├── 20170116veyron.txt │   │   │   │   ├── 20170117airplane.txt │   │   │   │   ├── 20170117ammo.txt │   │   │   │   ├── 20170117firefoxgenome.txt │   │   │   │   ├── 20170117graphene-watch.txt │   │   │   │   ├── 20170117machine-learning-helps-quantum.txt │   │   │   │   ├── 20170117nanodrumlowerSQL.txt │   │   │   │   ├── 20170117number-of-galaxies.txt │   │   │   │   ├── 20170117oileasts.txt │   │   │   │   ├── 20170117plasmons.txt │   │   │   │   ├── 20170117sca-assay.txt │   │   │   │   ├── 20170117Sobibor-pendant.txt │   │   │   │   ├── 20170117soft-cubes.txt │   │   │   │   ├── 20170117sweden-ambulance.txt │   │   │   │   ├── 20170117venus-smiles-at-you.txt │   │   │   │   ├── 20170118ALMA-sun.txt │   │   │   │   ├── 20170118curiosity-spots-meteorite.txt │   │   │   │   ├── 20170118eat-less.txt │   │   │   │   ├── 20170118helicopter.txt │   │   │   │   ├── 20170118hoverbike.txt │   │   │   │   ├── 20170118mobile-dna.txt │   │   │   │   ├── 20170118modelingtheemergenceofnovelties.txt │   │   │   │   ├── 20170118non-classical-trajectory.txt │   │   │   │   ├── 20170118protein-fingerprinting.txt │   │   │   │   ├── 20170118search.txt │   │   │   │   ├── 20170118speed-limit.txt │   │   │   │   ├── 20170118speed.txt │   │   │   │   ├── 20170118superfluidblackholes.txt │   │   │   │   ├── 20170118three-parents-ua.txt │   │   │   │   ├── 20170118welcome-home.txt │   │   │   │   ├── 20170118Women-in-Ancient-China.txt │   │   │   │   ├── 20170119ai-diagnostics.txt │   │   │   │   ├── 20170119arena.txt │   │   │   │   ├── 20170119bombers.txt │   │   │   │   ├── 20170119chop-chop-xxl.txt │   │   │   │   ├── 20170119curiosity-mud-cracks.txt │   │   │   │   ├── 20170119durian.txt │   │   │   │   ├── 20170119electrocoli.txt │   │   │   │   ├── 20170119fairy-circles-explanation.txt │   │   │   │   ├── 20170119filterforeverywhere.txt │   │   │   │   ├── 20170119laser-plasma-optics.txt │   │   │   │   ├── 20170119soft-roboheart.txt │   │   │   │   ├── 20170119surge.txt │   │   │   │   ├── 20170119swiss-jammer.txt │   │   │   │   ├── 20170119Timna-valley.txt │   │   │   │   ├── 20170119virus-talks.txt │   │   │   │   ├── 20170120antiprotonmcorrection.txt │   │   │   │   ├── 20170120arrow.txt │   │   │   │   ├── 20170120cyber-squirrels-project.txt │   │   │   │   ├── 20170120E-XFEL-laser.txt │   │   │   │   ├── 20170120fast-memory.txt │   │   │   │   ├── 20170120long-time-ago.txt │   │   │   │   ├── 20170120magnetic.txt │   │   │   │   ├── 20170120metagenomics.txt │   │   │   │   ├── 20170120missile.txt │   │   │   │   ├── 20170120nasa-landing-on-pluto.txt │   │   │   │   ├── 20170120nofault.txt │   │   │   │   ├── 20170120oetzi-meal.txt │   │   │   │   ├── 20170120tesla-ff.txt │   │   │   │   ├── 20170120wait-what.txt │   │   │   │   ├── 20170121Asphaltene-3d.txt │   │   │   │   ├── 20170121gekko-adhesive.txt │   │   │   │   ├── 20170121lunar-beer.txt │   │   │   │   ├── 20170123ai-SPM-test.txt │   │   │   │   ├── 20170123co-chemical-scanning.txt │   │   │   │   ├── 20170123counter.txt │   │   │   │   ├── 20170123flying.txt │   │   │   │   ├── 20170123ground.txt │   │   │   │   ├── 20170123light-wave.txt │   │   │   │   ├── 20170123move-it.txt │   │   │   │   ├── 20170123phononicfrequencycomb.txt │   │   │   │   ├── 20170123retraction.txt │   │   │   │   ├── 20170123Seal-hunting.txt │   │   │   │   ├── 20170123sun-cycles.txt │   │   │   │   ├── 20170123tinker.txt │   │   │   │   ├── 20170123us-rna.txt │   │   │   │   ├── 20170124al--around-me-are-australian-faces.txt │   │   │   │   ├── 20170124computer-do-something.txt │   │   │   │   ├── 20170124crt.txt │   │   │   │   ├── 20170124debris.txt │   │   │   │   ├── 20170124decompose-it.txt │   │   │   │   ├── 20170124deoxycancer.txt │   │   │   │   ├── 20170124dna-nanotubes.txt │   │   │   │   ├── 20170124Manor-house-in-Birka.txt │   │   │   │   ├── 20170124pattern-lock.txt │   │   │   │   ├── 20170124rotatingmachineryportableatomicmagnetometer.txt │   │   │   │   ├── 20170124sso.txt │   │   │   │   ├── 20170124tree-recognition.txt │   │   │   │   ├── 20170124Virtual-out-of-body-experience.txt │   │   │   │   ├── 20170125atags.txt │   │   │   │   ├── 20170125diffraction.txt │   │   │   │   ├── 20170125experimental-hawking-radiation.txt │   │   │   │   ├── 20170125hydrodynamics.txt │   │   │   │   ├── 20170125lunar-x-prize.txt │   │   │   │   ├── 20170125microbes-low-pressure.txt │   │   │   │   ├── 20170125relay.txt │   │   │   │   ├── 20170125schizonicotine.txt │   │   │   │   ├── 20170125sequence-from-jar.txt │   │   │   │   ├── 20170125sex-related-hormone.txt │   │   │   │   ├── 20170125submarine.txt │   │   │   │   ├── 20170125x56a.txt │   │   │   │   ├── 20170126Candy-striped-hermit-crab.txt │   │   │   │   ├── 20170126coldspray.txt │   │   │   │   ├── 20170126dragonfleye.txt │   │   │   │   ├── 20170126d-wave-2000.txt │   │   │   │   ├── 20170126frisco.txt │   │   │   │   ├── 20170126robots.txt │   │   │   │   ├── 20170126six-days.txt │   │   │   │   ├── 20170126skin-cancer-diagnosis.txt │   │   │   │   ├── 20170126Trade-wasps.txt │   │   │   │   ├── 20170126tyer.txt │   │   │   │   ├── 20170126windshield.txt │   │   │   │   ├── 20170127catmemory.txt │   │   │   │   ├── 20170127chimera.txt │   │   │   │   ├── 20170127drag.txt │   │   │   │   ├── 20170127flex.txt │   │   │   │   ├── 20170127gender-stereotypes-6-years.txt │   │   │   │   ├── 20170127korean-hyperloop.txt │   │   │   │   ├── 20170127love-advice-AI.txt │   │   │   │   ├── 20170127maketomatogreatagain.txt │   │   │   │   ├── 20170127mig35.txt │   │   │   │   ├── 20170127overlapping.txt │   │   │   │   ├── 20170127solid-and-metallic.txt │   │   │   │   ├── 20170128antikythera.txt │   │   │   │   ├── 20170128chaser.txt │   │   │   │   ├── 20170128mig35.txt │   │   │   │   ├── 20170128missiles.txt │   │   │   │   ├── 20170128module.txt │   │   │   │   └── 20170128psp.txt │   │   │   ├── news │   │   │   ├── news.zip │   │   │   └── Untitled0.ipynb │   │   ├── PS1.ipynb │   │   ├── Release.ipynb │   │   ├── алггосы │   │   │   ├── 3w │   │   │   │   └── NNS - template.ipynb │   │   │   ├── DruzhininaPolina.ipynb │   │   │   └── TextSearch_KirillDemochkin.ipynb │   │   └── домаха линал.ipynb │   ├── Copy of NeuroML2022.xlsx │   ├── Copy of Polina_Druzhinina_qsar.ipynb │   ├── Copy of TAM SAM SOM Infographics by Slidesgo.gslides │   ├── doc107115449_473881457.gdoc │   ├── hackaton │   │   ├── baseline-20210924T161700Z-001.zip │   │   ├── city_population.csv │   │   ├── Copy of RAIF_playground (5).ipynb │   │   ├── data-20210924T160907Z-001.zip │   │   ├── found404_submission_11.csv │   │   ├── found404_submission_kkkkkk.csv │   │   ├── metrics.gsheet │   │   ├── model.picle │   │   ├── new.ipynb │   │   ├── out.csv │   │   ├── RAIF_playground (5).ipynb │   │   ├── regression_baseline_mmse.ipynb │   │   ├── regression_baseline_moca.ipynb │   │   ├── Untitled0.ipynb │   │   ├── zarplaty.xlsx │   │   └── идеи.gdoc │   ├── HCP_aging.docx │   ├── home_page — копия (1).txt.gdoc │   ├── home_page — копия.txt.gdoc │   ├── Ideal.txt.gdoc │   ├── JDBC.rar │   ├── Lecture_0_part.gslides │   ├── lfw_attributes.txt │   ├── material demo.pptx │   ├── MCMC.gslides │   ├── MIDL2022 │   │   ├── 120_ConsentForm.docx │   │   ├── MIDL2022_adni.gslides │   │   └──  мидл.gdoc │   ├── mri │   │   ├── baseline_augment.ipynb │   │   ├── baseline_augmentv2.ipynb │   │   ├── check_hw │   │   │   ├── NEUROML2021_hw3_part11.ipynb │   │   │   └── NEUROML2021_hw3_part12.ipynb │   │   ├── data │   │   │   └── ds000114 │   │   │   ├── CHANGES │   │   │   ├── dataset_description.json │   │   │   ├── dwi.bval │   │   │   ├── dwi.bvec │   │   │   ├── participants.tsv │   │   │   ├── sub-01 │   │   │   │   ├── ses-retest │   │   │   │   │   ├── anat │   │   │   │   │   │   └── sub-01_ses-retest_T1w.nii.gz │   │   │   │   │   ├── dwi │   │   │   │   │   │   └── sub-01_ses-retest_dwi.nii.gz │   │   │   │   │   └── func │   │   │   │   │   ├── sub-01_ses-retest_task-covertverbgeneration_bold.nii.gz │   │   │   │   │   ├── sub-01_ses-retest_task-fingerfootlips_bold.nii.gz │   │   │   │   │   ├── sub-01_ses-retest_task-linebisection_bold.nii.gz │   │   │   │   │   ├── sub-01_ses-retest_task-linebisection_events.tsv │   │   │   │   │   ├── sub-01_ses-retest_task-overtverbgeneration_bold.nii.gz │   │   │   │   │   └── sub-01_ses-retest_task-overtwordrepetition_bold.nii.gz │   │   │   │   └── ses-test │   │   │   │   ├── anat │   │   │   │   │   └── sub-01_ses-test_T1w.nii.gz │   │   │   │   ├── dwi │   │   │   │   │   └── sub-01_ses-test_dwi.nii.gz │   │   │   │   └── func │   │   │   │   ├── sub-01_ses-test_task-covertverbgeneration_bold.nii.gz │   │   │   │   ├── sub-01_ses-test_task-fingerfootlips_bold.nii.gz │   │   │   │   ├── sub-01_ses-test_task-linebisection_bold.nii.gz │   │   │   │   ├── sub-01_ses-test_task-linebisection_events.tsv │   │   │   │   ├── sub-01_ses-test_task-overtverbgeneration_bold.nii.gz │   │   │   │   └── sub-01_ses-test_task-overtwordrepetition_bold.nii.gz │   │   │   ├── sub-02 │   │   │   │   ├── ses-retest │   │   │   │   │   ├── anat │   │   │   │   │   │   └── sub-02_ses-retest_T1w.nii.gz │   │   │   │   │   ├── dwi │   │   │   │   │   │   └── sub-02_ses-retest_dwi.nii.gz │   │   │   │   │   └── func │   │   │   │   │   ├── sub-02_ses-retest_task-covertverbgeneration_bold.nii.gz │   │   │   │   │   ├── sub-02_ses-retest_task-fingerfootlips_bold.nii.gz │   │   │   │   │   ├── sub-02_ses-retest_task-linebisection_bold.nii.gz │   │   │   │   │   ├── sub-02_ses-retest_task-linebisection_events.tsv │   │   │   │   │   ├── sub-02_ses-retest_task-overtverbgeneration_bold.nii.gz │   │   │   │   │   └── sub-02_ses-retest_task-overtwordrepetition_bold.nii.gz │   │   │   │   └── ses-test │   │   │   │   ├── anat │   │   │   │   │   └── sub-02_ses-test_T1w.nii.gz │   │   │   │   ├── dwi │   │   │   │   │   └── sub-02_ses-test_dwi.nii.gz │   │   │   │   └── func │   │   │   │   ├── sub-02_ses-test_task-covertverbgeneration_bold.nii.gz │   │   │   │   ├── sub-02_ses-test_task-fingerfootlips_bold.nii.gz │   │   │   │   ├── sub-02_ses-test_task-linebisection_bold.nii.gz │   │   │   │   ├── sub-02_ses-test_task-linebisection_events.tsv │   │   │   │   ├── sub-02_ses-test_task-overtverbgeneration_bold.nii.gz │   │   │   │   └── sub-02_ses-test_task-overtwordrepetition_bold.nii.gz │   │   │   ├── sub-03 │   │   │   │   ├── ses-retest │   │   │   │   │   ├── anat │   │   │   │   │   │   └── sub-03_ses-retest_T1w.nii.gz │   │   │   │   │   ├── dwi │   │   │   │   │   └── func │   │   │   │   │   ├── sub-03_ses-retest_task-covertverbgeneration_bold.nii.gz │   │   │   │   │   └── sub-03_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-03_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-04 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-04_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-04_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-05 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-05_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-05_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-06 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-06_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-06_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-07 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-07_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-07_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-08 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-08_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-08_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-09 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-09_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-09_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-10 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-10_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-10_ses-test_task-linebisection_events.tsv │   │   │   ├── task-covertverbgeneration_bold.json │   │   │   ├── task-covertverbgeneration_events.tsv │   │   │   ├── task-fingerfootlips_bold.json │   │   │   ├── task-fingerfootlips_events.tsv │   │   │   ├── task-linebisection_bold.json │   │   │   ├── task-overtverbgeneration_bold.json │   │   │   ├── task-overtverbgeneration_events.tsv │   │   │   ├── task-overtwordrepetition_bold.json │   │   │   └── task-overtwordrepetition_events.tsv │   │   ├── HW3 │   │   │   ├── adhd200 -> /content/drive/ │   │   │   ├── data.zip -> /content/drive/ │   │   │   ├── func -> /content/drive/ │   │   │   ├── hw3 │   │   │   │   ├── adhd200 -> /content/drive/ │   │   │   │   ├── NEUROML2020_hw3_part1_1.ipynb │   │   │   │   ├── NEUROML2020_hw3_part1_2.ipynb │   │   │   │   ├── NEUROML2020_hw3_part2.ipynb │   │   │   │   ├── NEUROML2020_hw3_part3.ipynb │   │   │   │   ├── __pycache__ │   │   │   │   │   └── utils.cpython-36.pyc │   │   │   │   └── utils.py │   │   │   └── HW3_data -> /content/drive/.shortcut-targets-by-id/1rgdw3BPcbM8u7dwbxEUcEfEuHaujYacy/HW3_data │   │   ├── landmarks.npy │   │   ├── lx.zip │   │   ├── mricron │   │   │   ├── dcm2niix │   │   │   ├── MRIcron │   │   │   └── Resources │   │   │   ├── dcm2niix │   │   │   ├── lut │   │   │   │   ├── 16.lut │   │   │   │   ├── 1hot.lut │   │   │   │   ├── 2winter.lut │   │   │   │   ├── 3warm.lut │   │   │   │   ├── 4cool.lut │   │   │   │   ├── 5redyell.lut │   │   │   │   ├── 6bluegrn.lut │   │   │   │   ├── actc.lut │   │   │   │   ├── blackbdy.lut │   │   │   │   ├── bluegray.lut │   │   │   │   ├── blue_otto.lut │   │   │   │   ├── bone.lut │   │   │   │   ├── cardiac.lut │   │   │   │   ├── cortex.lut │   │   │   │   ├── flow.lut │   │   │   │   ├── french.lut │   │   │   │   ├── GE_color.lut │   │   │   │   ├── gold.lut │   │   │   │   ├── gooch.lut │   │   │   │   ├── greengray.lut │   │   │   │   ├── HOTIRON.lut │   │   │   │   ├── NIH_fire.lut │   │   │   │   ├── NIH_ice.lut │   │   │   │   ├── NIH.lut │   │   │   │   ├── overlay_classic.lut │   │   │   │   ├── pink.lut │   │   │   │   ├── pink_old.lut │   │   │   │   ├── Rainramp.lut │   │   │   │   ├── red_otto.lut │   │   │   │   ├── spectrum.lut │   │   │   │   ├── surface.lut │   │   │   │   ├── x_hot.lut │   │   │   │   └── x_rain.lut │   │   │   ├── mricron.svg │   │   │   ├── pigz_mricron │   │   │   ├── render │   │   │   │   └── default.ini │   │   │   ├── templates │   │   │   │   ├── aal.nii.gz │   │   │   │   ├── aal.nii.lut │   │   │   │   ├── aal.nii.txt │   │   │   │   ├── AICHAmc.nii.gz │   │   │   │   ├── AICHAmc.nii.lut │   │   │   │   ├── AICHAmc.nii.txt │   │   │   │   ├── brodmann.nii.gz │   │   │   │   ├── brodmann.nii.lut │   │   │   │   ├── ch2bet.nii.gz │   │   │   │   ├── ch2better.nii.gz │   │   │   │   ├── ch2.nii.gz │   │   │   │   ├── HarvardOxford-cort-maxprob-thr0-1mm.nii.gz │   │   │   │   ├── inia19-NeuroMaps.nii.gz │   │   │   │   ├── inia19-t1-brain.nii.gz │   │   │   │   ├── jhu189.nii.gz │   │   │   │   ├── JHU-WhiteMatter-labels-1mm.nii.gz │   │   │   │   ├── JHU-WhiteMatter-labels-1mm.nii.lut │   │   │   │   ├── JHU-WhiteMatter-labels-1mm.nii.txt │   │   │   │   ├── JHU-WhiteMatter-labels-2mm.nii.gz │   │   │   │   ├── JHU-WhiteMatter-labels-2mm.nii.lut │   │   │   │   ├── JHU-WhiteMatter-labels-2mm.nii.txt │   │   │   │   └── natbrainlab.nii.gz │   │   │   ├── xclip.bat │   │   │   ├── xcut.bat │   │   │   ├── xfmri2.bat │   │   │   ├── xfmri3.bat │   │   │   └── xfmri.bat │   │   ├── MRIcron_linux.zip │   │   ├── project │   │   │   ├── 3DCNN.ipynb │   │   │   ├── best_acc_model_adam-4_sch │   │   │   ├── data -> /content/drive/ │   │   │   ├── masks │   │   │   │   ├── atlases.ipynb │   │   │   │   ├── grad_cam.py │   │   │   │   ├── meanpertrub.py │   │   │   │   ├── obtain_masks.ipynb │   │   │   │   └── __pycache__ │   │   │   │   ├── grad_cam.cpython-36.pyc │   │   │   │   └── meanpertrub.cpython-36.pyc │   │   │   ├── Project Proposal Template.docx │   │   │   └── Untitled presentation.gslides │   │   ├── weights_aug │   │   │   ├── whole_images_epoch_10.pth │   │   │   ├── whole_images_epoch_11.pth │   │   │   ├── whole_images_epoch_12.pth │   │   │   ├── whole_images_epoch_13.pth │   │   │   ├── whole_images_epoch_14.pth │   │   │   ├── whole_images_epoch_15.pth │   │   │   ├── whole_images_epoch_16.pth │   │   │   ├── whole_images_epoch_17.pth │   │   │   ├── whole_images_epoch_18.pth │   │   │   ├── whole_images_epoch_19.pth │   │   │   ├── whole_images_epoch_1.pth │   │   │   ├── whole_images_epoch_20.pth │   │   │   ├── whole_images_epoch_21.pth │   │   │   ├── whole_images_epoch_22.pth │   │   │   ├── whole_images_epoch_23.pth │   │   │   ├── whole_images_epoch_24.pth │   │   │   ├── whole_images_epoch_25.pth │   │   │   ├── whole_images_epoch_26.pth │   │   │   ├── whole_images_epoch_27.pth │   │   │   ├── whole_images_epoch_28.pth │   │   │   ├── whole_images_epoch_29.pth │   │   │   ├── whole_images_epoch_2.pth │   │   │   ├── whole_images_epoch_30.pth │   │   │   ├── whole_images_epoch_31.pth │   │   │   ├── whole_images_epoch_32.pth │   │   │   ├── whole_images_epoch_33.pth │   │   │   ├── whole_images_epoch_34.pth │   │   │   ├── whole_images_epoch_35.pth │   │   │   ├── whole_images_epoch_36.pth │   │   │   ├── whole_images_epoch_37.pth │   │   │   ├── whole_images_epoch_38.pth │   │   │   ├── whole_images_epoch_39.pth │   │   │   ├── whole_images_epoch_3.pth │   │   │   ├── whole_images_epoch_4.pth │   │   │   ├── whole_images_epoch_5.pth │   │   │   ├── whole_images_epoch_6.pth │   │   │   ├── whole_images_epoch_7.pth │   │   │   ├── whole_images_epoch_8.pth │   │   │   └── whole_images_epoch_9.pth │   │   └── weights_hist │   │   ├── whole_images_epoch_10.pth │   │   ├── whole_images_epoch_11.pth │   │   ├── whole_images_epoch_12.pth │   │   ├── whole_images_epoch_13.pth │   │   ├── whole_images_epoch_14.pth │   │   ├── whole_images_epoch_15.pth │   │   ├── whole_images_epoch_16.pth │   │   ├── whole_images_epoch_17.pth │   │   ├── whole_images_epoch_18.pth │   │   ├── whole_images_epoch_19.pth │   │   ├── whole_images_epoch_1.pth │   │   ├── whole_images_epoch_20.pth │   │   ├── whole_images_epoch_21.pth │   │   ├── whole_images_epoch_22.pth │   │   ├── whole_images_epoch_23.pth │   │   ├── whole_images_epoch_24.pth │   │   ├── whole_images_epoch_2.pth │   │   ├── whole_images_epoch_3.pth │   │   ├── whole_images_epoch_4.pth │   │   ├── whole_images_epoch_5.pth │   │   ├── whole_images_epoch_6.pth │   │   ├── whole_images_epoch_7.pth │   │   ├── whole_images_epoch_8.pth │   │   └── whole_images_epoch_9.pth │   ├── NGS_8_Transcriptomics_2.gdoc │   ├── PHD_репорты │   │   ├── PhD 1st year Review Progress.gslides │   │   ├── report phd1 2022.gdoc │   │   ├── tf00000009.xlsx │   │   ├── tf03987160_win32.gsheet │   │   └── tf03987160_win32.xltx │   ├── presentashky │   │   ├── 211567321cd04e6fadf1df12a2fd385f.pptx │   │   ├── Broadway.gdoc │   │   ├── Cute Instagram Business Plan by Slidesgo.pptx │   │   ├── elections.gdoc │   │   ├── Untitled document (1).gdoc │   │   ├── Untitled document.gdoc │   │   ├── Untitled presentation.gslides │   │   ├── Us Among Them! _ by Slidesgo.pptx │   │   └── АЛИСА_Happy_bday.pptx │   ├── report 1 мая 2018-23 июня 2018.html.gdoc │   ├── report 2 июля 2018-4 июля 2018.gdoc │   ├── robot │   │   ├── 01 │   │   │   ├── ananas_video.com-video-to-gif.gif │   │   │   ├── Copy of GTSAM_CAM_ALIGNED (2).ipynb │   │   │   ├── egor_app.com-video-to-gif.gif │   │   │   ├── movie.mp4 │   │   │   ├── Offline visual-inertial 3D reconstruction.gslides │   │   │   └── Project Proposal Team 1.gdoc │   │   ├── GTSAM_CAM_ALIGNED (2).ipynb │   │   ├── hw1 │   │   │   ├── Perception_in_Robotics_PS_1.ipynb │   │   │   ├── task2.ipynb │   │   │   └── task3.ipynb │   │   ├── hw2 │   │   │   ├── Untitled0.ipynb │   │   │   └── Untitled document.gdoc │   │   ├── IMU optimized estimate.mp4 │   │   ├── IMU preintegration estimate.mp4 │   │   ├── movie.mp4 │   │   ├── project │   │   │   ├── 2020_03_29_15_53_59 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── matching.pkl │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── 2020_03_29_15_54_20 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── 2020_03_29_15_56_18 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── 2020_03_30_13_47_38 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── matching.pkl │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── 2020_03_30_13_47_55 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── matching.pkl │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── anim │   │   │   │   ├── 1003.png │   │   │   │   ├── 110.png │   │   │   │   ├── 123.png │   │   │   │   ├── 137.png │   │   │   │   ├── 150.png │   │   │   │   ├── 15.png │   │   │   │   ├── 164.png │   │   │   │   ├── 177.png │   │   │   │   ├── 191.png │   │   │   │   ├── 204.png │   │   │   │   ├── 218.png │   │   │   │   ├── 232.png │   │   │   │   ├── 245.png │   │   │   │   ├── 259.png │   │   │   │   ├── 272.png │   │   │   │   ├── 286.png │   │   │   │   ├── 299.png │   │   │   │   ├── 29.png │   │   │   │   ├── 2.png │   │   │   │   ├── 313.png │   │   │   │   ├── 326.png │   │   │   │   ├── 340.png │   │   │   │   ├── 353.png │   │   │   │   ├── 367.png │   │   │   │   ├── 380.png │   │   │   │   ├── 394.png │   │   │   │   ├── 407.png │   │   │   │   ├── 421.png │   │   │   │   ├── 42.png │   │   │   │   ├── 435.png │   │   │   │   ├── 448.png │   │   │   │   ├── 462.png │   │   │   │   ├── 475.png │   │   │   │   ├── 489.png │   │   │   │   ├── 502.png │   │   │   │   ├── 516.png │   │   │   │   ├── 529.png │   │   │   │   ├── 543.png │   │   │   │   ├── 556.png │   │   │   │   ├── 56.png │   │   │   │   ├── 570.png │   │   │   │   ├── 583.png │   │   │   │   ├── 597.png │   │   │   │   ├── 610.png │   │   │   │   ├── 624.png │   │   │   │   ├── 637.png │   │   │   │   ├── 651.png │   │   │   │   ├── 665.png │   │   │   │   ├── 678.png │   │   │   │   ├── 692.png │   │   │   │   ├── 69.png │   │   │   │   ├── 705.png │   │   │   │   ├── 719.png │   │   │   │   ├── 732.png │   │   │   │   ├── 746.png │   │   │   │   ├── 759.png │   │   │   │   ├── 773.png │   │   │   │   ├── 786.png │   │   │   │   ├── 800.png │   │   │   │   ├── 813.png │   │   │   │   ├── 827.png │   │   │   │   ├── 83.png │   │   │   │   ├── 840.png │   │   │   │   ├── 854.png │   │   │   │   ├── 867.png │   │   │   │   ├── 881.png │   │   │   │   ├── 895.png │   │   │   │   ├── 908.png │   │   │   │   ├── 922.png │   │   │   │   ├── 935.png │   │   │   │   ├── 949.png │   │   │   │   ├── 962.png │   │   │   │   ├── 96.png │   │   │   │   ├── 976.png │   │   │   │   └── 989.png │   │   │   ├── anim1 │   │   │   │   └── 123.png │   │   │   ├── circle_gold.npy │   │   │   ├── data │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── GTSAM.ipynb │   │   │   ├── movie1.gif │   │   │   ├── movie.gif │   │   │   ├── movie_optim.gif │   │   │   ├── sample_data │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── Untitled0.ipynb │   │   │   ├── Untitled1.ipynb │   │   │   └── Untitled2.ipynb │   │   └── video_2020-03-29_06-06-05.mp4 │   ├── thumb_39771.jpg&t=1.gdoc │   ├── top-use-cases-for-blockchain-in-hospitality-thoughtpost.pdf │   ├── Untitled0.ipynb │   ├── Untitled Diagram (1).drawio │   ├── Untitled Diagram (1).html │   ├── Untitled Diagram (2).html │   ├── Untitled Diagram (3).html │   ├── Untitled Diagram.drawio │   ├── Untitled Diagram.html │   ├── Untitled document (1).gdoc │   ├── Untitled document (2).gdoc │   ├── Untitled document.gdoc │   ├── USA culture.gslides │   ├── Zd4rysD7oxQ.jpg │   ├── Алиса │   │   ├── litrev.xlsx │   │   └── Untitled0.ipynb │   ├── Бизнес и инновации в сфере ИТ │   │   ├── Стартапы.gdoc │   │   └── Хайп.gdoc │   ├── блокчейн │   │   ├── 2_5402201906334400948.7z │   │   ├── Blockchain.Diagram.1.pdf │   │   ├── pharmablockchain.html │   │   ├── Дружинина_КР 3.docx │   │   ├── Дружинина_КР 3.docx.gdoc │   │   ├── Копия Проект по использованию технологии блокчейн.gslides │   │   ├── КР_блокчейн.2.docx │   │   ├── КР_блокчейн.2.gdoc │   │   ├── КР_блокчейн.docx │   │   ├── КР_блокчейн.docx.gdoc │   │   ├── Признаки.txt │   │   ├── Проект по использованию технологии блокчейн.pdf │   │   └── Реквизиты.gdoc │   ├── Дружинина_КР 3.docx │   ├── Дружинина_КР 3.docx.gdoc │   ├── Имитационное моделирование │   │   ├── Exam_0_IM.gdoc │   │   ├── IM_1 (1).doc │   │   ├── IM_1.gslides │   │   ├── IM_1.ppt │   │   ├── IM_2.doc │   │   ├── IM_2.gslides │   │   ├── IM_2.ppt │   │   ├── IM_3.doc │   │   ├── IM_3.gslides │   │   ├── IM_3.ppt │   │   ├── IM_3.xls │   │   ├── IM_4.doc │   │   ├── IM_4.gslides │   │   ├── IM_4.pptx │   │   ├── IM_4.xls │   │   ├── IM_5.doc │   │   ├── IM_5.gslides │   │   ├── IM_5.ppt │   │   ├── IM_6.doc │   │   ├── IM_6.gslides │   │   ├── IM_6.ppt │   │   ├── IM_7.gslides │   │   ├── IM_7.ppt │   │   ├── Боев В.Д. - Моделирование в AnyLogic (2016, Военная академия связи).pdf │   │   ├── Подключение_к_УРС.pdf │   │   └── Таха Х.А. - Введение в исследование операций (2005)(7-e изд.).djvu │   ├── Квиз.gdoc │   ├── КР.docx │   ├── курсовая.pptx │   ├── курсовая.pptx.gslides │   ├── Курсовая работа.docx │   ├── Курсовая работа.docx.gdoc │   ├── Курсовая работа Дружининой (1).docx.gdoc │   ├── Курсовая работа Дружининой.docx │   ├── Курсовая работа Дружининой.docx.gdoc │   ├── Лаборатория искусственного интеллекта.gslides │   ├── МАГ.gslides │   ├── нейро │   │   ├── neuro_2021-20220904T163116Z-001.zip │   │   ├── neuro2022 │   │   │   └── seminar_1 │   │   │   ├── Copy of homework_1.ipynb │   │   │   ├── Copy of seminar_tensorboard.ipynb │   │   │   ├── Copy of shell_intro.ipynb │   │   │   ├── Copy of TorchIO tutorial.ipynb │   │   │   ├── Lecture 0. Course intro.gslides │   │   │   └── Untitled document.gdoc │   │   ├── Untitled presentation.gslides │   │   └── What is the firing rate.gdoc │   ├── Николенко С. И. Глубокое обучение_OCR (2018).pdf │   ├── Новая презентация.gslides │   ├── Новый документ (1).gdoc │   ├── Новый документ (2).gdoc │   ├── Новый документ (3).gdoc │   ├── Новый документ (4).gdoc │   ├── Новый документ (5).gdoc │   ├── Новый документ (6).gdoc │   ├── Новый документ.gdoc │   ├── практика │   │   ├── Дневник.gdoc │   │   ├── Отчет.gdoc │   │   └── Титульник.gdoc │   ├── Проект по использованию технологии блокчейн.gdoc │   └── Проект по использованию технологии блокчейн.pdf └── sample_data ├── anscombe.json ├── california_housing_test.csv ├── california_housing_train.csv ├── mnist_test.csv ├── mnist_train_small.csv └── README.md 190 directories, 16246 files

Who is the owner of the files?

! ls -l sample_data
total 55504 -rwxr-xr-x 1 root root 1697 Jan 1 2000 anscombe.json -rw-r--r-- 1 root root 301141 Aug 31 13:47 california_housing_test.csv -rw-r--r-- 1 root root 1706430 Aug 31 13:47 california_housing_train.csv -rw-r--r-- 1 root root 18289443 Aug 31 13:47 mnist_test.csv -rw-r--r-- 1 root root 36523880 Aug 31 13:47 mnist_train_small.csv -rwxr-xr-x 1 root root 930 Jan 1 2000 README.md

Add new user. Change the owner Recursively (in depth of the directory)

! useradd me ! chown -R me:me sample_data/ ! ls -lh sample_data
total 55M -rwxr-xr-x 1 me me 1.7K Jan 1 2000 anscombe.json -rw-r--r-- 1 me me 295K Aug 31 13:47 california_housing_test.csv -rw-r--r-- 1 me me 1.7M Aug 31 13:47 california_housing_train.csv -rw-r--r-- 1 me me 18M Aug 31 13:47 mnist_test.csv -rw-r--r-- 1 me me 35M Aug 31 13:47 mnist_train_small.csv -rwxr-xr-x 1 me me 930 Jan 1 2000 README.md

Remove the user. Check the owner

! userdel me ! ls -lh sample_data
total 55M -rwxr-xr-x 1 1000 1000 1.7K Jan 1 2000 anscombe.json -rw-r--r-- 1 1000 1000 295K Aug 31 13:47 california_housing_test.csv -rw-r--r-- 1 1000 1000 1.7M Aug 31 13:47 california_housing_train.csv -rw-r--r-- 1 1000 1000 18M Aug 31 13:47 mnist_test.csv -rw-r--r-- 1 1000 1000 35M Aug 31 13:47 mnist_train_small.csv -rwxr-xr-x 1 1000 1000 930 Jan 1 2000 README.md

There is no more user me, but files still hold his UID (user ID) and GID (group ID): 1000. Change back the owner

! chown -R root:root sample_data/ ! ls -l
total 12 drwx------ 5 root root 4096 Sep 4 20:49 drive drwxr-xr-x 1 root root 4096 Aug 31 13:47 sample_data

Space

Disk

How much sample_data uses the disk in sum?

! du -hs sample_data
55M sample_data

How much space is free on the disk the /content is mounted to?

! df -h /content
Filesystem Size Used Avail Use% Mounted on overlay 108G 38G 71G 35% /

Info about disk devices

! lsblk -o NAME,SIZE
NAME SIZE loop0 110G sda 85G ├─sda1 80.9G ├─sda2 16M ├─sda3 2G ├─sda4 16M ├─sda5 2G ├─sda6 512B ├─sda7 512B ├─sda8 16M ├─sda9 512B ├─sda10 512B ├─sda11 8M └─sda12 32M

and its' mount points

! findmnt -o TARGET,FSTYPE,SIZE -t ext4
TARGET FSTYPE SIZE /etc/resolv.conf ext4 80.7G /etc/hostname ext4 80.7G /etc/hosts ext4 80.7G

Memory

Free memory on CPU

! free -h
total used free shared buff/cache available Mem: 12G 806M 9.6G 1.2M 2.3G 11G Swap: 0B 0B 0B

Free memory on GPU

! nvidia-smi
NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.

CPU Cores

Number of logical cores

!nproc
2

CPU info

!lscpu
Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 2 On-line CPU(s) list: 0,1 Thread(s) per core: 2 Core(s) per socket: 1 Socket(s): 1 NUMA node(s): 1 Vendor ID: GenuineIntel CPU family: 6 Model: 79 Model name: Intel(R) Xeon(R) CPU @ 2.20GHz Stepping: 0 CPU MHz: 2199.998 BogoMIPS: 4399.99 Hypervisor vendor: KVM Virtualization type: full L1d cache: 32K L1i cache: 32K L2 cache: 256K L3 cache: 56320K NUMA node0 CPU(s): 0,1 Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities

Namespaces

As you might see echo command outputs text string to the terminal.

To understand interrelations between parent and child shells, let's create shell-script inside.sh with the following content

echo "inside: $namespace PID:$$" namespace=internal echo "inside: $namespace PID:$$"

You can do it with changing the context of commands output.

Operator >

redirects shell-command output from the terminal to the head of the file

! rm inside.sh # To make sure inside.sh does not exist
rm: cannot remove 'inside.sh': No such file or directory
! ls
drive sample_data
! echo 'echo " inside: $namespace PID:$$"' > inside.sh ! ls -l inside.sh ! wc inside.sh
-rw-r--r-- 1 root root 34 Sep 4 20:50 inside.sh 1 5 34 inside.sh

Operator >>

redirects shell-command output from the terminal to the tail of the file

! echo 'namespace=internal' >> inside.sh ! ls -l inside.sh ! wc inside.sh
-rw-r--r-- 1 root root 53 Sep 4 20:50 inside.sh 2 6 53 inside.sh
! echo 'echo " inside: $namespace PID:$$"' >> inside.sh ! ls -l inside.sh ! wc inside.sh
-rw-r--r-- 1 root root 87 Sep 4 20:50 inside.sh 3 11 87 inside.sh

You haven't seen any output of echo that has been input for inside.sh

! cat inside.sh
echo " inside: $namespace PID:$$" namespace=internal echo " inside: $namespace PID:$$"

Sub-shell and Super-shell

! namespace=external; echo "outside: $namespace PID:$$"; . inside.sh; echo "outside: $namespace PID:$$"
outside: external PID:563 inside: external PID:563 inside: internal PID:563 outside: internal PID:563
! namespace=external; echo "outside: $namespace PID:$$"; source inside.sh; echo "outside: $namespace PID:$$"
outside: external PID:564 inside: external PID:564 inside: internal PID:564 outside: internal PID:564
! namespace=external; echo "outside: $namespace PID:$$"; (source inside.sh); echo "outside: $namespace PID:$$"
outside: external PID:565 inside: external PID:565 inside: internal PID:565 outside: external PID:565
! (namespace=external; echo "outside: $namespace PID:$$"; source inside.sh); echo "outside: $namespace PID:$$"
outside: external PID:567 inside: external PID:567 inside: internal PID:567 outside: PID:567
! namespace=external; echo "outside: $namespace PID:$$"; source inside.sh; unset namespace; echo "outside: $namespace PID:$$"
outside: external PID:569 inside: external PID:569 inside: internal PID:569 outside: PID:569
! namespace=external; echo "outside: $namespace PID:$$"; sh inside.sh; echo "outside: $namespace PID:$$"
outside: external PID:570 inside: PID:571 inside: internal PID:571 outside: external PID:570
! printenv
NV_LIBCUBLAS_DEV_VERSION=11.3.0.106-1 NV_CUDA_COMPAT_PACKAGE=cuda-compat-11-1 NV_CUDNN_PACKAGE_DEV=libcudnn8-dev=8.0.5.39-1+cuda11.1 PYDEVD_USE_FRAME_EVAL=NO LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64 NV_LIBNCCL_DEV_PACKAGE=libnccl-dev=2.8.4-1+cuda11.1 CLOUDSDK_PYTHON=python3 LANG=en_US.UTF-8 NV_LIBNPP_DEV_PACKAGE=libnpp-dev-11-1=11.1.2.301-1 ENABLE_DIRECTORYPREFETCHER=1 HOSTNAME=065b365805a2 OLDPWD=/ CLOUDSDK_CONFIG=/content/.config USE_AUTH_EPHEM=1 NV_LIBNPP_VERSION=11.1.2.301-1 NV_NVPROF_DEV_PACKAGE=cuda-nvprof-11-1=11.1.105-1 NVIDIA_VISIBLE_DEVICES=all NV_NVPROF_VERSION=11.1.105-1 NV_LIBCUSPARSE_VERSION=11.3.0.10-1 DATALAB_SETTINGS_OVERRIDES={"kernelManagerProxyPort":6000,"kernelManagerProxyHost":"172.28.0.3","jupyterArgs":["--ip=172.28.0.2"],"debugAdapterMultiplexerPath":"/usr/local/bin/dap_multiplexer","enableLsp":true} NV_LIBCUBLAS_DEV_PACKAGE=libcublas-dev-11-1=11.3.0.106-1 ENV=/root/.bashrc PAGER=cat NCCL_VERSION=2.8.4-1 TF_FORCE_GPU_ALLOW_GROWTH=true JPY_PARENT_PID=42 NO_GCE_CHECK=False PWD=/content NVARCH=x86_64 NV_LIBCUSPARSE_DEV_VERSION=11.3.0.10-1 HOME=/root LAST_FORCED_REBUILD=20220830 CLICOLOR=1 NV_LIBNCCL_PACKAGE_VERSION=2.8.4-1 NV_LIBNCCL_PACKAGE=libnccl2=2.8.4-1+cuda11.1 DEBIAN_FRONTEND=noninteractive NV_LIBNCCL_DEV_PACKAGE_NAME=libnccl-dev NV_CUDA_LIB_VERSION=11.1.1-1 NV_LIBNPP_PACKAGE=libnpp-11-1=11.1.2.301-1 NV_LIBNCCL_PACKAGE_NAME=libnccl2 LIBRARY_PATH=/usr/local/cuda/lib64/stubs NV_NVTX_VERSION=11.1.74-1 NV_LIBCUBLAS_VERSION=11.3.0.106-1 NV_LIBCUBLAS_PACKAGE=libcublas-11-1=11.3.0.106-1 GCE_METADATA_TIMEOUT=3 NV_CUDNN_VERSION=8.0.5.39 NV_CUDA_CUDART_DEV_VERSION=11.1.74-1 GLIBCPP_FORCE_NEW=1 TBE_CREDS_ADDR=172.28.0.1:8008 TERM=xterm-color SHELL=/bin/bash GCS_READ_CACHE_BLOCK_SIZE_MB=16 NV_NVML_DEV_VERSION=11.1.74-1 PYTHONWARNINGS=ignore:::pip._internal.cli.base_command MPLBACKEND=module://ipykernel.pylab.backend_inline CUDA_VERSION=11.1.1 NV_LIBCUBLAS_PACKAGE_NAME=libcublas-11-1 NVIDIA_DRIVER_CAPABILITIES=compute,utility SHLVL=1 PYTHONPATH=/env/python NV_LIBCUBLAS_DEV_PACKAGE_NAME=libcublas-dev-11-1 NVIDIA_REQUIRE_CUDA=cuda>=11.1 brand=tesla,driver>=418,driver<419 brand=tesla,driver>=450,driver<451 NV_LIBNPP_DEV_VERSION=11.1.2.301-1 TBE_EPHEM_CREDS_ADDR=172.28.0.1:8009 NV_CUDA_CUDART_VERSION=11.1.74-1 COLAB_GPU=0 NV_CUDNN_PACKAGE_NAME=libcudnn8 GLIBCXX_FORCE_NEW=1 PATH=/opt/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/tools/node/bin:/tools/google-cloud-sdk/bin NV_LIBNCCL_DEV_PACKAGE_VERSION=2.8.4-1 LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libtcmalloc.so.4 NV_CUDNN_PACKAGE=libcudnn8=8.0.5.39-1+cuda11.1 GIT_PAGER=cat _=/usr/bin/printenv
! env
NV_LIBCUBLAS_DEV_VERSION=11.3.0.106-1 NV_CUDA_COMPAT_PACKAGE=cuda-compat-11-1 NV_CUDNN_PACKAGE_DEV=libcudnn8-dev=8.0.5.39-1+cuda11.1 PYDEVD_USE_FRAME_EVAL=NO LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64 NV_LIBNCCL_DEV_PACKAGE=libnccl-dev=2.8.4-1+cuda11.1 CLOUDSDK_PYTHON=python3 LANG=en_US.UTF-8 NV_LIBNPP_DEV_PACKAGE=libnpp-dev-11-1=11.1.2.301-1 ENABLE_DIRECTORYPREFETCHER=1 HOSTNAME=065b365805a2 OLDPWD=/ CLOUDSDK_CONFIG=/content/.config USE_AUTH_EPHEM=1 NV_LIBNPP_VERSION=11.1.2.301-1 NV_NVPROF_DEV_PACKAGE=cuda-nvprof-11-1=11.1.105-1 NVIDIA_VISIBLE_DEVICES=all NV_NVPROF_VERSION=11.1.105-1 NV_LIBCUSPARSE_VERSION=11.3.0.10-1 DATALAB_SETTINGS_OVERRIDES={"kernelManagerProxyPort":6000,"kernelManagerProxyHost":"172.28.0.3","jupyterArgs":["--ip=172.28.0.2"],"debugAdapterMultiplexerPath":"/usr/local/bin/dap_multiplexer","enableLsp":true} NV_LIBCUBLAS_DEV_PACKAGE=libcublas-dev-11-1=11.3.0.106-1 ENV=/root/.bashrc PAGER=cat NCCL_VERSION=2.8.4-1 TF_FORCE_GPU_ALLOW_GROWTH=true JPY_PARENT_PID=42 NO_GCE_CHECK=False PWD=/content NVARCH=x86_64 NV_LIBCUSPARSE_DEV_VERSION=11.3.0.10-1 HOME=/root LAST_FORCED_REBUILD=20220830 CLICOLOR=1 NV_LIBNCCL_PACKAGE_VERSION=2.8.4-1 NV_LIBNCCL_PACKAGE=libnccl2=2.8.4-1+cuda11.1 DEBIAN_FRONTEND=noninteractive NV_LIBNCCL_DEV_PACKAGE_NAME=libnccl-dev NV_CUDA_LIB_VERSION=11.1.1-1 NV_LIBNPP_PACKAGE=libnpp-11-1=11.1.2.301-1 NV_LIBNCCL_PACKAGE_NAME=libnccl2 LIBRARY_PATH=/usr/local/cuda/lib64/stubs NV_NVTX_VERSION=11.1.74-1 NV_LIBCUBLAS_VERSION=11.3.0.106-1 NV_LIBCUBLAS_PACKAGE=libcublas-11-1=11.3.0.106-1 GCE_METADATA_TIMEOUT=3 NV_CUDNN_VERSION=8.0.5.39 NV_CUDA_CUDART_DEV_VERSION=11.1.74-1 GLIBCPP_FORCE_NEW=1 TBE_CREDS_ADDR=172.28.0.1:8008 TERM=xterm-color SHELL=/bin/bash GCS_READ_CACHE_BLOCK_SIZE_MB=16 NV_NVML_DEV_VERSION=11.1.74-1 PYTHONWARNINGS=ignore:::pip._internal.cli.base_command MPLBACKEND=module://ipykernel.pylab.backend_inline CUDA_VERSION=11.1.1 NV_LIBCUBLAS_PACKAGE_NAME=libcublas-11-1 NVIDIA_DRIVER_CAPABILITIES=compute,utility SHLVL=1 PYTHONPATH=/env/python NV_LIBCUBLAS_DEV_PACKAGE_NAME=libcublas-dev-11-1 NVIDIA_REQUIRE_CUDA=cuda>=11.1 brand=tesla,driver>=418,driver<419 brand=tesla,driver>=450,driver<451 NV_LIBNPP_DEV_VERSION=11.1.2.301-1 TBE_EPHEM_CREDS_ADDR=172.28.0.1:8009 NV_CUDA_CUDART_VERSION=11.1.74-1 COLAB_GPU=0 NV_CUDNN_PACKAGE_NAME=libcudnn8 GLIBCXX_FORCE_NEW=1 PATH=/opt/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/tools/node/bin:/tools/google-cloud-sdk/bin NV_LIBNCCL_DEV_PACKAGE_VERSION=2.8.4-1 LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libtcmalloc.so.4 NV_CUDNN_PACKAGE=libcudnn8=8.0.5.39-1+cuda11.1 GIT_PAGER=cat _=/usr/bin/env
! set
BASH=/bin/bash BASHOPTS=cmdhist:complete_fullquote:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath BASH_ALIASES=() BASH_ARGC=() BASH_ARGV=() BASH_CMDS=() BASH_EXECUTION_STRING=' set' BASH_LINENO=() BASH_SOURCE=() BASH_VERSINFO=([0]="4" [1]="4" [2]="20" [3]="1" [4]="release" [5]="x86_64-pc-linux-gnu") BASH_VERSION='4.4.20(1)-release' CLICOLOR=1 CLOUDSDK_CONFIG=/content/.config CLOUDSDK_PYTHON=python3 COLAB_GPU=0 CUDA_VERSION=11.1.1 DATALAB_SETTINGS_OVERRIDES='{"kernelManagerProxyPort":6000,"kernelManagerProxyHost":"172.28.0.3","jupyterArgs":["--ip=172.28.0.2"],"debugAdapterMultiplexerPath":"/usr/local/bin/dap_multiplexer","enableLsp":true}' DEBIAN_FRONTEND=noninteractive DIRSTACK=() ENABLE_DIRECTORYPREFETCHER=1 ENV=/root/.bashrc EUID=0 GCE_METADATA_TIMEOUT=3 GCS_READ_CACHE_BLOCK_SIZE_MB=16 GIT_PAGER=cat GLIBCPP_FORCE_NEW=1 GLIBCXX_FORCE_NEW=1 GROUPS=() HOME=/root HOSTNAME=065b365805a2 HOSTTYPE=x86_64 IFS=$' \t\n' JPY_PARENT_PID=42 LANG=en_US.UTF-8 LAST_FORCED_REBUILD=20220830 LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64 LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libtcmalloc.so.4 LIBRARY_PATH=/usr/local/cuda/lib64/stubs MACHTYPE=x86_64-pc-linux-gnu MPLBACKEND=module://ipykernel.pylab.backend_inline NCCL_VERSION=2.8.4-1 NO_GCE_CHECK=False NVARCH=x86_64 NVIDIA_DRIVER_CAPABILITIES=compute,utility NVIDIA_REQUIRE_CUDA='cuda>=11.1 brand=tesla,driver>=418,driver<419 brand=tesla,driver>=450,driver<451' NVIDIA_VISIBLE_DEVICES=all NV_CUDA_COMPAT_PACKAGE=cuda-compat-11-1 NV_CUDA_CUDART_DEV_VERSION=11.1.74-1 NV_CUDA_CUDART_VERSION=11.1.74-1 NV_CUDA_LIB_VERSION=11.1.1-1 NV_CUDNN_PACKAGE=libcudnn8=8.0.5.39-1+cuda11.1 NV_CUDNN_PACKAGE_DEV=libcudnn8-dev=8.0.5.39-1+cuda11.1 NV_CUDNN_PACKAGE_NAME=libcudnn8 NV_CUDNN_VERSION=8.0.5.39 NV_LIBCUBLAS_DEV_PACKAGE=libcublas-dev-11-1=11.3.0.106-1 NV_LIBCUBLAS_DEV_PACKAGE_NAME=libcublas-dev-11-1 NV_LIBCUBLAS_DEV_VERSION=11.3.0.106-1 NV_LIBCUBLAS_PACKAGE=libcublas-11-1=11.3.0.106-1 NV_LIBCUBLAS_PACKAGE_NAME=libcublas-11-1 NV_LIBCUBLAS_VERSION=11.3.0.106-1 NV_LIBCUSPARSE_DEV_VERSION=11.3.0.10-1 NV_LIBCUSPARSE_VERSION=11.3.0.10-1 NV_LIBNCCL_DEV_PACKAGE=libnccl-dev=2.8.4-1+cuda11.1 NV_LIBNCCL_DEV_PACKAGE_NAME=libnccl-dev NV_LIBNCCL_DEV_PACKAGE_VERSION=2.8.4-1 NV_LIBNCCL_PACKAGE=libnccl2=2.8.4-1+cuda11.1 NV_LIBNCCL_PACKAGE_NAME=libnccl2 NV_LIBNCCL_PACKAGE_VERSION=2.8.4-1 NV_LIBNPP_DEV_PACKAGE=libnpp-dev-11-1=11.1.2.301-1 NV_LIBNPP_DEV_VERSION=11.1.2.301-1 NV_LIBNPP_PACKAGE=libnpp-11-1=11.1.2.301-1 NV_LIBNPP_VERSION=11.1.2.301-1 NV_NVML_DEV_VERSION=11.1.74-1 NV_NVPROF_DEV_PACKAGE=cuda-nvprof-11-1=11.1.105-1 NV_NVPROF_VERSION=11.1.105-1 NV_NVTX_VERSION=11.1.74-1 OLDPWD=/ OPTERR=1 OPTIND=1 OSTYPE=linux-gnu PAGER=cat PATH=/opt/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/tools/node/bin:/tools/google-cloud-sdk/bin PPID=56 PS4='+ ' PWD=/content PYDEVD_USE_FRAME_EVAL=NO PYTHONPATH=/env/python PYTHONWARNINGS=ignore:::pip._internal.cli.base_command SHELL=/bin/bash SHELLOPTS=braceexpand:hashall:interactive-comments SHLVL=1 TBE_CREDS_ADDR=172.28.0.1:8008 TBE_EPHEM_CREDS_ADDR=172.28.0.1:8009 TERM=xterm-color TF_FORCE_GPU_ALLOW_GROWTH=true UID=0 USE_AUTH_EPHEM=1 _=/bin/bash
! namespace=external; echo "outside: $namespace PID:$$"; export namespace; sh inside.sh; echo "outside: $namespace PID:$$"
outside: external PID:575 inside: external PID:576 inside: internal PID:576 outside: external PID:575
! namespace=external; echo "outside: $namespace PID:$$"; exec ./inside.sh; echo "outside: $namespace PID:$$"
outside: external PID:577 /bin/bash: /content/inside.sh: Permission denied /bin/bash: line 0: exec: /content/inside.sh: cannot execute: Permission denied
! namespace=external; echo "outside: $namespace PID:$$"; bash -c 'source inside.sh; echo "outside: $namespace PID:$$"'
outside: external PID:578 inside: PID:579 inside: internal PID:579 outside: internal PID:579
! namespace=external; echo "outside: $namespace PID:$$"; (sh inside.sh; echo "outside: $namespace PID:$$")
outside: external PID:580 inside: PID:582 inside: internal PID:582 outside: external PID:580
! namespace=external; echo "outside: $namespace PID:$$"; sh (inside.sh; echo "outside: $namespace PID:$$")
/bin/bash: -c: line 0: syntax error near unexpected token `inside.sh' /bin/bash: -c: line 0: ` namespace=external; echo "outside: $namespace PID:$$"; sh (inside.sh; echo "outside: $namespace PID:$$")'
! namespace=external; echo "outside: $namespace PID:$$"; (source inside.sh; echo "outside: $namespace PID:$$")
outside: external PID:584 inside: external PID:584 inside: internal PID:584 outside: internal PID:584

Subsstitutions

Shell strings (quoted stuff) possess ability to be constant or variable. Compare

! namespace=external; echo $namespace
external
! namespace=external; echo "$namespace"
external
! namespace=external; echo '$namespace'
$namespace
! namespace=external; echo "$namespace $namespace"
external external
! namespace=external; echo $namespace $namespace
external external
! namespace=external; sh -c 'namespace=internal; echo $namespace'
internal
! namespace=external; sh -c "namespace=internal; echo $namespace"
external

Permissions

Although inside.sh extension .sh means executing by shell, you can't execute text file ordinary way until you make it executable

! ./inside.sh
/bin/bash: ./inside.sh: Permission denied

Change permission mode of inside.sh to executable for the owner (user)

! chmod u+x inside.sh ! ls -l inside.sh
-rwxr--r-- 1 root root 87 Sep 4 20:50 inside.sh
! chmod g+w inside.sh ! ls -l inside.sh ! chmod go-rw inside.sh ! ls -l inside.sh
-rwxrw-r-- 1 root root 87 Sep 4 20:50 inside.sh -rwx------ 1 root root 87 Sep 4 20:50 inside.sh
! namespace=external; echo "outside: $namespace PID:$$"; ./inside.sh; echo "outside: $namespace PID:$$"
outside: external PID:602 inside: PID:603 inside: internal PID:603 outside: external PID:602
! pwd; echo $PWD ! cd ..; namespace=external; echo "outside: $namespace PID:$$"; content/inside.sh; echo "outside: $namespace PID:$$"; pwd ! pwd
/content /content outside: external PID:605 inside: PID:606 inside: internal PID:606 outside: external PID:605 / /content
! cat -n inside.sh | head -2
1 echo " inside: $namespace PID:$$" 2 namespace=internal

When you wonder what command in the script is outputting to terminal, you can enable debug mode set -x on the head of the script

! sed -i '1s/^/set -x\n/' inside.sh ! ./inside.sh ! sed -i '1d' inside.sh
++ echo ' inside: PID:612' inside: PID:612 ++ namespace=internal ++ echo ' inside: internal PID:612' inside: internal PID:612
! cat inside.sh
echo " inside: $namespace PID:$$" namespace=internal echo " inside: $namespace PID:$$"
! sed '1d' inside.sh; cat inside.sh
namespace=internal echo " inside: $namespace PID:$$" echo " inside: $namespace PID:$$" namespace=internal echo " inside: $namespace PID:$$"
! sed -i 's/set/SET/g' inside.sh; cat inside.sh
echo " inside: $namespace PID:$$" namespace=internal echo " inside: $namespace PID:$$"
!set | cut -d= -f1 | sort
_ BASH BASH_ALIASES BASH_ARGC BASH_ARGV BASH_CMDS BASH_EXECUTION_STRING BASH_LINENO BASHOPTS BASH_SOURCE BASH_VERSINFO BASH_VERSION CLICOLOR CLOUDSDK_CONFIG CLOUDSDK_PYTHON COLAB_GPU CUDA_VERSION DATALAB_SETTINGS_OVERRIDES DEBIAN_FRONTEND DIRSTACK ENABLE_DIRECTORYPREFETCHER ENV EUID GCE_METADATA_TIMEOUT GCS_READ_CACHE_BLOCK_SIZE_MB GIT_PAGER GLIBCPP_FORCE_NEW GLIBCXX_FORCE_NEW GROUPS HOME HOSTNAME HOSTTYPE IFS JPY_PARENT_PID LANG LAST_FORCED_REBUILD LD_LIBRARY_PATH LD_PRELOAD LIBRARY_PATH MACHTYPE MPLBACKEND NCCL_VERSION NO_GCE_CHECK NVARCH NV_CUDA_COMPAT_PACKAGE NV_CUDA_CUDART_DEV_VERSION NV_CUDA_CUDART_VERSION NV_CUDA_LIB_VERSION NV_CUDNN_PACKAGE NV_CUDNN_PACKAGE_DEV NV_CUDNN_PACKAGE_NAME NV_CUDNN_VERSION NVIDIA_DRIVER_CAPABILITIES NVIDIA_REQUIRE_CUDA NVIDIA_VISIBLE_DEVICES NV_LIBCUBLAS_DEV_PACKAGE NV_LIBCUBLAS_DEV_PACKAGE_NAME NV_LIBCUBLAS_DEV_VERSION NV_LIBCUBLAS_PACKAGE NV_LIBCUBLAS_PACKAGE_NAME NV_LIBCUBLAS_VERSION NV_LIBCUSPARSE_DEV_VERSION NV_LIBCUSPARSE_VERSION NV_LIBNCCL_DEV_PACKAGE NV_LIBNCCL_DEV_PACKAGE_NAME NV_LIBNCCL_DEV_PACKAGE_VERSION NV_LIBNCCL_PACKAGE NV_LIBNCCL_PACKAGE_NAME NV_LIBNCCL_PACKAGE_VERSION NV_LIBNPP_DEV_PACKAGE NV_LIBNPP_DEV_VERSION NV_LIBNPP_PACKAGE NV_LIBNPP_VERSION NV_NVML_DEV_VERSION NV_NVPROF_DEV_PACKAGE NV_NVPROF_VERSION NV_NVTX_VERSION OLDPWD OPTERR OPTIND OSTYPE PAGER PATH PPID PS4 PWD PYDEVD_USE_FRAME_EVAL PYTHONPATH PYTHONWARNINGS SHELL SHELLOPTS SHLVL TBE_CREDS_ADDR TBE_EPHEM_CREDS_ADDR TERM TF_FORCE_GPU_ALLOW_GROWTH UID USE_AUTH_EPHEM
! (set | cut -d= -f1) | grep -v -E "'$(env | cut -d= -f1 | tr '\n' '|')'"
BASH BASHOPTS DIRSTACK EUID GROUPS HOSTTYPE IFS MACHTYPE OPTERR OPTIND OSTYPE PPID PS4 UID
!printenv HOME
/root
!set
BASH=/bin/bash BASHOPTS=cmdhist:complete_fullquote:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath BASH_ALIASES=() BASH_ARGC=() BASH_ARGV=() BASH_CMDS=() BASH_EXECUTION_STRING=set BASH_LINENO=() BASH_SOURCE=() BASH_VERSINFO=([0]="4" [1]="4" [2]="20" [3]="1" [4]="release" [5]="x86_64-pc-linux-gnu") BASH_VERSION='4.4.20(1)-release' CLICOLOR=1 CLOUDSDK_CONFIG=/content/.config CLOUDSDK_PYTHON=python3 COLAB_GPU=0 CUDA_VERSION=11.1.1 DATALAB_SETTINGS_OVERRIDES='{"kernelManagerProxyPort":6000,"kernelManagerProxyHost":"172.28.0.3","jupyterArgs":["--ip=172.28.0.2"],"debugAdapterMultiplexerPath":"/usr/local/bin/dap_multiplexer","enableLsp":true}' DEBIAN_FRONTEND=noninteractive DIRSTACK=() ENABLE_DIRECTORYPREFETCHER=1 ENV=/root/.bashrc EUID=0 GCE_METADATA_TIMEOUT=3 GCS_READ_CACHE_BLOCK_SIZE_MB=16 GIT_PAGER=cat GLIBCPP_FORCE_NEW=1 GLIBCXX_FORCE_NEW=1 GROUPS=() HOME=/root HOSTNAME=065b365805a2 HOSTTYPE=x86_64 IFS=$' \t\n' JPY_PARENT_PID=42 LANG=en_US.UTF-8 LAST_FORCED_REBUILD=20220830 LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64 LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libtcmalloc.so.4 LIBRARY_PATH=/usr/local/cuda/lib64/stubs MACHTYPE=x86_64-pc-linux-gnu MPLBACKEND=module://ipykernel.pylab.backend_inline NCCL_VERSION=2.8.4-1 NO_GCE_CHECK=False NVARCH=x86_64 NVIDIA_DRIVER_CAPABILITIES=compute,utility NVIDIA_REQUIRE_CUDA='cuda>=11.1 brand=tesla,driver>=418,driver<419 brand=tesla,driver>=450,driver<451' NVIDIA_VISIBLE_DEVICES=all NV_CUDA_COMPAT_PACKAGE=cuda-compat-11-1 NV_CUDA_CUDART_DEV_VERSION=11.1.74-1 NV_CUDA_CUDART_VERSION=11.1.74-1 NV_CUDA_LIB_VERSION=11.1.1-1 NV_CUDNN_PACKAGE=libcudnn8=8.0.5.39-1+cuda11.1 NV_CUDNN_PACKAGE_DEV=libcudnn8-dev=8.0.5.39-1+cuda11.1 NV_CUDNN_PACKAGE_NAME=libcudnn8 NV_CUDNN_VERSION=8.0.5.39 NV_LIBCUBLAS_DEV_PACKAGE=libcublas-dev-11-1=11.3.0.106-1 NV_LIBCUBLAS_DEV_PACKAGE_NAME=libcublas-dev-11-1 NV_LIBCUBLAS_DEV_VERSION=11.3.0.106-1 NV_LIBCUBLAS_PACKAGE=libcublas-11-1=11.3.0.106-1 NV_LIBCUBLAS_PACKAGE_NAME=libcublas-11-1 NV_LIBCUBLAS_VERSION=11.3.0.106-1 NV_LIBCUSPARSE_DEV_VERSION=11.3.0.10-1 NV_LIBCUSPARSE_VERSION=11.3.0.10-1 NV_LIBNCCL_DEV_PACKAGE=libnccl-dev=2.8.4-1+cuda11.1 NV_LIBNCCL_DEV_PACKAGE_NAME=libnccl-dev NV_LIBNCCL_DEV_PACKAGE_VERSION=2.8.4-1 NV_LIBNCCL_PACKAGE=libnccl2=2.8.4-1+cuda11.1 NV_LIBNCCL_PACKAGE_NAME=libnccl2 NV_LIBNCCL_PACKAGE_VERSION=2.8.4-1 NV_LIBNPP_DEV_PACKAGE=libnpp-dev-11-1=11.1.2.301-1 NV_LIBNPP_DEV_VERSION=11.1.2.301-1 NV_LIBNPP_PACKAGE=libnpp-11-1=11.1.2.301-1 NV_LIBNPP_VERSION=11.1.2.301-1 NV_NVML_DEV_VERSION=11.1.74-1 NV_NVPROF_DEV_PACKAGE=cuda-nvprof-11-1=11.1.105-1 NV_NVPROF_VERSION=11.1.105-1 NV_NVTX_VERSION=11.1.74-1 OLDPWD=/ OPTERR=1 OPTIND=1 OSTYPE=linux-gnu PAGER=cat PATH=/opt/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/tools/node/bin:/tools/google-cloud-sdk/bin PPID=56 PS4='+ ' PWD=/content PYDEVD_USE_FRAME_EVAL=NO PYTHONPATH=/env/python PYTHONWARNINGS=ignore:::pip._internal.cli.base_command SHELL=/bin/bash SHELLOPTS=braceexpand:hashall:interactive-comments SHLVL=1 TBE_CREDS_ADDR=172.28.0.1:8008 TBE_EPHEM_CREDS_ADDR=172.28.0.1:8009 TERM=xterm-color TF_FORCE_GPU_ALLOW_GROWTH=true UID=0 USE_AUTH_EPHEM=1 _=/bin/bash
!v=ex; echo $PPID-$$ $v $(pidof bash); echo $PPID-$$ $v; \ echo $PPID-$$ $v !echo $PPID-$$ $v
56-636 ex 637 636 281 132 56-636 ex 56-636 ex 56-639
!ps aufx -p $$
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND root 17 0.4 0.0 35888 4744 ? Ss 20:49 0:00 tail -n +0 -F root 1 0.4 0.0 992 4 ? Ss 20:49 0:00 /sbin/docker- root 7 1.5 0.5 356416 68040 ? Sl 20:49 0:01 /tools/node/b root 28 4.9 0.0 0 0 ? Z 20:49 0:05 \_ [python3] root 29 0.4 0.3 156136 40944 ? S 20:49 0:00 \_ python3 / root 42 2.4 0.4 202112 63256 ? Sl 20:49 0:02 \_ /usr/bin/ root 56 5.8 0.7 500464 103412 ? Ssl 20:49 0:06 | \_ /usr/ root 640 0.0 0.0 59036 6408 ? R 20:51 0:00 | \_ p root 43 0.2 0.0 715504 9696 ? Sl 20:49 0:00 \_ /usr/loca root 96 4.0 1.2 540096 163192 ? Sl 20:49 0:04 \_ node /dat root 76 0.4 0.1 128976 17456 ? Sl 20:49 0:00 /usr/bin/pyth root 132 0.0 0.0 18380 1428 ? S 20:49 0:00 /bin/bash --n root 133 0.0 0.1 2188120 22504 ? Sl 20:49 0:00 \_ /opt/goog root 200 9.1 0.9 2739056 132348 ? Sl 20:49 0:07 | \_ /opt/ root 134 0.0 0.0 11464 1008 ? S 20:49 0:00 \_ grep --co root 281 0.0 0.0 18380 3088 ? S 20:49 0:00 bash -c tail root 283 0.0 0.0 4572 884 ? S 20:49 0:00 \_ tail -n + root 284 0.0 0.0 31272 9340 ? S 20:49 0:00 \_ python3 / root 282 0.1 0.1 712212 16580 ? Sl 20:49 0:00 /opt/google/d
!ps axwf -o ppid,pid,cmd -p $$
PPID PID CMD 0 17 tail -n +0 -F /root/.config/Google/DriveFS/Logs/dpb.txt /root/.config/Google/DriveFS/Logs/drive_fs.txt 0 1 /sbin/docker-init -- /datalab/run.sh 1 7 /tools/node/bin/node /datalab/web/app.js 7 28 \_ [python3] <defunct> 7 29 \_ python3 /usr/local/bin/colab-fileshim.py 7 42 \_ /usr/bin/python3 /usr/local/bin/jupyter-notebook --ip=172.28.0.2 --port=9000 --FileContentsManager.root_dir=/ -- 42 56 | \_ /usr/bin/python3 -m ipykernel_launcher -f /root/.local/share/jupyter/runtime/kernel-120cab53-f55d-45d7-8795- 56 641 | \_ ps axwf -o ppid,pid,cmd -p 641 7 43 \_ /usr/local/bin/dap_multiplexer --domain_socket_path=/tmp/debugger_g94v47h2q 7 96 \_ node /datalab/web/pyright/pyright-langserver.js --stdio --cancellationReceive=file:6fcdf4ff30ee16f693186e04a40e9 1 76 /usr/bin/python3 /usr/local/lib/python3.7/dist-packages/debugpy/adapter --for-server 44863 --host 127.0.0.1 --port 2 1 132 /bin/bash --noediting -i 132 133 \_ /opt/google/drive/drive --features=fuse_max_background:1000,max_read_qps:1000,max_write_qps:1000,max_operation_b 133 200 | \_ /opt/google/drive/drive --features=fuse_max_background:1000,max_read_qps:1000,max_write_qps:1000,max_operati 132 134 \_ grep --color=auto --line-buffered -E Drive File Stream encountered a problem and has stopped|The domain policy h 1 281 bash -c tail -n +0 -F "/root/.config/Google/DriveFS/Logs/drive_fs.txt" | python3 /opt/google/drive/drive-filter.py > 281 283 \_ tail -n +0 -F /root/.config/Google/DriveFS/Logs/drive_fs.txt 281 284 \_ python3 /opt/google/drive/drive-filter.py 1 282 /opt/google/drive/directoryprefetcher_binary -mountpoint=/content/drive
! pstree -s $$
docker-init───node───jupyter-noteboo───python3───pstree
! pstree -sT
docker-init─┬─bash─┬─drive───drive │ └─grep ├─bash─┬─python3 │ └─tail ├─directoryprefet ├─node─┬─colab-fileshim. │ ├─dap_multiplexer │ ├─jupyter-noteboo───python3───pstree │ ├─node │ └─python3 └─python3
! top
=top - 20:51:04 up 2 min, 0 users, load average: 0.86, 0.45, 0.18 Tasks: 19 total, 1 running, 17 sleeping, 0 stopped, 1 zombie %Cpu(s): 20.2 us, 9.3 sy, 0.0 ni, 65.1 id, 5.0 wa, 0.0 hi, 0.3 si, 0.1 st KiB Mem : 13298580 total, 10038332 free, 826140 used, 2434108 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12240016 avail Mem PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 76 root 20 0 128976 17456 6208 S 6.7 0.1 0:00.47 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 7 root 20 0 356416 68040 32828 S 0.0 0.5 0:01.88 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63256 15156 S 0.0 0.5 0:02.91 jupyter-+ 43 root 20 0 715504 9696 4500 S 0.0 0.1 0:00.24 dap_mult+ 56 root 20 0 500464 103460 23808 S 0.0 0.8 0:06.61 python3 96 root 20 0 540096 163192 31720 S 0.0 1.2 0:04.17 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132348 35444 S 0.0 1.0 0:07.17 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 16580 2184 S 0.0 0.1 0:00.15 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.00 tail top - 20:51:07 up 2 min, 0 users, load average: 0.79, 0.44, 0.18 Tasks: 19 total, 1 running, 17 sleeping, 0 stopped, 1 zombie %Cpu(s): 3.2 us, 1.8 sy, 0.0 ni, 94.2 id, 0.7 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10036568 free, 827812 used, 2434200 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12238484 avail Mem 7 root 20 0 356416 68040 32828 S 1.0 0.5 0:01.91 node 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:06.64 python3 42 root 20 0 202112 63256 15156 S 0.7 0.5 0:02.93 jupyter-+ 43 root 20 0 715504 9696 4500 S 0.7 0.1 0:00.26 dap_mult+ 76 root 20 0 128976 17456 6208 S 0.7 0.1 0:00.49 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:51:10 up 2 min, 0 users, load average: 0.79, 0.44, 0.18 %Cpu(s): 8.7 us, 1.3 sy, 0.0 ni, 89.6 id, 0.0 wa, 0.0 hi, 0.2 si, 0.2 st KiB Mem : 13298580 total, 10084732 free, 779648 used, 2434200 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12286716 avail Mem 96 root 20 0 525760 116332 31720 S 12.7 0.9 0:04.55 node 56 root 20 0 500464 103480 23808 S 1.7 0.8 0:06.69 python3 7 root 20 0 356416 67240 32828 S 1.0 0.5 0:01.94 node 76 root 20 0 128976 17456 6208 S 1.0 0.1 0:00.52 python3 43 root 20 0 715504 9696 4500 S 0.3 0.1 0:00.27 dap_mult+ 42 root 20 0 202112 63256 15156 S 0.0 0.5 0:02.93 jupyter-+ top - 20:51:13 up 2 min, 0 users, load average: 0.73, 0.43, 0.17 %Cpu(s): 4.5 us, 1.2 sy, 0.0 ni, 94.3 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10086716 free, 777624 used, 2434240 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288740 avail Mem 96 root 20 0 524992 116372 31720 S 5.6 0.9 0:04.72 node 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:06.73 python3 7 root 20 0 356416 66228 32828 S 0.7 0.5 0:01.96 node 76 root 20 0 129488 17812 6208 S 0.3 0.1 0:00.53 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63256 15156 S 0.0 0.5 0:02.93 jupyter-+ 43 root 20 0 715504 9696 4500 S 0.0 0.1 0:00.27 dap_mult+ top - 20:51:16 up 2 min, 0 users, load average: 0.73, 0.43, 0.17 %Cpu(s): 2.3 us, 1.2 sy, 0.0 ni, 96.3 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10085456 free, 778844 used, 2434280 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287908 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:06.76 python3 7 root 20 0 356416 66488 32828 S 0.3 0.5 0:01.97 node 42 root 20 0 202112 63256 15156 S 0.3 0.5 0:02.94 jupyter-+ 43 root 20 0 715504 9696 4500 S 0.3 0.1 0:00.28 dap_mult+ 76 root 20 0 129744 18072 6208 S 0.3 0.1 0:00.54 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node top - 20:51:19 up 2 min, 0 users, load average: 0.67, 0.42, 0.17 %Cpu(s): 2.2 us, 1.5 sy, 0.0 ni, 96.1 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10084920 free, 779308 used, 2434352 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289944 avail Mem 7 root 20 0 356416 66264 32828 S 0.7 0.5 0:01.99 node 42 root 20 0 202112 63256 15156 S 0.7 0.5 0:02.96 jupyter-+ 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:06.78 python3 76 root 20 0 130256 18704 6208 S 0.3 0.1 0:00.55 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 9956 4500 S 0.0 0.1 0:00.28 dap_mult+ top - 20:51:22 up 2 min, 0 users, load average: 0.61, 0.42, 0.17 %Cpu(s): 1.8 us, 1.0 sy, 0.0 ni, 96.7 id, 0.2 wa, 0.0 hi, 0.2 si, 0.2 st KiB Mem : 13298580 total, 10084384 free, 779780 used, 2434416 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289468 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:06.82 python3 7 root 20 0 356416 66792 32828 S 0.7 0.5 0:02.01 node 43 root 20 0 715504 10220 4500 S 0.3 0.1 0:00.29 dap_mult+ 76 root 20 0 130512 18968 6208 S 0.3 0.1 0:00.56 python3 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:02.96 jupyter-+ top - 20:51:25 up 2 min, 0 users, load average: 0.61, 0.42, 0.17 %Cpu(s): 1.8 us, 1.0 sy, 0.0 ni, 97.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10083724 free, 780440 used, 2434416 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288808 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:06.85 python3 7 root 20 0 356416 67056 32828 S 0.3 0.5 0:02.02 node 76 root 20 0 131024 19352 6208 S 0.3 0.1 0:00.57 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.02 top 43 root 20 0 715504 10220 4500 S 0.0 0.1 0:00.29 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132348 35444 S 0.0 1.0 0:07.17 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 16580 2184 S 0.0 0.1 0:00.15 director+ top - 20:51:28 up 2 min, 0 users, load average: 0.56, 0.41, 0.17 %Cpu(s): 2.0 us, 1.7 sy, 0.0 ni, 96.3 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10083472 free, 780644 used, 2434464 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288604 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:06.89 python3 7 root 20 0 356416 66488 32828 S 0.7 0.5 0:02.04 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:02.97 jupyter-+ 43 root 20 0 715504 10220 4500 S 0.3 0.1 0:00.30 dap_mult+ 76 root 20 0 130768 19400 6208 S 0.3 0.1 0:00.58 python3 200 root 20 0 2739056 132524 35444 S 0.3 1.0 0:07.18 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 16580 2184 S 0.0 0.1 0:00.15 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.00 tail top - 20:51:31 up 2 min, 0 users, load average: 0.56, 0.41, 0.17 %Cpu(s): 1.8 us, 1.0 sy, 0.0 ni, 97.0 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10083000 free, 781112 used, 2434468 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288136 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:06.93 python3 7 root 20 0 356416 67016 32828 S 0.3 0.5 0:02.05 node 76 root 20 0 130768 19400 6208 S 0.3 0.1 0:00.59 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:02.97 jupyter-+ 43 root 20 0 715504 10220 4500 S 0.0 0.1 0:00.30 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132524 35444 S 0.0 1.0 0:07.18 drive top - 20:51:34 up 2 min, 0 users, load average: 0.52, 0.40, 0.17 KiB Mem : 13298580 total, 10083852 free, 780056 used, 2434672 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289852 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:06.96 python3 7 root 20 0 356416 66464 32828 S 0.7 0.5 0:02.07 node 42 root 20 0 202112 63276 15156 S 0.7 0.5 0:02.99 jupyter-+ 43 root 20 0 715504 10220 4500 S 0.3 0.1 0:00.31 dap_mult+ 76 root 20 0 130768 19400 6208 S 0.3 0.1 0:00.60 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:51:37 up 2 min, 0 users, load average: 0.48, 0.40, 0.17 %Cpu(s): 2.0 us, 1.2 sy, 0.0 ni, 96.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10083820 free, 780088 used, 2434672 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289820 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:06.99 python3 7 root 20 0 356416 66728 32828 S 0.3 0.5 0:02.08 node 43 root 20 0 715504 9536 4500 S 0.3 0.1 0:00.32 dap_mult+ 76 root 20 0 130768 19400 6208 S 0.3 0.1 0:00.61 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:02.99 jupyter-+ top - 20:51:40 up 2 min, 0 users, load average: 0.48, 0.40, 0.17 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10084072 free, 779820 used, 2434688 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12290088 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.02 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.00 jupyter-+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 7 root 20 0 356416 66728 32828 S 0.0 0.5 0:02.08 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 9536 4500 S 0.0 0.1 0:00.32 dap_mult+ 76 root 20 0 130768 19400 6208 S 0.0 0.1 0:00.61 python3 top - 20:51:43 up 2 min, 0 users, load average: 0.44, 0.39, 0.17 %Cpu(s): 0.8 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10084072 free, 779816 used, 2434692 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12290092 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.05 python3 43 root 20 0 715504 9536 4500 S 0.7 0.1 0:00.34 dap_mult+ 76 root 20 0 130768 19400 6208 S 0.7 0.1 0:00.63 python3 7 root 20 0 356416 66728 32828 S 0.3 0.5 0:02.09 node 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.03 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.00 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132524 35444 S 0.0 1.0 0:07.18 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 16580 2184 S 0.0 0.1 0:00.15 director+ top - 20:51:46 up 3 min, 0 users, load average: 0.44, 0.39, 0.17 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10083884 free, 780004 used, 2434692 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289904 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.08 python3 76 root 20 0 131024 19400 6208 S 0.3 0.1 0:00.64 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 7 root 20 0 356416 66992 32828 S 0.0 0.5 0:02.09 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.00 jupyter-+ 43 root 20 0 715504 9536 4500 S 0.0 0.1 0:00.34 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132524 35444 S 0.0 1.0 0:07.18 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 16580 2184 S 0.0 0.1 0:00.15 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.00 tail top - 20:51:49 up 3 min, 0 users, load average: 0.40, 0.38, 0.17 %Cpu(s): 1.7 us, 1.5 sy, 0.0 ni, 96.7 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10083096 free, 780776 used, 2434708 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289128 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:07.10 python3 200 root 20 0 2739056 132728 35488 S 0.7 1.0 0:07.20 drive 7 root 20 0 356416 66992 32828 S 0.3 0.5 0:02.10 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.01 jupyter-+ 76 root 20 0 131024 19400 6208 S 0.3 0.1 0:00.65 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 9536 4500 S 0.0 0.1 0:00.34 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:51:52 up 3 min, 0 users, load average: 0.53, 0.41, 0.18 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10083884 free, 779916 used, 2434780 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289988 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:07.14 python3 43 root 20 0 715504 9536 4500 S 0.3 0.1 0:00.35 dap_mult+ 76 root 20 0 131024 19400 6208 S 0.3 0.1 0:00.66 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 7 root 20 0 356416 66112 32828 S 0.0 0.5 0:02.10 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.55 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.01 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.20 drive top - 20:51:55 up 3 min, 0 users, load average: 0.53, 0.41, 0.18 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10083632 free, 780168 used, 2434780 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289736 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.17 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.02 jupyter-+ 76 root 20 0 131024 19400 6208 S 0.3 0.1 0:00.67 python3 7 root 20 0 356416 66376 32828 S 0.0 0.5 0:02.10 node 43 root 20 0 715504 9796 4500 S 0.0 0.1 0:00.35 dap_mult+ top - 20:51:58 up 3 min, 0 users, load average: 0.49, 0.40, 0.18 %Cpu(s): 1.7 us, 1.3 sy, 0.0 ni, 97.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10082868 free, 780856 used, 2434856 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289048 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:07.19 python3 7 root 20 0 356416 66376 32828 S 0.3 0.5 0:02.11 node 17 root 20 0 35888 4744 3640 S 0.3 0.0 0:00.56 tail 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.03 jupyter-+ 43 root 20 0 715504 9796 4500 S 0.3 0.1 0:00.36 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 76 root 20 0 131280 19660 6208 S 0.0 0.1 0:00.67 python3 top - 20:52:01 up 3 min, 0 users, load average: 0.49, 0.40, 0.18 %Cpu(s): 1.2 us, 1.2 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10082656 free, 780836 used, 2435088 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12289068 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.22 python3 76 root 20 0 131280 19660 6208 S 0.3 0.1 0:00.68 python3 200 root 20 0 2739056 132728 35488 S 0.3 1.0 0:07.21 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 7 root 20 0 356416 66376 32828 S 0.0 0.5 0:02.11 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.03 jupyter-+ 43 root 20 0 715504 10316 4504 S 0.0 0.1 0:00.36 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:52:04 up 3 min, 0 users, load average: 0.45, 0.40, 0.18 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10082436 free, 781056 used, 2435088 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288848 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.25 python3 43 root 20 0 715504 10316 4504 S 0.3 0.1 0:00.37 dap_mult+ 76 root 20 0 131280 19660 6208 S 0.3 0.1 0:00.69 python3 7 root 20 0 356416 66640 32828 S 0.0 0.5 0:02.11 node 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.21 drive top - 20:52:07 up 3 min, 0 users, load average: 1.05, 0.52, 0.22 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.3 id, 0.2 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10081616 free, 781828 used, 2435136 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288076 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.28 python3 7 root 20 0 356416 66640 32828 S 0.3 0.5 0:02.12 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.04 jupyter-+ 43 root 20 0 715504 10316 4504 S 0.3 0.1 0:00.38 dap_mult+ 76 root 20 0 131280 19660 6208 S 0.3 0.1 0:00.70 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:52:10 up 3 min, 0 users, load average: 1.05, 0.52, 0.22 %Cpu(s): 1.3 us, 1.2 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10082160 free, 781284 used, 2435136 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288620 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.31 python3 76 root 20 0 131536 19920 6208 S 0.7 0.1 0:00.72 python3 43 root 20 0 715504 9640 4504 S 0.3 0.1 0:00.39 dap_mult+ 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.04 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.54 docker-i+ 7 root 20 0 356416 66904 32828 S 0.0 0.5 0:02.12 node 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.04 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.21 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 16580 2184 S 0.0 0.1 0:00.15 director+ top - 20:52:13 up 3 min, 0 users, load average: 0.97, 0.51, 0.22 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10081884 free, 781560 used, 2435136 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288344 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.34 python3 42 root 20 0 202112 63276 15156 S 0.7 0.5 0:03.06 jupyter-+ 7 root 20 0 356416 66904 32828 S 0.3 0.5 0:02.13 node 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.73 python3 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 9640 4504 S 0.0 0.1 0:00.39 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.21 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 16580 2184 S 0.0 0.1 0:00.15 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.00 tail top - 20:52:16 up 3 min, 0 users, load average: 0.97, 0.51, 0.22 %Cpu(s): 1.0 us, 0.7 sy, 0.0 ni, 98.3 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10081964 free, 781480 used, 2435136 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288424 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.37 python3 1 root 20 0 992 4 0 S 0.3 0.0 0:00.55 docker-i+ 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.74 python3 7 root 20 0 356416 66904 32828 S 0.0 0.5 0:02.13 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.06 jupyter-+ top - 20:52:19 up 3 min, 0 users, load average: 0.89, 0.50, 0.22 Tasks: 19 total, 2 running, 16 sleeping, 0 stopped, 1 zombie %Cpu(s): 2.0 us, 1.7 sy, 0.0 ni, 96.2 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10080892 free, 782468 used, 2435220 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287416 avail Mem 56 root 20 0 500464 103480 23808 R 1.3 0.8 0:07.41 python3 7 root 20 0 356416 67168 32828 S 0.3 0.5 0:02.14 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.07 jupyter-+ 43 root 20 0 715504 9640 4504 S 0.3 0.1 0:00.40 dap_mult+ 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.75 python3 200 root 20 0 2739056 132728 35488 S 0.3 1.0 0:07.22 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:52:22 up 3 min, 0 users, load average: 0.82, 0.50, 0.21 Tasks: 19 total, 1 running, 17 sleeping, 0 stopped, 1 zombie %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10081964 free, 781396 used, 2435220 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288488 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:07.43 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.08 jupyter-+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66172 32828 S 0.0 0.5 0:02.14 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 9640 4504 S 0.0 0.1 0:00.40 dap_mult+ 76 root 20 0 131536 19920 6208 S 0.0 0.1 0:00.75 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.22 drive top - 20:52:25 up 3 min, 0 users, load average: 0.82, 0.50, 0.21 KiB Mem : 13298580 total, 10082120 free, 781060 used, 2435400 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288824 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:07.47 python3 7 root 20 0 356416 66436 32828 S 0.3 0.5 0:02.15 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.09 jupyter-+ 43 root 20 0 715504 9640 4504 S 0.3 0.1 0:00.41 dap_mult+ 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.76 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.05 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.22 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 16580 2184 S 0.0 0.1 0:00.15 director+ top - 20:52:28 up 3 min, 0 users, load average: 0.75, 0.49, 0.21 %Cpu(s): 1.5 us, 1.5 sy, 0.0 ni, 97.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10081372 free, 781760 used, 2435448 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288124 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:07.49 python3 7 root 20 0 356416 66436 32828 S 0.3 0.5 0:02.16 node 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.77 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.09 jupyter-+ 43 root 20 0 715504 9640 4504 S 0.0 0.1 0:00.41 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.22 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 16580 2184 S 0.0 0.1 0:00.15 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.00 tail top - 20:52:31 up 3 min, 0 users, load average: 0.75, 0.49, 0.21 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10081208 free, 781920 used, 2435452 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287960 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.52 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.10 jupyter-+ 43 root 20 0 715504 9900 4504 S 0.3 0.1 0:00.42 dap_mult+ 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.78 python3 200 root 20 0 2739056 132728 35488 S 0.3 1.0 0:07.23 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66436 32828 S 0.0 0.5 0:02.16 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:52:34 up 3 min, 0 users, load average: 0.69, 0.48, 0.21 %Cpu(s): 1.0 us, 0.7 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.2 si, 0.2 st KiB Mem : 13298580 total, 10080956 free, 782116 used, 2435508 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287764 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:07.54 python3 76 root 20 0 131536 19920 6208 S 0.7 0.1 0:00.80 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66700 32828 S 0.0 0.5 0:02.16 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.10 jupyter-+ 43 root 20 0 715504 10172 4520 S 0.0 0.1 0:00.42 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.23 drive top - 20:52:37 up 3 min, 0 users, load average: 0.64, 0.47, 0.21 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10080396 free, 782676 used, 2435508 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287204 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:07.58 python3 43 root 20 0 715504 10436 4520 S 0.7 0.1 0:00.44 dap_mult+ 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.81 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66700 32828 S 0.0 0.5 0:02.16 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.10 jupyter-+ top - 20:52:40 up 3 min, 0 users, load average: 0.64, 0.47, 0.21 %Cpu(s): 1.7 us, 1.3 sy, 0.0 ni, 96.8 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10061252 free, 801820 used, 2435508 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12268060 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.61 python3 282 root 20 0 712212 35752 2184 S 0.7 0.3 0:00.17 director+ 7 root 20 0 356416 66964 32828 S 0.3 0.5 0:02.17 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.11 jupyter-+ 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.82 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.06 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10436 4520 S 0.0 0.1 0:00.44 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.23 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash top - 20:52:43 up 3 min, 0 users, load average: 0.59, 0.46, 0.21 %Cpu(s): 1.5 us, 1.0 sy, 0.0 ni, 97.3 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10060212 free, 802860 used, 2435508 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12267020 avail Mem 282 root 20 0 712212 36120 2184 S 1.0 0.3 0:00.20 director+ 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:07.63 python3 43 root 20 0 715504 10436 4520 S 0.3 0.1 0:00.45 dap_mult+ 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.83 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66964 32828 S 0.0 0.5 0:02.17 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.11 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.23 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.00 tail top - 20:52:46 up 4 min, 0 users, load average: 0.59, 0.46, 0.21 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10068560 free, 794512 used, 2435508 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12275368 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.66 python3 282 root 20 0 712212 27840 2184 S 0.7 0.2 0:00.22 director+ 7 root 20 0 356416 66964 32828 S 0.3 0.5 0:02.18 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.12 jupyter-+ 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.84 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 43 root 20 0 715504 10952 4520 S 0.0 0.1 0:00.45 dap_mult+ top - 20:52:49 up 4 min, 0 users, load average: 0.54, 0.45, 0.21 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10077136 free, 785932 used, 2435512 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12283948 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:07.70 python3 7 root 20 0 356416 66964 32828 S 0.3 0.5 0:02.19 node 76 root 20 0 131536 19920 6208 S 0.3 0.1 0:00.85 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.12 jupyter-+ 43 root 20 0 715504 10952 4520 S 0.0 0.1 0:00.45 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.23 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.22 director+ top - 20:52:52 up 4 min, 0 users, load average: 0.50, 0.45, 0.20 %Cpu(s): 1.3 us, 1.2 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10079176 free, 783852 used, 2435552 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12286028 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:07.72 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.13 jupyter-+ 43 root 20 0 715504 10636 4520 S 0.3 0.1 0:00.46 dap_mult+ 7 root 20 0 356416 66208 32828 S 0.0 0.5 0:02.19 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 76 root 20 0 131792 19920 6208 S 0.0 0.1 0:00.85 python3 top - 20:52:55 up 4 min, 0 users, load average: 0.50, 0.45, 0.20 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10079616 free, 783324 used, 2435640 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12286672 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:07.76 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.14 jupyter-+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.86 python3 43 root 20 0 715504 10636 4520 S 0.0 0.1 0:00.46 dap_mult+ top - 20:52:58 up 4 min, 0 users, load average: 0.46, 0.44, 0.20 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10079324 free, 783564 used, 2435692 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12286436 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:07.78 python3 43 root 20 0 715504 10636 4520 S 0.3 0.1 0:00.47 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.87 python3 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.14 jupyter-+ top - 20:53:01 up 4 min, 0 users, load average: 0.46, 0.44, 0.20 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10079080 free, 783780 used, 2435720 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12286220 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.81 python3 7 root 20 0 356416 66472 32828 S 0.3 0.5 0:02.20 node 43 root 20 0 715504 10636 4520 S 0.3 0.1 0:00.48 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.88 python3 200 root 20 0 2739056 132728 35488 S 0.3 1.0 0:07.24 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.14 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:53:04 up 4 min, 0 users, load average: 0.42, 0.43, 0.20 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10079032 free, 783744 used, 2435804 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12286284 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.84 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.15 jupyter-+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.89 python3 283 root 20 0 4572 884 820 S 0.3 0.0 0:00.01 tail 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66472 32828 S 0.0 0.5 0:02.20 node 43 root 20 0 715504 10636 4520 S 0.0 0.1 0:00.48 dap_mult+ 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.24 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.22 director+ top - 20:53:07 up 4 min, 0 users, load average: 0.39, 0.42, 0.20 %Cpu(s): 1.7 us, 1.0 sy, 0.0 ni, 97.2 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10078852 free, 783920 used, 2435808 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12286152 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:07.86 python3 7 root 20 0 356416 66728 32828 S 0.3 0.5 0:02.21 node 43 root 20 0 715504 10636 4520 S 0.3 0.1 0:00.49 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.90 python3 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.15 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132728 35488 S 0.0 1.0 0:07.24 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.22 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.01 tail top - 20:53:10 up 4 min, 0 users, load average: 0.39, 0.42, 0.20 %Cpu(s): 1.0 us, 0.7 sy, 0.0 ni, 98.3 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10078348 free, 784384 used, 2435848 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12285704 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.89 python3 7 root 20 0 356416 66728 32828 S 0.3 0.5 0:02.22 node 43 root 20 0 715504 10636 4520 S 0.3 0.1 0:00.50 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.91 python3 200 root 20 0 2739056 132980 35488 S 0.0 1.0 0:07.24 drive top - 20:53:13 up 4 min, 0 users, load average: 0.35, 0.42, 0.20 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10078308 free, 784424 used, 2435848 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12285664 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.92 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.16 jupyter-+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.92 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66728 32828 S 0.0 0.5 0:02.22 node 43 root 20 0 715504 10636 4520 S 0.0 0.1 0:00.50 dap_mult+ top - 20:53:16 up 4 min, 0 users, load average: 0.35, 0.42, 0.20 %Cpu(s): 1.7 us, 0.8 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10077876 free, 784856 used, 2435848 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12285804 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.95 python3 43 root 20 0 715504 10636 4520 S 0.3 0.1 0:00.51 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.93 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.07 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66728 32828 S 0.0 0.5 0:02.22 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.16 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132980 35488 S 0.0 1.0 0:07.24 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.22 director+ top - 20:53:19 up 4 min, 0 users, load average: 0.41, 0.43, 0.20 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.6 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10077976 free, 784756 used, 2435848 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287940 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:07.98 python3 7 root 20 0 356416 66992 32828 S 0.7 0.5 0:02.24 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.17 jupyter-+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.94 python3 200 root 20 0 2739056 132980 35488 S 0.3 1.0 0:07.25 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 43 root 20 0 715504 10636 4520 S 0.0 0.1 0:00.51 dap_mult+ 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.22 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.01 tail top - 20:53:22 up 4 min, 0 users, load average: 0.37, 0.42, 0.20 %Cpu(s): 1.2 us, 1.2 sy, 0.0 ni, 97.3 id, 0.0 wa, 0.0 hi, 0.2 si, 0.2 st KiB Mem : 13298580 total, 10077164 free, 785568 used, 2435848 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287128 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.01 python3 7 root 20 0 356416 66992 32828 S 0.3 0.5 0:02.25 node 43 root 20 0 715504 10636 4520 S 0.3 0.1 0:00.52 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.95 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.17 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132980 35488 S 0.0 1.0 0:07.25 drive top - 20:53:25 up 4 min, 0 users, load average: 0.37, 0.42, 0.20 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10077088 free, 785644 used, 2435848 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287052 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.04 python3 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.96 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66992 32828 S 0.0 0.5 0:02.25 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.17 jupyter-+ 43 root 20 0 715504 10900 4520 S 0.0 0.1 0:00.52 dap_mult+ top - 20:53:28 up 4 min, 0 users, load average: 0.34, 0.41, 0.20 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10076836 free, 785848 used, 2435896 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12286836 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.07 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.18 jupyter-+ 43 root 20 0 715504 10900 4520 S 0.3 0.1 0:00.53 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 67248 32828 S 0.0 0.5 0:02.25 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 76 root 20 0 131792 20184 6208 S 0.0 0.2 0:00.96 python3 top - 20:53:31 up 4 min, 0 users, load average: 0.34, 0.41, 0.20 KiB Mem : 13298580 total, 10077340 free, 785316 used, 2435924 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287376 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.10 python3 7 root 20 0 356416 66232 32828 S 0.3 0.5 0:02.26 node 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.97 python3 200 root 20 0 2739056 132980 35488 S 0.3 1.0 0:07.26 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.18 jupyter-+ 43 root 20 0 715504 10900 4520 S 0.0 0.1 0:00.53 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.72 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:53:34 up 4 min, 0 users, load average: 0.40, 0.42, 0.20 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10077120 free, 785476 used, 2435984 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287216 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.13 python3 43 root 20 0 715504 10900 4520 S 0.7 0.1 0:00.55 dap_mult+ 7 root 20 0 356416 66232 32828 S 0.3 0.5 0:02.27 node 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:00.98 python3 96 root 20 0 524992 116372 31720 S 0.3 0.9 0:04.73 node 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.18 jupyter-+ 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 132980 35488 S 0.0 1.0 0:07.26 drive top - 20:53:37 up 4 min, 0 users, load average: 0.36, 0.41, 0.20 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.5 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10077812 free, 784708 used, 2436060 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287980 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.16 python3 76 root 20 0 131792 20184 6208 S 0.7 0.2 0:01.00 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.19 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.56 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66496 32828 S 0.0 0.5 0:02.27 node 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node top - 20:53:40 up 4 min, 0 users, load average: 0.36, 0.41, 0.20 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10077876 free, 784624 used, 2436080 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288064 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:08.18 python3 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.01 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66496 32828 S 0.0 0.5 0:02.27 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.19 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.56 dap_mult+ top - 20:53:43 up 4 min, 0 users, load average: 0.33, 0.41, 0.20 %Cpu(s): 1.0 us, 0.7 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10078412 free, 784016 used, 2436152 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288672 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.21 python3 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.57 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.02 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66496 32828 S 0.0 0.5 0:02.27 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.19 jupyter-+ top - 20:53:46 up 5 min, 0 users, load average: 0.33, 0.41, 0.20 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.0 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10077868 free, 784544 used, 2436168 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12288136 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.24 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.20 jupyter-+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.03 python3 7 root 20 0 356416 66760 32828 S 0.0 0.5 0:02.27 node 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.57 dap_mult+ 200 root 20 0 2739056 133080 35520 S 0.0 1.0 0:07.26 drive top - 20:53:49 up 5 min, 0 users, load average: 0.31, 0.40, 0.20 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10077560 free, 784852 used, 2436168 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12287836 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:08.26 python3 7 root 20 0 356416 66760 32828 S 0.3 0.5 0:02.28 node 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.58 dap_mult+ 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.08 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.20 jupyter-+ 76 root 20 0 131792 20184 6208 S 0.0 0.2 0:01.03 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133080 35520 S 0.0 1.0 0:07.26 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.22 director+ top - 20:53:52 up 5 min, 0 users, load average: 0.28, 0.39, 0.20 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10083136 free, 779272 used, 2436172 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12293436 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:08.30 python3 76 root 20 0 131792 20184 6208 S 0.7 0.2 0:01.05 python3 200 root 20 0 2739056 133080 35520 S 0.3 1.0 0:07.27 drive 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.09 top 7 root 20 0 356416 66760 32828 S 0.0 0.5 0:02.28 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.20 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.58 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:53:55 up 5 min, 0 users, load average: 0.28, 0.39, 0.20 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10082852 free, 779556 used, 2436172 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12293152 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.33 python3 42 root 20 0 202112 63276 15156 S 0.7 0.5 0:03.22 jupyter-+ 7 root 20 0 356416 66760 32828 S 0.3 0.5 0:02.29 node 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.59 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.06 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133080 35520 S 0.0 1.0 0:07.27 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.22 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.01 tail top - 20:53:58 up 5 min, 0 users, load average: 0.26, 0.39, 0.20 %Cpu(s): 1.0 us, 1.0 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10082480 free, 779928 used, 2436172 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12292780 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:08.35 python3 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.07 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 67024 32828 S 0.0 0.5 0:02.29 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.22 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.59 dap_mult+ top - 20:54:01 up 5 min, 0 users, load average: 0.26, 0.39, 0.20 %Cpu(s): 1.8 us, 0.8 sy, 0.0 ni, 97.2 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10082348 free, 779932 used, 2436300 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12292776 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:08.39 python3 43 root 20 0 715504 10660 4520 S 0.7 0.1 0:00.61 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.08 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 67024 32828 S 0.0 0.5 0:02.29 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.56 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.22 jupyter-+ top - 20:54:04 up 5 min, 0 users, load average: 0.24, 0.38, 0.20 %Cpu(s): 1.3 us, 1.2 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10082632 free, 779620 used, 2436328 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12293088 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:08.41 python3 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.09 python3 200 root 20 0 2739056 133080 35520 S 0.3 1.0 0:07.28 drive 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.61 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:54:07 up 5 min, 0 users, load average: 0.22, 0.37, 0.19 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10082032 free, 780212 used, 2436336 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12292496 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.44 python3 7 root 20 0 356416 67288 32828 S 0.3 0.5 0:02.30 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.23 jupyter-+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.10 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.61 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133080 35520 S 0.0 1.0 0:07.28 drive top - 20:54:10 up 5 min, 0 users, load average: 0.22, 0.37, 0.19 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10082568 free, 779572 used, 2436440 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12293136 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.47 python3 17 root 20 0 35888 4744 3640 S 0.3 0.0 0:00.57 tail 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.62 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.11 python3 7 root 20 0 356416 66276 32828 S 0.0 0.5 0:02.30 node 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.23 jupyter-+ top - 20:54:13 up 5 min, 0 users, load average: 0.20, 0.37, 0.19 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10082348 free, 779792 used, 2436440 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12292916 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.50 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66276 32828 S 0.0 0.5 0:02.30 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.23 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.62 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.0 0.2 0:01.11 python3 top - 20:54:16 up 5 min, 0 users, load average: 0.18, 0.36, 0.19 %Cpu(s): 1.0 us, 1.0 sy, 0.0 ni, 97.8 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10082316 free, 779760 used, 2436504 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12292948 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.53 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.24 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.63 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.12 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66276 32828 S 0.0 0.5 0:02.30 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:54:19 up 5 min, 0 users, load average: 0.18, 0.36, 0.19 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10083072 free, 778984 used, 2436524 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12293704 avail Mem 7 root 20 0 356416 66540 32828 S 0.7 0.5 0:02.32 node 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:08.55 python3 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.64 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.13 python3 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.24 jupyter-+ top - 20:54:22 up 5 min, 0 users, load average: 0.17, 0.35, 0.19 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10088836 free, 773464 used, 2436280 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12299364 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:08.57 python3 7 root 20 0 356416 66540 32828 S 0.3 0.5 0:02.33 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.25 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.65 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.14 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:54:25 up 5 min, 0 users, load average: 0.17, 0.35, 0.19 %Cpu(s): 1.0 us, 0.7 sy, 0.0 ni, 98.2 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10089096 free, 773156 used, 2436328 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12299664 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.60 python3 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.15 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66800 32828 S 0.0 0.5 0:02.33 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.25 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.65 dap_mult+ top - 20:54:28 up 5 min, 0 users, load average: 0.16, 0.35, 0.19 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10088428 free, 773820 used, 2436332 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12299008 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.63 python3 7 root 20 0 356416 66800 32828 S 0.3 0.5 0:02.34 node 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.16 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ top - 20:54:31 up 5 min, 0 users, load average: 0.14, 0.34, 0.19 %Cpu(s): 1.0 us, 1.0 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10088276 free, 773972 used, 2436332 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12298856 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.66 python3 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.66 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.17 python3 7 root 20 0 356416 66800 32828 S 0.0 0.5 0:02.34 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.25 jupyter-+ top - 20:54:34 up 5 min, 0 users, load average: 0.14, 0.34, 0.19 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10088868 free, 773212 used, 2436500 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12299616 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.69 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.26 jupyter-+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.18 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.10 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66800 32828 S 0.0 0.5 0:02.34 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.66 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133080 35520 S 0.0 1.0 0:07.28 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.22 director+ top - 20:54:37 up 5 min, 0 users, load average: 0.13, 0.34, 0.19 %Cpu(s): 1.5 us, 1.0 sy, 0.0 ni, 97.3 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10088112 free, 773936 used, 2436532 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12298888 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.72 python3 76 root 20 0 131792 20184 6208 S 0.7 0.2 0:01.20 python3 7 root 20 0 356416 67064 32828 S 0.3 0.5 0:02.35 node 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.67 dap_mult+ 200 root 20 0 2739056 133144 35520 S 0.3 1.0 0:07.29 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.26 jupyter-+ 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.22 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.01 tail top - 20:54:40 up 5 min, 0 users, load average: 0.13, 0.34, 0.19 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10088112 free, 773876 used, 2436592 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12298936 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.75 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.27 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.68 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 67064 32828 S 0.0 0.5 0:02.35 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 76 root 20 0 131792 20184 6208 S 0.0 0.2 0:01.20 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.29 drive top - 20:54:43 up 5 min, 0 users, load average: 0.12, 0.33, 0.18 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10088584 free, 773404 used, 2436592 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12299420 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.78 python3 76 root 20 0 131792 20184 6208 S 0.7 0.2 0:01.22 python3 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.69 dap_mult+ 7 root 20 0 356416 66180 32828 S 0.0 0.5 0:02.35 node 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.27 jupyter-+ top - 20:54:46 up 6 min, 0 users, load average: 0.11, 0.33, 0.18 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10089152 free, 772800 used, 2436628 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12300024 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.81 python3 7 root 20 0 356416 66444 32828 S 0.3 0.5 0:02.36 node 200 root 20 0 2739056 133144 35520 S 0.3 1.0 0:07.30 drive 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.27 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.69 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.0 0.2 0:01.22 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:54:49 up 6 min, 0 users, load average: 0.11, 0.33, 0.18 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10088656 free, 773284 used, 2436640 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12299540 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.84 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.28 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.70 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.23 python3 282 root 20 0 712212 18648 2184 S 0.3 0.1 0:00.23 director+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66444 32828 S 0.0 0.5 0:02.36 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.30 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash top - 20:54:52 up 6 min, 0 users, load average: 0.10, 0.32, 0.18 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10088836 free, 773064 used, 2436680 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12299760 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:08.86 python3 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.24 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66444 32828 S 0.0 0.5 0:02.36 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.28 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.70 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.30 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.23 director+ top - 20:54:55 up 6 min, 0 users, load average: 0.10, 0.32, 0.18 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10089380 free, 772520 used, 2436680 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12300304 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.89 python3 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.71 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.25 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.11 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66444 32828 S 0.0 0.5 0:02.36 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.28 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.30 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.23 director+ top - 20:54:58 up 6 min, 0 users, load average: 0.09, 0.31, 0.18 %Cpu(s): 1.2 us, 0.7 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10089144 free, 772756 used, 2436680 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12300068 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:08.93 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.29 jupyter-+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.26 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66708 32828 S 0.0 0.5 0:02.36 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.71 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.30 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.23 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.01 tail top - 20:55:01 up 6 min, 0 users, load average: 0.09, 0.31, 0.18 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10088712 free, 773108 used, 2436760 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12299716 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:08.95 python3 7 root 20 0 356416 66708 32828 S 0.3 0.5 0:02.37 node 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.72 dap_mult+ 76 root 20 0 131792 20184 6208 S 0.3 0.2 0:01.27 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.29 jupyter-+ top - 20:55:04 up 6 min, 0 users, load average: 0.09, 0.31, 0.18 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10087892 free, 773928 used, 2436760 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12298896 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:08.98 python3 76 root 20 0 131792 20184 6208 S 0.7 0.2 0:01.29 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66708 32828 S 0.0 0.5 0:02.37 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.29 jupyter-+ 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.72 dap_mult+ top - 20:55:07 up 6 min, 0 users, load average: 0.08, 0.30, 0.18 %Cpu(s): 1.5 us, 1.0 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10087924 free, 773892 used, 2436764 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12298932 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.01 python3 43 root 20 0 715504 10660 4520 S 0.7 0.1 0:00.74 dap_mult+ 7 root 20 0 356416 66972 32828 S 0.3 0.5 0:02.38 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.30 jupyter-+ 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.12 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 76 root 20 0 131792 20448 6208 S 0.0 0.2 0:01.29 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.30 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.23 director+ top - 20:55:10 up 6 min, 0 users, load average: 0.08, 0.30, 0.18 %Cpu(s): 1.3 us, 1.2 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10087704 free, 774028 used, 2436848 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12298796 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:09.03 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.31 jupyter-+ 76 root 20 0 131792 20448 6208 S 0.3 0.2 0:01.30 python3 200 root 20 0 2739056 133144 35520 S 0.3 1.0 0:07.31 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66972 32828 S 0.0 0.5 0:02.38 node 43 root 20 0 715504 10660 4520 S 0.0 0.1 0:00.74 dap_mult+ 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 18648 2184 S 0.0 0.1 0:00.23 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.01 tail top - 20:55:13 up 6 min, 0 users, load average: 0.07, 0.30, 0.18 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.5 id, 0.2 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10087704 free, 773972 used, 2436904 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12298852 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:09.07 python3 43 root 20 0 715504 10660 4520 S 0.3 0.1 0:00.75 dap_mult+ 76 root 20 0 131792 20448 6208 S 0.3 0.2 0:01.31 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66972 32828 S 0.0 0.5 0:02.38 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.31 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.31 drive top - 20:55:16 up 6 min, 0 users, load average: 0.07, 0.29, 0.18 %Cpu(s): 1.8 us, 0.8 sy, 0.0 ni, 97.2 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10088996 free, 772680 used, 2436904 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12300144 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:09.09 python3 76 root 20 0 131792 20448 6208 S 0.3 0.2 0:01.32 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66376 32828 S 0.0 0.5 0:02.38 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.31 jupyter-+ 43 root 20 0 715504 9788 4520 S 0.0 0.1 0:00.75 dap_mult+ top - 20:55:19 up 6 min, 0 users, load average: 0.07, 0.29, 0.18 %Cpu(s): 1.5 us, 0.7 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10097840 free, 763836 used, 2436904 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308988 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.12 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:01.34 python3 7 root 20 0 356416 66376 32828 S 0.3 0.5 0:02.39 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.32 jupyter-+ 43 root 20 0 715504 9788 4520 S 0.3 0.1 0:00.76 dap_mult+ 282 root 20 0 712212 11904 2184 S 0.3 0.1 0:00.24 director+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.31 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash top - 20:55:22 up 6 min, 0 users, load average: 0.06, 0.29, 0.18 %Cpu(s): 1.7 us, 1.0 sy, 0.0 ni, 97.2 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10098108 free, 763528 used, 2436944 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12309292 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.15 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.35 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66376 32828 S 0.0 0.5 0:02.39 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.32 jupyter-+ 43 root 20 0 715504 9788 4520 S 0.0 0.1 0:00.76 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.31 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.24 director+ top - 20:55:25 up 6 min, 0 users, load average: 0.06, 0.29, 0.18 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10097972 free, 763664 used, 2436944 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12309156 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:09.17 python3 7 root 20 0 356416 66640 32828 S 0.3 0.5 0:02.40 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.36 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ top - 20:55:28 up 6 min, 0 users, load average: 0.06, 0.28, 0.17 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10097376 free, 764216 used, 2436988 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308604 avail Mem 56 root 20 0 500464 103480 23808 S 1.3 0.8 0:09.21 python3 43 root 20 0 715504 9788 4520 S 0.7 0.1 0:00.78 dap_mult+ 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.33 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.37 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66640 32828 S 0.0 0.5 0:02.40 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:55:31 up 6 min, 0 users, load average: 0.05, 0.28, 0.17 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10097344 free, 764248 used, 2436988 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308572 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:09.23 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.38 python3 200 root 20 0 2739056 133144 35520 S 0.3 1.0 0:07.32 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66640 32828 S 0.0 0.5 0:02.40 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.33 jupyter-+ 43 root 20 0 715504 9788 4520 S 0.0 0.1 0:00.78 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:55:34 up 6 min, 0 users, load average: 0.05, 0.28, 0.17 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10096904 free, 764688 used, 2436988 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308132 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.26 python3 43 root 20 0 715504 9788 4520 S 0.3 0.1 0:00.79 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.39 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.32 drive top - 20:55:37 up 6 min, 0 users, load average: 0.05, 0.27, 0.17 KiB Mem : 13298580 total, 10096652 free, 764928 used, 2437000 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307892 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.29 python3 7 root 20 0 356416 66904 32828 S 0.3 0.5 0:02.41 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.34 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.40 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.13 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10132 4632 S 0.0 0.1 0:00.79 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.32 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.24 director+ top - 20:55:40 up 6 min, 0 users, load average: 0.05, 0.27, 0.17 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10095896 free, 765660 used, 2437024 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307152 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:09.31 python3 7 root 20 0 356416 66904 32828 S 0.3 0.5 0:02.42 node 43 root 20 0 715504 10396 4632 S 0.3 0.1 0:00.80 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.41 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.34 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133144 35520 S 0.0 1.0 0:07.32 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.24 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.01 tail top - 20:55:43 up 6 min, 0 users, load average: 0.04, 0.27, 0.17 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095880 free, 765584 used, 2437116 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307228 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.34 python3 7 root 20 0 356416 66904 32828 S 0.3 0.5 0:02.43 node 200 root 20 0 2739056 133376 35520 S 0.3 1.0 0:07.33 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.34 jupyter-+ 43 root 20 0 715504 10660 4632 S 0.0 0.1 0:00.80 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:01.41 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:55:46 up 7 min, 0 users, load average: 0.04, 0.26, 0.17 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10096180 free, 765284 used, 2437116 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307528 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.37 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.35 jupyter-+ 43 root 20 0 715504 10660 4632 S 0.3 0.1 0:00.81 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.42 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.55 docker-i+ 7 root 20 0 356416 66312 32828 S 0.0 0.5 0:02.43 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.33 drive top - 20:55:49 up 7 min, 0 users, load average: 0.04, 0.26, 0.17 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095684 free, 765684 used, 2437212 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307120 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.40 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:01.44 python3 1 root 20 0 992 4 0 S 0.3 0.0 0:00.56 docker-i+ 283 root 20 0 4572 884 820 S 0.3 0.0 0:00.02 tail 7 root 20 0 356416 66312 32828 S 0.0 0.5 0:02.43 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.35 jupyter-+ 43 root 20 0 715504 10660 4632 S 0.0 0.1 0:00.81 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.33 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.24 director+ top - 20:55:52 up 7 min, 0 users, load average: 0.04, 0.26, 0.17 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10096344 free, 765024 used, 2437212 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307780 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.43 python3 43 root 20 0 715504 10660 4632 S 0.3 0.1 0:00.82 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.45 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.33 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.24 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.02 tail top - 20:55:55 up 7 min, 0 users, load average: 0.04, 0.26, 0.17 KiB Mem : 13298580 total, 10095936 free, 765432 used, 2437212 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307372 avail Mem 56 root 20 0 500464 103480 23808 S 0.7 0.8 0:09.45 python3 7 root 20 0 356416 66576 32828 S 0.3 0.5 0:02.44 node 43 root 20 0 715504 10660 4632 S 0.3 0.1 0:00.83 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.46 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ top - 20:55:58 up 7 min, 0 users, load average: 0.03, 0.25, 0.17 %Cpu(s): 1.0 us, 1.0 sy, 0.0 ni, 97.8 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10096472 free, 764896 used, 2437212 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307908 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.48 python3 42 root 20 0 202112 63276 15156 S 0.7 0.5 0:03.37 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.47 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66576 32828 S 0.0 0.5 0:02.44 node 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.83 dap_mult+ top - 20:56:01 up 7 min, 0 users, load average: 0.03, 0.25, 0.17 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10096236 free, 765128 used, 2437216 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307676 avail Mem 56 root 20 0 500464 103480 23808 S 1.0 0.8 0:09.51 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.84 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.48 python3 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.37 jupyter-+ top - 20:56:04 up 7 min, 0 users, load average: 0.03, 0.25, 0.17 %Cpu(s): 1.8 us, 1.8 sy, 0.0 ni, 96.2 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10096212 free, 765152 used, 2437216 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308208 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.54 python3 7 root 20 0 356416 66576 32828 S 0.3 0.5 0:02.45 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.49 python3 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.37 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.84 dap_mult+ top - 20:56:07 up 7 min, 0 users, load average: 0.03, 0.25, 0.17 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095700 free, 765660 used, 2437220 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307700 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.57 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.38 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.85 dap_mult+ 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.14 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66840 32828 S 0.0 0.5 0:02.45 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:01.49 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.33 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.24 director+ top - 20:56:10 up 7 min, 0 users, load average: 0.03, 0.25, 0.17 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095480 free, 765880 used, 2437220 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307480 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.60 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:01.51 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.86 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66840 32828 S 0.0 0.5 0:02.45 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.38 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.33 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.24 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.02 tail top - 20:56:13 up 7 min, 0 users, load average: 0.02, 0.24, 0.17 %Cpu(s): 1.2 us, 0.7 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10096708 free, 764560 used, 2437312 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308800 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.63 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.52 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66840 32828 S 0.0 0.5 0:02.45 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.38 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.86 dap_mult+ top - 20:56:16 up 7 min, 0 users, load average: 0.02, 0.24, 0.16 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10095652 free, 765572 used, 2437356 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307780 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.66 python3 7 root 20 0 356416 67104 32828 S 0.3 0.5 0:02.46 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.53 python3 200 root 20 0 2739056 133376 35520 S 0.3 1.0 0:07.34 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.38 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.86 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:56:19 up 7 min, 0 users, load average: 0.02, 0.24, 0.16 %Cpu(s): 1.0 us, 1.0 sy, 0.0 ni, 97.8 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095212 free, 765984 used, 2437384 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307368 avail Mem 56 root 20 0 500464 103484 23808 S 0.7 0.8 0:09.68 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.39 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.87 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.54 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.15 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 67104 32828 S 0.0 0.5 0:02.46 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.34 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.24 director+ top - 20:56:22 up 7 min, 0 users, load average: 0.02, 0.23, 0.16 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094872 free, 766260 used, 2437448 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307088 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.71 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.88 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 67104 32828 S 0.0 0.5 0:02.46 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.39 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:01.54 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.34 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.24 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.02 tail top - 20:56:25 up 7 min, 0 users, load average: 0.02, 0.23, 0.16 %Cpu(s): 1.7 us, 1.3 sy, 0.0 ni, 97.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095084 free, 766048 used, 2437448 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307300 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.74 python3 7 root 20 0 356416 66380 32828 S 0.3 0.5 0:02.47 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.40 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.55 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.88 dap_mult+ top - 20:56:28 up 7 min, 0 users, load average: 0.02, 0.23, 0.16 %Cpu(s): 1.0 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10094960 free, 766168 used, 2437452 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307180 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.77 python3 7 root 20 0 356416 66380 32828 S 0.3 0.5 0:02.48 node 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.89 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.56 python3 200 root 20 0 2739056 133376 35520 S 0.3 1.0 0:07.35 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.40 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:56:31 up 7 min, 0 users, load average: 0.02, 0.22, 0.16 %Cpu(s): 1.7 us, 1.0 sy, 0.0 ni, 97.0 id, 0.2 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10094204 free, 766924 used, 2437452 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306424 avail Mem 56 root 20 0 500464 103484 23808 S 0.7 0.8 0:09.79 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.57 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66380 32828 S 0.0 0.5 0:02.48 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.40 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.89 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.73 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.35 drive top - 20:56:34 up 7 min, 0 users, load average: 0.02, 0.22, 0.16 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094008 free, 767084 used, 2437488 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306264 avail Mem 56 root 20 0 500464 103484 23808 S 1.3 0.8 0:09.83 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:01.59 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.41 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.90 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66644 32828 S 0.0 0.5 0:02.48 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:56:37 up 7 min, 0 users, load average: 0.02, 0.22, 0.16 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093976 free, 767116 used, 2437488 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306232 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.86 python3 7 root 20 0 356416 66644 32828 S 0.3 0.5 0:02.49 node 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.91 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.3 0.9 0:04.74 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.41 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:01.59 python3 top - 20:56:40 up 7 min, 0 users, load average: 0.02, 0.22, 0.16 %Cpu(s): 1.2 us, 0.7 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094040 free, 767052 used, 2437488 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306296 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.89 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.42 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.92 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.60 python3 7 root 20 0 356416 66644 32828 S 0.0 0.5 0:02.49 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node top - 20:56:43 up 7 min, 0 users, load average: 0.01, 0.22, 0.16 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095164 free, 765928 used, 2437488 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307420 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.92 python3 7 root 20 0 356416 66904 32828 S 0.3 0.5 0:02.50 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.61 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.42 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.92 dap_mult+ top - 20:56:46 up 8 min, 0 users, load average: 0.01, 0.21, 0.16 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10095276 free, 765684 used, 2437620 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307664 avail Mem 56 root 20 0 500464 103484 23808 S 0.7 0.8 0:09.94 python3 7 root 20 0 356416 66904 32828 S 0.3 0.5 0:02.51 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.62 python3 top - 20:56:49 up 8 min, 0 users, load average: 0.01, 0.21, 0.16 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095148 free, 765752 used, 2437680 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307596 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:09.97 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.43 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.93 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.63 python3 200 root 20 0 2739056 133376 35520 S 0.3 1.0 0:07.36 drive 282 root 20 0 712212 11904 2184 S 0.3 0.1 0:00.25 director+ 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.16 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66904 32828 S 0.0 0.5 0:02.51 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash top - 20:56:52 up 8 min, 0 users, load average: 0.01, 0.21, 0.16 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10094804 free, 766096 used, 2437680 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307268 avail Mem 56 root 20 0 500464 103484 23808 S 1.3 0.8 0:10.01 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.64 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66904 32828 S 0.0 0.5 0:02.51 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.43 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.93 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.36 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11904 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.02 tail top - 20:56:55 up 8 min, 0 users, load average: 0.01, 0.21, 0.16 %Cpu(s): 1.5 us, 0.7 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094804 free, 766020 used, 2437756 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307340 avail Mem 56 root 20 0 500464 103484 23808 S 0.7 0.8 0:10.03 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.94 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.65 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 67164 32828 S 0.0 0.5 0:02.51 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.43 jupyter-+ top - 20:56:58 up 8 min, 0 users, load average: 0.01, 0.20, 0.16 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10094560 free, 766260 used, 2437760 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307100 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.06 python3 7 root 20 0 356416 67164 32828 S 0.3 0.5 0:02.52 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.66 python3 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.43 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.94 dap_mult+ top - 20:57:01 up 8 min, 0 users, load average: 0.01, 0.20, 0.16 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093788 free, 767028 used, 2437764 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306332 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.09 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.44 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.95 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.67 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 67164 32828 S 0.0 0.5 0:02.52 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:57:04 up 8 min, 0 users, load average: 0.01, 0.20, 0.16 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094064 free, 766708 used, 2437808 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306772 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.12 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.68 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66428 32828 S 0.0 0.5 0:02.52 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.44 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.95 dap_mult+ top - 20:57:07 up 8 min, 0 users, load average: 0.01, 0.20, 0.16 %Cpu(s): 1.5 us, 1.0 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095316 free, 765444 used, 2437820 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308036 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.15 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:01.70 python3 7 root 20 0 356416 66428 32828 S 0.3 0.5 0:02.53 node 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.96 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.44 jupyter-+ top - 20:57:10 up 8 min, 0 users, load average: 0.01, 0.20, 0.16 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095228 free, 765516 used, 2437836 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307956 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.18 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.45 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.71 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66428 32828 S 0.0 0.5 0:02.53 node 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.96 dap_mult+ top - 20:57:13 up 8 min, 0 users, load average: 0.01, 0.19, 0.15 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10095040 free, 765668 used, 2437872 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307804 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.21 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:00.97 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66428 32828 S 0.0 0.5 0:02.53 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.57 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.45 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:01.71 python3 top - 20:57:16 up 8 min, 0 users, load average: 0.01, 0.19, 0.15 %Cpu(s): 1.7 us, 1.0 sy, 0.0 ni, 97.2 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10094536 free, 766172 used, 2437872 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307300 avail Mem 56 root 20 0 500464 103484 23808 S 0.7 0.8 0:10.23 python3 17 root 20 0 35888 4744 3640 S 0.3 0.0 0:00.58 tail 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.72 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66692 32828 S 0.0 0.5 0:02.53 node 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.97 dap_mult+ top - 20:57:19 up 8 min, 0 users, load average: 0.01, 0.19, 0.15 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094292 free, 766384 used, 2437904 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307084 avail Mem 56 root 20 0 500464 103484 23808 S 1.3 0.8 0:10.27 python3 43 root 20 0 715504 10384 4632 S 0.7 0.1 0:00.99 dap_mult+ 7 root 20 0 356416 66692 32828 S 0.3 0.5 0:02.54 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.46 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.73 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.17 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.36 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ top - 20:57:22 up 8 min, 0 users, load average: 0.09, 0.20, 0.16 %Cpu(s): 2.0 us, 0.8 sy, 0.0 ni, 97.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094000 free, 766644 used, 2437936 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306828 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.30 python3 7 root 20 0 356416 66956 32828 S 0.3 0.5 0:02.55 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.74 python3 200 root 20 0 2739056 133376 35520 S 0.3 1.0 0:07.37 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.46 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:00.99 dap_mult+ 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.02 tail top - 20:57:25 up 8 min, 0 users, load average: 0.09, 0.20, 0.16 %Cpu(s): 1.5 us, 1.2 sy, 0.0 ni, 97.2 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092496 free, 768088 used, 2437996 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305380 avail Mem 42 root 20 0 202112 63276 15156 S 0.7 0.5 0:03.48 jupyter-+ 56 root 20 0 500464 103484 23808 S 0.7 0.8 0:10.32 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:01.76 python3 7 root 20 0 356416 66956 32828 S 0.3 0.5 0:02.56 node 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.00 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.37 drive top - 20:57:28 up 8 min, 0 users, load average: 0.16, 0.22, 0.16 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10092260 free, 768320 used, 2438000 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305148 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.35 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.01 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.77 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 67216 32828 S 0.0 0.5 0:02.56 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.48 jupyter-+ top - 20:57:31 up 8 min, 0 users, load average: 0.31, 0.25, 0.17 %Cpu(s): 1.3 us, 0.7 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10092740 free, 767840 used, 2438000 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305628 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.38 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 67216 32828 S 0.0 0.5 0:02.56 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.48 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.01 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:01.77 python3 top - 20:57:34 up 8 min, 0 users, load average: 0.31, 0.25, 0.17 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093284 free, 767256 used, 2438040 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306212 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.41 python3 7 root 20 0 356416 67216 32828 S 0.3 0.5 0:02.57 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.49 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.02 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.78 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.18 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.37 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ top - 20:57:37 up 8 min, 0 users, load average: 0.28, 0.24, 0.17 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094040 free, 766500 used, 2438040 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306968 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.44 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.79 python3 200 root 20 0 2739056 133376 35520 S 0.3 1.0 0:07.38 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66452 32828 S 0.0 0.5 0:02.57 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.49 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.02 dap_mult+ 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.02 tail top - 20:57:40 up 8 min, 0 users, load average: 0.28, 0.24, 0.17 %Cpu(s): 1.2 us, 0.7 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093708 free, 766816 used, 2438056 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306652 avail Mem 56 root 20 0 500464 103484 23808 S 0.7 0.8 0:10.46 python3 7 root 20 0 356416 66452 32828 S 0.3 0.5 0:02.58 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.80 python3 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.49 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.02 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.38 drive top - 20:57:43 up 8 min, 0 users, load average: 0.26, 0.24, 0.17 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095008 free, 765516 used, 2438056 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307952 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.49 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.50 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.03 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.81 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66452 32828 S 0.0 0.5 0:02.58 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:57:46 up 9 min, 0 users, load average: 0.24, 0.24, 0.17 %Cpu(s): 1.5 us, 1.2 sy, 0.0 ni, 97.3 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10095228 free, 765252 used, 2438100 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308216 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.52 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.04 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.82 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66452 32828 S 0.0 0.5 0:02.58 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.50 jupyter-+ top - 20:57:49 up 9 min, 0 users, load average: 0.24, 0.24, 0.17 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094504 free, 765972 used, 2438104 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307496 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.55 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.05 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.83 python3 7 root 20 0 356416 66716 32828 S 0.0 0.5 0:02.58 node top - 20:57:52 up 9 min, 0 users, load average: 0.22, 0.23, 0.17 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10094284 free, 766152 used, 2438144 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307316 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.58 python3 7 root 20 0 356416 66716 32828 S 0.3 0.5 0:02.59 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.51 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.84 python3 200 root 20 0 2739056 133376 35520 S 0.3 1.0 0:07.39 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.05 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:57:55 up 9 min, 0 users, load average: 0.22, 0.23, 0.17 %Cpu(s): 1.5 us, 1.0 sy, 0.0 ni, 97.2 id, 0.2 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10093528 free, 766784 used, 2438268 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306680 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.61 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.06 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.85 python3 200 root 20 0 2739056 133376 35520 S 0.3 1.0 0:07.40 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66716 32828 S 0.0 0.5 0:02.59 node 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.51 jupyter-+ top - 20:57:58 up 9 min, 0 users, load average: 0.20, 0.23, 0.17 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094384 free, 765928 used, 2438268 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307536 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.64 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.19 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66716 32828 S 0.0 0.5 0:02.59 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.51 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.06 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:01.85 python3 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.40 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ top - 20:58:01 up 9 min, 0 users, load average: 0.18, 0.22, 0.17 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10094032 free, 766208 used, 2438340 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307256 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.67 python3 43 root 20 0 715504 10384 4632 S 0.7 0.1 0:01.08 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.86 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66980 32828 S 0.0 0.5 0:02.59 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.51 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.40 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.02 tail top - 20:58:04 up 9 min, 0 users, load average: 0.18, 0.22, 0.17 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093000 free, 767232 used, 2438348 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306228 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.70 python3 7 root 20 0 356416 66980 32828 S 0.3 0.5 0:02.60 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.52 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.87 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.08 dap_mult+ top - 20:58:07 up 9 min, 0 users, load average: 0.17, 0.22, 0.17 %Cpu(s): 1.5 us, 1.0 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093268 free, 766948 used, 2438364 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306512 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.73 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.09 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.88 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66980 32828 S 0.0 0.5 0:02.60 node 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.52 jupyter-+ top - 20:58:10 up 9 min, 0 users, load average: 0.17, 0.22, 0.17 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093048 free, 767168 used, 2438364 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306292 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.76 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:01.90 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66980 32828 S 0.0 0.5 0:02.60 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.52 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.09 dap_mult+ top - 20:58:13 up 9 min, 0 users, load average: 0.16, 0.22, 0.17 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10093308 free, 766868 used, 2438404 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306588 avail Mem 56 root 20 0 500464 103484 23808 S 1.0 0.8 0:10.79 python3 7 root 20 0 356416 67244 32828 S 0.3 0.5 0:02.61 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.53 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.10 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.91 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:58:17 up 9 min, 0 users, load average: 0.14, 0.21, 0.16 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10093836 free, 766340 used, 2438404 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307116 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:10.82 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.92 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66248 32828 S 0.0 0.5 0:02.61 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.53 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.10 dap_mult+ top - 20:58:20 up 9 min, 0 users, load average: 0.14, 0.21, 0.16 %Cpu(s): 1.0 us, 0.7 sy, 0.0 ni, 98.3 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093740 free, 766436 used, 2438404 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307020 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:10.85 python3 7 root 20 0 356416 66248 32828 S 0.3 0.5 0:02.62 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.93 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ top - 20:58:23 up 9 min, 0 users, load average: 0.13, 0.21, 0.16 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093008 free, 767096 used, 2438476 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306360 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:10.88 python3 43 root 20 0 715504 10384 4632 S 0.7 0.1 0:01.12 dap_mult+ 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.54 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.94 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66512 32828 S 0.0 0.5 0:02.62 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:58:26 up 9 min, 0 users, load average: 0.13, 0.21, 0.16 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10092228 free, 767840 used, 2438512 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305600 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:10.90 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.95 python3 283 root 20 0 4572 884 820 S 0.3 0.0 0:00.03 tail 1 root 20 0 992 4 0 S 0.0 0.0 0:00.56 docker-i+ 7 root 20 0 356416 66512 32828 S 0.0 0.5 0:02.62 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.54 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.12 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.40 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ top - 20:58:29 up 9 min, 0 users, load average: 0.12, 0.20, 0.16 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092764 free, 767224 used, 2438592 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306212 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:10.93 python3 1 root 20 0 992 4 0 S 0.3 0.0 0:00.57 docker-i+ 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.55 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.13 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.96 python3 200 root 20 0 2739056 133376 35520 S 0.3 1.0 0:07.41 drive 7 root 20 0 356416 66512 32828 S 0.0 0.5 0:02.62 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.03 tail top - 20:58:32 up 9 min, 0 users, load average: 0.11, 0.20, 0.16 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092512 free, 767476 used, 2438592 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305960 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:10.95 python3 7 root 20 0 356416 66776 32828 S 0.3 0.5 0:02.63 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.56 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:01.97 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.13 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.41 drive top - 20:58:35 up 9 min, 0 users, load average: 0.11, 0.20, 0.16 %Cpu(s): 1.2 us, 0.7 sy, 0.0 ni, 98.0 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10091708 free, 768216 used, 2438656 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305220 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:10.98 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:01.99 python3 7 root 20 0 356416 66776 32828 S 0.3 0.5 0:02.64 node 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.14 dap_mult+ 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.20 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.56 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.41 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ top - 20:58:38 up 9 min, 0 users, load average: 0.10, 0.20, 0.16 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10091416 free, 768504 used, 2438660 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12304928 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.01 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.57 jupyter-+ 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.21 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66776 32828 S 0.0 0.5 0:02.64 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.14 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:01.99 python3 top - 20:58:41 up 9 min, 0 users, load average: 0.10, 0.20, 0.16 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10091936 free, 767984 used, 2438660 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305448 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.04 python3 7 root 20 0 356416 67040 32828 S 0.3 0.5 0:02.65 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.00 python3 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.57 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133376 35520 S 0.0 1.0 0:07.41 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.03 tail top - 20:58:44 up 9 min, 0 users, load average: 0.09, 0.19, 0.16 %Cpu(s): 1.3 us, 0.7 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10091976 free, 767944 used, 2438660 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305488 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.06 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.15 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.01 python3 7 root 20 0 356416 67040 32828 S 0.0 0.5 0:02.65 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.57 jupyter-+ top - 20:58:47 up 10 min, 0 users, load average: 0.09, 0.19, 0.16 %Cpu(s): 1.3 us, 1.2 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092044 free, 767876 used, 2438660 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305556 avail Mem 56 root 20 0 500464 103488 23808 S 1.3 0.8 0:11.10 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.58 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.16 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.02 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 67040 32828 S 0.0 0.5 0:02.65 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:58:50 up 10 min, 0 users, load average: 0.09, 0.19, 0.16 %Cpu(s): 1.0 us, 0.7 sy, 0.0 ni, 98.0 id, 0.2 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10092156 free, 767744 used, 2438680 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305688 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.12 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.17 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.03 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 67040 32828 S 0.0 0.5 0:02.65 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.58 jupyter-+ top - 20:58:53 up 10 min, 0 users, load average: 0.08, 0.19, 0.16 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092952 free, 766860 used, 2438768 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306572 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.15 python3 7 root 20 0 356416 66332 32828 S 0.3 0.5 0:02.66 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.04 python3 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.58 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.17 dap_mult+ top - 20:58:56 up 10 min, 0 users, load average: 0.08, 0.19, 0.16 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092944 free, 766864 used, 2438772 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306592 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.17 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.18 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.05 python3 7 root 20 0 356416 66332 32828 S 0.0 0.5 0:02.66 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.58 jupyter-+ top - 20:58:59 up 10 min, 0 users, load average: 0.07, 0.18, 0.16 %Cpu(s): 1.2 us, 0.7 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092912 free, 766896 used, 2438772 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306560 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.20 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.59 jupyter-+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66332 32828 S 0.0 0.5 0:02.66 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.18 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:02.05 python3 top - 20:59:02 up 10 min, 0 users, load average: 0.07, 0.18, 0.16 %Cpu(s): 1.7 us, 0.7 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093984 free, 765784 used, 2438812 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307668 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.23 python3 200 root 20 0 2739056 133588 35520 S 0.7 1.0 0:07.43 drive 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.19 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.06 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66332 32828 S 0.0 0.5 0:02.66 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.59 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:59:05 up 10 min, 0 users, load average: 0.07, 0.18, 0.16 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093936 free, 765832 used, 2438812 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307620 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.25 python3 7 root 20 0 356416 66596 32828 S 0.3 0.5 0:02.67 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.07 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.59 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.19 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133588 35520 S 0.0 1.0 0:07.43 drive top - 20:59:08 up 10 min, 0 users, load average: 0.06, 0.18, 0.15 %Cpu(s): 1.8 us, 0.8 sy, 0.0 ni, 96.8 id, 0.2 wa, 0.0 hi, 0.2 si, 0.2 st KiB Mem : 13298580 total, 10093864 free, 765820 used, 2438896 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307628 avail Mem 56 root 20 0 500464 103488 23808 S 1.3 0.8 0:11.29 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.60 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.20 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.08 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66596 32828 S 0.0 0.5 0:02.67 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:59:11 up 10 min, 0 users, load average: 0.06, 0.18, 0.15 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094320 free, 765356 used, 2438904 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308092 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.32 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:02.10 python3 7 root 20 0 356416 66860 32828 S 0.3 0.5 0:02.68 node 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.60 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.20 dap_mult+ top - 20:59:14 up 10 min, 0 users, load average: 0.06, 0.17, 0.15 Tasks: 19 total, 2 running, 16 sleeping, 0 stopped, 1 zombie %Cpu(s): 1.0 us, 1.0 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093172 free, 766452 used, 2438956 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306996 avail Mem 56 root 20 0 500464 103488 23808 R 0.7 0.8 0:11.34 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.61 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.21 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.11 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66860 32828 S 0.0 0.5 0:02.68 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 20:59:17 up 10 min, 0 users, load average: 0.05, 0.17, 0.15 Tasks: 19 total, 1 running, 17 sleeping, 0 stopped, 1 zombie %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093020 free, 766604 used, 2438956 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306844 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.37 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66860 32828 S 0.0 0.5 0:02.68 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.61 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.21 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:02.11 python3 top - 20:59:20 up 10 min, 0 users, load average: 0.05, 0.17, 0.15 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10091944 free, 767680 used, 2438956 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305768 avail Mem 56 root 20 0 500464 103488 23808 S 1.3 0.8 0:11.41 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.22 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.12 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66860 32828 S 0.0 0.5 0:02.68 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.61 jupyter-+ top - 20:59:23 up 10 min, 0 users, load average: 0.05, 0.17, 0.15 %Cpu(s): 1.5 us, 0.7 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092148 free, 767476 used, 2438956 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305972 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.43 python3 7 root 20 0 356416 67124 32828 S 0.3 0.5 0:02.69 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.62 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.13 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.22 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.22 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133588 35520 S 0.0 1.0 0:07.43 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ top - 20:59:26 up 10 min, 0 users, load average: 0.05, 0.17, 0.15 %Cpu(s): 1.7 us, 1.2 sy, 0.0 ni, 97.0 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10091912 free, 767708 used, 2438960 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305740 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.46 python3 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.23 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.14 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66288 32828 S 0.0 0.5 0:02.69 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.62 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133588 35520 S 0.0 1.0 0:07.43 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.03 tail top - 20:59:29 up 10 min, 0 users, load average: 0.04, 0.16, 0.15 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10092404 free, 767172 used, 2439004 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306276 avail Mem 56 root 20 0 500464 103488 23808 S 1.3 0.8 0:11.50 python3 7 root 20 0 356416 66288 32828 S 0.3 0.5 0:02.70 node 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.24 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.15 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ top - 20:59:32 up 10 min, 0 users, load average: 0.04, 0.16, 0.15 %Cpu(s): 1.7 us, 1.0 sy, 0.0 ni, 97.3 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092416 free, 767160 used, 2439004 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306288 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.52 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.63 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.25 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.16 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.23 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66552 32828 S 0.0 0.5 0:02.70 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.74 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133588 35520 S 0.0 1.0 0:07.43 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ top - 20:59:35 up 10 min, 0 users, load average: 0.04, 0.16, 0.15 %Cpu(s): 1.5 us, 0.7 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10092668 free, 766852 used, 2439060 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306596 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.55 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.17 python3 96 root 20 0 524992 116372 31720 S 0.3 0.9 0:04.75 node 200 root 20 0 2739056 133588 35520 S 0.3 1.0 0:07.44 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66552 32828 S 0.0 0.5 0:02.70 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.63 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.25 dap_mult+ 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.03 tail top - 20:59:38 up 10 min, 0 users, load average: 0.04, 0.16, 0.15 %Cpu(s): 1.3 us, 1.2 sy, 0.0 ni, 97.2 id, 0.2 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10092196 free, 767252 used, 2439132 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306192 avail Mem 56 root 20 0 500464 103488 23808 S 1.3 0.8 0:11.59 python3 7 root 20 0 356416 66552 32828 S 0.3 0.5 0:02.71 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.64 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.26 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.18 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2739056 133588 35520 S 0.0 1.0 0:07.44 drive top - 20:59:41 up 10 min, 0 users, load average: 0.04, 0.16, 0.15 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10091440 free, 768004 used, 2439136 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305440 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.61 python3 7 root 20 0 356416 66816 32828 S 0.3 0.5 0:02.72 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.19 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.64 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.0 0.1 0:01.26 dap_mult+ top - 20:59:44 up 10 min, 0 users, load average: 0.03, 0.16, 0.15 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10091504 free, 767884 used, 2439192 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305556 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.64 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.20 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66816 32828 S 0.0 0.5 0:02.72 node top - 20:59:47 up 11 min, 0 users, load average: 0.03, 0.15, 0.15 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092572 free, 766816 used, 2439192 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306624 avail Mem 43 root 20 0 715504 10384 4632 S 0.7 0.1 0:01.28 dap_mult+ 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.66 python3 7 root 20 0 356416 66816 32828 S 0.3 0.5 0:02.73 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.21 python3 200 root 20 0 2739056 133656 35548 S 0.3 1.0 0:07.45 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.64 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 20:59:50 up 11 min, 0 users, load average: 0.03, 0.15, 0.15 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092372 free, 767092 used, 2439116 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306392 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.69 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.65 jupyter-+ 43 root 20 0 715504 10384 4632 S 0.3 0.1 0:01.29 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.22 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66816 32828 S 0.0 0.5 0:02.73 node 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2698076 134184 35736 S 0.0 1.0 0:07.45 drive top - 20:59:53 up 11 min, 0 users, load average: 0.03, 0.15, 0.15 %Cpu(s): 1.0 us, 0.8 sy, 0.0 ni, 98.2 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092900 free, 766524 used, 2439156 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306960 avail Mem 56 root 20 0 500464 103488 23808 S 1.3 0.8 0:11.73 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.23 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 67076 32828 S 0.0 0.5 0:02.73 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.65 jupyter-+ 43 root 20 0 715504 10636 4640 S 0.0 0.1 0:01.29 dap_mult+ top - 20:59:56 up 11 min, 0 users, load average: 0.03, 0.15, 0.15 %Cpu(s): 1.2 us, 0.7 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.2 si, 0.2 st KiB Mem : 13298580 total, 10093852 free, 765572 used, 2439156 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307912 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.75 python3 7 root 20 0 356416 66308 32828 S 0.3 0.5 0:02.74 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.24 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ top - 20:59:59 up 11 min, 0 users, load average: 0.02, 0.15, 0.14 %Cpu(s): 1.7 us, 1.0 sy, 0.0 ni, 97.3 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093600 free, 765776 used, 2439204 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307708 avail Mem 56 root 20 0 500464 103488 23808 S 1.3 0.8 0:11.79 python3 43 root 20 0 715504 10636 4640 S 0.3 0.1 0:01.30 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.25 python3 7 root 20 0 356416 66308 32828 S 0.0 0.5 0:02.74 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.65 jupyter-+ top - 21:00:02 up 11 min, 0 users, load average: 0.02, 0.14, 0.14 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10093128 free, 766248 used, 2439204 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307236 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.82 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.66 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.26 python3 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.24 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66572 32828 S 0.0 0.5 0:02.74 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10636 4640 S 0.0 0.1 0:01.30 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2698076 134184 35736 S 0.0 1.0 0:07.45 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ top - 21:00:05 up 11 min, 0 users, load average: 0.02, 0.14, 0.14 KiB Mem : 13298580 total, 10092308 free, 767068 used, 2439204 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306416 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:11.84 python3 43 root 20 0 715504 10636 4640 S 0.3 0.1 0:01.31 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.27 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66572 32828 S 0.0 0.5 0:02.74 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.66 jupyter-+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2698076 134184 35736 S 0.0 1.0 0:07.45 drive 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.03 tail top - 21:00:08 up 11 min, 0 users, load average: 0.02, 0.14, 0.14 %Cpu(s): 1.5 us, 0.8 sy, 0.0 ni, 97.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10091804 free, 767440 used, 2439336 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306040 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.87 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:02.29 python3 7 root 20 0 356416 66572 32828 S 0.3 0.5 0:02.75 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.67 jupyter-+ 43 root 20 0 715504 10636 4640 S 0.3 0.1 0:01.32 dap_mult+ 200 root 20 0 2698076 134184 35736 S 0.3 1.0 0:07.46 drive 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep top - 21:00:11 up 11 min, 0 users, load average: 0.02, 0.14, 0.14 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10091552 free, 767684 used, 2439344 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305820 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.90 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.68 jupyter-+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66572 32828 S 0.0 0.5 0:02.75 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 10636 4640 S 0.0 0.1 0:01.32 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:02.29 python3 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2698076 134184 35736 S 0.0 1.0 0:07.46 drive top - 21:00:14 up 11 min, 0 users, load average: 0.02, 0.14, 0.14 %Cpu(s): 1.0 us, 1.0 sy, 0.0 ni, 97.8 id, 0.2 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10091836 free, 767340 used, 2439404 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306164 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.93 python3 43 root 20 0 715504 10604 4640 S 0.3 0.1 0:01.33 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.30 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66836 32828 S 0.0 0.5 0:02.75 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.68 jupyter-+ top - 21:00:17 up 11 min, 0 users, load average: 0.02, 0.14, 0.14 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10093296 free, 765880 used, 2439404 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307624 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.96 python3 7 root 20 0 356416 66836 32828 S 0.3 0.5 0:02.76 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.31 python3 200 root 20 0 2698076 134184 35736 S 0.3 1.0 0:07.47 drive 644 root 20 0 63188 6816 5088 R 0.3 0.1 0:00.25 top 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.68 jupyter-+ 43 root 20 0 715504 10604 4640 S 0.0 0.1 0:01.33 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ top - 21:00:20 up 11 min, 0 users, load average: 0.02, 0.14, 0.14 %Cpu(s): 1.2 us, 0.8 sy, 0.0 ni, 98.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092372 free, 766796 used, 2439412 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306708 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:11.99 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.69 jupyter-+ 43 root 20 0 715504 10604 4640 S 0.3 0.1 0:01.34 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.32 python3 200 root 20 0 2698076 134184 35736 S 0.3 1.0 0:07.48 drive 7 root 20 0 356416 66836 32828 S 0.0 0.5 0:02.76 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 281 root 20 0 18380 3088 2840 S 0.0 0.0 0:00.00 bash 282 root 20 0 712212 11876 2184 S 0.0 0.1 0:00.25 director+ 283 root 20 0 4572 884 820 S 0.0 0.0 0:00.03 tail top - 21:00:23 up 11 min, 0 users, load average: 0.02, 0.13, 0.14 KiB Mem : 13298580 total, 10092308 free, 766856 used, 2439416 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306644 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:12.01 python3 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.33 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 67100 32828 S 0.0 0.5 0:02.76 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.69 jupyter-+ 43 root 20 0 715504 10604 4640 S 0.0 0.1 0:01.34 dap_mult+ 96 root 20 0 524992 116372 31720 S 0.0 0.9 0:04.75 node 132 root 20 0 18380 1428 1132 S 0.0 0.0 0:00.00 bash 133 root 20 0 2188120 22504 17940 S 0.0 0.2 0:00.04 drive 134 root 20 0 11464 1008 916 S 0.0 0.0 0:00.00 grep 200 root 20 0 2698076 134184 35736 S 0.0 1.0 0:07.48 drive top - 21:00:26 up 11 min, 0 users, load average: 0.02, 0.13, 0.14 %Cpu(s): 1.2 us, 1.0 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10091868 free, 767180 used, 2439532 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12306320 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:12.04 python3 7 root 20 0 356416 67100 32828 S 0.3 0.5 0:02.77 node 43 root 20 0 715504 10604 4640 S 0.3 0.1 0:01.35 dap_mult+ 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:02.33 python3 top - 21:00:29 up 11 min, 0 users, load average: 0.01, 0.13, 0.14 %Cpu(s): 1.7 us, 1.2 sy, 0.0 ni, 97.0 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st KiB Mem : 13298580 total, 10094272 free, 764764 used, 2439544 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308736 avail Mem 56 root 20 0 500464 103488 23808 S 1.3 0.8 0:12.08 python3 76 root 20 0 130000 18660 6208 S 0.7 0.1 0:02.35 python3 43 root 20 0 715504 9708 4640 S 0.3 0.1 0:01.36 dap_mult+ 7 root 20 0 356416 66252 32828 S 0.0 0.5 0:02.77 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.69 jupyter-+ top - 21:00:32 up 11 min, 0 users, load average: 0.01, 0.13, 0.14 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10094168 free, 764868 used, 2439544 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12308640 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:12.10 python3 7 root 20 0 356416 66516 32828 S 0.3 0.5 0:02.78 node 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.70 jupyter-+ 43 root 20 0 715504 9708 4640 S 0.3 0.1 0:01.37 dap_mult+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.36 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ top - 21:00:35 up 11 min, 0 users, load average: 0.01, 0.13, 0.14 %Cpu(s): 1.8 us, 1.2 sy, 0.0 ni, 96.5 id, 0.2 wa, 0.0 hi, 0.2 si, 0.2 st KiB Mem : 13298580 total, 10093488 free, 765508 used, 2439584 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307996 avail Mem 56 root 20 0 500464 103488 23808 S 1.0 0.8 0:12.13 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.71 jupyter-+ 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.37 python3 1 root 20 0 992 4 0 S 0.0 0.0 0:00.57 docker-i+ 7 root 20 0 356416 66516 32828 S 0.0 0.5 0:02.78 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 43 root 20 0 715504 9708 4640 S 0.0 0.1 0:01.37 dap_mult+ top - 21:00:38 up 11 min, 0 users, load average: 0.01, 0.13, 0.14 %Cpu(s): 1.3 us, 1.0 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 13298580 total, 10092876 free, 766120 used, 2439584 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12307384 avail Mem 56 root 20 0 500464 103488 23808 S 1.3 0.8 0:12.17 python3 7 root 20 0 356416 66780 32828 S 0.3 0.5 0:02.79 node 76 root 20 0 130000 18660 6208 S 0.3 0.1 0:02.38 python3 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 42 root 20 0 202112 63276 15156 S 0.0 0.5 0:03.71 jupyter-+ top - 21:00:41 up 11 min, 0 users, load average: 0.01, 0.13, 0.14 %Cpu(s): 1.3 us, 0.8 sy, 0.0 ni, 97.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.2 st KiB Mem : 13298580 total, 10091348 free, 767648 used, 2439584 buff/cache KiB Swap: 0 total, 0 free, 0 used. 12305856 avail Mem 56 root 20 0 500464 103488 23808 S 0.7 0.8 0:12.19 python3 42 root 20 0 202112 63276 15156 S 0.3 0.5 0:03.72 jupyter-+ 43 root 20 0 715504 9708 4640 S 0.3 0.1 0:01.38 dap_mult+ 7 root 20 0 356416 66780 32828 S 0.0 0.5 0:02.79 node 17 root 20 0 35888 4744 3640 S 0.0 0.0 0:00.58 tail 28 root 20 0 0 0 0 Z 0.0 0.0 0:05.83 python3 29 root 20 0 156136 40944 12724 S 0.0 0.3 0:00.49 colab-fi+ 76 root 20 0 130000 18660 6208 S 0.0 0.1 0:02.38 python3 >
! ps xfw -o ppid,pid,cmd
PPID PID CMD 0 17 tail -n +0 -F /root/.config/Google/DriveFS/Logs/dpb.txt /root/.config/Google/DriveFS/Logs/drive_fs.txt 0 1 /sbin/docker-init -- /datalab/run.sh 1 7 /tools/node/bin/node /datalab/web/app.js 7 28 \_ [python3] <defunct> 7 29 \_ python3 /usr/local/bin/colab-fileshim.py 7 42 \_ /usr/bin/python3 /usr/local/bin/jupyter-notebook --ip=172.28.0.2 --port=9000 --FileContentsManager.root_dir=/ -- 42 56 | \_ /usr/bin/python3 -m ipykernel_launcher -f /root/.local/share/jupyter/runtime/kernel-120cab53-f55d-45d7-8795- 56 692 | \_ ps xfw -o ppid,pid,cmd 7 43 \_ /usr/local/bin/dap_multiplexer --domain_socket_path=/tmp/debugger_g94v47h2q 7 96 \_ node /datalab/web/pyright/pyright-langserver.js --stdio --cancellationReceive=file:6fcdf4ff30ee16f693186e04a40e9 1 76 /usr/bin/python3 /usr/local/lib/python3.7/dist-packages/debugpy/adapter --for-server 44863 --host 127.0.0.1 --port 2 1 132 /bin/bash --noediting -i 132 133 \_ /opt/google/drive/drive --features=fuse_max_background:1000,max_read_qps:1000,max_write_qps:1000,max_operation_b 133 200 | \_ /opt/google/drive/drive --features=fuse_max_background:1000,max_read_qps:1000,max_write_qps:1000,max_operati 132 134 \_ grep --color=auto --line-buffered -E Drive File Stream encountered a problem and has stopped|The domain policy h 1 281 bash -c tail -n +0 -F "/root/.config/Google/DriveFS/Logs/drive_fs.txt" | python3 /opt/google/drive/drive-filter.py > 281 283 \_ tail -n +0 -F /root/.config/Google/DriveFS/Logs/drive_fs.txt 281 284 \_ python3 /opt/google/drive/drive-filter.py 1 282 /opt/google/drive/directoryprefetcher_binary -mountpoint=/content/drive

Change Filesystem

!date > date.txt
!wc date.txt
1 6 29 date.txt
!cat date.txt
Sun Sep 4 21:00:43 UTC 2022
!ls sample_data/
anscombe.json mnist_test.csv california_housing_test.csv mnist_train_small.csv california_housing_train.csv README.md
!head sample_data/README.md
This directory includes a few sample datasets to get you started. * `california_housing_data*.csv` is California housing data from the 1990 US Census; more information is available at: https://developers.google.com/machine-learning/crash-course/california-housing-data-description * `mnist_*.csv` is a small sample of the [MNIST database](https://en.wikipedia.org/wiki/MNIST_database), which is described at: http://yann.lecun.com/exdb/mnist/
!mkdir -p dir/sub/subdir
!tree dir
dir └── sub └── subdir 2 directories, 0 files
!touch dir/empty.txt
!echo content > dir/full.txt
!tree dir
dir ├── empty.txt ├── full.txt └── sub └── subdir 2 directories, 2 files
!cat dir/*.txt
content
!date > dir/date.txt
!tree
Streaming output truncated to the last 5000 lines. │   │   │   │   ├── 20160119sociallydrivengenes.txt │   │   │   │   ├── 20160119special-delivery.txt │   │   │   │   ├── 20160119spiderman-cannot-exist.txt │   │   │   │   ├── 20160119they-took-our-jobs.txt │   │   │   │   ├── 20160119those-danish-turbines.txt │   │   │   │   ├── 20160119ultrasound.txt │   │   │   │   ├── 20160119xti.txt │   │   │   │   ├── 20160120123456.txt │   │   │   │   ├── 20160120armor.txt │   │   │   │   ├── 20160120astrobee.txt │   │   │   │   ├── 20160120control.txt │   │   │   │   ├── 20160120Decapitated-gladiators.txt │   │   │   │   ├── 20160120defense.txt │   │   │   │   ├── 20160120drone-hawk.txt │   │   │   │   ├── 20160120goleft.txt │   │   │   │   ├── 20160120head-transplant.txt │   │   │   │   ├── 20160120heartbeat.txt │   │   │   │   ├── 20160120heat-bacterias.txt │   │   │   │   ├── 20160120language-learning.txt │   │   │   │   ├── 20160120microbes-not-found.txt │   │   │   │   ├── 20160120moving-landing.txt │   │   │   │   ├── 20160120Notocolossus-gonzalezparejasi.txt │   │   │   │   ├── 20160120particlesandpyramids.txt │   │   │   │   ├── 20160120planetX.txt │   │   │   │   ├── 20160120subs.txt │   │   │   │   ├── 20160120tbgyrase.txt │   │   │   │   ├── 20160120worldview.txt │   │   │   │   ├── 20160121antifreeze-dna.txt │   │   │   │   ├── 20160121brain-hdd.txt │   │   │   │   ├── 20160121calories-counting-app.txt │   │   │   │   ├── 20160121common-cold-or-not.txt │   │   │   │   ├── 20160121drones.txt │   │   │   │   ├── 20160121energy.txt │   │   │   │   ├── 20160121fairytailes-history.txt │   │   │   │   ├── 20160121gambling.txt │   │   │   │   ├── 20160121gimball-crevasse.txt │   │   │   │   ├── 20160121graphenebarrier.txt │   │   │   │   ├── 20160121heavy-weight.txt │   │   │   │   ├── 20160121hurricanes.txt │   │   │   │   ├── 20160121jurassic-dinosaur.txt │   │   │   │   ├── 20160121no-pasaran-Nosema-apis.txt │   │   │   │   ├── 20160121no-spoon.txt │   │   │   │   ├── 20160121prime.txt │   │   │   │   ├── 20160121stroller.txt │   │   │   │   ├── 20160121testing.txt │   │   │   │   ├── 20160121the-drone-is-on-fire.txt │   │   │   │   ├── 20160121underwatervolcanoes.txt │   │   │   │   ├── 20160122antidepressant-questionnaire.txt │   │   │   │   ├── 20160122beetles.txt │   │   │   │   ├── 20160122consolation-behavior.txt │   │   │   │   ├── 20160122deeplearning.txt │   │   │   │   ├── 20160122deploy.txt │   │   │   │   ├── 20160122gene-therapy.txt │   │   │   │   ├── 20160122google-mountains.txt │   │   │   │   ├── 20160122grafted.txt │   │   │   │   ├── 20160122hover.txt │   │   │   │   ├── 20160122noble.txt │   │   │   │   ├── 20160122organic-drone.txt │   │   │   │   ├── 20160122Prehistoric-massacre.txt │   │   │   │   ├── 20160122school-capital.txt │   │   │   │   ├── 20160122Sweet-trap.txt │   │   │   │   ├── 20160122twogiantplanets.txt │   │   │   │   ├── 20160122uavs.txt │   │   │   │   ├── 20160122weapon.txt │   │   │   │   ├── 20160122weavingoforganicthreads.txt │   │   │   │   ├── 20160123agile-drone.txt │   │   │   │   ├── 20160123kitt.txt │   │   │   │   ├── 20160123launch-land-repeat.txt │   │   │   │   ├── 20160123night-side.txt │   │   │   │   ├── 20160123Uncharted-U-31.txt │   │   │   │   ├── 20160125AI-hedge-fund.txt │   │   │   │   ├── 20160125Equus-stripes.txt │   │   │   │   ├── 20160125floating-bonsai.txt │   │   │   │   ├── 20160125habit.txt │   │   │   │   ├── 20160125mathematical.txt │   │   │   │   ├── 20160125microwave-nanotubes.txt │   │   │   │   ├── 20160125missile.txt │   │   │   │   ├── 20160125quantumknots.txt │   │   │   │   ├── 20160125refuel.txt │   │   │   │   ├── 20160125reusable.txt │   │   │   │   ├── 20160125scenic-neural.txt │   │   │   │   ├── 20160125Scorbut-scorbut.txt │   │   │   │   ├── 20160125scott-kelly.txt │   │   │   │   ├── 20160125trace-circuits.txt │   │   │   │   ├── 20160125ultra-metal-poor-star.txt │   │   │   │   ├── 20160125waterlikeice.txt │   │   │   │   ├── 20160125winglets.txt │   │   │   │   ├── 20160125work-it-faster.txt │   │   │   │   ├── 20160126airplane.txt │   │   │   │   ├── 20160126ancestors-india.txt │   │   │   │   ├── 20160126asd-monkey.txt │   │   │   │   ├── 20160126blackjack.txt │   │   │   │   ├── 20160126brainsize.txt │   │   │   │   ├── 20160126cloudy-chance-of-pain.txt │   │   │   │   ├── 20160126Domestic-leopard-cat.txt │   │   │   │   ├── 20160126engine.txt │   │   │   │   ├── 20160126food-related-backfire.txt │   │   │   │   ├── 20160126hellcrab.txt │   │   │   │   ├── 20160126lift-me-up.txt │   │   │   │   ├── 20160126magneticcompass.txt │   │   │   │   ├── 20160126moon-landing-pad.txt │   │   │   │   ├── 20160126museum.txt │   │   │   │   ├── 20160126neuro-sans.txt │   │   │   │   ├── 20160126onco-microscope.txt │   │   │   │   ├── 20160126plaguestructured.txt │   │   │   │   ├── 20160126red-tape.txt │   │   │   │   ├── 20160126remind-me-later.txt │   │   │   │   ├── 20160126speed-limit.txt │   │   │   │   ├── 20160126zika-no-pregnancy.txt │   │   │   │   ├── 20160127acoustic-tweezers.txt │   │   │   │   ├── 20160127altay.txt │   │   │   │   ├── 20160127beating-the-unbeatable.txt │   │   │   │   ├── 20160127bigdata.txt │   │   │   │   ├── 20160127conspiraciesreveal.txt │   │   │   │   ├── 20160127Cyprinodon-diabolis.txt │   │   │   │   ├── 20160127epi-ms.txt │   │   │   │   ├── 20160127kfx.txt │   │   │   │   ├── 20160127lonelyplanet.txt │   │   │   │   ├── 20160127migration-passways.txt │   │   │   │   ├── 20160127multifractal-litterature.txt │   │   │   │   ├── 20160127no-difference.txt │   │   │   │   ├── 20160127origami-tessellations.txt │   │   │   │   ├── 20160127peppers.txt │   │   │   │   ├── 20160127sig.txt │   │   │   │   ├── 20160127smart-padlock.txt │   │   │   │   ├── 20160127social-networks-sleep.txt │   │   │   │   ├── 20160127spider.txt │   │   │   │   ├── 20160127Tegu-reproductive-endothermy.txt │   │   │   │   ├── 20160127time-is-the-answer.txt │   │   │   │   ├── 20160127try-to-set-the-night-on-fire.txt │   │   │   │   ├── 20160128automatic-brake.txt │   │   │   │   ├── 20160128chimera-pope.txt │   │   │   │   ├── 20160128consciousness.txt │   │   │   │   ├── 20160128dmc12.txt │   │   │   │   ├── 20160128fighter.txt │   │   │   │   ├── 20160128good-bye-java.txt │   │   │   │   ├── 20160128Kisameet-clay.txt │   │   │   │   ├── 20160128legochima.txt │   │   │   │   ├── 20160128microfluidic-liver.txt │   │   │   │   ├── 20160128nerve-magnetism.txt │   │   │   │   ├── 20160128parachutes-test.txt │   │   │   │   ├── 20160128reisen.txt │   │   │   │   ├── 20160128sea-antenna.txt │   │   │   │   ├── 20160128starcluster.txt │   │   │   │   ├── 20160128structureofprotons.txt │   │   │   │   ├── 20160128sweat-sensor.txt │   │   │   │   ├── 20160128to-kill-or-not-to-kill.txt │   │   │   │   ├── 20160129Babylon.txt │   │   │   │   ├── 20160129bwb.txt │   │   │   │   ├── 20160129calibration-tools.txt │   │   │   │   ├── 20160129configurationalentropy.txt │   │   │   │   ├── 20160129dangerous.txt │   │   │   │   ├── 20160129droneboarding.txt │   │   │   │   ├── 20160129expansion.txt │   │   │   │   ├── 20160129low-temperature-electron.txt │   │   │   │   ├── 20160129noymale.txt │   │   │   │   ├── 20160129octo-fight.txt │   │   │   │   ├── 20160129opioid.txt │   │   │   │   ├── 20160129raptor.txt │   │   │   │   ├── 20160129schizogene.txt │   │   │   │   ├── 20160129silo.txt │   │   │   │   ├── 20160129skills-practicing.txt │   │   │   │   ├── 20160129spectrometer.txt │   │   │   │   ├── 20160129trophy.txt │   │   │   │   ├── 20160130albedo.txt │   │   │   │   ├── 20160130b737max.txt │   │   │   │   ├── 20160130ceres.txt │   │   │   │   ├── 20160130fighters.txt │   │   │   │   ├── 20160130gps.txt │   │   │   │   ├── 20160130houses.txt │   │   │   │   ├── 20160130laser.txt │   │   │   │   ├── 20160130martian-mashrooms.txt │   │   │   │   ├── 20160130navi.txt │   │   │   │   ├── 20160130neurographene.txt │   │   │   │   ├── 20160130no-guns-today.txt │   │   │   │   ├── 20160130prophet.txt │   │   │   │   ├── 20160130sail.txt │   │   │   │   ├── 20160130tasty-eggs-of-Genyornis.txt │   │   │   │   ├── 20160130thoughts.txt │   │   │   │   ├── 20160201antarcticdinosaurs.txt │   │   │   │   ├── 20160201britaincrispr.txt │   │   │   │   ├── 20160201colour-moon.txt │   │   │   │   ├── 20160201crisprvsblindness.txt │   │   │   │   ├── 20160201dniwe.txt │   │   │   │   ├── 20160201drill.txt │   │   │   │   ├── 20160201eagle.txt │   │   │   │   ├── 20160201finger-tracing.txt │   │   │   │   ├── 20160201gentle-gripper.txt │   │   │   │   ├── 20160201hyperloop-pods.txt │   │   │   │   ├── 20160201instagram-selfie-relationships.txt │   │   │   │   ├── 20160201lunartides.txt │   │   │   │   ├── 20160201methanolfuel.txt │   │   │   │   ├── 20160201missiles.txt │   │   │   │   ├── 20160201new-Plesiosauria.txt │   │   │   │   ├── 20160201pluto-water.txt │   │   │   │   ├── 20160201tanker.txt │   │   │   │   ├── 20160201white-light-on-streets.txt │   │   │   │   ├── 20160201wires.txt │   │   │   │   ├── 20160202Abusir-non-royal-find.txt │   │   │   │   ├── 20160202astropi.txt │   │   │   │   ├── 20160202brainfolding.txt │   │   │   │   ├── 20160202dishonestbehavior.txt │   │   │   │   ├── 20160202drought-resistance.txt │   │   │   │   ├── 20160202easyjet.txt │   │   │   │   ├── 20160202epigenetic-reprogramming.txt │   │   │   │   ├── 20160202impact.txt │   │   │   │   ├── 20160202neoseptin.txt │   │   │   │   ├── 20160202newfrogs.txt │   │   │   │   ├── 20160202organic-co-olygomers.txt │   │   │   │   ├── 20160202Pleistocen-tortuases.txt │   │   │   │   ├── 20160202shinshin.txt │   │   │   │   ├── 20160202soft-incompatible.txt │   │   │   │   ├── 20160202synch.txt │   │   │   │   ├── 20160202time-and-time-again.txt │   │   │   │   ├── 20160202universal-semantics.txt │   │   │   │   ├── 20160202zika-world-danger.txt │   │   │   │   ├── 20160203artificialgraphene.txt │   │   │   │   ├── 20160203brainwrongspell.txt │   │   │   │   ├── 20160203cancer-mutations.txt │   │   │   │   ├── 20160203coffecirrhosis.txt │   │   │   │   ├── 20160203dji.txt │   │   │   │   ├── 20160203i-got-a-poison.txt │   │   │   │   ├── 20160203kevlar.txt │   │   │   │   ├── 20160203laser.txt │   │   │   │   ├── 20160203long-x-ray-jet.txt │   │   │   │   ├── 20160203media-stereotypes.txt │   │   │   │   ├── 20160203no-gps.txt │   │   │   │   ├── 20160203off-clip-on.txt │   │   │   │   ├── 20160203rareearthelements.txt │   │   │   │   ├── 20160203smart-mirror.txt │   │   │   │   ├── 20160203snowball-machine-gun.txt │   │   │   │   ├── 20160203twitter-bots.txt │   │   │   │   ├── 20160203uncommon-surnames.txt │   │   │   │   ├── 20160203will-serve.txt │   │   │   │   ├── 20160203zika-usa.txt │   │   │   │   ├── 20160204ancientbutterfly.txt │   │   │   │   ├── 20160204arctic.txt │   │   │   │   ├── 20160204attack.txt │   │   │   │   ├── 20160204cutter.txt │   │   │   │   ├── 20160204deceptive-buttons.txt │   │   │   │   ├── 20160204degrees-of-separation.txt │   │   │   │   ├── 20160204harry-potter-economy.txt │   │   │   │   ├── 20160204latvia-droneboarding.txt │   │   │   │   ├── 20160204legionellosis.txt │   │   │   │   ├── 20160204mitichondria-fixed.txt │   │   │   │   ├── 20160204moor.txt │   │   │   │   ├── 20160204nsa-vs-quantum.txt │   │   │   │   ├── 20160204pact.txt │   │   │   │   ├── 20160204rain.txt │   │   │   │   ├── 20160204safety-truck.txt │   │   │   │   ├── 20160204senescenceclear.txt │   │   │   │   ├── 20160204senescence-mitophagy.txt │   │   │   │   ├── 20160204vtol.txt │   │   │   │   ├── 20160204women-yawning.txt │   │   │   │   ├── 20160205biggestwindfarm.txt │   │   │   │   ├── 20160205catgras.txt │   │   │   │   ├── 20160205dope-passion.txt │   │   │   │   ├── 20160205gammarays.txt │   │   │   │   ├── 20160205hairfollicleaging.txt │   │   │   │   ├── 20160205hypoxia.txt │   │   │   │   ├── 20160205light-up.txt │   │   │   │   ├── 20160205macchiarini-fired.txt │   │   │   │   ├── 20160205mushrooms-after-death.txt │   │   │   │   ├── 20160205now-i-am-complete.txt │   │   │   │   ├── 20160205pluto-hills.txt │   │   │   │   ├── 20160205radars.txt │   │   │   │   ├── 20160205robot.txt │   │   │   │   ├── 20160205solar-magnetic-field.txt │   │   │   │   ├── 20160205unreal-editor.txt │   │   │   │   ├── 20160205when-the-spider-comes-around.txt │   │   │   │   ├── 20160206diatoms-aglae.txt │   │   │   │   ├── 20160206elastic-spheres.txt │   │   │   │   ├── 20160206fuori-circumstellar-envelope.txt │   │   │   │   ├── 20160206google-wireless-chargers.txt │   │   │   │   ├── 20160206robot-arm-lipstic.txt │   │   │   │   ├── 20160208anka.txt │   │   │   │   ├── 20160208bearbacter.txt │   │   │   │   ├── 20160208boomerang.txt │   │   │   │   ├── 20160208dangerous-black-faces.txt │   │   │   │   ├── 20160208engine.txt │   │   │   │   ├── 20160208f35a.txt │   │   │   │   ├── 20160208flu-comp.txt │   │   │   │   ├── 20160208google-vr.txt │   │   │   │   ├── 20160208helmet.txt │   │   │   │   ├── 20160208hybrid.txt │   │   │   │   ├── 20160208mers-autopsy.txt │   │   │   │   ├── 20160208msu-luminiscent-polips.txt │   │   │   │   ├── 20160208pollenanodes.txt │   │   │   │   ├── 20160208procrastinators-unite-tomorrow.txt │   │   │   │   ├── 20160208wireless-charger.txt │   │   │   │   ├── 20160208worms-lungs.txt │   │   │   │   ├── 20160208your-own-astro-pi.txt │   │   │   │   ├── 20160208zenit.txt │   │   │   │   ├── 20160209arsenal.txt │   │   │   │   ├── 20160209australopithecusdiet.txt │   │   │   │   ├── 20160209cognitive-season.txt │   │   │   │   ├── 20160209cotton-organs.txt │   │   │   │   ├── 20160209gravitationalwaves.txt │   │   │   │   ├── 20160209helicasepump.txt │   │   │   │   ├── 20160209insurance.txt │   │   │   │   ├── 20160209last-resort.txt │   │   │   │   ├── 20160209longuav.txt │   │   │   │   ├── 20160209mitaka-multiple-languages.txt │   │   │   │   ├── 20160209new-horizons-continue-exploration.txt │   │   │   │   ├── 20160209paper-planes.txt │   │   │   │   ├── 20160209quad.txt │   │   │   │   ├── 20160209sighing-peptide.txt │   │   │   │   ├── 20160209stenrod.txt │   │   │   │   ├── 20160209subs.txt │   │   │   │   ├── 20160209synechocystis.txt │   │   │   │   ├── 20160209uav.txt │   │   │   │   ├── 20160209wob-wob-clay.txt │   │   │   │   ├── 20160209wolf-dialects.txt │   │   │   │   ├── 20160210cell-stasis.txt │   │   │   │   ├── 20160210chase.txt │   │   │   │   ├── 20160210chemicalnanocages.txt │   │   │   │   ├── 20160210collision.txt │   │   │   │   ├── 20160210delivery.txt │   │   │   │   ├── 20160210great-attractor.txt │   │   │   │   ├── 20160210mammal-brain-cryopreservation.txt │   │   │   │   ├── 20160210multi.txt │   │   │   │   ├── 20160210naked-mole-cancer.txt │   │   │   │   ├── 20160210neurons-laser.txt │   │   │   │   ├── 20160210no-fly-today.txt │   │   │   │   ├── 20160210parkinson-placebo.txt │   │   │   │   ├── 20160210pedestrian.txt │   │   │   │   ├── 20160210photonelectroncrystal.txt │   │   │   │   ├── 20160210real-human-being.txt │   │   │   │   ├── 20160210reversible.txt │   │   │   │   ├── 20160210ride.txt │   │   │   │   ├── 20160210robot.txt │   │   │   │   ├── 20160210star-wars-graph.txt │   │   │   │   ├── 20160210thatwasntameteorite.txt │   │   │   │   ├── 20160210uavs.txt │   │   │   │   ├── 20160211atlast.txt │   │   │   │   ├── 20160211base.txt │   │   │   │   ├── 20160211biopiracy.txt │   │   │   │   ├── 20160211blind-typing.txt │   │   │   │   ├── 20160211climat-changes-affects-airplanes.txt │   │   │   │   ├── 20160211dipole-record.txt │   │   │   │   ├── 20160211fire-drones.txt │   │   │   │   ├── 20160211ligo-announcement.txt │   │   │   │   ├── 20160211model-3.txt │   │   │   │   ├── 20160211ok-go.txt │   │   │   │   ├── 20160211punitive-gods.txt │   │   │   │   ├── 20160211radiation-blindness.txt │   │   │   │   ├── 20160211run-like-hell.txt │   │   │   │   ├── 20160211sneezing-fluid.txt │   │   │   │   ├── 20160211successor.txt │   │   │   │   ├── 20160211tickdna.txt │   │   │   │   ├── 20160211UDAV.txt │   │   │   │   ├── 20160211zika-research.txt │   │   │   │   ├── 20160212arlington.txt │   │   │   │   ├── 20160212astroh.txt │   │   │   │   ├── 20160212bleeding.txt │   │   │   │   ├── 20160212chemicallandscape.txt │   │   │   │   ├── 20160212dreeem.txt │   │   │   │   ├── 20160212duck-hunt.txt │   │   │   │   ├── 20160212howitzer.txt │   │   │   │   ├── 20160212imperfectxray.txt │   │   │   │   ├── 20160212impossiblesalt.txt │   │   │   │   ├── 20160212keplerexoplanets.txt │   │   │   │   ├── 20160212loneliness.txt │   │   │   │   ├── 20160212neanderthal-genes.txt │   │   │   │   ├── 20160212paper.txt │   │   │   │   ├── 20160212plutomapgeology.txt │   │   │   │   ├── 20160212scientists-struggles.txt │   │   │   │   ├── 20160212smartbeacons.txt │   │   │   │   ├── 20160212tx.txt │   │   │   │   ├── 20160212universal.txt │   │   │   │   ├── 20160212who-let-the-dogs-out.txt │   │   │   │   ├── 20160213humanvaluestorobots.txt │   │   │   │   ├── 20160213newice.txt │   │   │   │   ├── 20160213seismicsmartphones.txt │   │   │   │   ├── 20160213zikavirusmicrocephaly.txt │   │   │   │   ├── 20160215darpa-drone.txt │   │   │   │   ├── 20160215dinamometr.txt │   │   │   │   ├── 20160215fermi-cetus.txt │   │   │   │   ├── 20160215fightmice.txt │   │   │   │   ├── 20160215friedpotato.txt │   │   │   │   ├── 20160215Gastornis.txt │   │   │   │   ├── 20160215genderbiasinopensource.txt │   │   │   │   ├── 20160215giant-rubik-cube.txt │   │   │   │   ├── 20160215good-old-soft.txt │   │   │   │   ├── 20160215magnetotail-flow.txt │   │   │   │   ├── 20160215one-year-of-sun.txt │   │   │   │   ├── 20160215planets.txt │   │   │   │   ├── 20160215poweregg.txt │   │   │   │   ├── 20160215riskychimp.txt │   │   │   │   ├── 20160215virtual-depression.txt │   │   │   │   ├── 20160215workingmemorysystems.txt │   │   │   │   ├── 20160215zika-projection.txt │   │   │   │   ├── 20160215zika-ru.txt │   │   │   │   ├── 201602163d-tissue-printing.txt │   │   │   │   ├── 201602165ddd.txt │   │   │   │   ├── 20160216a-few-dollars-less.txt │   │   │   │   ├── 20160216daytime-test-perfomance.txt │   │   │   │   ├── 20160216drone-crash.txt │   │   │   │   ├── 20160216faeces-bank.txt │   │   │   │   ├── 20160216feed-the-worm.txt │   │   │   │   ├── 20160216hobbits.txt │   │   │   │   ├── 20160216hybrid-octreotide.txt │   │   │   │   ├── 20160216invisiblemesh.txt │   │   │   │   ├── 20160216strip-loin.txt │   │   │   │   ├── 20160216tech-and-magic.txt │   │   │   │   ├── 20160216unknown-poems-tolkien.txt │   │   │   │   ├── 20160217acte.txt │   │   │   │   ├── 20160217astrohlaunch.txt │   │   │   │   ├── 20160217blackout.txt │   │   │   │   ├── 20160217c2sa.txt │   │   │   │   ├── 20160217cancer-breakthrough.txt │   │   │   │   ├── 20160217chemicalregulators.txt │   │   │   │   ├── 20160217china-gravitational-wave-projects.txt │   │   │   │   ├── 20160217flexible.txt │   │   │   │   ├── 20160217freedom-251.txt │   │   │   │   ├── 20160217lidarrome.txt │   │   │   │   ├── 20160217magnetocambrian.txt │   │   │   │   ├── 20160217newhotjupiters.txt │   │   │   │   ├── 20160217no-way.txt │   │   │   │   ├── 20160217organic-milk-n-meat.txt │   │   │   │   ├── 20160217prosthetic-fingers.txt │   │   │   │   ├── 20160217red-map.txt │   │   │   │   ├── 20160217sentinel-the-third.txt │   │   │   │   ├── 20160217skorost.txt │   │   │   │   ├── 20160217stem-cells.txt │   │   │   │   ├── 20160217superearthatmosphere.txt │   │   │   │   ├── 20160217windows.txt │   │   │   │   ├── 20160218abrams.txt │   │   │   │   ├── 20160218asteroid-destruction.txt │   │   │   │   ├── 20160218biomimetic-anthropomorphic.txt │   │   │   │   ├── 20160218bipedalizard.txt │   │   │   │   ├── 20160218cooper-age-settlement.txt │   │   │   │   ├── 20160218dronebox.txt │   │   │   │   ├── 20160218extrasensory-perception.txt │   │   │   │   ├── 20160218gluons-protons-angular-moment.txt │   │   │   │   ├── 20160218it-is-alive.txt │   │   │   │   ├── 20160218neurosurgery-virtual.txt │   │   │   │   ├── 20160218olderoxygen.txt │   │   │   │   ├── 20160218oppernanophotonics.txt │   │   │   │   ├── 20160218predatortrilobits.txt │   │   │   │   ├── 20160218robotdrummer.txt │   │   │   │   ├── 20160218robot.txt │   │   │   │   ├── 20160218runaway.txt │   │   │   │   ├── 20160218sb1.txt │   │   │   │   ├── 20160218shortsightedness.txt │   │   │   │   ├── 20160218support.txt │   │   │   │   ├── 20160218translate-everything.txt │   │   │   │   ├── 20160219A-Possible-Ancient-Ocean.txt │   │   │   │   ├── 20160219car.txt │   │   │   │   ├── 20160219cat-flir.txt │   │   │   │   ├── 20160219cubepercolation.txt │   │   │   │   ├── 20160219entaglement-naked-eye.txt │   │   │   │   ├── 20160219exoplanetrotation.txt │   │   │   │   ├── 20160219green-wave.txt │   │   │   │   ├── 20160219gripen.txt │   │   │   │   ├── 20160219importozames.txt │   │   │   │   ├── 20160219ironrobot.txt │   │   │   │   ├── 20160219lrsb.txt │   │   │   │   ├── 20160219martian-papas.txt │   │   │   │   ├── 20160219meteorites-of-antarctica.txt │   │   │   │   ├── 20160219Modular-Imaging-System.txt │   │   │   │   ├── 20160219novelmilgram.txt │   │   │   │   ├── 20160219radars.txt │   │   │   │   ├── 20160219the-latest-wheel-copper-age.txt │   │   │   │   ├── 20160219uhv.txt │   │   │   │   ├── 20160220cardio-rna.txt │   │   │   │   ├── 20160220cinemacinemacinema.txt │   │   │   │   ├── 20160220disconnect.txt │   │   │   │   ├── 20160220dnarotor.txt │   │   │   │   ├── 20160220kc46a.txt │   │   │   │   ├── 20160220leidenfrostdroplet.txt │   │   │   │   ├── 20160220maps-too-difficult.txt │   │   │   │   ├── 20160220no-no-gmo.txt │   │   │   │   ├── 20160220nuclear.txt │   │   │   │   ├── 20160220oldest-dress-known.txt │   │   │   │   ├── 20160220penis-transplant.txt │   │   │   │   ├── 20160220semi.txt │   │   │   │   ├── 20160220stm-bergman.txt │   │   │   │   ├── 20160220triton.txt │   │   │   │   ├── 20160220unityvirgingalactic.txt │   │   │   │   ├── 20160222density.txt │   │   │   │   ├── 20160222justbubbles.txt │   │   │   │   ├── 20160222lg-modular.txt │   │   │   │   ├── 20160222mobile-control.txt │   │   │   │   ├── 20160222moverio-bt-300.txt │   │   │   │   ├── 20160222osirisrex.txt │   │   │   │   ├── 20160222samsung-phones.txt │   │   │   │   ├── 20160222vive-preorder.txt │   │   │   │   ├── 20160224all-new-atlas.txt │   │   │   │   ├── 20160224deep-dream-excibition.txt │   │   │   │   ├── 20160224droid-5p34k.txt │   │   │   │   ├── 20160224e-stethoscope.txt │   │   │   │   ├── 20160224flight.txt │   │   │   │   ├── 20160224hydrocarbonfuel.txt │   │   │   │   ├── 20160224LIGO-twin-black-holes.txt │   │   │   │   ├── 20160224LISA-free-fall.txt │   │   │   │   ├── 20160224malnutrition.txt │   │   │   │   ├── 20160224milky-way-starforming.txt │   │   │   │   ├── 20160224more-likes.txt │   │   │   │   ├── 20160224nanoscissors.txt │   │   │   │   ├── 20160224nerves.txt │   │   │   │   ├── 20160224paint.txt │   │   │   │   ├── 20160224pipistrel.txt │   │   │   │   ├── 20160224planetx.txt │   │   │   │   ├── 20160224quickdrink.txt │   │   │   │   ├── 20160224sensor1.txt │   │   │   │   ├── 20160224sputnikmayak.txt │   │   │   │   ├── 20160224titanium-beak.txt │   │   │   │   ├── 20160224trojan-origami.txt │   │   │   │   ├── 20160224wifi.txt │   │   │   │   ├── 20160225applause-machine.txt │   │   │   │   ├── 20160225black-holes-throwing-matter-into-voids.txt │   │   │   │   ├── 20160225driver-distraction.txt │   │   │   │   ├── 20160225ebola-complications.txt │   │   │   │   ├── 20160225forestsimulation.txt │   │   │   │   ├── 20160225google-planet.txt │   │   │   │   ├── 20160225hybrid.txt │   │   │   │   ├── 20160225King-Davids-robes.txt │   │   │   │   ├── 20160225long-flight.txt │   │   │   │   ├── 20160225m1A.txt │   │   │   │   ├── 20160225mass.txt │   │   │   │   ├── 20160225power-of-plants-and-animals.txt │   │   │   │   ├── 20160225predatorbacteria.txt │   │   │   │   ├── 20160225racemode.txt │   │   │   │   ├── 20160225radioburst-source.txt │   │   │   │   ├── 20160225shield.txt │   │   │   │   ├── 20160225squishy-embryo.txt │   │   │   │   ├── 20160225supernovalight.txt │   │   │   │   ├── 20160225touchneurons.txt │   │   │   │   ├── 20160225uavs.txt │   │   │   │   ├── 20160226blur.txt │   │   │   │   ├── 20160226bombers.txt │   │   │   │   ├── 20160226Canaan-figurine.txt │   │   │   │   ├── 20160226capable-floppy.txt │   │   │   │   ├── 20160226chiralsnail.txt │   │   │   │   ├── 20160226cowtech.txt │   │   │   │   ├── 20160226drones.txt │   │   │   │   ├── 20160226fourth-try.txt │   │   │   │   ├── 20160226happiness-paradox.txt │   │   │   │   ├── 20160226linespace.txt │   │   │   │   ├── 20160226musicalgenes.txt │   │   │   │   ├── 20160226new-launcher.txt │   │   │   │   ├── 20160226obese-memory.txt │   │   │   │   ├── 20160226pentacarboalkoxycyclopentadiene.txt │   │   │   │   ├── 20160226radiohalo.txt │   │   │   │   ├── 20160226rheinmetall.txt │   │   │   │   ├── 20160226swimmingmicrorobot.txt │   │   │   │   ├── 20160226syers2.txt │   │   │   │   ├── 20160226tetraquark.txt │   │   │   │   ├── 20160226trials.txt │   │   │   │   ├── 20160227biomolecularcomputer.txt │   │   │   │   ├── 20160227rogue-waves.txt │   │   │   │   ├── 20160227thirdpartypunishment.txt │   │   │   │   ├── 20160228mesolitic-pendant.txt │   │   │   │   ├── 20160229arsenal.txt │   │   │   │   ├── 20160229battles-map.txt │   │   │   │   ├── 20160229boeing3dprinting.txt │   │   │   │   ├── 20160229Canterbury-children-diet.txt │   │   │   │   ├── 20160229deep-vr.txt │   │   │   │   ├── 20160229down-brain.txt │   │   │   │   ├── 20160229electrotraining.txt │   │   │   │   ├── 20160229gan.txt │   │   │   │   ├── 20160229hubble-blue-bubble.txt │   │   │   │   ├── 20160229ibex-observations-pin-down-interstellar-magnetic-f.txt │   │   │   │   ├── 20160229lrsb.txt │   │   │   │   ├── 20160229mq9lr.txt │   │   │   │   ├── 20160229onchip.txt │   │   │   │   ├── 20160229piramidane.txt │   │   │   │   ├── 20160229promiscuitophobia.txt │   │   │   │   ├── 20160229smartLAMP.txt │   │   │   │   ├── 20160229sony-glove.txt │   │   │   │   ├── 20160229subradiancebillionRb.txt │   │   │   │   ├── 20160229vive-start-preorder.txt │   │   │   │   ├── 20160229wait.txt │   │   │   │   ├── 20160229whales-dialects.txt │   │   │   │   ├── 20160229wireless-pi.txt │   │   │   │   ├── 20160301antianti.txt │   │   │   │   ├── 20160301applefbicourt.txt │   │   │   │   ├── 20160301chemical-fire.txt │   │   │   │   ├── 20160301cvah.txt │   │   │   │   ├── 20160301depp-effect.txt │   │   │   │   ├── 20160301first-time.txt │   │   │   │   ├── 20160301flip-phone.txt │   │   │   │   ├── 20160301forecastviolence.txt │   │   │   │   ├── 20160301graphenelighttrapping.txt │   │   │   │   ├── 20160301hud.txt │   │   │   │   ├── 20160301ivf-chip.txt │   │   │   │   ├── 20160301lasers.txt │   │   │   │   ├── 20160301misterious-western-pans.txt │   │   │   │   ├── 20160301mummified-captain.txt │   │   │   │   ├── 20160301mummy-cancer.txt │   │   │   │   ├── 20160301mushroomwinds.txt │   │   │   │   ├── 20160301openness.txt │   │   │   │   ├── 20160301paleobiology-fossilized-nerves.txt │   │   │   │   ├── 20160301quietersupersonicjet.txt │   │   │   │   ├── 20160301superhydrophobicity.txt │   │   │   │   ├── 20160301think-fast-die-last.txt │   │   │   │   ├── 20160301trust-robots.txt │   │   │   │   ├── 20160302adolesdiction.txt │   │   │   │   ├── 20160302archive.txt │   │   │   │   ├── 20160302brain-prize.txt │   │   │   │   ├── 20160302Chlorpyrifos-dumbs-bees.txt │   │   │   │   ├── 20160302disordered-pairs.txt │   │   │   │   ├── 20160302end-of-the-console.txt │   │   │   │   ├── 20160302gray-hair.txt │   │   │   │   ├── 20160302ius.txt │   │   │   │   ├── 20160302kelly-kornienko-go-home.txt │   │   │   │   ├── 20160302munchies.txt │   │   │   │   ├── 20160302oldestfungi.txt │   │   │   │   ├── 20160302planets-in-habitable-zones.txt │   │   │   │   ├── 20160302quadcoptersphantom.txt │   │   │   │   ├── 20160302RCW-106.txt │   │   │   │   ├── 20160302repairs.txt │   │   │   │   ├── 20160302sentinel-3A.txt │   │   │   │   ├── 20160302sixth.txt │   │   │   │   ├── 20160302sling.txt │   │   │   │   ├── 20160302stop-argentine-ants.txt │   │   │   │   ├── 20160302stylish-mars-maps.txt │   │   │   │   ├── 20160302superconducting-seebek.txt │   │   │   │   ├── 20160302swarm-bacteria.txt │   │   │   │   ├── 20160302twitter-word-vectors.txt │   │   │   │   ├── 20160302Wadi-Sura-mistery.txt │   │   │   │   ├── 20160302weapons.txt │   │   │   │   ├── 20160302x2.txt │   │   │   │   ├── 20160302year-in-space-back.txt │   │   │   │   ├── 20160303adsb.txt │   │   │   │   ├── 20160303bullet-time.txt │   │   │   │   ├── 20160303captain-mummy.txt │   │   │   │   ├── 20160303electrostatic-catalisys.txt │   │   │   │   ├── 20160303finalflight.txt │   │   │   │   ├── 20160303google-zika.txt │   │   │   │   ├── 20160303long-way.txt │   │   │   │   ├── 20160303Lud-settlement.txt │   │   │   │   ├── 20160303meta-dev-kit.txt │   │   │   │   ├── 20160303microwave-heat-can-do.txt │   │   │   │   ├── 20160303MOOV.txt │   │   │   │   ├── 20160303new-born-star.txt │   │   │   │   ├── 20160303pay-hands-free.txt │   │   │   │   ├── 20160303repeatingradioburst.txt │   │   │   │   ├── 20160303robots.txt │   │   │   │   ├── 20160303sneezometer.txt │   │   │   │   ├── 20160303sound-steal.txt │   │   │   │   ├── 20160303sphericaltires.txt │   │   │   │   ├── 20160303super-kek.txt │   │   │   │   ├── 20160303Tharsis-Tholus.txt │   │   │   │   ├── 20160303tubetits.txt │   │   │   │   ├── 20160303visual.txt │   │   │   │   ├── 20160303waterlilybeetle.txt │   │   │   │   ├── 20160304aurora.txt │   │   │   │   ├── 20160304bmichair.txt │   │   │   │   ├── 20160304CdTe-solar.txt │   │   │   │   ├── 20160304chameleo.txt │   │   │   │   ├── 20160304creator-retraction.txt │   │   │   │   ├── 20160304electroluminescentskin.txt │   │   │   │   ├── 20160304ems.txt │   │   │   │   ├── 20160304evolutioninnateimmunity.txt │   │   │   │   ├── 20160304fail-of-psychology-studies-fail-reproducibility.txt │   │   │   │   ├── 20160304handofcreation.txt │   │   │   │   ├── 20160304huble-gn-z-11.txt │   │   │   │   ├── 20160304liquid-metal.txt │   │   │   │   ├── 20160304mwxbuldge.txt │   │   │   │   ├── 20160304mycenaean-cemetery.txt │   │   │   │   ├── 20160304obesity-cancer.txt │   │   │   │   ├── 20160304osher-map-library.txt │   │   │   │   ├── 20160304psycho.txt │   │   │   │   ├── 20160304salmon-heart.txt │   │   │   │   ├── 20160304scalable-Shor-algorithm.txt │   │   │   │   ├── 20160304skywall.txt │   │   │   │   ├── 20160304sorry-banksy.txt │   │   │   │   ├── 20160304superfecundation.txt │   │   │   │   ├── 20160304trail-sled.txt │   │   │   │   ├── 20160305falcon-fail.txt │   │   │   │   ├── 20160305finally.txt │   │   │   │   ├── 20160305more-or-less.txt │   │   │   │   ├── 20160305newoctopus.txt │   │   │   │   ├── 20160305sandpaper.txt │   │   │   │   ├── 20160305zika-hnpc.txt │   │   │   │   ├── 20160307chameleon.txt │   │   │   │   ├── 20160307e-mail.txt │   │   │   │   ├── 20160309ahrlac.txt │   │   │   │   ├── 20160309bigtits.txt │   │   │   │   ├── 20160309bioglue-ph-clock.txt │   │   │   │   ├── 20160309bionicfinger.txt │   │   │   │   ├── 20160309blueorigin.txt │   │   │   │   ├── 20160309drone.txt │   │   │   │   ├── 20160309emotional-drones.txt │   │   │   │   ├── 20160309expansion-of-the-Universe-.txt │   │   │   │   ├── 20160309f35.txt │   │   │   │   ├── 20160309hydra-mouth.txt │   │   │   │   ├── 20160309insight-departure-delayed.txt │   │   │   │   ├── 20160309iron.txt │   │   │   │   ├── 20160309know-they-dont-know.txt │   │   │   │   ├── 20160309martian-and-moon-simulant.txt │   │   │   │   ├── 20160309mini.txt │   │   │   │   ├── 20160309North-Carolina-steamer.txt │   │   │   │   ├── 20160309no-way.txt │   │   │   │   ├── 20160309old-star-disc.txt │   │   │   │   ├── 20160309order-disorder.txt │   │   │   │   ├── 20160309ornamental-lime-trees.txt │   │   │   │   ├── 20160309Sonic-hedgehog-mistake.txt │   │   │   │   ├── 20160309synserb.txt │   │   │   │   ├── 20160309virtualbrushing.txt │   │   │   │   ├── 20160309v-sign-machine-learning.txt │   │   │   │   ├── 20160310140-millions-Pinus-mundayi.txt │   │   │   │   ├── 201603103dnes-emulator-nintendo-games-3d-super-mario.txt │   │   │   │   ├── 20160310atomicvibration.txt │   │   │   │   ├── 20160310braces.txt │   │   │   │   ├── 20160310churi-solar-system-old.txt │   │   │   │   ├── 20160310corruption-society-lies.txt │   │   │   │   ├── 20160310Deep-Learning-for-Robots.txt │   │   │   │   ├── 20160310fasterloading.txt │   │   │   │   ├── 20160310fingerprints.txt │   │   │   │   ├── 20160310hammerhead.txt │   │   │   │   ├── 20160310Hello-Brian.txt │   │   │   │   ├── 20160310homochew.txt │   │   │   │   ├── 20160310hydrogen-bonding-boron.txt │   │   │   │   ├── 20160310ka52.txt │   │   │   │   ├── 20160310lens-regrow.txt │   │   │   │   ├── 20160310lingvo.txt │   │   │   │   ├── 20160310raptor.txt │   │   │   │   ├── 20160310safety.txt │   │   │   │   ├── 20160310second-trial.txt │   │   │   │   ├── 20160310three-more-left.txt │   │   │   │   ├── 20160310uterustransplant.txt │   │   │   │   ├── 20160310video.txt │   │   │   │   ├── 20160310XFEL-undulator.txt │   │   │   │   ├── 20160311adultneurogen.txt │   │   │   │   ├── 20160311alloys.txt │   │   │   │   ├── 20160311bad-tesla.txt │   │   │   │   ├── 20160311domain-map.txt │   │   │   │   ├── 20160311eating-plastic-is-fantastic.txt │   │   │   │   ├── 20160311elephant.txt │   │   │   │   ├── 20160311f135.txt │   │   │   │   ├── 20160311fire-it-up.txt │   │   │   │   ├── 20160311hyperloop.txt │   │   │   │   ├── 20160311LHC-the-magnificent.txt │   │   │   │   ├── 20160311missiles.txt │   │   │   │   ├── 20160311New-Olduvai-research.txt │   │   │   │   ├── 20160311nucleardetonation.txt │   │   │   │   ├── 20160311pi-zza.txt │   │   │   │   ├── 20160311radio.txt │   │   │   │   ├── 20160311Semantic-Style-Transfer.txt │   │   │   │   ├── 20160311snapology.txt │   │   │   │   ├── 20160311translatorservice.txt │   │   │   │   ├── 20160312chirpa.txt │   │   │   │   ├── 20160312crank.txt │   │   │   │   ├── 20160312deciding-match.txt │   │   │   │   ├── 20160312engines.txt │   │   │   │   ├── 20160312last-resort.txt │   │   │   │   ├── 20160312speed.txt │   │   │   │   ├── 20160312spray.txt │   │   │   │   ├── 20160312stingray.txt │   │   │   │   ├── 20160312submarines.txt │   │   │   │   ├── 20160312uavs.txt │   │   │   │   ├── 20160312weaponize.txt │   │   │   │   ├── 20160312wildlife.txt │   │   │   │   ├── 20160313finish-him.txt │   │   │   │   ├── 20160313one-more-time.txt │   │   │   │   ├── 20160314car-dragging-robots.txt │   │   │   │   ├── 20160314Ce-homo-in-fur.txt │   │   │   │   ├── 20160314dinolegs.txt │   │   │   │   ├── 20160314dna-chips.txt │   │   │   │   ├── 20160314drone-raing-dubai.txt │   │   │   │   ├── 20160314exomars-launch.txt │   │   │   │   ├── 20160314foodporn.txt │   │   │   │   ├── 20160314forensic-lipstick.txt │   │   │   │   ├── 20160314Healing-cannabis.txt │   │   │   │   ├── 20160314iron-eating.txt │   │   │   │   ├── 20160314mathprimes.txt │   │   │   │   ├── 20160314opf-ppf.txt │   │   │   │   ├── 20160314Teyujagua-paradoxa.txt │   │   │   │   ├── 20160314thinnest-lens.txt │   │   │   │   ├── 20160314yandex-to-the-mars.txt │   │   │   │   ├── 20160315abel-for-last-Fermat.txt │   │   │   │   ├── 20160315aureus.txt │   │   │   │   ├── 20160315brain-task.txt │   │   │   │   ├── 20160315depressun.txt │   │   │   │   ├── 20160315diamonds-from-the-sky.txt │   │   │   │   ├── 20160315enceladus-orion.txt │   │   │   │   ├── 20160315eraole.txt │   │   │   │   ├── 20160315Extreme-spider.txt │   │   │   │   ├── 20160315f35.txt │   │   │   │   ├── 20160315fatepigene.txt │   │   │   │   ├── 20160315flaw-victory.txt │   │   │   │   ├── 20160315graphen-filter.txt │   │   │   │   ├── 20160315harder-better.txt │   │   │   │   ├── 20160315i-like-to-move-it.txt │   │   │   │   ├── 20160315just-quit.txt │   │   │   │   ├── 20160315kj500.txt │   │   │   │   ├── 20160315laser.txt │   │   │   │   ├── 20160315Pigeon-monitor.txt │   │   │   │   ├── 20160315smart-glass.txt │   │   │   │   ├── 20160315spiders-vegeterians.txt │   │   │   │   ├── 20160315tattoo-SIgA.txt │   │   │   │   ├── 20160315Vasco-da-Gama.txt │   │   │   │   ├── 201603162D-distance-gesture-control.txt │   │   │   │   ├── 201603163d-antenna.txt │   │   │   │   ├── 20160316anti-EBV.txt │   │   │   │   ├── 20160316ceres-spots.txt │   │   │   │   ├── 20160316deice.txt │   │   │   │   ├── 20160316drones-not-dangerous.txt │   │   │   │   ├── 20160316echo.txt │   │   │   │   ├── 20160316hotaru.txt │   │   │   │   ├── 20160316hybrid-patch.txt │   │   │   │   ├── 20160316laserweapon.txt │   │   │   │   ├── 20160316Latin-English-Bible.txt │   │   │   │   ├── 20160316lightbiobot.txt │   │   │   │   ├── 20160316master-star.txt │   │   │   │   ├── 20160316mastication-sound.txt │   │   │   │   ├── 20160316mi28ne.txt │   │   │   │   ├── 20160316moving-microrobots.txt │   │   │   │   ├── 20160316nofire.txt │   │   │   │   ├── 20160316october.txt │   │   │   │   ├── 20160316quantum-thermometer.txt │   │   │   │   ├── 20160316rafale.txt │   │   │   │   ├── 20160316sima-de-los-huesos.txt │   │   │   │   ├── 20160316v404.txt │   │   │   │   ├── 20160316vr.txt │   │   │   │   ├── 20160316wingtra.txt │   │   │   │   ├── 20160317alzmemories.txt │   │   │   │   ├── 20160317Ancient-puppy.txt │   │   │   │   ├── 20160317autolaces.txt │   │   │   │   ├── 20160317cappa-ceti-tought.txt │   │   │   │   ├── 20160317cyrkon.txt │   │   │   │   ├── 20160317decoherence.txt │   │   │   │   ├── 20160317drunk-twitter.txt │   │   │   │   ├── 20160317firefly.txt │   │   │   │   ├── 20160317graphen-origami.txt │   │   │   │   ├── 20160317haploid-stem-cells.txt │   │   │   │   ├── 20160317HL-Tau.txt │   │   │   │   ├── 20160317japan-drones.txt │   │   │   │   ├── 20160317mems.txt │   │   │   │   ├── 20160317mig35.txt │   │   │   │   ├── 20160317moving.txt │   │   │   │   ├── 20160317patriot.txt │   │   │   │   ├── 20160317railgun.txt │   │   │   │   ├── 20160317rock-climbing-drone.txt │   │   │   │   ├── 20160317Sagittarius-A.txt │   │   │   │   ├── 20160317sr72.txt │   │   │   │   ├── 20160317Tully-monster-mistery.txt │   │   │   │   ├── 20160317weapons.txt │   │   │   │   ├── 20160317Who-is-there.txt │   │   │   │   ├── 20160318aligners.txt │   │   │   │   ├── 20160318alzchip.txt │   │   │   │   ├── 20160318cleaning.txt │   │   │   │   ├── 20160318exomars-captured.txt │   │   │   │   ├── 20160318fat-and-short-less-opportunities.txt │   │   │   │   ├── 20160318flying-ball.txt │   │   │   │   ├── 20160318graviton-or-higgs-boson.txt │   │   │   │   ├── 20160318i400.txt │   │   │   │   ├── 20160318kalina.txt │   │   │   │   ├── 20160318lateactive.txt │   │   │   │   ├── 20160318monster-stars.txt │   │   │   │   ├── 20160318picture-of-last-ice-age.txt │   │   │   │   ├── 20160318pizza.txt │   │   │   │   ├── 20160318pluto-atmosphere-new.txt │   │   │   │   ├── 20160318seek-locate.txt │   │   │   │   ├── 20160318visualize.txt │   │   │   │   ├── 2016031947-48.txt │   │   │   │   ├── 20160319Cruel-cololbuses.txt │   │   │   │   ├── 20160319edge-chrome.txt │   │   │   │   ├── 20160319frbutmost.txt │   │   │   │   ├── 20160319magikarp.txt │   │   │   │   ├── 20160319new-crew.txt │   │   │   │   ├── 20160319quad-submarine.txt │   │   │   │   ├── 20160319sulon.txt │   │   │   │   ├── 20160321all-new-again.txt │   │   │   │   ├── 20160321Bear-bone-discovery.txt │   │   │   │   ├── 20160321cleaning.txt │   │   │   │   ├── 20160321cleft-palate.txt │   │   │   │   ├── 20160321Denmarks-oldest-crucifix.txt │   │   │   │   ├── 20160321durus.txt │   │   │   │   ├── 20160321eccentric-planet.txt │   │   │   │   ├── 20160321face2face.txt │   │   │   │   ├── 20160321fastest-vision.txt │   │   │   │   ├── 20160321fb-occufamily.txt │   │   │   │   ├── 20160321H3SMeissnerremeasure.txt │   │   │   │   ├── 20160321hotwinter.txt │   │   │   │   ├── 20160321hunters-gatherers.txt │   │   │   │   ├── 20160321ipad-pro-mini.txt │   │   │   │   ├── 20160321i-see-a-red-door.txt │   │   │   │   ├── 20160321liam.txt │   │   │   │   ├── 20160321neurons-for-transplantation.txt │   │   │   │   ├── 20160321periscope.txt │   │   │   │   ├── 20160321shockwaves.txt │   │   │   │   ├── 20160321toonz.txt │   │   │   │   ├── 20160322ceres.txt │   │   │   │   ├── 20160322endocannabinoid-anxiety.txt │   │   │   │   ├── 20160322fish-bonding.txt │   │   │   │   ├── 20160322graphene-diabetes.txt │   │   │   │   ├── 20160322gravity-view-mars.txt │   │   │   │   ├── 20160322harrier.txt │   │   │   │   ├── 20160322herculanum.txt │   │   │   │   ├── 20160322hivedited.txt │   │   │   │   ├── 20160322levitation-helium.txt │   │   │   │   ├── 20160322mirror-self-awareness.txt │   │   │   │   ├── 20160322nano.txt │   │   │   │   ├── 20160322optogenetherapy.txt │   │   │   │   ├── 20160322relay.txt │   │   │   │   ├── 20160322restore.txt │   │   │   │   ├── 20160322retractable.txt │   │   │   │   ├── 20160322searching.txt │   │   │   │   ├── 20160322seat.txt │   │   │   │   ├── 20160322silicon-enzime.txt │   │   │   │   ├── 20160322Skinbow-danio-rerio.txt │   │   │   │   ├── 20160322supernova.txt │   │   │   │   ├── 20160322timecut.txt │   │   │   │   ├── 20160322wave.txt │   │   │   │   ├── 20160322weather.txt │   │   │   │   ├── 20160323a321.txt │   │   │   │   ├── 20160323at-least-you-can-try.txt │   │   │   │   ├── 20160323biofuels.txt │   │   │   │   ├── 20160323bolt.txt │   │   │   │   ├── 20160323comp-alzheimer.txt │   │   │   │   ├── 20160323ctws.txt │   │   │   │   ├── 20160323exomars.txt │   │   │   │   ├── 20160323frog-foam.txt │   │   │   │   ├── 20160323happy-tree-friends.txt │   │   │   │   ├── 20160323japanese-spinning-top.txt │   │   │   │   ├── 20160323pluto-rivers-lakes.txt │   │   │   │   ├── 20160323ponzi.txt │   │   │   │   ├── 20160323primordial-black-holes-.txt │   │   │   │   ├── 20160323railgun.txt │   │   │   │   ├── 20160323risk-preferences.txt │   │   │   │   ├── 20160323schizofun.txt │   │   │   │   ├── 20160323sperm-activation.txt │   │   │   │   ├── 20160323unhappy-salary.txt │   │   │   │   ├── 20160323wrestling.txt │   │   │   │   ├── 20160324benzene-with-a-twist.txt │   │   │   │   ├── 20160324camo.txt │   │   │   │   ├── 20160324champ.txt │   │   │   │   ├── 20160324Chinggiskhaania-bifurcata-rulez.txt │   │   │   │   ├── 20160324engine.txt │   │   │   │   ├── 20160324eye.txt │   │   │   │   ├── 20160324finally-computer.txt │   │   │   │   ├── 20160324google-demolition.txt │   │   │   │   ├── 20160324jupiter.txt │   │   │   │   ├── 20160324lactodefense.txt │   │   │   │   ├── 20160324lost-medieval-castle.txt │   │   │   │   ├── 20160324maps-quietest-spots.txt │   │   │   │   ├── 20160324mean-Game-theory.txt │   │   │   │   ├── 20160324moderate-drinkers.txt │   │   │   │   ├── 20160324moon-axis.txt │   │   │   │   ├── 20160324museum.txt │   │   │   │   ├── 20160324pdgf-maggots.txt │   │   │   │   ├── 20160324potteryJomon.txt │   │   │   │   ├── 20160324radioneuron.txt │   │   │   │   ├── 20160324syn3dot0.txt │   │   │   │   ├── 20160324tay.txt │   │   │   │   ├── 20160324y20.txt │   │   │   │   ├── 20160325baidu-crowds-map.txt │   │   │   │   ├── 20160325conestoga.txt │   │   │   │   ├── 20160325cryo-structure.txt │   │   │   │   ├── 20160325Cryptotora-walking-fish.txt │   │   │   │   ├── 20160325cychlidselfsex.txt │   │   │   │   ├── 20160325Dracos-invasion.txt │   │   │   │   ├── 20160325El-Nio.txt │   │   │   │   ├── 20160325emerging-rexton.txt │   │   │   │   ├── 20160325f35.txt │   │   │   │   ├── 20160325giraffe.txt │   │   │   │   ├── 20160325hypoxia.txt │   │   │   │   ├── 20160325methane-catalysis.txt │   │   │   │   ├── 20160325novel-machine.txt │   │   │   │   ├── 20160325nuclear-membrane-burst.txt │   │   │   │   ├── 20160325saturn-moons.txt │   │   │   │   ├── 20160325sleep-protein.txt │   │   │   │   ├── 20160325sox21.txt │   │   │   │   ├── 20160325titan-peak.txt │   │   │   │   ├── 20160325tobacco-tbc.txt │   │   │   │   ├── 20160325wing.txt │   │   │   │   ├── 20160326cygnus.txt │   │   │   │   ├── 20160326dodo-paleo.txt │   │   │   │   ├── 20160326horsehead.txt │   │   │   │   ├── 20160326whisky.txt │   │   │   │   ├── 20160328astro-h-communication-failure.txt │   │   │   │   ├── 20160328clouds.txt │   │   │   │   ├── 20160328drone-artist.txt │   │   │   │   ├── 20160328drones.txt │   │   │   │   ├── 20160328EggBot.txt │   │   │   │   ├── 20160328engines.txt │   │   │   │   ├── 20160328enigma.txt │   │   │   │   ├── 20160328facial-expression.txt │   │   │   │   ├── 20160328fission.txt │   │   │   │   ├── 20160328fredkin-gate.txt │   │   │   │   ├── 20160328haski.txt │   │   │   │   ├── 20160328HD-80606.txt │   │   │   │   ├── 20160328holoportation.txt │   │   │   │   ├── 20160328injured.txt │   │   │   │   ├── 20160328leap-reading-machine.txt │   │   │   │   ├── 20160328moose.txt │   │   │   │   ├── 20160328Newton-penned-manuscript.txt │   │   │   │   ├── 20160328psychogrammar.txt │   │   │   │   ├── 20160328pterosaur.txt │   │   │   │   ├── 20160328RGS-chemistry.txt │   │   │   │   ├── 20160328robotaxi.txt │   │   │   │   ├── 20160328rotationalDopplernonlinear.txt │   │   │   │   ├── 20160328smart-windshield.txt │   │   │   │   ├── 20160328turnstile-molecule.txt │   │   │   │   ├── 20160329coronoid.txt │   │   │   │   ├── 20160329dominant-body-posture.txt │   │   │   │   ├── 20160329Electric-fork.txt │   │   │   │   ├── 20160329enceladus-tiger-stripes.txt │   │   │   │   ├── 20160329fbi-hacked-apple.txt │   │   │   │   ├── 20160329goodbadugly.txt │   │   │   │   ├── 20160329Internet-Connected-Printers-Spit-Out-Racist-Flyers.txt │   │   │   │   ├── 20160329jstars.txt │   │   │   │   ├── 20160329jupiter-bang.txt │   │   │   │   ├── 20160329kuvee.txt │   │   │   │   ├── 20160329lidarphone.txt │   │   │   │   ├── 20160329maluuba.txt │   │   │   │   ├── 20160329NASA-methane-sensor.txt │   │   │   │   ├── 20160329poedji.txt │   │   │   │   ├── 20160329printed-eggs.txt │   │   │   │   ├── 20160329traveler.txt │   │   │   │   ├── 20160329waste-to-energy.txt │   │   │   │   ├── 20160330bash.txt │   │   │   │   ├── 20160330bitcoin-consume-as-much-as-denmark.txt │   │   │   │   ├── 20160330britecloud.txt │   │   │   │   ├── 20160330BTWC.txt │   │   │   │   ├── 20160330bye-bye-drones.txt │   │   │   │   ├── 20160330center.txt │   │   │   │   ├── 20160330echo-engine.txt │   │   │   │   ├── 20160330hitomi-maybe-alive.txt │   │   │   │   ├── 20160330Idmonarachne.txt │   │   │   │   ├── 20160330laser-fridge.txt │   │   │   │   ├── 20160330lte.txt │   │   │   │   ├── 20160330picobug.txt │   │   │   │   ├── 20160330pilimachine.txt │   │   │   │   ├── 20160330tetraquark-fail.txt │   │   │   │   ├── 20160330uav.txt │   │   │   │   ├── 20160330vegan.txt │   │   │   │   ├── 20160330YFe2Ge2Fermi3Dsuperconductor.txt │   │   │   │   ├── 20160331blackjack.txt │   │   │   │   ├── 20160331face-melody.txt │   │   │   │   ├── 20160331Gebel-el-SilSila-necropolis.txt │   │   │   │   ├── 20160331get-a-jab.txt │   │   │   │   ├── 20160331GW150914.txt │   │   │   │   ├── 20160331laser.txt │   │   │   │   ├── 20160331lmh1.txt │   │   │   │   ├── 20160331methade.txt │   │   │   │   ├── 20160331methylome-sample.txt │   │   │   │   ├── 20160331mfti-exoplanets.txt │   │   │   │   ├── 20160331Micrixalidae-tadpoles.txt │   │   │   │   ├── 20160331mig31.txt │   │   │   │   ├── 20160331robot-beetle.txt │   │   │   │   ├── 20160331superearth-temperature.txt │   │   │   │   ├── 20160331uavs.txt │   │   │   │   ├── 20160331vr-abbey-road.txt │   │   │   │   ├── 20160331vr-painkiller.txt │   │   │   │   ├── 20160331weapons.txt │   │   │   │   ├── 20160331wi-fi-navigation.txt │   │   │   │   ├── 20160331writetoauthors.txt │   │   │   │   ├── 20160331zikaxl.txt │   │   │   │   ├── 20160401april-exomars.txt │   │   │   │   ├── 20160401ar-fools.txt │   │   │   │   ├── 20160401b2.txt │   │   │   │   ├── 20160401D-ox-white-dwarf.txt │   │   │   │   ├── 20160401fatty-year.txt │   │   │   │   ├── 20160401goodbadneuro.txt │   │   │   │   ├── 20160401hackthepentagon.txt │   │   │   │   ├── 20160401harfang.txt │   │   │   │   ├── 20160401hiv-transplant.txt │   │   │   │   ├── 20160401memasique.txt │   │   │   │   ├── 20160401model-3.txt │   │   │   │   ├── 20160401perceptional-illusion.txt │   │   │   │   ├── 20160401seek-locate-communicate.txt │   │   │   │   ├── 20160401smart-and-colorful.txt │   │   │   │   ├── 20160401successful-death.txt │   │   │   │   ├── 20160401thermite.txt │   │   │   │   ├── 20160401vispering-mode.txt │   │   │   │   ├── 20160401vortex.txt │   │   │   │   ├── 20160401vzv-glioma.txt │   │   │   │   ├── 20160401zika.txt │   │   │   │   ├── 201604023D-printed-bonsai.txt │   │   │   │   ├── 20160402ancient-dna-americans.txt │   │   │   │   ├── 20160402graph-game-of-thrones.txt │   │   │   │   ├── 20160402hw-hydra-rings.txt │   │   │   │   ├── 20160402triple-star-system.txt │   │   │   │   ├── 20160404actuv.txt │   │   │   │   ├── 20160404artificial-sweat.txt │   │   │   │   ├── 20160404atj.txt │   │   │   │   ├── 20160404blue-origin-part-three.txt │   │   │   │   ├── 20160404dutch-antidrone.txt │   │   │   │   ├── 20160404fatigue.txt │   │   │   │   ├── 20160404flowpharma.txt │   │   │   │   ├── 20160404gamma-tomato.txt │   │   │   │   ├── 20160404ibm-sCAPA.txt │   │   │   │   ├── 20160404interactome.txt │   │   │   │   ├── 20160404manned-unmanned.txt │   │   │   │   ├── 20160404martian-winds.txt │   │   │   │   ├── 20160404Metal-scourge-in-Rufford-abbey.txt │   │   │   │   ├── 20160404nepali-textile.txt │   │   │   │   ├── 20160404nosportmice.txt │   │   │   │   ├── 20160404oculus-shmoculus.txt │   │   │   │   ├── 20160404photo-silhouette.txt │   │   │   │   ├── 20160404robospider.txt │   │   │   │   ├── 20160404rwanda.txt │   │   │   │   ├── 20160404saw-drone.txt │   │   │   │   ├── 20160404uavs.txt │   │   │   │   ├── 201604053d-ovaries.txt │   │   │   │   ├── 20160405android-auto.txt │   │   │   │   ├── 20160405Aquilonifer-brood-care.txt │   │   │   │   ├── 20160405dna-rectifier.txt │   │   │   │   ├── 20160405dronephone.txt │   │   │   │   ├── 20160405embarassing-robots.txt │   │   │   │   ├── 20160405fence-drone.txt │   │   │   │   ├── 20160405fence.txt │   │   │   │   ├── 20160405flat-boron-2.txt │   │   │   │   ├── 20160405gremlins.txt │   │   │   │   ├── 20160405hannibalps.txt │   │   │   │   ├── 20160405la-t7.txt │   │   │   │   ├── 20160405lightning.txt │   │   │   │   ├── 20160405microcin.txt │   │   │   │   ├── 20160405microvesicles.txt │   │   │   │   ├── 20160405ocean-salinity.txt │   │   │   │   ├── 20160405oganesiy.txt │   │   │   │   ├── 20160405part-time-editor.txt │   │   │   │   ├── 20160405Ritual-human-sacrifice.txt │   │   │   │   ├── 20160405suicidality.txt │   │   │   │   ├── 20160405uavs.txt │   │   │   │   ├── 20160405whatsapp-encryption.txt │   │   │   │   ├── 20160405whoisondutytoday.txt │   │   │   │   ├── 201604063d-hydraulics.txt │   │   │   │   ├── 20160406airplane.txt │   │   │   │   ├── 20160406chroma-key.txt │   │   │   │   ├── 20160406coevolution.txt │   │   │   │   ├── 20160406creepy.txt │   │   │   │   ├── 20160406guided-cryo.txt │   │   │   │   ├── 20160406hawk.txt │   │   │   │   ├── 20160406mhtk.txt │   │   │   │   ├── 20160406moleskine.txt │   │   │   │   ├── 20160406nonpaternity.txt │   │   │   │   ├── 20160406plastic.txt │   │   │   │   ├── 20160406rembrandt.txt │   │   │   │   ├── 20160406roborace.txt │   │   │   │   ├── 20160406Second-temple-artefact.txt │   │   │   │   ├── 20160406time-domain-wave.txt │   │   │   │   ├── 20160406Venus-Moon.txt │   │   │   │   ├── 20160406xenoheart.txt │   │   │   │   ├── 20160406xenon-cluster.txt │   │   │   │   ├── 20160406yabot.txt │   │   │   │   ├── 20160407Another-first-folio.txt │   │   │   │   ├── 20160407better-than.txt │   │   │   │   ├── 20160407broom.txt │   │   │   │   ├── 20160407brown-dwarf.txt │   │   │   │   ├── 20160407china-roads.txt │   │   │   │   ├── 20160407europe.txt │   │   │   │   ├── 20160407fatty.txt │   │   │   │   ├── 20160407fire.txt │   │   │   │   ├── 20160407game-boy-zero.txt │   │   │   │   ├── 20160407hurkus.txt │   │   │   │   ├── 20160407internet.txt │   │   │   │   ├── 20160407maintenance-treatment.txt │   │   │   │   ├── 20160407mushroomsbatteries.txt │   │   │   │   ├── 20160407ngc-1600-black-hole.txt │   │   │   │   ├── 20160407nograviwavesmbhdetection.txt │   │   │   │   ├── 20160407orgasm-anatomy.txt │   │   │   │   ├── 20160407Peak-friendship-time.txt │   │   │   │   ├── 20160407sentinel-thermal.txt │   │   │   │   ├── 20160407sonobuoy.txt │   │   │   │   ├── 20160407spin-glass.txt │   │   │   │   ├── 20160407tamdead.txt │   │   │   │   ├── 20160407uavs.txt │   │   │   │   ├── 20160408apobecevo.txt │   │   │   │   ├── 20160408arizone.txt │   │   │   │   ├── 20160408ar.txt │   │   │   │   ├── 20160408dna-pictures.txt │   │   │   │   ├── 20160408extinct.txt │   │   │   │   ├── 20160408falcon-nine-is-online.txt │   │   │   │   ├── 20160408icecrystalHD100546.txt │   │   │   │   ├── 20160408lift-bit.txt │   │   │   │   ├── 20160408m777.txt │   │   │   │   ├── 20160408micra-in-da-heart.txt │   │   │   │   ├── 20160408mig31.txt │   │   │   │   ├── 20160408mml.txt │   │   │   │   ├── 20160408money-can-buy-happiness.txt │   │   │   │   ├── 20160408phorbol.txt │   │   │   │   ├── 20160408picky.txt │   │   │   │   ├── 20160408ribose-comet.txt │   │   │   │   ├── 20160408spacex-dragon-flight.txt │   │   │   │   ├── 20160408switch-off.txt │   │   │   │   ├── 20160408system.txt │   │   │   │   ├── 20160408volocopter.txt │   │   │   │   ├── 20160409autonomous-tractor.txt │   │   │   │   ├── 20160409bipedal.txt │   │   │   │   ├── 20160409cocooner.txt │   │   │   │   ├── 20160409cracks-on-pluto.txt │   │   │   │   ├── 20160409falcon-reuse.txt │   │   │   │   ├── 20160409good-landing-good-resolution.txt │   │   │   │   ├── 20160409why-on-earth-anyone-need-that.txt │   │   │   │   ├── 20160411alco-coca.txt │   │   │   │   ├── 20160411carter.txt │   │   │   │   ├── 20160411crisprfail.txt │   │   │   │   ├── 20160411destroyer.txt │   │   │   │   ├── 20160411EMIEW3.txt │   │   │   │   ├── 20160411finally-true-hoverboard.txt │   │   │   │   ├── 20160411Glass-Kilns.txt │   │   │   │   ├── 20160411kepler-is-back.txt │   │   │   │   ├── 20160411Kremlin-excavations.txt │   │   │   │   ├── 20160411lhc-first-collision.txt │   │   │   │   ├── 20160411nanoelectrode.txt │   │   │   │   ├── 20160411nightonomy.txt │   │   │   │   ├── 20160411propulsion.txt │   │   │   │   ├── 20160411xs1.txt │   │   │   │   ├── 20160411zika-adem.txt │   │   │   │   ├── 20160412alignment-of-jets.txt │   │   │   │   ├── 20160412android-voice.txt │   │   │   │   ├── 20160412attack.txt │   │   │   │   ├── 20160412be-rich-live-long.txt │   │   │   │   ├── 20160412drone-dome.txt │   │   │   │   ├── 20160412e-sail.txt │   │   │   │   ├── 20160412evo-hg.txt │   │   │   │   ├── 20160412hawking-secret.txt │   │   │   │   ├── 20160412hot-superearths.txt │   │   │   │   ├── 20160412hyper.txt │   │   │   │   ├── 20160412lol.txt │   │   │   │   ├── 20160412lsdbrain.txt │   │   │   │   ├── 20160412lytro-cinema.txt │   │   │   │   ├── 20160412museum.txt │   │   │   │   ├── 20160412neuroticism.txt │   │   │   │   ├── 20160412quarks-radii.txt │   │   │   │   ├── 20160412revl-arc.txt │   │   │   │   ├── 20160412textalyzer.txt │   │   │   │   ├── 20160412yandex-gagarin.txt │   │   │   │   ├── 20160413Arad-sherds.txt │   │   │   │   ├── 20160413astrophysical-neutrino.txt │   │   │   │   ├── 20160413bsod.txt │   │   │   │   ├── 20160413drone-racing.txt │   │   │   │   ├── 20160413fb-camera.txt │   │   │   │   ├── 20160413flappy-smoke.txt │   │   │   │   ├── 20160413galaxies-in-fornax.txt │   │   │   │   ├── 20160413google-goals-app.txt │   │   │   │   ├── 20160413greenhouse.txt │   │   │   │   ├── 20160413high-velocity-stars.txt │   │   │   │   ├── 20160413math-gender-differences.txt │   │   │   │   ├── 20160413monogood.txt │   │   │   │   ├── 20160413muromets.txt │   │   │   │   ├── 20160413New-Novgorod-artefacts.txt │   │   │   │   ├── 20160413protect.txt │   │   │   │   ├── 20160413sonicboom.txt │   │   │   │   ├── 20160413so-sorry.txt │   │   │   │   ├── 20160413tree-of-life.txt │   │   │   │   ├── 20160413venus-shots.txt │   │   │   │   ├── 20160413xs1.txt │   │   │   │   ├── 20160414apollo-15-zeiss-tele-tessar.txt │   │   │   │   ├── 20160414dogstagram.txt │   │   │   │   ├── 20160414exomars-image.txt │   │   │   │   ├── 20160414flexible-matrix.txt │   │   │   │   ├── 20160414minimaxibacter.txt │   │   │   │   ├── 20160414missile.txt │   │   │   │   ├── 20160414namer.txt │   │   │   │   ├── 20160414neural-bypass.txt │   │   │   │   ├── 20160414nova-first-papers.txt │   │   │   │   ├── 20160414Pyrophilic-hominins.txt │   │   │   │   ├── 20160414quantum-moves.txt │   │   │   │   ├── 20160414register.txt │   │   │   │   ├── 20160414self-made-arcade-machines.txt │   │   │   │   ├── 20160414separation.txt │   │   │   │   ├── 20160414snow-words.txt │   │   │   │   ├── 20160414Time-taveller-mummy.txt │   │   │   │   ├── 20160414Tully-monster-vertebrate.txt │   │   │   │   ├── 20160414uavs.txt │   │   │   │   ├── 20160414vr.txt │   │   │   │   ├── 20160414weird-talking-robot.txt │   │   │   │   ├── 20160415armata.txt │   │   │   │   ├── 20160415armor.txt │   │   │   │   ├── 20160415camera.txt │   │   │   │   ├── 20160415carusel.txt │   │   │   │   ├── 20160415cassiny-dust-grains.txt │   │   │   │   ├── 20160415holmium-atom-magnet.txt │   │   │   │   ├── 20160415long-url-short.txt │   │   │   │   ├── 20160415magic-pony.txt │   │   │   │   ├── 20160415math-mistakes.txt │   │   │   │   ├── 20160415mattress.txt │   │   │   │   ├── 20160415Neanderthals-toothpicks.txt │   │   │   │   ├── 20160415pig-latin-consciousness.txt │   │   │   │   ├── 20160415Stuttering.txt │   │   │   │   ├── 20160415wheelchair.txt │   │   │   │   ├── 20160416beam-docking.txt │   │   │   │   ├── 20160416comparision.txt │   │   │   │   ├── 20160416hidden-dark-galaxy.txt │   │   │   │   ├── 20160416pluto-gravity-waves.txt │   │   │   │   ├── 20160416tsar-bell.txt │   │   │   │   ├── 20160418aussie-drone-post.txt │   │   │   │   ├── 20160418carbon-nanotubes.txt │   │   │   │   ├── 20160418drone.txt │   │   │   │   ├── 20160418eLISA-early-start.txt │   │   │   │   ├── 20160418gloves.txt │   │   │   │   ├── 20160418hitomi-fail.txt │   │   │   │   ├── 20160418hybrid.txt │   │   │   │   ├── 20160418Lost-and-found-patent.txt │   │   │   │   ├── 20160418matrice-600.txt │   │   │   │   ├── 20160418peru-zika.txt │   │   │   │   ├── 20160418porco-dronso.txt │   │   │   │   ├── 20160418real-time-titanic.txt │   │   │   │   ├── 20160418Rhinopithecus-gives-birth.txt │   │   │   │   ├── 20160418risky-romance.txt │   │   │   │   ├── 20160418sensor.txt │   │   │   │   ├── 20160418uav.txt │   │   │   │   ├── 20160419ai2.txt │   │   │   │   ├── 20160419avenger.txt │   │   │   │   ├── 20160419Birth-rate-vs-lifespan.txt │   │   │   │   ├── 20160419cerebre.txt │   │   │   │   ├── 20160419chandra-x-ray.txt │   │   │   │   ├── 20160419decline.txt │   │   │   │   ├── 20160419embryorbit.txt │   │   │   │   ├── 20160419exoplanet.txt │   │   │   │   ├── 20160419firstflight.txt │   │   │   │   ├── 20160419hawc.txt │   │   │   │   ├── 20160419jellyfish.txt │   │   │   │   ├── 20160419kn06.txt │   │   │   │   ├── 20160419milk-scanner.txt │   │   │   │   ├── 20160419more-than-34.txt │   │   │   │   ├── 20160419MraY.txt │   │   │   │   ├── 20160419rbk500.txt │   │   │   │   ├── 20160419Roman-villa-in-my-yard.txt │   │   │   │   ├── 20160419root.txt │   │   │   │   ├── 20160419testing.txt │   │   │   │   ├── 20160419youtube-360-live.txt │   │   │   │   ├── 20160419zirkon.txt │   │   │   │   ├── 20160420cheetah.txt │   │   │   │   ├── 20160420chrome-vr.txt │   │   │   │   ├── 20160420cwd-in-europe.txt │   │   │   │   ├── 20160420drink-anyway.txt │   │   │   │   ├── 20160420fossil-heart.txt │   │   │   │   ├── 20160420galactic-outer-ring.txt │   │   │   │   ├── 20160420gender-in-math.txt │   │   │   │   ├── 20160420gill-limbs.txt │   │   │   │   ├── 20160420hawking-D-mark.txt │   │   │   │   ├── 20160420Leggett-Garg-inequality.txt │   │   │   │   ├── 20160420lesee.txt │   │   │   │   ├── 20160420lightning.txt │   │   │   │   ├── 20160420lm100j.txt │   │   │   │   ├── 20160420lwir.txt │   │   │   │   ├── 20160420nasa-satellite-flares.txt │   │   │   │   ├── 20160420swimming-snake.txt │   │   │   │   ├── 20160420two-volcanoes-trigger-crises.txt │   │   │   │   ├── 20160421aarduino.txt │   │   │   │   ├── 20160421AviRTE-fossil.txt │   │   │   │   ├── 20160421Blind-size-up-by-hearing.txt │   │   │   │   ├── 20160421cgtoat.txt │   │   │   │   ├── 20160421cosmic-liver.txt │   │   │   │   ├── 20160421diagnostics.txt │   │   │   │   ├── 20160421doctor-who.txt │   │   │   │   ├── 20160421duckietown.txt │   │   │   │   ├── 20160421duck-legs.txt │   │   │   │   ├── 20160421engines.txt │   │   │   │   ├── 20160421loneliness.txt │   │   │   │   ├── 20160421long-vacation.txt │   │   │   │   ├── 20160421microwires.txt │   │   │   │   ├── 20160421mosquito-killers.txt │   │   │   │   ├── 20160421mother-perception.txt │   │   │   │   ├── 20160421nanowire.txt │   │   │   │   ├── 20160421oh-these-scientists.txt │   │   │   │   ├── 20160421planet-X.txt │   │   │   │   ├── 20160421plutonium.txt │   │   │   │   ├── 20160421seven-new-giant-exoplanets.txt │   │   │   │   ├── 20160421si2-good-to-go.txt │   │   │   │   ├── 20160421Stone-age-billboards.txt │   │   │   │   ├── 20160421tamir.txt │   │   │   │   ├── 20160421vpn-opera.txt │   │   │   │   ├── 20160422abrams.txt │   │   │   │   ├── 20160422antbo.txt │   │   │   │   ├── 20160422bell-correlations.txt │   │   │   │   ├── 20160422BURST-computer-code.txt │   │   │   │   ├── 20160422ch53k.txt │   │   │   │   ├── 20160422crawl-and-print.txt │   │   │   │   ├── 20160422doom-death-match.txt │   │   │   │   ├── 20160422esa-hershel.txt │   │   │   │   ├── 20160422foliage.txt │   │   │   │   ├── 20160422hubble.txt │   │   │   │   ├── 20160422ipsc-ros.txt │   │   │   │   ├── 20160422Iron-age-cheese.txt │   │   │   │   ├── 20160422linux-musk.txt │   │   │   │   ├── 20160422night-watch.txt │   │   │   │   ├── 20160422power-of-positive-thinking.txt │   │   │   │   ├── 20160422same-stuff.txt │   │   │   │   ├── 20160422skull-vibrations.txt │   │   │   │   ├── 20160422subs.txt │   │   │   │   ├── 20160422they-see-me-rollin.txt │   │   │   │   ├── 20160422x2.txt │   │   │   │   ├── 20160423battery.txt │   │   │   │   ├── 20160423big-big-data.txt │   │   │   │   ├── 20160423blasts.txt │   │   │   │   ├── 20160423fighter.txt │   │   │   │   ├── 20160423fly.txt │   │   │   │   ├── 20160423leap.txt │   │   │   │   ├── 20160423progs.txt │   │   │   │   ├── 20160423rifle.txt │   │   │   │   ├── 20160423robots.txt │   │   │   │   ├── 20160423shinshin.txt │   │   │   │   ├── 20160423testing.txt │   │   │   │   ├── 20160423uav.txt │   │   │   │   ├── 20160423winglets.txt │   │   │   │   ├── 20160424hello-again.txt │   │   │   │   ├── 201604251000-years-later.txt │   │   │   │   ├── 20160425Be-cheerful-enjoy-life.txt │   │   │   │   ├── 20160425echidna-torpor.txt │   │   │   │   ├── 20160425go-find-em-boy.txt │   │   │   │   ├── 20160425ibm.txt │   │   │   │   ├── 20160425icebacteria.txt │   │   │   │   ├── 20160425manufacture.txt │   │   │   │   ├── 20160425mating.txt │   │   │   │   ├── 20160425robot-monk.txt │   │   │   │   ├── 20160425tesla.txt │   │   │   │   ├── 20160425tunnelberyl.txt │   │   │   │   ├── 20160425Unique-Tombs.txt │   │   │   │   ├── 20160425ziro.txt │   │   │   │   ├── 20160426close.txt │   │   │   │   ├── 20160426cs-smartwatch.txt │   │   │   │   ├── 20160426cyberweap.txt │   │   │   │   ├── 20160426dcns.txt │   │   │   │   ├── 20160426design.txt │   │   │   │   ├── 20160426drones.txt │   │   │   │   ├── 20160426flight.txt │   │   │   │   ├── 20160426hideit.txt │   │   │   │   ├── 20160426iff.txt │   │   │   │   ├── 20160426male-burst.txt │   │   │   │   ├── 20160426martian-surface.txt │   │   │   │   ├── 20160426multicellular.txt │   │   │   │   ├── 20160426observing-makes-people-contribute.txt │   │   │   │   ├── 20160426osprey.txt │   │   │   │   ├── 20160426peptibodies.txt │   │   │   │   ├── 20160426plantprions.txt │   │   │   │   ├── 20160426qwerty-effect.txt │   │   │   │   ├── 20160426robots.txt │   │   │   │   ├── 20160426sentinel-1b.txt │   │   │   │   ├── 20160426vr-lan-party.txt │   │   │   │   ├── 20160426x2.txt │   │   │   │   ├── 20160427binge-mouse.txt │   │   │   │   ├── 20160427dawn-jab.txt │   │   │   │   ├── 20160427double.txt │   │   │   │   ├── 20160427hormoneskin.txt │   │   │   │   ├── 20160427hover.txt │   │   │   │   ├── 20160427Iron-law-of-oligarchy.txt │   │   │   │   ├── 20160427kc46.txt │   │   │   │   ├── 20160427makemake.txt │   │   │   │   ├── 20160427oilspills.txt │   │   │   │   ├── 20160427postpone.txt │   │   │   │   ├── 20160427prendiamouncaffe.txt │   │   │   │   ├── 20160427protected.txt │   │   │   │   ├── 20160427red-planet.txt │   │   │   │   ├── 20160427rifle.txt │   │   │   │   ├── 20160427rover-tiles.txt │   │   │   │   ├── 20160427runway.txt │   │   │   │   ├── 20160427smart-raven.txt │   │   │   │   ├── 20160427twisted-firestarter.txt │   │   │   │   ├── 20160427vr-backpack.txt │   │   │   │   ├── 20160428collision.txt │   │   │   │   ├── 20160428Deep-male-voice.txt │   │   │   │   ├── 20160428germ-like.txt │   │   │   │   ├── 20160428kombucha-tea.txt │   │   │   │   ├── 20160428msu-scholars-found-manuscript.txt │   │   │   │   ├── 20160428night.txt │   │   │   │   ├── 20160428no-drone.txt │   │   │   │   ├── 20160428no-pain-no-gain.txt │   │   │   │   ├── 20160428oceanone.txt │   │   │   │   ├── 20160428photos-colorized-by-AI.txt │   │   │   │   ├── 20160428railgun.txt │   │   │   │   ├── 20160428shiv-bnab.txt │   │   │   │   ├── 20160428V1331-Cygni.txt │   │   │   │   ├── 20160428vostochny.txt │   │   │   │   ├── 20160428wordsmapped.txt │   │   │   │   ├── 20160428work-live.txt │   │   │   │   ├── 20160428x2.txt │   │   │   │   ├── 201604293d-foam.txt │   │   │   │   ├── 20160429dreamylizard.txt │   │   │   │   ├── 20160429fathom.txt │   │   │   │   ├── 20160429ford.txt │   │   │   │   ├── 20160429glide.txt │   │   │   │   ├── 20160429gut-69.txt │   │   │   │   ├── 20160429heptic.txt │   │   │   │   ├── 20160429hoverbike.txt │   │   │   │   ├── 20160429how-old-are-you.txt │   │   │   │   ├── 20160429hunter.txt │   │   │   │   ├── 20160429ka62-2.txt │   │   │   │   ├── 20160429ka62.txt │   │   │   │   ├── 20160429mine.txt │   │   │   │   ├── 20160429no-choice.txt │   │   │   │   ├── 20160429retweeting-memory.txt │   │   │   │   ├── 20160429risky-drivers.txt │   │   │   │   ├── 20160429Sentinel-1B-delivers-pics.txt │   │   │   │   ├── 20160429the-truth-is-out-there.txt │   │   │   │   ├── 20160429vzdumal-ko-mne-lezt.txt │   │   │   │   ├── 20160429Weasel-halts-LHC-experiments.txt │   │   │   │   ├── 20160430blackroom-delay.txt │   │   │   │   ├── 20160430inject-lens.txt │   │   │   │   ├── 20160430manx-object.txt │   │   │   │   ├── 20160430Roman-coins-in-Spain.txt │   │   │   │   ├── 20160430thz-lens.txt │   │   │   │   ├── 20160430webb-gold.txt │   │   │   │   ├── 20160502hoverboard-world-record.txt │   │   │   │   ├── 20160502mummy-with-baby.txt │   │   │   │   ├── 20160502pluto-sunken-heart.txt │   │   │   │   ├── 20160502si2-go-you-boy.txt │   │   │   │   ├── 20160502space-debris.txt │   │   │   │   ├── 20160502space-x-price.txt │   │   │   │   ├── 20160503monospinner.txt │   │   │   │   ├── 20160503si2-on-schedule.txt │   │   │   │   ├── 20160503three-planets.txt │   │   │   │   ├── 20160503win-95.txt │   │   │   │   ├── 20160504Air-rage-in-econom-class.txt │   │   │   │   ├── 20160504carpageddon.txt │   │   │   │   ├── 20160504childish-gossip.txt │   │   │   │   ├── 20160504flu-jab.txt │   │   │   │   ├── 20160504Genetic-history-of-Europe.txt │   │   │   │   ├── 20160504GeoOrbital.txt │   │   │   │   ├── 20160504gravity.txt │   │   │   │   ├── 20160504herbal-hazard.txt │   │   │   │   ├── 20160504medical-errors.txt │   │   │   │   ├── 20160504quantum-cloud.txt │   │   │   │   ├── 20160504self-driving-minivan.txt │   │   │   │   ├── 20160504sony-ar-lens.txt │   │   │   │   ├── 20160504Za-chto-aborigeny-seli-Kuka.txt │   │   │   │   ├── 2016050513-days.txt │   │   │   │   ├── 201605053d-bone.txt │   │   │   │   ├── 20160505ampa-not-nmda.txt │   │   │   │   ├── 20160505drone-shield.txt │   │   │   │   ├── 20160505floop-the-pig.txt │   │   │   │   ├── 20160505holoflex.txt │   │   │   │   ├── 20160505Human-paradox.txt │   │   │   │   ├── 20160505neoneo.txt │   │   │   │   ├── 20160505no-fear.txt │   │   │   │   ├── 20160505partially-passenger.txt │   │   │   │   ├── 20160505pre-touch.txt │   │   │   │   ├── 20160505sinful.txt │   │   │   │   ├── 20160505Turtle-soup.txt │   │   │   │   ├── 20160506biogases.txt │   │   │   │   ├── 20160506em-id.txt │   │   │   │   ├── 20160506mSMS.txt │   │   │   │   ├── 20160506no-cancer.txt │   │   │   │   ├── 20160506osome-memes.txt │   │   │   │   ├── 20160506regular-day-in-sweden.txt │   │   │   │   ├── 20160506second-time.txt │   │   │   │   ├── 20160506tatoo.txt │   │   │   │   ├── 20160506there-is-no-possessions.txt │   │   │   │   ├── 20160506too-late.txt │   │   │   │   ├── 20160506touchskin.txt │   │   │   │   ├── 20160507atopodentatus.txt │   │   │   │   ├── 20160507esa-lilium.txt │   │   │   │   ├── 20160507nasa-for-free.txt │   │   │   │   ├── 20160507PAD.txt │   │   │   │   ├── 20160509dim3.txt │   │   │   │   ├── 20160510batflight.txt │   │   │   │   ├── 20160510check.txt │   │   │   │   ├── 20160510connected-nes.txt │   │   │   │   ├── 20160510Digital-media.txt │   │   │   │   ├── 20160510Dromedary-domesticated.txt │   │   │   │   ├── 20160510kepler-press.txt │   │   │   │   ├── 20160510module.txt │   │   │   │   ├── 20160510moon-landing-pad-trial.txt │   │   │   │   ├── 20160510nash-shab.txt │   │   │   │   ├── 20160510new-class.txt │   │   │   │   ├── 20160510nn-video.txt │   │   │   │   ├── 20160510Oldest-paddy-field.txt │   │   │   │   ├── 20160510parazero.txt │   │   │   │   ├── 20160510pistol.txt │   │   │   │   ├── 20160510poisson.txt │   │   │   │   ├── 20160510radar.txt │   │   │   │   ├── 20160510second-landing.txt │   │   │   │   ├── 20160510sterile-neutrino-search.txt │   │   │   │   ├── 20160510swaddling-sids.txt │   │   │   │   ├── 20160510uavs.txt │   │   │   │   ├── 20160510xpl.txt │   │   │   │   ├── 20160510yellowpages.txt │   │   │   │   ├── 20160511acoustic.txt │   │   │   │   ├── 20160511airforceone.txt │   │   │   │   ├── 20160511display-on-your-display.txt │   │   │   │   ├── 20160511dont-care.txt │   │   │   │   ├── 20160511first-test.txt │   │   │   │   ├── 20160511flying.txt │   │   │   │   ├── 20160511gamma-plastic.txt │   │   │   │   ├── 20160511league.txt │   │   │   │   ├── 20160511moon-no-effect.txt │   │   │   │   ├── 20160511nozika.txt │   │   │   │   ├── 20160511opensat.txt │   │   │   │   ├── 20160511ppi.txt │   │   │   │   ├── 20160511subaru-fastsound.txt │   │   │   │   ├── 20160511trainer.txt │   │   │   │   ├── 20160511unsafe.txt │   │   │   │   ├── 20160511uranus.txt │   │   │   │   ├── 20160511whatsapp-desktop.txt │   │   │   │   ├── 201605122007OR10.txt │   │   │   │   ├── 20160512advanced.txt │   │   │   │   ├── 20160512cannabis-maya.txt │   │   │   │   ├── 20160512doublet.txt │   │   │   │   ├── 20160512eleven.txt │   │   │   │   ├── 20160512em-sled.txt │   │   │   │   ├── 20160512genderbot.txt │   │   │   │   ├── 20160512haptic-and-visual.txt │   │   │   │   ├── 20160512hearts.txt │   │   │   │   ├── 20160512kepler-223.txt │   │   │   │   ├── 20160512long-live-the-prog.txt │   │   │   │   ├── 20160512sarmat.txt │   │   │   │   ├── 20160512scientists-music-classification.txt │   │   │   │   ├── 20160512shipborne.txt │   │   │   │   ├── 20160512silicate-dust.txt │   │   │   │   ├── 20160512urban-children.txt │   │   │   │   ├── 20160512Welcome-Cynarctus-wangi.txt │   │   │   │   ├── 20160512Youngest-mummified-foetus.txt │   │   │   │   ├── 20160513AI-poetry.txt │   │   │   │   ├── 20160513botox-why.txt │   │   │   │   ├── 20160513ceramics.txt │   │   │   │   ├── 20160513cinema-in-air.txt │   │   │   │   ├── 20160513disney-robot.txt │   │   │   │   ├── 20160513earth-formative-years.txt │   │   │   │   ├── 20160513esorvd.txt │   │   │   │   ├── 20160513exosuit-updated.txt │   │   │   │   ├── 20160513f35tailhook.txt │   │   │   │   ├── 20160513homobeetle.txt │   │   │   │   ├── 20160513hubble-captured-comet.txt │   │   │   │   ├── 20160513Hyundai-wearable-robot.txt │   │   │   │   ├── 20160513ingestible-origami-robot.txt │   │   │   │   ├── 20160513manetic-field.txt │   │   │   │   ├── 20160513nomytochon.txt │   │   │   │   ├── 20160513orion.txt │   │   │   │   ├── 20160513si2-11-landing.txt │   │   │   │   ├── 20160513sn-1572.txt │   │   │   │   ├── 20160513uavs.txt │   │   │   │   ├── 20160513vvv.txt │   │   │   │   ├── 20160514purine.txt │   │   │   │   ├── 20160514shark-fast.txt │   │   │   │   ├── 20160514underwater-site.txt │   │   │   │   ├── 20160516adsb.txt │   │   │   │   ├── 20160516compass.txt │   │   │   │   ├── 20160516dandruff.txt │   │   │   │   ├── 20160516doc.txt │   │   │   │   ├── 20160516drone-on-the-ceiling.txt │   │   │   │   ├── 20160516drones.txt │   │   │   │   ├── 20160516era-of-flash-ended.txt │   │   │   │   ├── 20160516gender-inequality-math.txt │   │   │   │   ├── 20160516GOE-date.txt │   │   │   │   ├── 20160516japan-embryo.txt │   │   │   │   ├── 20160516landing.txt │   │   │   │   ├── 20160516laser.txt │   │   │   │   ├── 20160516Midnight-poem-date.txt │   │   │   │   ├── 20160516nasa-galaxy-snowflake.txt │   │   │   │   ├── 20160516no-gluten-free.txt │   │   │   │   ├── 20160516smart-laser-watch.txt │   │   │   │   ├── 20160516tesla-field-crystal.txt │   │   │   │   ├── 20160516transparent-wood.txt │   │   │   │   ├── 20160516twodays.txt │   │   │   │   ├── 20160517autopiloting.txt │   │   │   │   ├── 20160517bike-mine.txt │   │   │   │   ├── 20160517Caesaria-shipwreck.txt │   │   │   │   ├── 20160517Cooperative-shalk-bass.txt │   │   │   │   ├── 20160517drones.txt │   │   │   │   ├── 20160517g4.txt │   │   │   │   ├── 20160517geladaspeech.txt │   │   │   │   ├── 20160517hywind-scotland.txt │   │   │   │   ├── 20160517individobacter.txt │   │   │   │   ├── 20160517kamikaze.txt │   │   │   │   ├── 20160517kurilka.txt │   │   │   │   ├── 20160517looking-glass-protein.txt │   │   │   │   ├── 20160517magnetic-fields-interplay.txt │   │   │   │   ├── 20160517otto.txt │   │   │   │   ├── 20160517recommend.txt │   │   │   │   ├── 20160517smarter.txt │   │   │   │   ├── 20160517spiderweb.txt │   │   │   │   ├── 20160517spring.txt │   │   │   │   ├── 20160517sprn.txt │   │   │   │   ├── 20160517tb-29v.txt │   │   │   │   ├── 20160517unethical-amnesia.txt │   │   │   │   ├── 20160517unexpected.txt │   │   │   │   ├── 20160517visionary.txt │   │   │   │   ├── 20160517voice-social.txt │   │   │   │   ├── 20160517Water-distribution-in-Naples.txt │   │   │   │   ├── 20160518ai-nobel-prize-experiments.txt │   │   │   │   ├── 20160518be-happy.txt │   │   │   │   ├── 20160518china-multicellular.txt │   │   │   │   ├── 20160518Cubimorph.txt │   │   │   │   ├── 20160518cyber.txt │   │   │   │   ├── 20160518europa-ocean.txt │   │   │   │   ├── 20160518giraffeneck.txt │   │   │   │   ├── 20160518google-cam-digital-art.txt │   │   │   │   ├── 20160518gravity-measure.txt │   │   │   │   ├── 20160518hypoxia.txt │   │   │   │   ├── 20160518levitation-gloves.txt │   │   │   │   ├── 20160518no-harm.txt │   │   │   │   ├── 20160518proximity.txt │   │   │   │   ├── 20160518sea-trials.txt │   │   │   │   ├── 20160518Starry-night-in-3D.txt │   │   │   │   ├── 20160518Tomb-in-Sivilri.txt │   │   │   │   ├── 20160518transelbow.txt │   │   │   │   ├── 20160518vehicle.txt │   │   │   │   ├── 20160518wasp.txt │   │   │   │   ├── 20160518zika-alert.txt │   │   │   │   ├── 20160519ak400.txt │   │   │   │   ├── 20160519bombs.txt │   │   │   │   ├── 20160519comet-orbiting.txt │   │   │   │   ├── 20160519crawfish-whistles.txt │   │   │   │   ├── 20160519darwinolide.txt │   │   │   │   ├── 20160519dome.txt │   │   │   │   ├── 20160519duck.txt │   │   │   │   ├── 20160519gallium.txt │   │   │   │   ├── 20160519gripene.txt │   │   │   │   ├── 20160519hack-hack-hack.txt │   │   │   │   ├── 20160519in-cars.txt │   │   │   │   ├── 20160519io-216.txt │   │   │   │   ├── 20160519Machairoceratops-found.txt │   │   │   │   ├── 20160519martian-tsunami-waves.txt │   │   │   │   ├── 20160519missile.txt │   │   │   │   ├── 20160519narco-waste.txt │   │   │   │   ├── 20160519no-giants-allowed.txt │   │   │   │   ├── 20160519nose-shape.txt │   │   │   │   ├── 20160519pedestrians.txt │   │   │   │   ├── 20160519ruins-metro-rome.txt │   │   │   │   ├── 20160519schemes.txt │   │   │   │   ├── 20160519six-state-memory.txt │   │   │   │   ├── 20160519stellar-cannibalism.txt │   │   │   │   ├── 20160519suavecicle.txt │   │   │   │   ├── 20160519upper-limit-of-friends.txt │   │   │   │   ├── 20160519win.txt │   │   │   │   ├── 20160520android-system-for-robot.txt │   │   │   │   ├── 20160520app-solves-math-equations.txt │   │   │   │   ├── 20160520bright-light.txt │   │   │   │   ├── 20160520Contagious-dog-cancer.txt │   │   │   │   ├── 20160520del12-asgr1.txt │   │   │   │   ├── 20160520driveless-bolt.txt │   │   │   │   ├── 20160520driveless-uber.txt │   │   │   │   ├── 20160520engine.txt │   │   │   │   ├── 20160520fuel.txt │   │   │   │   ├── 20160520gmsalmon.txt │   │   │   │   ├── 20160520go-green.txt │   │   │   │   ├── 20160520lasers.txt │   │   │   │   ├── 20160520neutrino-mix.txt │   │   │   │   ├── 20160520r-and-r.txt │   │   │   │   ├── 20160520robobee-perching.txt │   │   │   │   ├── 20160520sentinel-aircraft.txt │   │   │   │   ├── 20160520sidestick.txt │   │   │   │   ├── 20160520Staphylococcus-aureus.txt │   │   │   │   ├── 20160520the-faintest-galaxy.txt │   │   │   │   ├── 20160521Back-home.txt │   │   │   │   ├── 20160521jacquard.txt │   │   │   │   ├── 20160521light-rider.txt │   │   │   │   ├── 20160521project-ara.txt │   │   │   │   ├── 20160521put-it-back.txt │   │   │   │   ├── 20160521si2-leg13.txt │   │   │   │   ├── 201605233DVarius-Paulina.txt │   │   │   │   ├── 20160523aad.txt │   │   │   │   ├── 20160523akatsuki-night-venus.txt │   │   │   │   ├── 20160523baby-cry-cognitive.txt │   │   │   │   ├── 20160523c2c2.txt │   │   │   │   ├── 20160523certificate.txt │   │   │   │   ├── 20160523colloid-crystal.txt │   │   │   │   ├── 20160523destroyer.txt │   │   │   │   ├── 20160523f35coating.txt │   │   │   │   ├── 20160523hifire.txt │   │   │   │   ├── 20160523magenta.txt │   │   │   │   ├── 20160523mppi.txt │   │   │   │   ├── 20160523Oxyrhynchus-magic-papyri.txt │   │   │   │   ├── 20160523poplarbacter.txt │   │   │   │   ├── 20160523PO-starforming.txt │   │   │   │   ├── 20160523rifle.txt │   │   │   │   ├── 20160523scientists-created-farmer-robot.txt │   │   │   │   ├── 20160523Tap-strap-controller.txt │   │   │   │   ├── 20160523t-rex-teeth.txt │   │   │   │   ├── 20160523vlf.txt │   │   │   │   ├── 20160523vtol.txt │   │   │   │   ├── 20160523women-gamers.txt │   │   │   │   ├── 20160524Ancient-beer-recipe.txt │   │   │   │   ├── 20160524cillia.txt │   │   │   │   ├── 20160524faint-sun-paradox.txt │   │   │   │   ├── 20160524ice.txt │   │   │   │   ├── 20160524infant-immaturity-intelligence.txt │   │   │   │   ├── 20160524ivyglue.txt │   │   │   │   ├── 20160524Le-myope.txt │   │   │   │   ├── 20160524madbritishman.txt │   │   │   │   ├── 20160524marvel-will-sue-you.txt │   │   │   │   ├── 20160524missile.txt │   │   │   │   ├── 20160524noretro.txt │   │   │   │   ├── 20160524Not-so-hard.txt │   │   │   │   ├── 20160524pebble-heart-rate.txt │   │   │   │   ├── 20160524Pot-sherds-after-Black-Death.txt │   │   │   │   ├── 20160524sticks-and-stones.txt │   │   │   │   ├── 20160524teb.txt │   │   │   │   ├── 20160524terahertz.txt │   │   │   │   ├── 20160524two-new-craters.txt │   │   │   │   ├── 20160524uav.txt │   │   │   │   ├── 20160525acoumucus.txt │   │   │   │   ├── 20160525apas.txt │   │   │   │   ├── 20160525deck.txt │   │   │   │   ├── 20160525fgf1.txt │   │   │   │   ├── 20160525First-is-on-the-way.txt │   │   │   │   ├── 20160525hifire.txt │   │   │   │   ├── 20160525internet-lost-capital-letter.txt │   │   │   │   ├── 20160525luminous-infrared-arp220.txt │   │   │   │   ├── 20160525mi-drone.txt │   │   │   │   ├── 20160525migraine-generator.txt │   │   │   │   ├── 20160525mil-spec-oil.txt │   │   │   │   ├── 20160525pain-robots.txt │   │   │   │   ├── 20160525poverty-methylation.txt │   │   │   │   ├── 20160525samsung-scroll.txt │   │   │   │   ├── 20160525stem-hand.txt │   │   │   │   ├── 20160525taranis.txt │   │   │   │   ├── 20160525vr-jacket.txt │   │   │   │   ├── 20160525wasps.txt │   │   │   │   ├── 20160526amyloid-mistake.txt │   │   │   │   ├── 20160526Aristotle-tomb.txt │   │   │   │   ├── 20160526beam.txt │   │   │   │   ├── 20160526black-holes-make-graveyards.txt │   │   │   │   ├── 20160526bob-amazed.txt │   │   │   │   ├── 20160526Corded-ware-culture-women.txt │   │   │   │   ├── 20160526crystallisation.txt │   │   │   │   ├── 20160526dates.txt │   │   │   │   ├── 20160526fifth-force.txt │   │   │   │   ├── 20160526fighters.txt │   │   │   │   ├── 20160526floppy.txt │   │   │   │   ├── 20160526flysperm.txt │   │   │   │   ├── 20160526high-altitude-archaeology.txt │   │   │   │   ├── 20160526lasers.txt │   │   │   │   ├── 20160526mmrrws.txt │   │   │   │   ├── 20160526neander.txt │   │   │   │   ├── 20160526osmo.txt │   │   │   │   ├── 20160526rapberry-droid.txt │   │   │   │   ├── 20160526robots.txt │   │   │   │   ├── 20160526system.txt │   │   │   │   ├── 20160526try-again-later.txt │   │   │   │   ├── 20160527aerion.txt │   │   │   │   ├── 20160527cern-radio.txt │   │   │   │   ├── 20160527customized-tablets.txt │   │   │   │   ├── 20160527engines.txt │   │   │   │   ├── 20160527ForcePower.txt │   │   │   │   ├── 20160527hack-troika-so-good.txt │   │   │   │   ├── 20160527interstate69.txt │   │   │   │   ├── 20160527latechildpsycho.txt │   │   │   │   ├── 20160527mars-ice-age-evidence.txt │   │   │   │   ├── 20160527math.txt │   │   │   │   ├── 20160527perseid-meteors.txt │   │   │   │   ├── 20160527photoshop.txt │   │   │   │   ├── 20160527probuphine.txt │   │   │   │   ├── 20160527psychological-manipulations.txt │   │   │   │   ├── 20160527shame-on-you.txt │   │   │   │   ├── 20160527silver-boa.txt │   │   │   │   ├── 20160527space-pills.txt │   │   │   │   ├── 20160527Subsea-cable.txt │   │   │   │   ├── 20160527sure-why-not.txt │   │   │   │   ├── 20160527syers.txt │   │   │   │   ├── 20160527there-is-no-possession.txt │   │   │   │   ├── 20160527welcome-back.txt │   │   │   │   ├── 20160528beam.txt │   │   │   │   ├── 20160528bicycle.txt │   │   │   │   ├── 20160528dancing.txt │   │   │   │   ├── 20160528falcon.txt │   │   │   │   ├── 20160528flows.txt │   │   │   │   ├── 20160528irondome.txt │   │   │   │   ├── 20160528messages.txt │   │   │   │   ├── 20160528mv22.txt │   │   │   │   ├── 20160528night.txt │   │   │   │   ├── 20160528railway.txt │   │   │   │   ├── 20160528real.txt │   │   │   │   ├── 20160530baykal.txt │   │   │   │   ├── 20160530city-scanner.txt │   │   │   │   ├── 20160530doublecatSh.txt │   │   │   │   ├── 20160530glycine.txt │   │   │   │   ├── 20160530juno-gravity.txt │   │   │   │   ├── 20160530Karl-Marx-kurgan.txt │   │   │   │   ├── 20160530neverwilt.txt │   │   │   │   ├── 20160530not-supported.txt │   │   │   │   ├── 20160530pentagram-doom.txt │   │   │   │   ├── 20160530pluto-surface-wow.txt │   │   │   │   ├── 20160530schizobrain.txt │   │   │   │   ├── 20160530sharkindivid.txt │   │   │   │   ├── 20160530Sn2016cok.txt │   │   │   │   ├── 20160530so-french.txt │   │   │   │   ├── 20160530Weather-is-the-reason.txt │   │   │   │   ├── 20160530whiskers.txt │   │   │   │   ├── 20160530zenbo.txt │   │   │   │   ├── 20160531aacus.txt │   │   │   │   ├── 20160531beeelectro.txt │   │   │   │   ├── 20160531cake-is-a-lie.txt │   │   │   │   ├── 20160531flexible-integrated-circuit.txt │   │   │   │   ├── 20160531flyer.txt │   │   │   │   ├── 20160531graphene.txt │   │   │   │   ├── 20160531hawk-moth.txt │   │   │   │   ├── 20160531kultura-general-relativity.txt │   │   │   │   ├── 20160531Madagascan-mystery-answer.txt │   │   │   │   ├── 20160531moxi.txt │   │   │   │   ├── 20160531new-xe-oxides.txt │   │   │   │   ├── 20160531ok-chikenpox.txt │   │   │   │   ├── 20160531opium-paradox.txt │   │   │   │   ├── 20160531Phaethon.txt │   │   │   │   ├── 20160531plasmon-bw-c.txt │   │   │   │   ├── 20160531safe-or-abstain.txt │   │   │   │   ├── 20160531shaw-prize.txt │   │   │   │   ├── 20160531women-language.txt │   │   │   │   ├── 20160531xs1.txt │   │   │   │   ├── 201606012AU-2.txt │   │   │   │   ├── 20160601abbyy.txt │   │   │   │   ├── 20160601ar-firefighters.txt │   │   │   │   ├── 20160601chinese.txt │   │   │   │   ├── 20160601design-freedom.txt │   │   │   │   ├── 20160601dr-death.txt │   │   │   │   ├── 20160601droplet-bowler-hat.txt │   │   │   │   ├── 20160601foldable-galaxy.txt │   │   │   │   ├── 20160601htt40.txt │   │   │   │   ├── 20160601matrix.txt │   │   │   │   ├── 20160601microglialoss.txt │   │   │   │   ├── 20160601microsoft-opens-os.txt │   │   │   │   ├── 20160601morality-and-opinion.txt │   │   │   │   ├── 20160601newferroSC.txt │   │   │   │   ├── 20160601new-ring.txt │   │   │   │   ├── 20160601precocious-puberty.txt │   │   │   │   ├── 20160601rising-star-cave.txt │   │   │   │   ├── 20160601Snopbot-project.txt │   │   │   │   ├── 20160601xstat.txt │   │   │   │   ├── 20160602Ancient-Roman-tablets.txt │   │   │   │   ├── 20160602ar-rubik.txt │   │   │   │   ├── 20160602cls.txt │   │   │   │   ├── 20160602convection-pluto.txt │   │   │   │   ├── 20160602eLife.txt │   │   │   │   ├── 20160602google-midi.txt │   │   │   │   ├── 20160602grenades.txt │   │   │   │   ├── 20160602hydrogen-search.txt │   │   │   │   ├── 20160602jackrabot.txt │   │   │   │   ├── 20160602kavli-prize.txt │   │   │   │   ├── 20160602lessthc.txt │   │   │   │   ├── 20160602meta-skin.txt │   │   │   │   ├── 20160602observational-distance-record.txt │   │   │   │   ├── 20160602of-moths-and-lightbulbs.txt │   │   │   │   ├── 20160602painkiller.txt │   │   │   │   ├── 20160602pairs.txt │   │   │   │   ├── 20160602super-mario-bros-pspace.txt │   │   │   │   ├── 20160602theology-doctor.txt │   │   │   │   ├── 20160602traffic.txt │   │   │   │   ├── 20160603aeroport-map.txt │   │   │   │   ├── 20160603afterlife-urn.txt │   │   │   │   ├── 20160603brain-likes-reaction.txt │   │   │   │   ├── 20160603chopper.txt │   │   │   │   ├── 20160603driveless-honk.txt │   │   │   │   ├── 20160603Dual-origin-of-dogs.txt │   │   │   │   ├── 20160603emals.txt │   │   │   │   ├── 20160603endurance.txt │   │   │   │   ├── 20160603first.txt │   │   │   │   ├── 20160603gong.txt │   │   │   │   ├── 20160603gums-would-bear.txt │   │   │   │   ├── 20160603het.txt │   │   │   │   ├── 20160603hgp-write.txt │   │   │   │   ├── 20160603hooray.txt │   │   │   │   ├── 20160603meta-lens-high-NA.txt │   │   │   │   ├── 20160603shot-glass-adapter.txt │   │   │   │   ├── 20160603swimhereandthere.txt │   │   │   │   ├── 20160603tatoo-ai.txt │   │   │   │   ├── 20160603unfreeze.txt │   │   │   │   ├── 20160603universe-expansion-fast.txt │   │   │   │   ├── 20160603vamps.txt │   │   │   │   ├── 20160604big-red-button.txt │   │   │   │   ├── 20160604davd.txt │   │   │   │   ├── 20160604high-price.txt │   │   │   │   ├── 20160604rc-helmet.txt │   │   │   │   ├── 20160604tiny-quadruped.txt │   │   │   │   ├── 20160606adnexbiota.txt │   │   │   │   ├── 20160606asteroid-mining.txt │   │   │   │   ├── 20160606Dance-your-thesis-2016.txt │   │   │   │   ├── 20160606go-ahead.txt │   │   │   │   ├── 20160606ke.txt │   │   │   │   ├── 20160606machinegun.txt │   │   │   │   ├── 20160606narcissism-social-hierarchy.txt │   │   │   │   ├── 20160606Norway-gasoline-cars.txt │   │   │   │   ├── 20160606nuclearatp.txt │   │   │   │   ├── 20160606patton.txt │   │   │   │   ├── 20160606pregnant.txt │   │   │   │   ├── 20160606proteus-born.txt │   │   │   │   ├── 20160606quantum-enigma.txt │   │   │   │   ├── 20160606robots.txt │   │   │   │   ├── 20160606s500.txt │   │   │   │   ├── 20160606system.txt │   │   │   │   ├── 20160606thor.txt │   │   │   │   ├── 20160606too-loud.txt │   │   │   │   ├── 20160606wind-tunnel.txt │   │   │   │   ├── 20160606y20.txt │   │   │   │   ├── 201606072012dn.txt │   │   │   │   ├── 20160607asteroid-history.txt │   │   │   │   ├── 20160607be-zero.txt │   │   │   │   ├── 20160607bionic-leaf.txt │   │   │   │   ├── 20160607black-hole-algorithm.txt │   │   │   │   ├── 20160607cest-la-vie.txt │   │   │   │   ├── 20160607control-economic-decisions.txt │   │   │   │   ├── 20160607dock.txt │   │   │   │   ├── 20160607egg-senescence.txt │   │   │   │   ├── 20160607Electric-eels-shocking-leap.txt │   │   │   │   ├── 20160607femtonewton.txt │   │   │   │   ├── 20160607haero.txt │   │   │   │   ├── 20160607hello.txt │   │   │   │   ├── 20160607ipsc-glaucoma.txt │   │   │   │   ├── 20160607jagm.txt │   │   │   │   ├── 20160607migrafarmers.txt │   │   │   │   ├── 20160607multilevel.txt │   │   │   │   ├── 20160607power-glove.txt │   │   │   │   ├── 20160607quesst.txt │   │   │   │   ├── 20160607rubber-hand-illusion.txt │   │   │   │   ├── 20160607samsung-foldable.txt │   │   │   │   ├── 201606086000-of-global-urbanisation.txt │   │   │   │   ├── 20160608alarm.txt │   │   │   │   ├── 20160608blood-microbiome.txt │   │   │   │   ├── 20160608case-droid.txt │   │   │   │   ├── 20160608cybersport.txt │   │   │   │   ├── 20160608Daydream-googly-eyes.txt │   │   │   │   ├── 20160608ehang-test.txt │   │   │   │   ├── 20160608fenix.txt │   │   │   │   ├── 20160608happy-couples-ugly-others.txt │   │   │   │   ├── 20160608hotwater.txt │   │   │   │   ├── 20160608invisiblequid.txt │   │   │   │   ├── 20160608LISA-pathfinder-success.txt │   │   │   │   ├── 20160608magic-leap.txt │   │   │   │   ├── 20160608ms21.txt │   │   │   │   ├── 20160608new-names.txt │   │   │   │   ├── 20160608red-giants-missing.txt │   │   │   │   ├── 20160608stripes.txt │   │   │   │   ├── 20160608this-fall-rocket-shall-not-fall.txt │   │   │   │   ├── 20160608vibrophone.txt │   │   │   │   ├── 20160608yellow-meranti.txt │   │   │   │   ├── 20160609aerophobia.txt │   │   │   │   ├── 20160609auross.txt │   │   │   │   ├── 20160609cheaper-s.txt │   │   │   │   ├── 20160609decisivemould.txt │   │   │   │   ├── 20160609emotions.txt │   │   │   │   ├── 20160609Eurasian-alloys-in-Alaska.txt │   │   │   │   ├── 20160609hyper.txt │   │   │   │   ├── 20160609i-never-asked-for-this.txt │   │   │   │   ├── 20160609Insure-your-driveless-car.txt │   │   │   │   ├── 20160609lapd-electro.txt │   │   │   │   ├── 20160609pictures-on-cigarettes.txt │   │   │   │   ├── 20160609robattle.txt │   │   │   │   ├── 20160609robowin.txt │   │   │   │   ├── 20160609see.txt │   │   │   │   ├── 20160609space-oddity.txt │   │   │   │   ├── 20160609tires.txt │   │   │   │   ├── 20160609tooksandbaggins.txt │   │   │   │   ├── 20160609water-hot-jupiters.txt │   │   │   │   ├── 20160610almost-modular.txt │   │   │   │   ├── 20160610be-be-be.txt │   │   │   │   ├── 20160610brain-activity.txt │   │   │   │   ├── 20160610ch47.txt │   │   │   │   ├── 20160610child-exoskeleton.txt │   │   │   │   ├── 20160610crime-odor.txt │   │   │   │   ├── 20160610driveless-tractor.txt │   │   │   │   ├── 20160610drones-found-petra.txt │   │   │   │   ├── 20160610get-it-stoned.txt │   │   │   │   ├── 20160610icebreaker.txt │   │   │   │   ├── 20160610industry.txt │   │   │   │   ├── 20160610lenovo.txt │   │   │   │   ├── 20160610martian-seasonal-dust-stormes.txt │   │   │   │   ├── 20160610moleculcontrol.txt │   │   │   │   ├── 20160610noicebreaker.txt │   │   │   │   ├── 20160610reboot.txt │   │   │   │   ├── 20160610tango.txt │   │   │   │   ├── 20160610tetroresist.txt │   │   │   │   ├── 20160610vaylon.txt │   │   │   │   ├── 20160610vyo.txt │   │   │   │   ├── 20160610yeah-skynet.txt │   │   │   │   ├── 20160611antikythera.txt │   │   │   │   ├── 20160611fb-video.txt │   │   │   │   ├── 20160611si2.txt │   │   │   │   ├── 20160611vaxchora.txt │   │   │   │   ├── 20160611VO-Substrata.txt │   │   │   │   ├── 20160613cambodia-hidden-cities.txt │   │   │   │   ├── 20160613earth-processes.txt │   │   │   │   ├── 20160613light-pollution-hides-milkyway.txt │   │   │   │   ├── 20160613pictures-increase-positive-feelings.txt │   │   │   │   ├── 20160614101hero.txt │   │   │   │   ├── 20160614ai-silent-videos.txt │   │   │   │   ├── 20160614akpp.txt │   │   │   │   ├── 20160614bramble-cay-melomys.txt │   │   │   │   ├── 20160614brown-dwarf-flash.txt │   │   │   │   ├── 20160614circumbinary.txt │   │   │   │   ├── 20160614dorsal-straddle.txt │   │   │   │   ├── 20160614engage.txt │   │   │   │   ├── 20160614Farmbot-is-coming.txt │   │   │   │   ├── 20160614iss-minion.txt │   │   │   │   ├── 20160614m3rig.txt │   │   │   │   ├── 20160614pegase.txt │   │   │   │   ├── 20160614pip-boy.txt │   │   │   │   ├── 20160614quasicrystal.txt │   │   │   │   ├── 20160614rememberface.txt │   │   │   │   ├── 20160614ship-to-shore.txt │   │   │   │   ├── 20160614sleep-and-memory.txt │   │   │   │   ├── 20160614spk-fix.txt │   │   │   │   ├── 20160614Sverris-saga-confirmation.txt │   │   │   │   ├── 20160614tattoo-machine-prosthesis.txt │   │   │   │   ├── 20160614Zea-Mounichia-harbours.txt │   │   │   │   ├── 20160615ares.txt │   │   │   │   ├── 20160615butter-old.txt │   │   │   │   ├── 20160615chirality-in-space.txt │   │   │   │   ├── 20160615data.txt │   │   │   │   ├── 20160615drain-it.txt │   │   │   │   ├── 20160615electro-davidson.txt │   │   │   │   ├── 20160615ligo-the-second.txt │   │   │   │   ├── 20160615lynx.txt │   │   │   │   ├── 20160615Marty-the-robot.txt │   │   │   │   ├── 20160615nasa-mars-exploration.txt │   │   │   │   ├── 20160615neural-network-vision.txt │   │   │   │   ├── 20160615opi-dose.txt │   │   │   │   ├── 20160615pituitarymice.txt │   │   │   │   ├── 20160615robots.txt │   │   │   │   ├── 20160615russian-telescopes.txt │   │   │   │   ├── 20160615serial.txt │   │   │   │   ├── 20160615speech.txt │   │   │   │   ├── 20160615whistling.txt │   │   │   │   ├── 20160616ChurCryptXenon.txt │   │   │   │   ├── 20160616coke-machine.txt │   │   │   │   ├── 20160616driverless.txt │   │   │   │   ├── 20160616exomars-sees-mars.txt │   │   │   │   ├── 20160616exoplanets-atmosphere.txt │   │   │   │   ├── 20160616gimmemore.txt │   │   │   │   ├── 20160616icebreaker.txt │   │   │   │   ├── 20160616myoferment.txt │   │   │   │   ├── 20160616new-earths-satellite.txt │   │   │   │   ├── 20160616no-cac.txt │   │   │   │   ├── 20160616pegda-pmmo.txt │   │   │   │   ├── 20160616psy-ops.txt │   │   │   │   ├── 20160616quantum-communication.txt │   │   │   │   ├── 20160616roscosmos-price.txt │   │   │   │   ├── 20160616snca.txt │   │   │   │   ├── 20160617barefeet-rule.txt │   │   │   │   ├── 20160617Betty-robot-office-manager.txt │   │   │   │   ├── 20160617blast.txt │   │   │   │   ├── 20160617btr.txt │   │   │   │   ├── 20160617crisprotocol.txt │   │   │   │   ├── 20160617fuel-save.txt │   │   │   │   ├── 20160617hack-a-drone.txt │   │   │   │   ├── 20160617long-live-nad.txt │   │   │   │   ├── 20160617night.txt │   │   │   │   ├── 20160617oxygen-in-a-far-far-away-galaxy.txt │   │   │   │   ├── 20160617red-eyed-sprinters.txt │   │   │   │   ├── 20160617single-molecule.txt │   │   │   │   ├── 20160617special-algorythm.txt │   │   │   │   ├── 20160617welcome-back.txt │   │   │   │   ├── 20160618aesa.txt │   │   │   │   ├── 20160618cockpit.txt │   │   │   │   ├── 20160618cyber.txt │   │   │   │   ├── 20160618gearbox.txt │   │   │   │   ├── 20160618hack.txt │   │   │   │   ├── 20160618navi.txt │   │   │   │   ├── 20160618thrust-reversers.txt │   │   │   │   ├── 20160618uavs.txt │   │   │   │   ├── 20160618weather.txt │   │   │   │   ├── 20160618xmv3.txt │   │   │   │   ├── 20160620ai-ant-soccer.txt │   │   │   │   ├── 20160620Amazon-Kiva.txt │   │   │   │   ├── 20160620blue-origin-fourth-launch.txt │   │   │   │   ├── 20160620cesium-16-atoms.txt │   │   │   │   ├── 20160620contact-ci.txt │   │   │   │   ├── 20160620deap.txt │   │   │   │   ├── 20160620dynomammals.txt │   │   │   │   ├── 20160620first-law.txt │   │   │   │   ├── 20160620memory-boost.txt │   │   │   │   ├── 20160620nasa-hybrid.txt │   │   │   │   ├── 20160620plastic-to-the-fuel.txt │   │   │   │   ├── 20160620sateng.txt │   │   │   │   ├── 20160620si2.txt │   │   │   │   ├── 20160620twitter-links.txt │   │   │   │   ├── 20160620Vikings-gold-treasure.txt │   │   │   │   ├── 20160620vr-motion-sickness.txt │   │   │   │   ├── 20160621airobotics.txt │   │   │   │   ├── 20160621boiler-drones.txt │   │   │   │   ├── 20160621browser-wars.txt │   │   │   │   ├── 20160621bulava.txt │   │   │   │   ├── 20160621cones2rods.txt │   │   │   │   ├── 20160621educoma.txt │   │   │   │   ├── 20160621electroshock-o.txt │   │   │   │   ├── 20160621fighter.txt │   │   │   │   ├── 20160621go-crispr.txt │   │   │   │   ├── 20160621hurry-up-and-give-money.txt │   │   │   │   ├── 20160621m346.txt │   │   │   │   ├── 20160621missile.txt │   │   │   │   ├── 20160621open-rotor.txt │   │   │   │   ├── 20160621pollution-deep-oceans.txt │   │   │   │   ├── 20160621reading-and-implanting-thoughts.txt │   │   │   │   ├── 20160621reverse-time.txt │   │   │   │   ├── 20160621thalidomide.txt │   │   │   │   ├── 20160621youngest-exoplanet.txt │   │   │   │   ├── 20160621zika-vacc.txt │   │   │   │   ├── 20160622anti-scalping-bill.txt │   │   │   │   ├── 20160622champ-hunter.txt │   │   │   │   ├── 20160622Creative-Cloud-update.txt │   │   │   │   ├── 20160622deadgenes.txt │   │   │   │   ├── 20160622enceladus-ocean.txt │   │   │   │   ├── 20160622e-person.txt │   │   │   │   ├── 20160622hug-predictor.txt │   │   │   │   ├── 20160622human-shield.txt │   │   │   │   ├── 20160622medium-compact.txt │   │   │   │   ├── 20160622missile.txt │   │   │   │   ├── 20160622nihao.txt │   │   │   │   ├── 20160622nimb.txt │   │   │   │   ├── 20160622Oxytocin-bonds-and-divides.txt │   │   │   │   ├── 20160622pluto.txt │   │   │   │   ├── 20160622rarok.txt │   │   │   │   ├── 20160622safe-sex-attractive-women.txt │   │   │   │   ├── 20160622urban-tits.txt │   │   │   │   ├── 20160622venus-electric-winds.txt │   │   │   │   ├── 20160623ai-safety.txt │   │   │   │   ├── 20160623apss.txt │   │   │   │   ├── 20160623babybrainhypoxy.txt │   │   │   │   ├── 20160623blindness.txt │   │   │   │   ├── 20160623browser-wars-opera-strikes-back.txt │   │   │   │   ├── 20160623Chuck-Taylor-All-Wah.txt │   │   │   │   ├── 20160623dance-moves.txt │   │   │   │   ├── 20160623deep-learning-for-vr.txt │   │   │   │   ├── 20160623dicty-race.txt │   │   │   │   ├── 20160623engine.txt │   │   │   │   ├── 20160623mars-mineral.txt │   │   │   │   ├── 20160623new-word.txt │   │   │   │   ├── 20160623perfume-67P.txt │   │   │   │   ├── 20160623quantum-computer.txt │   │   │   │   ├── 20160623record.txt │   │   │   │   ├── 20160623si2-seville.txt │   │   │   │   ├── 20160623SMBH.txt │   │   │   │   ├── 20160623storm.txt │   │   │   │   ├── 20160623terrafugia.txt │   │   │   │   ├── 20160623turn-em-off.txt │   │   │   │   ├── 20160624Arbe-Robotics-system.txt │   │   │   │   ├── 20160624faint-sun-paradox-solution.txt │   │   │   │   ├── 20160624fighters.txt │   │   │   │   ├── 20160624full-load.txt │   │   │   │   ├── 20160624Mi-QiCYCLE.txt │   │   │   │   ├── 20160624neptune.txt │   │   │   │   ├── 20160624NIST4.txt │   │   │   │   ├── 20160624no-gmo.txt │   │   │   │   ├── 20160624nomemento.txt │   │   │   │   ├── 20160624nuff-said.txt │   │   │   │   ├── 20160624pelevin-was-right.txt │   │   │   │   ├── 20160624polyelemental-nanoparticles.txt │   │   │   │   ├── 20160624Project-discovery-live.txt │   │   │   │   ├── 20160624rbw.txt │   │   │   │   ├── 20160624social-dilemma-av.txt │   │   │   │   ├── 20160624Solar-Roadways-2.txt │   │   │   │   ├── 20160624spotmini.txt │   │   │   │   ├── 20160624stem-neoplasma.txt │   │   │   │   ├── 20160624triton.txt │   │   │   │   ├── 20160625juno-start-making-photos.txt │   │   │   │   ├── 20160625pentafoil-knot.txt │   │   │   │   ├── 20160625post-K.txt │   │   │   │   ├── 20160625robofootball.txt │   │   │   │   ├── 20160627Canaanites-imported-animals.txt │   │   │   │   ├── 20160627china-orbital.txt │   │   │   │   ├── 20160627cozmo.txt │   │   │   │   ├── 20160627cps-6.txt │   │   │   │   ├── 20160627debriscamo.txt │   │   │   │   ├── 20160627drone-9.txt │   │   │   │   ├── 20160627fire-in-the-hole.txt │   │   │   │   ├── 20160627googlephone.txt │   │   │   │   ├── 20160627juno-pictures.txt │   │   │   │   ├── 20160627LHC-luminosity.txt │   │   │   │   ├── 20160627lucky-pupils.txt │   │   │   │   ├── 20160627machines-are-okay-without-us.txt │   │   │   │   ├── 20160627metalens-chirality.txt │   │   │   │   ├── 20160627million-face-database.txt │   │   │   │   ├── 20160627Phanagoria-temple.txt │   │   │   │   ├── 20160627resistance-genes.txt │   │   │   │   ├── 20160627s-cataracta.txt │   │   │   │   ├── 20160627SgrA-size.txt │   │   │   │   ├── 20160627skeletons-in-Pompeii-shop.txt │   │   │   │   ├── 201606283d-cartilage.txt │   │   │   │   ├── 201606283DNESWindows.txt │   │   │   │   ├── 20160628blocks.txt │   │   │   │   ├── 20160628Goffineconomic.txt │   │   │   │   ├── 20160628google-maps-high-res.txt │   │   │   │   ├── 20160628helium.txt │   │   │   │   ├── 20160628intelligence-placebo.txt │   │   │   │   ├── 20160628neuro-grob.txt │   │   │   │   ├── 20160628play-cards.txt │   │   │   │   ├── 20160628Robotic-diagnostic-glove.txt │   │   │   │   ├── 20160628rosetta-shadow.txt │   │   │   │   ├── 20160628sign-language.txt │   │   │   │   ├── 20160628sls-booster.txt │   │   │   │   ├── 20160628smbh-merge.txt │   │   │   │   ├── 20160628space.txt │   │   │   │   ├── 20160628spleenfiltermod.txt │   │   │   │   ├── 20160628three-lens-camera.txt │   │   │   │   ├── 20160629Daisy-Bell.txt │   │   │   │   ├── 20160629feathers-in-amber.txt │   │   │   │   ├── 20160629Great-white-napping.txt │   │   │   │   ├── 20160629looks-like-wi-fi.txt │   │   │   │   ├── 20160629MDIQKD.txt │   │   │   │   ├── 20160629no-musk-way.txt │   │   │   │   ├── 20160629Old-school-pub.txt │   │   │   │   ├── 20160629sandwich-cycle.txt │   │   │   │   ├── 20160629springbuds.txt │   │   │   │   ├── 20160629tango-everywhere.txt │   │   │   │   ├── 20160629Ultra-Deep-Survey.txt │   │   │   │   ├── 20160629you-know-nothing.txt │   │   │   │   ├── 20160630AI-exoplanets.txt │   │   │   │   ├── 20160630another-salt.txt │   │   │   │   ├── 20160630antianti.txt │   │   │   │   ├── 20160630bagel.txt │   │   │   │   ├── 20160630brainprints.txt │   │   │   │   ├── 20160630FASTER-come-online.txt │   │   │   │   ├── 20160630Gateway-to-Pan.txt │   │   │   │   ├── 20160630HC2superconductorrotation.txt │   │   │   │   ├── 20160630jupiter-aurora.txt │   │   │   │   ├── 20160630mercury-surface.txt │   │   │   │   ├── 20160630Ponar-escape-tunnel.txt │   │   │   │   ├── 20160630power-of-the-power.txt │   │   │   │   ├── 20160630prehistoric-tombs.txt │   │   │   │   ├── 20160630ron-don-don.txt │   │   │   │   ├── 20160630rosetta-grand-finale.txt │   │   │   │   ├── 20160630stiction.txt │   │   │   │   ├── 20160701attention-of-robots.txt │   │   │   │   ├── 20160701dat-name.txt │   │   │   │   ├── 20160701Death-house-of-vikings.txt │   │   │   │   ├── 20160701earth-center.txt │   │   │   │   ├── 20160701great-frigate.txt │   │   │   │   ├── 20160701hepresclean.txt │   │   │   │   ├── 20160701jupiter-part.txt │   │   │   │   ├── 20160701ozon-hole.txt │   │   │   │   ├── 20160701Pemphigusvulgaris.txt │   │   │   │   ├── 20160701remake-stories.txt │   │   │   │   ├── 20160701tesla.txt │   │   │   │   ├── 20160701vr-mode.txt │   │   │   │   ├── 20160702bmw-driveless.txt │   │   │   │   ├── 20160702jupiter-song.txt │   │   │   │   ├── 20160702martian-dunes.txt │   │   │   │   ├── 20160702new-horizons-new-target.txt │   │   │   │   ├── 20160702pneuhound.txt │   │   │   │   ├── 20160702trainer-drone.txt │   │   │   │   ├── 20160702you-stay.txt │   │   │   │   ├── 20160704fast-telescope.txt │   │   │   │   ├── 20160704gabacter.txt │   │   │   │   ├── 20160704grin-without-a-cat.txt │   │   │   │   ├── 20160704i-can-do-better.txt │   │   │   │   ├── 20160704june-sky.txt │   │   │   │   ├── 20160704micro-pac-man.txt │   │   │   │   ├── 20160704Smog-free-tower.txt │   │   │   │   ├── 20160704toyota.txt │   │   │   │   ├── 20160704uzi-bell.txt │   │   │   │   ├── 20160704well-adjusted.txt │   │   │   │   ├── 20160705angrywasps.txt │   │   │   │   ├── 20160705bloodhound-ssc.txt │   │   │   │   ├── 20160705delta.txt │   │   │   │   ├── 20160705dji-flyability.txt │   │   │   │   ├── 20160705false-fmri.txt │   │   │   │   ├── 20160705higgs-pizza.txt │   │   │   │   ├── 20160705juno-finally.txt │   │   │   │   ├── 20160705juno-maneur-end.txt │   │   │   │   ├── 20160705Juno-maneur.txt │   │   │   │   ├── 20160705juno-photos.txt │   │   │   │   ├── 20160705mars.txt │   │   │   │   ├── 20160705monarchboost.txt │   │   │   │   ├── 20160705pasta-ok.txt │   │   │   │   ├── 20160705reward-immunity.txt │   │   │   │   ├── 20160705rnanovaccines.txt │   │   │   │   ├── 20160705spector.txt │   │   │   │   ├── 20160706amazon-picking-challenge.txt │   │   │   │   ├── 20160706DJI-GEO-update.txt │   │   │   │   ├── 20160706goatfriends.txt │   │   │   │   ├── 20160706hayward-fault.txt │   │   │   │   ├── 20160706ideal-rope.txt │   │   │   │   ├── 20160706lietome.txt │   │   │   │   ├── 20160706life-on-Titan.txt │   │   │   │   ├── 20160706pan-saturn.txt │   │   │   │   ├── 20160706pokemon-go-plus.txt │   │   │   │   ├── 20160706pupils.txt │   │   │   │   ├── 20160706robot-hunter.txt │   │   │   │   ├── 20160706supernova.txt │   │   │   │   ├── 20160706too-smart-watch.txt │   │   │   │   ├── 20160707200-mb-dna.txt │   │   │   │   ├── 20160707antares-ice-cube-neutrino-search.txt │   │   │   │   ├── 20160707deal-with-it.txt │   │   │   │   ├── 20160707Godspots.txt │   │   │   │   ├── 20160707Hitomi-last.txt │   │   │   │   ├── 20160707human-eye-contact.txt │   │   │   │   ├── 20160707Huqoq-mosaics.txt │   │   │   │   ├── 20160707kidults.txt │   │   │   │   ├── 20160707med-mj.txt │   │   │   │   ├── 20160707rapidmutation.txt │   │   │   │   ├── 20160707removable-ufs.txt │   │   │   │   ├── 20160707soyuz-ms.txt │   │   │   │   ├── 20160707supermassive-black-holes.txt │   │   │   │   ├── 20160707the-flopotron.txt │   │   │   │   ├── 20160707time-leap.txt │   │   │   │   ├── 20160708absorb-gt1.txt │   │   │   │   ├── 20160708apollo-github.txt │   │   │   │   ├── 20160708Cannibalism-and-bones-as-tools.txt │   │   │   │   ├── 20160708cart-hold.txt │   │   │   │   ├── 20160708DeNA.txt │   │   │   │   ├── 20160708Eurocontrol-gaming-system.txt │   │   │   │   ├── 20160708Ferret-Last-Hope.txt │   │   │   │   ├── 20160708gossip-chat.txt │   │   │   │   ├── 20160708hubble-crab.txt │   │   │   │   ├── 20160708metarhizium.txt │   │   │   │   ├── 20160708plot-curve.txt │   │   │   │   ├── 20160708quantum-paranoia.txt │   │   │   │   ├── 20160708rayrat.txt │   │   │   │   ├── 20160708spin-dependence.txt │   │   │   │   ├── 20160708three-suns-planet.txt │   │   │   │   ├── 20160709amr-mummy.txt │   │   │   │   ├── 20160709d-place.txt │   │   │   │   ├── 20160709fb-allowed.txt │   │   │   │   ├── 20160709soyuz-mks.txt │   │   │   │   ├── 20160709viral-hepatitis.txt │   │   │   │   ├── 20160711aircarrier.txt │   │   │   │   ├── 20160711Ashkelon-philistine-cemetry.txt │   │   │   │   ├── 20160711bacterotors.txt │   │   │   │   ├── 20160711engines.txt │   │   │   │   ├── 20160711ferroelectric.txt │   │   │   │   ├── 20160711galaxy-quench.txt │   │   │   │   ├── 20160711graphene.txt │   │   │   │   ├── 20160711hcmi.txt │   │   │   │   ├── 20160711lcm-seq.txt │   │   │   │   ├── 20160711LUKE-arm.txt │   │   │   │   ├── 20160711nail-biting.txt │   │   │   │   ├── 20160711radars.txt │   │   │   │   ├── 20160711russian-exoplanet.txt │   │   │   │   ├── 20160711sea-trials.txt │   │   │   │   ├── 20160711si2-circumnavigatory.txt │   │   │   │   ├── 20160711train.txt │   │   │   │   ├── 20160711water-on-ceres.txt │   │   │   │   ├── 20160712camera-nasa-bombs.txt │   │   │   │   ├── 20160712family.txt │   │   │   │   ├── 20160712flight.txt │   │   │   │   ├── 20160712fulmar.txt │   │   │   │   ├── 20160712healing-nat.txt │   │   │   │   ├── 20160712ngr.txt │   │   │   │   ├── 20160712overridden-uncertainty.txt │   │   │   │   ├── 20160712rr245.txt │   │   │   │   ├── 20160712sengs.txt │   │   │   │   ├── 20160712stall.txt │   │   │   │   ├── 20160712three-stream.txt │   │   │   │   ├── 20160712time-reversal.txt │   │   │   │   ├── 20160712transport.txt │   │   │   │   ├── 20160712vision-restored.txt │   │   │   │   ├── 20160713armor.txt │   │   │   │   ├── 20160713aurora.txt │   │   │   │   ├── 20160713cinnamon.txt │   │   │   │   ├── 20160713durus.txt │   │   │   │   ├── 20160713hamsters-masterpieces.txt │   │   │   │   ├── 20160713HF-endofullerene.txt │   │   │   │   ├── 20160713it-has-began.txt │   │   │   │   ├── 20160713juno-orbit-shots.txt │   │   │   │   ├── 20160713knuckleballs.txt │   │   │   │   ├── 20160713lay-down.txt │   │   │   │   ├── 20160713pedal-powered-robot.txt │   │   │   │   ├── 20160713polarotateye.txt │   │   │   │   ├── 20160713robots.txt │   │   │   │   ├── 20160713si2-cairo.txt │   │   │   │   ├── 20160713starry-night.txt │   │   │   │   ├── 20160713sub.txt │   │   │   │   ├── 20160713t100.txt │   │   │   │   ├── 20160713Telipogondiabolicus.txt │   │   │   │   ├── 20160713video.txt │   │   │   │   ├── 20160714bad-musical-taste-why.txt │   │   │   │   ├── 20160714capuchins.txt │   │   │   │   ├── 20160714davids.txt │   │   │   │   ├── 20160714Glazkov-culture-people.txt │   │   │   │   ├── 20160714ifn-gamma.txt │   │   │   │   ├── 20160714missiles.txt │   │   │   │   ├── 20160714neanderpoor.txt │   │   │   │   ├── 20160714nintendo-aww.txt │   │   │   │   ├── 20160714obesity-kills.txt │   │   │   │   ├── 20160714oseltamivir.txt │   │   │   │   ├── 20160714Rembrandt-used-optics.txt │   │   │   │   ├── 20160714Simply-BUM.txt │   │   │   │   ├── 20160714suzumori.txt │   │   │   │   ├── 20160714video.txt │   │   │   │   ├── 20160714water-snowline.txt │   │   │   │   ├── 20160715assist.txt │   │   │   │   ├── 20160715coarse.txt │   │   │   │   ├── 20160715fishjoints.txt │   │   │   │   ├── 20160715galaxy-map.txt │   │   │   │   ├── 20160715GRB160625B.txt │   │   │   │   ├── 20160715instalikes.txt │   │   │   │   ├── 20160715intense-joy-pain.txt │   │   │   │   ├── 20160715Massive-shipwreck-Fourni.txt │   │   │   │   ├── 20160715matryoshka.txt │   │   │   │   ├── 20160715oxygen.txt │   │   │   │   ├── 20160715russian-map.txt │   │   │   │   ├── 20160715swag-bag.txt │   │   │   │   ├── 20160715video-simulates-landing.txt │   │   │   │   ├── 20160715watch.txt │   │   │   │   ├── 20160715wing.txt │   │   │   │   ├── 20160715zelator2.txt │   │   │   │   ├── 20160715zelator.txt │   │   │   │   ├── 20160716aurora-is-back.txt │   │   │   │   ├── 20160716ducklings-thinking.txt │   │   │   │   ├── 20160716gamma-ray-burst-1409.txt │   │   │   │   ├── 20160716martian-rover-2020.txt │   │   │   │   ├── 20160716solar-aileron-roll.txt │   │   │   │   ├── 201607183D-system.txt │   │   │   │   ├── 20160718airbus.txt │   │   │   │   ├── 20160718engine.txt │   │   │   │   ├── 20160718intercept.txt │   │   │   │   ├── 20160718invisibility-cloak.txt │   │   │   │   ├── 20160718jamming.txt │   │   │   │   ├── 20160718musk-four.txt │   │   │   │   ├── 20160718one-bit-one-atom.txt │   │   │   │   ├── 20160718pics-radio-telescope.txt │   │   │   │   ├── 20160718quantum-complication.txt │   │   │   │   ├── 20160718shells4dig.txt │   │   │   │   ├── 20160718spacex-first-reuse.txt │   │   │   │   ├── 20160718trials.txt │   │   │   │   ├── 20160718zy.txt │   │   │   │   ├── 20160719Black-boxes-self-driving-cars.txt │   │   │   │   ├── 20160719bus.txt │   │   │   │   ├── 20160719Crawling-biohybrid-robot.txt │   │   │   │   ├── 20160719hungermantis.txt │   │   │   │   ├── 20160719inkunzi.txt │   │   │   │   ├── 20160719kc46a.txt │   │   │   │   ├── 20160719Kepler.txt │   │   │   │   ├── 20160719manyfold.txt │   │   │   │   ├── 20160719neutrino-violation.txt │   │   │   │   ├── 20160719Sexualizaton-of-Female-Video-Game-Characters.txt │   │   │   │   ├── 20160719superbase.txt │   │   │   │   ├── 20160719Thermo-the-thermometr.txt │   │   │   │   ├── 20160719venus-surface-influence.txt │   │   │   │   ├── 20160719voice.txt │   │   │   │   ├── 20160719wisdom-tree-game.txt │   │   │   │   ├── 20160720bill.txt │   │   │   │   ├── 20160720engine.txt │   │   │   │   ├── 20160720mine-clearing.txt │   │   │   │   ├── 20160720pay.txt │   │   │   │   ├── 20160720penguin-leg.txt │   │   │   │   ├── 20160720prisma-android.txt │   │   │   │   ├── 20160720quantum-neural-networks.txt │   │   │   │   ├── 20160720san-andreas.txt │   │   │   │   ├── 20160720sherman.txt │   │   │   │   ├── 20160720singlesight.txt │   │   │   │   ├── 20160720sonar.txt │   │   │   │   ├── 20160720systems.txt │   │   │   │   ├── 20160720thread.txt │   │   │   │   ├── 20160720two-super-earths.txt │   │   │   │   ├── 20160720wb-photo.txt │   │   │   │   ├── 20160721ballistic.txt │   │   │   │   ├── 20160721exomars-quasar.txt │   │   │   │   ├── 20160721explosion.txt │   │   │   │   ├── 20160721hubble-atmosphere-exoplanet.txt │   │   │   │   ├── 20160721lider.txt │   │   │   │   ├── 20160721Master-plan-part-two.txt │   │   │   │   ├── 20160721megaraptor.txt │   │   │   │   ├── 20160721mikron.txt │   │   │   │   ├── 20160721multicore.txt │   │   │   │   ├── 20160721Obi-the-robot.txt │   │   │   │   ├── 20160721phone.txt │   │   │   │   ├── 20160721pokemon-go-benefits.txt │   │   │   │   ├── 20160721protoplanet-formed-lunar-crator.txt │   │   │   │   ├── 20160721scorpion.txt │   │   │   │   ├── 20160721Teal.txt │   │   │   │   ├── 20160721VHS-goodbye.txt │   │   │   │   ├── 201607223D-prints-will-help.txt │   │   │   │   ├── 20160722aircarrier.txt │   │   │   │   ├── 20160722Amazon-docking-station.txt │   │   │   │   ├── 20160722aquila.txt │   │   │   │   ├── 20160722e-coli-compute.txt │   │   │   │   ├── 20160722game.txt │   │   │   │   ├── 20160722go-crispr.txt │   │   │   │   ├── 20160722hominiguts.txt │   │   │   │   ├── 20160722hybrid.txt │   │   │   │   ├── 20160722meet-graham.txt │   │   │   │   ├── 20160722not-more.txt │   │   │   │   ├── 20160722pressure.txt │   │   │   │   ├── 20160722scramjet.txt │   │   │   │   ├── 20160722Silver-denarius-in-Empuries.txt │   │   │   │   ├── 20160722submarines.txt │   │   │   │   ├── 20160722superbook.txt │   │   │   │   ├── 20160723drones.txt │   │   │   │   ├── 20160723drone.txt │   │   │   │   ├── 20160723engine.txt │   │   │   │   ├── 20160723groot.txt │   │   │   │   ├── 20160723howitzer.txt │   │   │   │   ├── 20160723Leonardo-studies-of-Friction.txt │   │   │   │   ├── 20160723uavs.txt │   │   │   │   ├── 20160723warfare.txt │   │   │   │   ├── 20160725active.txt │   │   │   │   ├── 20160725adversarial.txt │   │   │   │   ├── 20160725dreadds.txt │   │   │   │   ├── 20160725ev-vesta.txt │   │   │   │   ├── 20160725Indicator-indicator-collaborates-human.txt │   │   │   │   ├── 20160725lider.txt │   │   │   │   ├── 20160725microbots.txt │   │   │   │   ├── 20160725picosecond.txt │   │   │   │   ├── 20160725plane.txt │   │   │   │   ├── 20160725poop-sticks.txt │   │   │   │   ├── 20160725prisma-for-everyone.txt │   │   │   │   ├── 20160725sphenopus-exilis.txt │   │   │   │   ├── 20160725two-atoms-one-photon.txt │   │   │   │   ├── 20160726Amazon-tests-drones-delivery-UK.txt │   │   │   │   ├── 20160726Ancient-rope-making.txt │   │   │   │   ├── 20160726bbyby.txt │   │   │   │   ├── 20160726birds-better-than-sattelite.txt │   │   │   │   ├── 20160726cards.txt │   │   │   │   ├── 20160726cheap.txt │   │   │   │   ├── 20160726Egypt-statue-in-Tel-Hazor.txt │   │   │   │   ├── 20160726europe-zika.txt │   │   │   │   ├── 20160726finally.txt │   │   │   │   ├── 20160726halflifeluca.txt │   │   │   │   ├── 20160726magazine.txt │   │   │   │   ├── 20160726marks.txt │   │   │   │   ├── 20160726museum.txt │   │   │   │   ├── 20160726ovo-ex-vitro.txt │   │   │   │   ├── 20160726russia-medals.txt │   │   │   │   ├── 20160726scholar.txt │   │   │   │   ├── 20160726spider-web.txt │   │   │   │   ├── 20160726start-the-fire.txt │   │   │   │   ├── 20160726vr-robot.txt │   │   │   │   ├── 20160727100-years-of-growth.txt │   │   │   │   ├── 20160727actuv.txt │   │   │   │   ├── 20160727Aerochromics-shirts.txt │   │   │   │   ├── 20160727cockpit.txt │   │   │   │   ├── 20160727cowarobot-r1.txt │   │   │   │   ├── 20160727crater-wiping-away.txt │   │   │   │   ├── 20160727fluffy-star-motion.txt │   │   │   │   ├── 20160727gasotransmitters.txt │   │   │   │   ├── 20160727ice-is-ok.txt │   │   │   │   ├── 20160727marksman.txt │   │   │   │   ├── 20160727matrix.txt │   │   │   │   ├── 20160727med-nepotism.txt │   │   │   │   ├── 20160727QSL.txt │   │   │   │   ├── 20160727rosetta-to-philae-stop.txt │   │   │   │   ├── 20160727sippc.txt │   │   │   │   ├── 20160727spider.txt │   │   │   │   ├── 20160727they-see-me-crawling.txt │   │   │   │   ├── 20160727veeso.txt │   │   │   │   ├── 20160728aircarrier.txt │   │   │   │   ├── 20160728attractionbyrepulsion.txt │   │   │   │   ├── 20160728double-red-and-white.txt │   │   │   │   ├── 20160728Drogon-Viserion.txt │   │   │   │   ├── 20160728gen.txt │   │   │   │   ├── 20160728just-one-hour.txt │   │   │   │   ├── 20160728lmtx.txt │   │   │   │   ├── 20160728lugdunin.txt │   │   │   │   ├── 20160728mytoshares.txt │   │   │   │   ├── 20160728protector.txt │   │   │   │   ├── 20160728sun-dynamo.txt │   │   │   │   ├── 20160728system.txt │   │   │   │   ├── 20160728truck.txt │   │   │   │   ├── 20160728vk-prisma.txt │   │   │   │   ├── 20160728wifi.txt │   │   │   │   ├── 20160729algorithm.txt │   │   │   │   ├── 20160729ar-qr.txt │   │   │   │   ├── 20160729burn.txt │   │   │   │   ├── 20160729color-holography.txt │   │   │   │   ├── 20160729dopasmoke.txt │   │   │   │   ├── 20160729go-pub.txt │   │   │   │   ├── 20160729ipatrol.txt │   │   │   │   ├── 20160729Krunan-shipwreck.txt │   │   │   │   ├── 20160729Smart-Tactile-Paving.txt │   │   │   │   ├── 20160729stay-here.txt │   │   │   │   ├── 20160729thats-it.txt │   │   │   │   ├── 20160729twisted-light.txt │   │   │   │   ├── 20160729Ultimaker-2Go.txt │   │   │   │   ├── 20160729wheeled-and-squishy.txt │   │   │   │   ├── 20160729x-ray-focus.txt │   │   │   │   ├── 20160730gullies-are-not-what-they-are.txt │   │   │   │   ├── 20160730personal-battle-robot.txt │   │   │   │   ├── 20160730thermostat.txt │   │   │   │   ├── 20160730venus-flytrap.txt │   │   │   │   ├── 20160801apojove-juno.txt │   │   │   │   ├── 20160801bf.txt │   │   │   │   ├── 20160801bioreactor.txt │   │   │   │   ├── 20160801blacker-than-the-blackest-black-times-infinity.txt │   │   │   │   ├── 20160801blades.txt │   │   │   │   ├── 20160801capture-virus.txt │   │   │   │   ├── 20160801Chudov-monastery-excavations.txt │   │   │   │   ├── 20160801convert.txt │   │   │   │   ├── 20160801Delphi-tests-self-driving-car-Singapore.txt │   │   │   │   ├── 20160801galvani.txt │   │   │   │   ├── 20160801icho-2016.txt │   │   │   │   ├── 20160801jammer.txt │   │   │   │   ├── 20160801ovurgasm.txt │   │   │   │   ├── 20160801poop-fail.txt │   │   │   │   ├── 20160801rec.txt │   │   │   │   ├── 20160801Seabin-cleaning.txt │   │   │   │   ├── 2016080223-and-mdd.txt │   │   │   │   ├── 20160802aminoacid-transformation.txt │   │   │   │   ├── 20160802b61.txt │   │   │   │   ├── 20160802bonobofeminists.txt │   │   │   │   ├── 20160802eitan.txt │   │   │   │   ├── 20160802fake-floss.txt │   │   │   │   ├── 20160802no-youngsters.txt │   │   │   │   ├── 20160802osprey.txt │   │   │   │   ├── 20160802sn-1987A-radio.txt │   │   │   │   ├── 20160802target.txt │   │   │   │   ├── 20160802uav.txt │   │   │   │   ├── 20160802Virgin-Galactic-license.txt │   │   │   │   ├── 20160803activepokemon.txt │   │   │   │   ├── 20160803arthritosaur.txt │   │   │   │   ├── 20160803blood-drops.txt │   │   │   │   ├── 20160803comms.txt │   │   │   │   ├── 20160803CRONZY-pen.txt │   │   │   │   ├── 20160803io-atmosphere.txt │   │   │   │   ├── 20160803Jain-managed.txt │   │   │   │   ├── 20160803jeep.txt │   │   │   │   ├── 20160803lightning.txt │   │   │   │   ├── 20160803meat-vs-plant.txt │   │   │   │   ├── 20160803no-sex-for-millenials.txt │   │   │   │   ├── 20160803plasm-for-fee.txt │   │   │   │   ├── 20160803portal.txt │   │   │   │   ├── 20160803spider.txt │   │   │   │   ├── 20160803sqashplate.txt │   │   │   │   ├── 20160803Zipline-program-USA.txt │   │   │   │   ├── 201608042primehydroxy.txt │   │   │   │   ├── 20160804air.txt │   │   │   │   ├── 20160804birdsleep.txt │   │   │   │   ├── 20160804center.txt │   │   │   │   ├── 20160804ceres-map.txt │   │   │   │   ├── 20160804cut-then-conceive.txt │   │   │   │   ├── 20160804LHC-750-GeV.txt │   │   │   │   ├── 20160804Masaya-Wi-Fi.txt │   │   │   │   ├── 20160804video.txt │   │   │   │   ├── 20160804wax.txt │   │   │   │   ├── 20160805750-GeV.txt │   │   │   │   ├── 20160805emma.txt │   │   │   │   ├── 20160805fabric.txt │   │   │   │   ├── 20160805go-go.txt │   │   │   │   ├── 20160805Higgs-LHC-Run-2.txt │   │   │   │   ├── 20160805hover.txt │   │   │   │   ├── 20160805Mars-city-design.txt │   │   │   │   ├── 20160805mars-rover.txt │   │   │   │   ├── 20160805neurokad.txt │   │   │   │   ├── 20160805read-books.txt │   │   │   │   ├── 20160805scaner.txt │   │   │   │   ├── 20160805tattoo.txt │   │   │   │   ├── 20160805thirstyneuro.txt │   │   │   │   ├── 20160805us-chimeras.txt │   │   │   │   ├── 20160806brain-age.txt │   │   │   │   ├── 20160806filaments.txt │   │   │   │   ├── 20160806flee-engraving.txt │   │   │   │   ├── 20160806nya.txt │   │   │   │   ├── 20160806Phanagoria-Darius.txt │   │   │   │   ├── 20160806sunflower.txt │   │   │   │   ├── 20160808airlander10.txt │   │   │   │   ├── 20160808ancient-whales.txt │   │   │   │   ├── 20160808blood-to-electricity.txt │   │   │   │   ├── 20160808blue-tornado.txt │   │   │   │   ├── 20160808dvd-superfast.txt │   │   │   │   ├── 20160808first-smile.txt │   │   │   │   ├── 20160808food-and-social-identity.txt │   │   │   │   ├── 20160808Glassify.txt │   │   │   │   ├── 20160808Jishi-great-flood.txt │   │   │   │   ├── 20160808kepler-alive.txt │   │   │   │   ├── 20160808Modobag-welcome.txt │   │   │   │   ├── 20160808neurodust.txt │   │   │   │   ├── 20160808olfactobronchi.txt │   │   │   │   ├── 20160808parka-survival.txt │   │   │   │   ├── 20160808rgo-river.txt │   │   │   │   ├── 20160808Vantan-drones-course.txt │   │   │   │   ├── 20160809Ambling-horses-origin.txt │   │   │   │   ├── 20160809bacteria-and-supernova.txt │   │   │   │   ├── 20160809battery-dissolves.txt │   │   │   │   ├── 20160809bloody-tools.txt │   │   │   │   ├── 20160809faceless-recognition-system.txt │   │   │   │   ├── 20160809heart-grows.txt │   │   │   │   ├── 20160809jc-denton.txt │   │   │   │   ├── 20160809mercury-volcanoes.txt │   │   │   │   ├── 20160809money-back.txt │   │   │   │   ├── 20160809psychologists-make-disappear.txt │   │   │   │   ├── 20160809Royal-maya-tomb.txt │   │   │   │   ├── 20160809spacevr.txt │   │   │   │   ├── 20160809tabby-star.txt │   │   │   │   ├── 20160810archimedes-stop.txt │   │   │   │   ├── 20160810coffiest.txt │   │   │   │   ├── 20160810DNA-nano.txt │   │   │   │   ├── 20160810drop-freezing.txt │   │   │   │   ├── 20160810flying-ring.txt │   │   │   │   ├── 20160810good-teachers.txt │   │   │   │   ├── 20160810gorgeous-flame.txt │   │   │   │   ├── 20160810hammerside.txt │   │   │   │   ├── 20160810if-it-bleeds-we-can-kill-it.txt │   │   │   │   ├── 20160810long-trunk.txt │   │   │   │   ├── 20160810piltdown-hoax.txt │   │   │   │   ├── 20160810prospector1.txt │   │   │   │   ├── 20160810taser-ekg.txt │   │   │   │   ├── 20160810vr-social.txt │   │   │   │   ├── 20160811bello.txt │   │   │   │   ├── 20160811colonization.txt │   │   │   │   ├── 20160811drone-that-looks-like-a-face.txt │   │   │   │   ├── 20160811edges-orion.txt │   │   │   │   ├── 20160811elvencells.txt │   │   │   │   ├── 20160811Hala-Sultan-Tekke.txt │   │   │   │   ├── 20160811humpbacks.txt │   │   │   │   ├── 20160811martinostat.txt │   │   │   │   ├── 20160811neon-nickel.txt │   │   │   │   ├── 20160811retro-tno.txt │   │   │   │   ├── 20160811serbia-magic-spell.txt │   │   │   │   ├── 20160811titan-flooded-canyons.txt │   │   │   │   ├── 20160811yeah-science.txt │   │   │   │   ├── 20160812affectiveforecast.txt │   │   │   │   ├── 20160812avoid-germs.txt │   │   │   │   ├── 20160812CMV-control.txt │   │   │   │   ├── 20160812estream.txt │   │   │   │   ├── 20160812Mount-Lykaion-finding.txt │   │   │   │   ├── 20160812muonic-deutron.txt │   │   │   │   ├── 20160812not-so-bad.txt │   │   │   │   ├── 20160812Somniosus-microcephalus-.txt │   │   │   │   ├── 20160812touchpad.txt │   │   │   │   ├── 20160812venus-could-support-life.txt │   │   │   │   ├── 20160812zika-sperm.txt │   │   │   │   ├── 20160813ancient-mosaic-cyprus.txt │   │   │   │   ├── 20160813golden-leaf.txt │   │   │   │   ├── 20160813hubble-two-galaxies.txt │   │   │   │   ├── 20160813spy-hdd.txt │   │   │   │   ├── 20160813we-require-more-cameras.txt │   │   │   │   ├── 20160813Yet-another-sauropod.txt │   │   │   │   ├── 20160815200-spiders.txt │   │   │   │   ├── 20160815Borusci-Novgorod-trade.txt │   │   │   │   ├── 20160815C-Finder.txt │   │   │   │   ├── 20160815coral-bleeching.txt │   │   │   │   ├── 20160815eurocancer.txt │   │   │   │   ├── 20160815fuchsia.txt │   │   │   │   ├── 20160815imprinting.txt │   │   │   │   ├── 20160815kepler-spots.txt │   │   │   │   ├── 20160815levitation.txt │   │   │   │   ├── 20160815petmobile.txt │   │   │   │   ├── 20160815repair-protein.txt │   │   │   │   ├── 20160815slow-dance.txt │   │   │   │   ├── 20160816audi-green-light.txt │   │   │   │   ├── 20160816behave.txt │   │   │   │   ├── 20160816circavirus.txt │   │   │   │   ├── 20160816kids-found-the-ones-who-owe-them.txt │   │   │   │   ├── 20160816liquid-crack.txt │   │   │   │   ├── 20160816mc-1-lp.txt │   │   │   │   ├── 20160816omnicopter.txt │   │   │   │   ├── 20160816quantum-radiation-hawking.txt │   │   │   │   ├── 20160816quess.txt │   │   │   │   ├── 20160816renegade.txt │   │   │   │   ├── 20160816scientists-found-first-meteorite.txt │   │   │   │   ├── 20160816wooden-stohedge.txt │   │   │   │   ├── 20160817adult-words.txt │   │   │   │   ├── 20160817alloy.txt │   │   │   │   ├── 20160817carbontreerings.txt │   │   │   │   ├── 20160817ford.txt │   │   │   │   ├── 20160817hd-87646.txt │   │   │   │   ├── 20160817hololens-nes.txt │   │   │   │   ├── 20160817kernel.txt │   │   │   │   ├── 20160817majorana.txt │   │   │   │   ├── 20160817nasa-july.txt │   │   │   │   ├── 20160817nine-open-clusters.txt │   │   │   │   ├── 20160817not-so-gold.txt │   │   │   │   ├── 20160817reddit-ai.txt │   │   │   │   ├── 20160818Ama-XpertEye.txt │   │   │   │   ├── 20160818dont-do-it.txt │   │   │   │   ├── 20160818drone-taxi.txt │   │   │   │   ├── 20160818fins2fingers.txt │   │   │   │   ├── 20160818flight.txt │   │   │   │   ├── 20160818goat.txt │   │   │   │   ├── 20160818hooray.txt │   │   │   │   ├── 20160818instapression.txt │   │   │   │   ├── 20160818MoS2.txt │   │   │   │   ├── 20160818nova-v1213cen.txt │   │   │   │   ├── 20160818uber.txt │   │   │   │   ├── 20160819call-your-eggs.txt │   │   │   │   ├── 20160819Castor-foot.txt │   │   │   │   ├── 20160819chinese-supernova.txt │   │   │   │   ├── 20160819ez-finland.txt │   │   │   │   ├── 20160819ions-cooling.txt │   │   │   │   ├── 20160819lift.txt │   │   │   │   ├── 20160819nacreartificial.txt │   │   │   │   ├── 20160819otzi.txt │   │   │   │   ├── 20160819recodechurch.txt │   │   │   │   ├── 20160819Teotihuacan.txt │   │   │   │   ├── 20160819tough-mtb.txt │   │   │   │   ├── 20160820LHC-luminosity-110pc.txt │   │   │   │   ├── 20160820pentaquark.txt │   │   │   │   ├── 20160820t-rex-15-th.txt │   │   │   │   ├── 20160822aewc.txt │   │   │   │   ├── 20160822bavar.txt │   │   │   │   ├── 20160822carousel.txt │   │   │   │   ├── 20160822crisprmemo.txt │   │   │   │   ├── 20160822drones.txt │   │   │   │   ├── 20160822edible-pack.txt │   │   │   │   ├── 20160822fake-drugs.txt │   │   │   │   ├── 20160822Fort-Caroline.txt │   │   │   │   ├── 20160822minoga.txt │   │   │   │   ├── 20160822parkingene.txt │   │   │   │   ├── 20160822roskosmos.txt │   │   │   │   ├── 20160822rydberg-dimer.txt │   │   │   │   ├── 20160822Seldon-codex.txt │   │   │   │   ├── 20160822stellar-giant-birth.txt │   │   │   │   ├── 20160822tx.txt │   │   │   │   ├── 20160822wingtips.txt │   │   │   │   ├── 20160823andromeda.txt │   │   │   │   ├── 20160823bagpiper-lung.txt │   │   │   │   ├── 20160823bwb.txt │   │   │   │   ├── 20160823cooperation-in-chimpanze.txt │   │   │   │   ├── 20160823decon.txt │   │   │   │   ├── 20160823devbot.txt │   │   │   │   ├── 20160823fascinesprin.txt │   │   │   │   ├── 20160823laser.txt │   │   │   │   ├── 20160823medalphone.txt │   │   │   │   ├── 20160823Old-old-needle.txt │   │   │   │   ├── 20160823piton.txt │   │   │   │   ├── 20160823pubspace.txt │   │   │   │   ├── 20160823rnarnarna.txt │   │   │   │   ├── 20160823robot.txt │   │   │   │   ├── 20160823self-assembling-phone.txt │   │   │   │   ├── 20160823silence-will-fall.txt │   │   │   │   ├── 20160823swir.txt │   │   │   │   ├── 20160823trueairspeed.txt │   │   │   │   ├── 20160823windows.txt │   │   │   │   ├── 20160824carriages.txt │   │   │   │   ├── 20160824delphi-driveless.txt │   │   │   │   ├── 20160824dive.txt │   │   │   │   ├── 20160824fishing-on-java.txt │   │   │   │   ├── 20160824gender-houshold-chores.txt │   │   │   │   ├── 20160824icing.txt │   │   │   │   ├── 20160824lsd-word-retrieval.txt │   │   │   │   ├── 20160824microsporemegacell.txt │   │   │   │   ├── 20160824model-s-upgrade.txt │   │   │   │   ├── 20160824not700.txt │   │   │   │   ├── 20160824poweregg.txt │   │   │   │   ├── 20160824rapamycin.txt │   │   │   │   ├── 20160824trials.txt │   │   │   │   ├── 20160824Ursus-spelaeus-extinction-reason.txt │   │   │   │   ├── 20160824x32.txt │   │   │   │   ├── 20160825bps.txt │   │   │   │   ├── 20160825cell.txt │   │   │   │   ├── 20160825dexmo.txt │   │   │   │   ├── 20160825mars-is-red.txt │   │   │   │   ├── 20160825mhtk.txt │   │   │   │   ├── 20160825model400.txt │   │   │   │   ├── 20160825mother-languages.txt │   │   │   │   ├── 20160825NuTonomy-the-first.txt │   │   │   │   ├── 20160825safe.txt │   │   │   │   ├── 20160825soft-octopus.txt │   │   │   │   ├── 20160825solartohydrogen.txt │   │   │   │   ├── 20160825tbk1.txt │   │   │   │   ├── 20160825tre-dmn.txt │   │   │   │   ├── 20160826chembio.txt │   │   │   │   ├── 20160826chip.txt │   │   │   │   ├── 20160826eco-speed.txt │   │   │   │   ├── 20160826italian-publishing-house.txt │   │   │   │   ├── 20160826landslide-on-67p.txt │   │   │   │   ├── 20160826missile.txt │   │   │   │   ├── 20160826muss.txt │   │   │   │   ├── 20160826nospiders.txt │   │   │   │   ├── 20160826thought-controlled.txt │   │   │   │   ├── 20160826wheels.txt │   │   │   │   ├── 20160826zero-day-apple.txt │   │   │   │   ├── 20160827baidu.txt │   │   │   │   ├── 20160827bridge.txt │   │   │   │   ├── 20160827engine.txt │   │   │   │   ├── 20160827robot.txt │   │   │   │   ├── 20160827stratasys.txt │   │   │   │   ├── 20160827virtual.txt │   │   │   │   ├── 20160829Believe-in-meat.txt │   │   │   │   ├── 20160829chaotic-process-time-reversal.txt │   │   │   │   ├── 20160829chutes.txt │   │   │   │   ├── 20160829facebookgpu.txt │   │   │   │   ├── 20160829juno-1st-orbit.txt │   │   │   │   ├── 20160829pea.txt │   │   │   │   ├── 20160829rotor.txt │   │   │   │   ├── 20160829sperm-immunity.txt │   │   │   │   ├── 20160829Tridika.txt │   │   │   │   ├── 20160829tubes.txt │   │   │   │   ├── 20160829uav.txt │   │   │   │   ├── 20160829upbeat-music-influence.txt │   │   │   │   ├── 20160829vrheadset.txt │   │   │   │   ├── 201608304d-print.txt │   │   │   │   ├── 20160830animap.txt │   │   │   │   ├── 20160830blazar-i-choose-you.txt │   │   │   │   ├── 20160830cutter.txt │   │   │   │   ├── 20160830drug-lenses.txt │   │   │   │   ├── 20160830engine.txt │   │   │   │   ├── 20160830fall-out.txt │   │   │   │   ├── 20160830hawaii-experiment.txt │   │   │   │   ├── 20160830immerge.txt │   │   │   │   ├── 20160830Kiwi-diversification.txt │   │   │   │   ├── 20160830laser.txt │   │   │   │   ├── 20160830pull.txt │   │   │   │   ├── 20160830sao-ran-comment.txt │   │   │   │   ├── 20160830seti-project.txt │   │   │   │   ├── 20160830tiltrotor.txt │   │   │   │   ├── 20160830vr-control.txt │   │   │   │   ├── 20160831As3Si3.txt │   │   │   │   ├── 20160831brainmesh.txt │   │   │   │   ├── 20160831checks.txt │   │   │   │   ├── 20160831dogs-recognize-words.txt │   │   │   │   ├── 20160831drone.txt │   │   │   │   ├── 20160831mriya.txt │   │   │   │   ├── 20160831need-more-blood.txt │   │   │   │   ├── 20160831pvo.txt │   │   │   │   ├── 20160831sedna-second.txt │   │   │   │   ├── 20160831sentinel-hit.txt │   │   │   │   ├── 20160831ses-launch.txt │   │   │   │   ├── 20160831software.txt │   │   │   │   ├── 20160901aducanumab.txt │   │   │   │   ├── 20160901be-sure-to-wear-no-pedals-in-your-car.txt │   │   │   │   ├── 20160901bodytemp.txt │   │   │   │   ├── 20160901boeing.txt │   │   │   │   ├── 20160901dark-ages.txt │   │   │   │   ├── 20160901mriya2.txt │   │   │   │   ├── 20160901new-small-pterosaur.txt │   │   │   │   ├── 20160901plague-seq.txt │   │   │   │   ├── 20160901qf4.txt │   │   │   │   ├── 20160901radar.txt │   │   │   │   ├── 20160901space-afm.txt │   │   │   │   ├── 20160901spacex-explosion.txt │   │   │   │   ├── 20160901statistics.txt │   │   │   │   ├── 20160901stromatolites.txt │   │   │   │   ├── 20160902adaptive.txt │   │   │   │   ├── 20160902airlander.txt │   │   │   │   ├── 20160902ara-suspended.txt │   │   │   │   ├── 20160902baidu.txt │   │   │   │   ├── 20160902boeing.txt │   │   │   │   ├── 20160902ceres-volcanoes.txt │   │   │   │   ├── 20160902cooling-clothes.txt │   │   │   │   ├── 20160902cuttlefishcount.txt │   │   │   │   ├── 20160902Gambling-wolves.txt │   │   │   │   ├── 20160902robot-whip.txt │   │   │   │   ├── 20160902su33.txt │   │   │   │   ├── 20160902trash.txt │   │   │   │   ├── 20160902water-on-ceres-oxo.txt │   │   │   │   ├── 20160903december-will-show.txt │   │   │   │   ├── 20160903juno-new-jupiter-shots.txt │   │   │   │   ├── 20160903nanotube-domine.txt │   │   │   │   ├── 20160905ant-dystopia.txt │   │   │   │   ├── 20160905brem.txt │   │   │   │   ├── 20160905checks.txt │   │   │   │   ├── 20160905cuore.txt │   │   │   │   ├── 20160905HSBC-selfie.txt │   │   │   │   ├── 20160905new-taste.txt │   │   │   │   ├── 20160905philae-found.txt │   │   │   │   ├── 20160905prince-of-the-universe.txt │   │   │   │   ├── 20160905Rapid-evolution-of-devils.txt │   │   │   │   ├── 20160905segmentvirus.txt │   │   │   │   ├── 20160906BZ-PZ.txt │   │   │   │   ├── 20160906fathom-one.txt │   │   │   │   ├── 20160906InSight-go.txt │   │   │   │   ├── 20160906lemurs-hibernate-or-sleep.txt │   │   │   │   ├── 20160906magnetobrain.txt │   │   │   │   ├── 20160906roadmapping.txt │   │   │   │   ├── 20160906second-tabby.txt │   │   │   │   ├── 20160906shalebacrevo.txt │   │   │   │   ├── 20160906sion.txt │   │   │   │   ├── 20160907dji-maic.txt │   │   │   │   ├── 20160907double-trouble.txt │   │   │   │   ├── 20160907Endangered-vulnerable.txt │   │   │   │   ├── 20160907fusion-record.txt │   │   │   │   ├── 20160907HMS-Tarpon.txt │   │   │   │   ├── 20160907iphone7.txt │   │   │   │   ├── 20160907mapspatial.txt │   │   │   │   ├── 20160907nopainnogain.txt │   │   │   │   ├── 20160907squeeze.txt │   │   │   │   ├── 20160907vision-van.txt │   │   │   │   ├── 20160908crops.txt │   │   │   │   ├── 20160908damselfish-songs.txt │   │   │   │   ├── 20160908hairprints.txt │   │   │   │   ├── 20160908luh.txt │   │   │   │   ├── 20160908mothership.txt │   │   │   │   ├── 20160908notsonaturalselection.txt │   │   │   │   ├── 20160908osiris-rex.txt │   │   │   │   ├── 20160908safety.txt │   │   │   │   ├── 20160908solid-organic.txt │   │   │   │   ├── 20160908titan-cassini.txt │   │   │   │   ├── 20160908uavs.txt │   │   │   │   ├── 20160909blackwing.txt │   │   │   │   ├── 20160909bomber.txt │   │   │   │   ├── 20160909dark-matter.txt │   │   │   │   ├── 20160909decnef.txt │   │   │   │   ├── 20160909dna-stacking-measured.txt │   │   │   │   ├── 20160909drones.txt │   │   │   │   ├── 20160909fidget.txt │   │   │   │   ├── 20160909Henry-the-winner.txt │   │   │   │   ├── 20160909kupi-moyu-shavermu.txt │   │   │   │   ├── 20160909megapetridish.txt │   │   │   │   ├── 20160909obamai.txt │   │   │   │   ├── 20160909online-osiris.txt │   │   │   │   ├── 20160909osiris-start.txt │   │   │   │   ├── 20160910dronesurfing.txt │   │   │   │   ├── 20160910htc-wifive.txt │   │   │   │   ├── 20160910prodrone.txt │   │   │   │   ├── 20160910unity.txt │   │   │   │   ├── 20160912Balansing-Atlas.txt │   │   │   │   ├── 20160912iq-level.txt │   │   │   │   ├── 20160912nanofish.txt │   │   │   │   ├── 20160912protection.txt │   │   │   │   ├── 20160912radars.txt │   │   │   │   ├── 20160912radar.txt │   │   │   │   ├── 20160912sharksaw.txt │   │   │   │   ├── 20160912The-Ox.txt │   │   │   │   ├── 20160912uav.txt │   │   │   │   ├── 20160912Yeast-domestication.txt │   │   │   │   ├── 20160913afm-for-braf.txt │   │   │   │   ├── 20160913amazon-new-glenn.txt │   │   │   │   ├── 20160913Another-car-park-tomb.txt │   │   │   │   ├── 20160913blind.txt │   │   │   │   ├── 20160913closed.txt │   │   │   │   ├── 20160913HMS-Terror-found.txt │   │   │   │   ├── 20160913languages.txt │   │   │   │   ├── 20160913milky-way-simulation.txt │   │   │   │   ├── 20160913missile.txt │   │   │   │   ├── 20160913monkeytype.txt │   │   │   │   ├── 20160913motor.txt │   │   │   │   ├── 20160913robots.txt │   │   │   │   ├── 20160913tide-quake.txt │   │   │   │   ├── 20160913transform-it.txt │   │   │   │   ├── 20160913viralmuscle.txt │   │   │   │   ├── 20160914august-burns.txt │   │   │   │   ├── 20160914close-your-windows.txt │   │   │   │   ├── 20160914comma.txt │   │   │   │   ├── 20160914dronessar.txt │   │   │   │   ├── 20160914gcas.txt │   │   │   │   ├── 20160914google-ai-voice.txt │   │   │   │   ├── 20160914hinsc.txt │   │   │   │   ├── 20160914peeronimus.txt │   │   │   │   ├── 20160914stellar-evolution.txt │   │   │   │   ├── 20160914submunitions.txt │   │   │   │   ├── 20160914toothedbrain.txt │   │   │   │   ├── 20160914without.txt │   │   │   │   ├── 20160915autonomous.txt │   │   │   │   ├── 20160915build-em-up.txt │   │   │   │   ├── 20160915chewing-stingray.txt │   │   │   │   ├── 20160915colour-matters.txt │   │   │   │   ├── 20160915drones.txt │   │   │   │   ├── 20160915helicopter.txt │   │   │   │   ├── 20160915mordor-mystery.txt │   │   │   │   ├── 20160915Oldest-indigo-textile.txt │   │   │   │   ├── 20160915print-and-shoot.txt │   │   │   │   ├── 20160915second-species-of-raven.txt │   │   │   │   ├── 20160915success.txt │   │   │   │   ├── 20160915uav.txt │   │   │   │   ├── 20160916airframe.txt │   │   │   │   ├── 20160916crowd-behaviour.txt │   │   │   │   ├── 20160916drones.txt │   │   │   │   ├── 20160916dungitoring.txt │   │   │   │   ├── 20160916extrememicrobeshome.txt │   │   │   │   ├── 20160916fishing-watch.txt │   │   │   │   ├── 20160916lhbdelusion.txt │   │   │   │   ├── 20160916pack.txt │   │   │   │   ├── 20160916Pope-increased-chicken-number.txt │   │   │   │   ├── 20160916robot.txt │   │   │   │   ├── 20160916so-old.txt │   │   │   │   ├── 20160917admit-it.txt │   │   │   │   ├── 20160917again.txt │   │   │   │   ├── 20160917no-droppings.txt │   │   │   │   ├── 20160917oldest-hooks.txt │   │   │   │   ├── 20160919ads.txt │   │   │   │   ├── 20160919brain-structure.txt │   │   │   │   ├── 20160919britecloud.txt │   │   │   │   ├── 20160919flaps.txt │   │   │   │   ├── 20160919gmo-pesticides.txt │   │   │   │   ├── 20160919procratinatebrain.txt │   │   │   │   ├── 20160919spz.txt │   │   │   │   ├── 20160920antikythera-skeleton.txt │   │   │   │   ├── 20160920b21.txt │   │   │   │   ├── 20160920bicycle.txt │   │   │   │   ├── 20160920bio.txt │   │   │   │   ├── 20160920conversuslik.txt │   │   │   │   ├── 20160920cussion.txt │   │   │   │   ├── 20160920dmthypoxia.txt │   │   │   │   ├── 20160920drone.txt │   │   │   │   ├── 20160920foldit-rulez.txt │   │   │   │   ├── 20160920GoPro-HERO5.txt │   │   │   │   ├── 20160920karma.txt │   │   │   │   ├── 20160920miniatur.txt │   │   │   │   ├── 20160920pigeonspellingchamps.txt │   │   │   │   ├── 20160920shoot.txt │   │   │   │   ├── 20160920yes-they-could.txt │   │   │   │   ├── 20160921brain-atlas.txt │   │   │   │   ├── 20160921cityphotonteleport.txt │   │   │   │   ├── 20160921danger.txt │   │   │   │   ├── 20160921doubtful-peg.txt │   │   │   │   ├── 20160921engine.txt │   │   │   │   ├── 20160921eq-radio.txt │   │   │   │   ├── 20160921gun.txt │   │   │   │   ├── 20160921martian-lakes.txt │   │   │   │   ├── 20160921mega.txt │   │   │   │   ├── 20160921stop-right-here.txt │   │   │   │   ├── 20160921truenorthcnn.txt │   │   │   │   ├── 20160921why-so-tough.txt │   │   │   │   ├── 20160922acoustic-holograms.txt │   │   │   │   ├── 20160922aircarrier.txt │   │   │   │   ├── 20160922airman.txt │   │   │   │   ├── 20160922at-last.txt │   │   │   │   ├── 20160922Ein-Gedi-scroll.txt │   │   │   │   ├── 20160922hydrogen.txt │   │   │   │   ├── 20160922jpals.txt │   │   │   │   ├── 20160922Otzi-speaks.txt │   │   │   │   ├── 20160922outofafrics.txt │   │   │   │   ├── 20160922sgnl.txt │   │   │   │   ├── 20160922symbolhorses.txt │   │   │   │   ├── 20160922the-cure.txt │   │   │   │   ├── 20160922tree-drones.txt │   │   │   │   ├── 20160923armed.txt │   │   │   │   ├── 20160923florecaust.txt │   │   │   │   ├── 20160923gremlins.txt │   │   │   │   ├── 20160923ig-nobel-prize.txt │   │   │   │   ├── 20160923lego-drone.txt │   │   │   │   ├── 20160923nasa-golden-records.txt │   │   │   │   ├── 20160923pluto-heart-reasons.txt │   │   │   │   ├── 20160923rotating-universe.txt │   │   │   │   ├── 20160923tanker.txt │   │   │   │   ├── 20160923tesla.txt │   │   │   │   ├── 20160923the-delftacopter.txt │   │   │   │   ├── 20160924grenade.txt │   │   │   │   ├── 20160924power.txt │   │   │   │   ├── 20160924spacex.txt │   │   │   │   ├── 20160924speed.txt │   │   │   │   ├── 20160924wingmen.txt │   │   │   │   ├── 20160926crisprchronology.txt │   │   │   │   ├── 20160926europa-ocean-hubble.txt │   │   │   │   ├── 20160926extinguish.txt │   │   │   │   ├── 20160926landing.txt │   │   │   │   ├── 20160926lavatory.txt │   │   │   │   ├── 20160926nano-tattoo.txt │   │   │   │   ├── 20160926nasa-europa-announce.txt │   │   │   │   ├── 20160926neuroshop.txt │   │   │   │   ├── 20160926photonrecord-data-storage.txt │   │   │   │   ├── 20160926radio-FAST.txt │   │   │   │   ├── 20160926test-fire.txt │   │   │   │   ├── 20160926trans-lioness.txt │   │   │   │   ├── 20160926v247.txt │   │   │   │   ├── 20160927chain-bots.txt │   │   │   │   ├── 20160927gremlins.txt │   │   │   │   ├── 20160927mitobaby.txt │   │   │   │   ├── 20160927morningsick.txt │   │   │   │   ├── 20160927neuro-loon.txt │   │   │   │   ├── 20160927quantum.txt │   │   │   │   ├── 20160927sats.txt │   │   │   │   ├── 20160927trials.txt │   │   │   │   ├── 20160927two-stars-one-planet.txt │   │   │   │   ├── 20160927youtube-go.txt │   │   │   │   ├── 20160928ato.txt │   │   │   │   ├── 20160928cat-movie-meow-meow.txt │   │   │   │   ├── 20160928mavic.txt │   │   │   │   ├── 20160928neurogoogletrans.txt │   │   │   │   ├── 20160928nissan-chair.txt │   │   │   │   ├── 20160928nocancersniff.txt │   │   │   │   ├── 20160928ostrichprot.txt │   │   │   │   ├── 20160928pass.txt │   │   │   │   ├── 20160928robot.txt │   │   │   │   ├── 20160928sounds.txt │   │   │   │   ├── 20160928tectonically-active.txt │   │   │   │   ├── 20160929bb8.txt │   │   │   │   ├── 20160929boneink.txt │   │   │   │   ├── 20160929first.txt │   │   │   │   ├── 20160929fmrp.txt │   │   │   │   ├── 20160929foreign-language-morality.txt │   │   │   │   ├── 20160929lifesogood.txt │   │   │   │   ├── 20160929print.txt │   │   │   │   ├── 20160929rosetta-finale.txt │   │   │   │   ├── 20160929tethered-drone.txt │   │   │   │   ├── 20160929uav.txt │   │   │   │   ├── 20160929yak152.txt │   │   │   │   ├── 20160930antennas.txt │   │   │   │   ├── 20160930eLife-fee.txt │   │   │   │   ├── 20160930last-photo-rosetta.txt │   │   │   │   ├── 20160930machine-vision.txt │   │   │   │   ├── 20160930munition.txt │   │   │   │   ├── 20160930orwl.txt │   │   │   │   ├── 20160930rosetta-collision-finish.txt │   │   │   │   ├── 20160930rosetta-collision-start.txt │   │   │   │   ├── 20160930rosetta-collision-time.txt │   │   │   │   ├── 20160930rosetta-finale-esa-confirm.txt │   │   │   │   ├── 20160930star-has-two-arms.txt │   │   │   │   ├── 20160930turbine.txt │   │   │   │   ├── 20160930two-times-longer.txt │   │   │   │   ├── 20161001abandon-shepard.txt │   │   │   │   ├── 20161001drone-rescue.txt │   │   │   │   ├── 20161001flexible.txt │   │   │   │   ├── 20161001revolt.txt │   │   │   │   ├── 20161003bit-commitment-24-hours.txt │   │   │   │   ├── 20161003bullets.txt │   │   │   │   ├── 20161003jb10.txt │   │   │   │   ├── 20161003physionobel.txt │   │   │   │   ├── 20161003rassor.txt │   │   │   │   ├── 20161003rifle.txt │   │   │   │   ├── 20161003rosetta-stone.txt │   │   │   │   ├── 20161003solar.txt │   │   │   │   ├── 20161003sphere-mono.txt │   │   │   │   ├── 20161003uav.txt │   │   │   │   ├── 20161003wind.txt │   │   │   │   ├── 20161003yeast-map.txt │   │   │   │   ├── 20161004102-no.txt │   │   │   │   ├── 20161004cake-drones.txt │   │   │   │   ├── 20161004controls.txt │   │   │   │   ├── 20161004fate.txt │   │   │   │   ├── 20161004hold-the-door.txt │   │   │   │   ├── 20161004hydrogen.txt │   │   │   │   ├── 20161004nobel-prize-physics.txt │   │   │   │   ├── 20161004pixel.txt │   │   │   │   ├── 20161004protocellshunt.txt │   │   │   │   ├── 20161004qf16.txt │   │   │   │   ├── 20161004shock-absorbing.txt │   │   │   │   ├── 20161004submarine.txt │   │   │   │   ├── 20161005china-space-tourism.txt │   │   │   │   ├── 20161005daydream.txt │   │   │   │   ├── 20161005diona-ocean.txt │   │   │   │   ├── 20161005nobel-prize-chemistry.txt │   │   │   │   ├── 20161005pompeii-reconstruction.txt │   │   │   │   ├── 20161005pulltherope.txt │   │   │   │   ├── 20161005robot.txt │   │   │   │   ├── 20161005scan.txt │   │   │   │   ├── 20161005shuttle.txt │   │   │   │   ├── 20161005toxi-chip.txt │   │   │   │   ├── 20161005tr75.txt │   │   │   │   ├── 20161005where-is-my-vr-biscuits.txt │   │   │   │   ├── 20161005yawn-longer.txt │   │   │   │   ├── 201610064ekolka-vozidlo.txt │   │   │   │   ├── 20161006botocontinence.txt │   │   │   │   ├── 20161006g12h.txt │   │   │   │   ├── 20161006helicopter.txt │   │   │   │   ├── 20161006justsoastronomy.txt │   │   │   │   ├── 20161006kabuku-honda.txt │   │   │   │   ├── 20161006literature-nobel.txt │   │   │   │   ├── 20161006new-shepard.txt │   │   │   │   ├── 20161006oh-no.txt │   │   │   │   ├── 20161006onera.txt │   │   │   │   ├── 20161006parkeyboard.txt │   │   │   │   ├── 20161006quantum-connection.txt │   │   │   │   ├── 20161006timewhatistime.txt │   │   │   │   ├── 20161006valor.txt │   │   │   │   ├── 20161007filter.txt │   │   │   │   ├── 20161007hopping-robot.txt │   │   │   │   ├── 20161007oculus.txt │   │   │   │   ├── 20161007play-the-game.txt │   │   │   │   ├── 20161007rest-in-weed.txt │   │   │   │   ├── 20161007santa-cruz.txt │   │   │   │   ├── 20161007solitoneasymethod.txt │   │   │   │   ├── 20161007spartan.txt │   │   │   │   ├── 20161007uav.txt │   │   │   │   ├── 20161007wandering-black-hole.txt │   │   │   │   ├── 20161008cnt-stem.txt │   │   │   │   ├── 20161008drink-beer-and-die.txt │   │   │   │   ├── 20161008fund-researchers.txt │   │   │   │   ├── 20161008good-to-go.txt │   │   │   │   ├── 201610101-nm-transistor.txt │   │   │   │   ├── 20161010airplane.txt │   │   │   │   ├── 20161010automate.txt │   │   │   │   ├── 20161010ban-ice.txt │   │   │   │   ├── 20161010negative-refraction.txt │   │   │   │   ├── 20161010nobel-economics.txt │   │   │   │   ├── 20161010robot.txt │   │   │   │   ├── 20161010vityazi.txt │   │   │   │   ├── 20161010weather.txt │   │   │   │   ├── 20161011bb-8-gold.txt │   │   │   │   ├── 20161011bombsights.txt │   │   │   │   ├── 20161011concrete.txt │   │   │   │   ├── 20161011convertiplane.txt │   │   │   │   ├── 20161011gears.txt │   │   │   │   ├── 20161011hydrogen-cooling.txt │   │   │   │   ├── 20161011o-privet.txt │   │   │   │   ├── 20161011phosphorenauxetic.txt │   │   │   │   ├── 20161011viknano.txt │   │   │   │   ├── 20161012blackspiderwolba.txt │   │   │   │   ├── 20161012e-sticker.txt │   │   │   │   ├── 20161012falcon-eight-plus.txt │   │   │   │   ├── 20161012hydrogen-bond-vs-uv.txt │   │   │   │   ├── 20161012keep-calm-and-ditch-humans.txt │   │   │   │   ├── 20161012mice-songs.txt │   │   │   │   ├── 20161012no-pain.txt │   │   │   │   ├── 20161012oocyte-for-youth.txt │   │   │   │   ├── 20161012RR-lyrae.txt │   │   │   │   ├── 20161012uavs.txt │   │   │   │   ├── 20161013co2-to-ethanol.txt │   │   │   │   ├── 20161013five-in-one.txt │   │   │   │   ├── 20161013gas.txt │   │   │   │   ├── 20161013literature-nobel.txt │   │   │   │   ├── 20161013lunar-RO-imact-rate.txt │   │   │   │   ├── 20161013m3d.txt │   │   │   │   ├── 20161013modal-vr.txt │   │   │   │   ├── 20161013proxima-centauri-sunlike.txt │   │   │   │   ├── 20161013sat.txt │   │   │   │   ├── 20161013scacrispr.txt │   │   │   │   ├── 20161013STEMisotope.txt │   │   │   │   ├── 20161013syrinx.txt │   │   │   │   ├── 20161013weapon.txt │   │   │   │   ├── 20161014agroworm.txt │   │   │   │   ├── 20161014airspace.txt │   │   │   │   ├── 20161014feel-the-touch.txt │   │   │   │   ├── 20161014obc.txt │   │   │   │   ├── 20161014photo-cooler.txt │   │   │   │   ├── 20161014whammyphone.txt │   │   │   │   ├── 20161014x37b.txt │   │   │   │   ├── 20161015lego-hologram.txt │   │   │   │   ├── 20161015rqc-diamond-platform.txt │   │   │   │   ├── 20161015safranin.txt │   │   │   │   ├── 20161016ESA-confirm.txt │   │   │   │   ├── 20161016juno-postponed.txt │   │   │   │   ├── 20161016Schiaparelli-descent.txt │   │   │   │   ├── 20161016telemetry-restored.txt │   │   │   │   ├── 20161016TGO-no-telemetry.txt │   │   │   │   ├── 20161017acoustic-levitation-display.txt │   │   │   │   ├── 20161017blood.txt │   │   │   │   ├── 20161017inst-singapore.txt │   │   │   │   ├── 20161017kengoro.txt │   │   │   │   ├── 20161017ltev.txt │   │   │   │   ├── 20161017quadro.txt │   │   │   │   ├── 20161017shenzhou-11-success.txt │   │   │   │   ├── 20161017shrapnel.txt │   │   │   │   ├── 20161017tgo-maneur.txt │   │   │   │   ├── 20161017universal.txt │   │   │   │   ├── 20161017vertical.txt │   │   │   │   ├── 20161017XeN4.txt │   │   │   │   ├── 201610181000-watt.txt │   │   │   │   ├── 20161018drones.txt │   │   │   │   ├── 20161018fish-can-be-fooled.txt │   │   │   │   ├── 20161018hornet.txt │   │   │   │   ├── 20161018l91.txt │   │   │   │   ├── 20161018pilotless.txt │   │   │   │   ├── 20161018robots.txt │   │   │   │   ├── 20161018Take-rod-and-help-yourself.txt │   │   │   │   ├── 20161018tomato-taste-the-same-but-flavour-less.txt │   │   │   │   ├── 20161019drone.txt │   │   │   │   ├── 20161019eccentric-crank-rover.txt │   │   │   │   ├── 20161019extracellular.txt │   │   │   │   ├── 20161019finally-solved.txt │   │   │   │   ├── 20161019fitness-faker.txt │   │   │   │   ├── 20161019inflapression.txt │   │   │   │   ├── 20161019juno-news.txt │   │   │   │   ├── 20161019metro.txt │   │   │   │   ├── 20161019net.txt │   │   │   │   ├── 20161019new-crew.txt │   │   │   │   ├── 20161019robot.txt │   │   │   │   ├── 20161019rodents.txt │   │   │   │   ├── 20161019Schiaparelli-atmosphere.txt │   │   │   │   ├── 20161019tesla.txt │   │   │   │   ├── 20161019TGO-orbital-capture.txt │   │   │   │   ├── 20161019wisent.txt │   │   │   │   ├── 20161020airblock.txt │   │   │   │   ├── 20161020autopilot.txt │   │   │   │   ├── 20161020capuchins-flake-tools.txt │   │   │   │   ├── 20161020deformable.txt │   │   │   │   ├── 20161020drive-me-closer.txt │   │   │   │   ├── 20161020feel-my-pain.txt │   │   │   │   ├── 20161020juno-cloud.txt │   │   │   │   ├── 20161020kcz.txt │   │   │   │   ├── 20161020robocut.txt │   │   │   │   ├── 20161020sciaparelli-mars.txt │   │   │   │   ├── 20161020shift-it.txt │   │   │   │   ├── 20161020speech-recognition.txt │   │   │   │   ├── 20161020submarine.txt │   │   │   │   ├── 20161020x-ray-flares.txt │   │   │   │   ├── 20161021azure-winged-magpies.txt │   │   │   │   ├── 20161021biotechnojeylogy.txt │   │   │   │   ├── 20161021bli.txt │   │   │   │   ├── 20161021cars.txt │   │   │   │   ├── 20161021ge9x.txt │   │   │   │   ├── 20161021Great-revolt-breach.txt │   │   │   │   ├── 20161021lomonosov-and-master.txt │   │   │   │   ├── 20161021neural-porn.txt │   │   │   │   ├── 20161021point-of-care.txt │   │   │   │   ├── 20161021robot.txt │   │   │   │   ├── 20161021schiaparelli-crater.txt │   │   │   │   ├── 20161021scorpion.txt │   │   │   │   ├── 20161021stomp-o-matic.txt │   │   │   │   ├── 20161021zooids.txt │   │   │   │   ├── 20161022microrocket.txt │   │   │   │   ├── 20161022saturn-hexagon-change.txt │   │   │   │   ├── 20161022subfs.txt │   │   │   │   ├── 20161024accelerating-or-not.txt │   │   │   │   ├── 20161024airtaxi.txt │   │   │   │   ├── 20161024astronomers-oldest-disk.txt │   │   │   │   ├── 20161024cctv.txt │   │   │   │   ├── 20161024cocoa-ok.txt │   │   │   │   ├── 20161024drones.txt │   │   │   │   ├── 20161024marlowe-shakespeare.txt │   │   │   │   ├── 20161024rebreather.txt │   │   │   │   ├── 20161024sarmat.txt │   │   │   │   ├── 20161024stallion.txt │   │   │   │   ├── 20161024star-shrink.txt │   │   │   │   ├── 20161024Stone-map.txt │   │   │   │   ├── 2016102540-shipwrecks.txt │   │   │   │   ├── 20161025agr-decoys.txt │   │   │   │   ├── 20161025AI-predict.txt │   │   │   │   ├── 20161025blueleaves.txt │   │   │   │   ├── 20161025buble-nuclei.txt │   │   │   │   ├── 20161025femalco.txt │   │   │   │   ├── 20161025heart-on-chip.txt │   │   │   │   ├── 20161025light-bulb.txt │   │   │   │   ├── 20161025linux-closed.txt │   │   │   │   ├── 20161025oceania.txt │   │   │   │   ├── 20161025pack.txt │   │   │   │   ├── 20161025print.txt │   │   │   │   ├── 20161025procover.txt │   │   │   │   ├── 20161025singapore-pilot.txt │   │   │   │   ├── 20161025talons.txt │   │   │   │   ├── 20161025vests.txt │   │   │   │   ├── 20161026electric-current.txt │   │   │   │   ├── 20161026gearbox.txt │   │   │   │   ├── 20161026lie-more.txt │   │   │   │   ├── 20161026long-before.txt │   │   │   │   ├── 20161026metameta.txt │   │   │   │   ├── 20161026otto.txt │   │   │   │   ├── 20161026pna.txt │   │   │   │   ├── 20161026siberianparrot.txt │   │   │   │   ├── 20161026wing.txt │   │   │   │   ├── 20161026xiaomi.txt │   │   │   │   ├── 20161026zh2.txt │   │   │   │   ├── 20161027bounced.txt │   │   │   │   ├── 20161027Cave-lions-pelts.txt │   │   │   │   ├── 20161027dance-your-phd.txt │   │   │   │   ├── 20161027drop-splash.txt │   │   │   │   ├── 20161027gel-tetris.txt │   │   │   │   ├── 20161027giant-vacuum-cleaner.txt │   │   │   │   ├── 20161027guppy.txt │   │   │   │   ├── 20161027hiv-usa.txt │   │   │   │   ├── 20161027Jerusalem-note.txt │   │   │   │   ├── 20161027knees.txt │   │   │   │   ├── 20161027red-dwarfs.txt │   │   │   │   ├── 20161027refueling.txt │   │   │   │   ├── 20161027stylechangegoogle.txt │   │   │   │   ├── 20161027surface-studio.txt │   │   │   │   ├── 20161027tuning.txt │   │   │   │   ├── 20161028aircraftcarrier.txt │   │   │   │   ├── 20161028airtaxi.txt │   │   │   │   ├── 20161028apus-apus.txt │   │   │   │   ├── 20161028bonoboadmixture.txt │   │   │   │   ├── 20161028cmb.txt │   │   │   │   ├── 20161028comma-in-coma.txt │   │   │   │   ├── 20161028corvette.txt │   │   │   │   ├── 20161028First-fossilised-brain.txt │   │   │   │   ├── 20161028izdelie.txt │   │   │   │   ├── 20161028mare-orientale.txt │   │   │   │   ├── 20161028new-horizons.txt │   │   │   │   ├── 20161028no-feedback.txt │   │   │   │   ├── 20161028pumpkin-stars.txt │   │   │   │   ├── 20161028schiaparelli-crater-2.txt │   │   │   │   ├── 20161028smoker-on-chip.txt │   │   │   │   ├── 20161028sovereignty.txt │   │   │   │   ├── 20161028telegram-youre-next.txt │   │   │   │   ├── 20161028thinkingsoil.txt │   │   │   │   ├── 20161029extender.txt │   │   │   │   ├── 20161029packs.txt │   │   │   │   ├── 20161029tiles.txt │   │   │   │   ├── 20161029uavs.txt │   │   │   │   ├── 20161029wave.txt │   │   │   │   ├── 20161031777x.txt │   │   │   │   ├── 20161031anthropomorphism.txt │   │   │   │   ├── 20161031asd-mtdna.txt │   │   │   │   ├── 20161031bus.txt │   │   │   │   ├── 20161031chain.txt │   │   │   │   ├── 20161031falcon-anomaly.txt │   │   │   │   ├── 20161031faraday-future.txt │   │   │   │   ├── 20161031Mo4Pb4VSbS15.txt │   │   │   │   ├── 20161031placebo-within-brain.txt │   │   │   │   ├── 20161031teraegg.txt │   │   │   │   ├── 20161031tiltrotor.txt │   │   │   │   ├── 20161031zee.txt │   │   │   │   ├── 20161101accept-friend-request.txt │   │   │   │   ├── 20161101birth-of-moon.txt │   │   │   │   ├── 20161101crowded-cell.txt │   │   │   │   ├── 20161101flaps.txt │   │   │   │   ├── 20161101fluoutbreaks.txt │   │   │   │   ├── 20161101learn-and-live.txt │   │   │   │   ├── 20161101piccolissimo.txt │   │   │   │   ├── 20161101saturn-rings.txt │   │   │   │   ├── 20161101spinach.txt │   │   │   │   ├── 20161101tango-consumer.txt │   │   │   │   ├── 20161101volvo-camouflage.txt │   │   │   │   ├── 20161102amurleopard.txt │   │   │   │   ├── 20161102batstradeoff.txt │   │   │   │   ├── 20161102blocks.txt │   │   │   │   ├── 20161102c929.txt │   │   │   │   ├── 20161102fighter.txt │   │   │   │   ├── 20161102gauge.txt │   │   │   │   ├── 20161102igzo-fem-lens.txt │   │   │   │   ├── 20161102it-will-be-fine.txt │   │   │   │   ├── 20161102kite.txt │   │   │   │   ├── 20161102lanscape-popularity.txt │   │   │   │   ├── 20161102nanodrum.txt │   │   │   │   ├── 20161102sheets-n-ramps.txt │   │   │   │   ├── 20161102uber-discrimination.txt │   │   │   │   ├── 20161102yandex-ai-wow.txt │   │   │   │   ├── 201611033d-printed-house.txt │   │   │   │   ├── 20161103africanstriped.txt │   │   │   │   ├── 20161103Arabidpsis-stem.txt │   │   │   │   ├── 20161103diffusioosmosis.txt │   │   │   │   ├── 20161103eye.txt │   │   │   │   ├── 20161103face-on.txt │   │   │   │   ├── 20161103glasses.txt │   │   │   │   ├── 20161103hololens.txt │   │   │   │   ├── 20161103prints.txt │   │   │   │   ├── 20161103schiaparelli-crater-3-colour.txt │   │   │   │   ├── 20161103spud.txt │   │   │   │   ├── 20161103usv.txt │   │   │   │   ├── 20161104hue.txt │   │   │   │   ├── 20161104magnetic-ink.txt │   │   │   │   ├── 20161104police-bumper.txt │   │   │   │   ├── 20161104rem-or-non-rem.txt │   │   │   │   ├── 20161107arctic.txt │   │   │   │   ├── 20161107CaFe2As2superconductor.txt │   │   │   │   ├── 20161107candida-auris.txt │   │   │   │   ├── 20161107days.txt │   │   │   │   ├── 20161107drones.txt │   │   │   │   ├── 20161107ferry.txt │   │   │   │   ├── 20161107gamma-rays-source.txt │   │   │   │   ├── 20161107hell-its-about-time.txt │   │   │   │   ├── 20161107more-virulent.txt │   │   │   │   ├── 20161107nanolaser-dye.txt │   │   │   │   ├── 20161107pHe.txt │   │   │   │   ├── 20161107spine-repair.txt │   │   │   │   ├── 20161107that-fish.txt │   │   │   │   ├── 20161108algaefishing.txt │   │   │   │   ├── 20161108auto.txt │   │   │   │   ├── 20161108book-cover.txt │   │   │   │   ├── 20161108DIY-skills.txt │   │   │   │   ├── 20161108doublecore.txt │   │   │   │   ├── 20161108earworms.txt │   │   │   │   ├── 20161108emdrive-to-be.txt │   │   │   │   ├── 20161108flexfoil.txt │   │   │   │   ├── 20161108lips-reading-ai.txt │   │   │   │   ├── 20161108metamaterial-chip.txt │   │   │   │   ├── 20161108readingglasses.txt │   │   │   │   ├── 20161108theoryofmind.txt │   │   │   │   ├── 20161108why-puked.txt │   │   │   │   ├── 20161108window.txt │   │   │   │   ├── 20161108zikv-117.txt │   │   │   │   ├── 201611093dteeth.txt │   │   │   │   ├── 20161109babysitters.txt │   │   │   │   ├── 20161109betaglobins.txt │   │   │   │   ├── 20161109birds-speed-record.txt │   │   │   │   ├── 20161109Cheese-disgust.txt │   │   │   │   ├── 20161109detector.txt │   │   │   │   ├── 20161109earth-invertion.txt │   │   │   │   ├── 20161109jammer.txt │   │   │   │   ├── 20161109mimics-differences.txt │   │   │   │   ├── 20161109protoplanetary-structure.txt │   │   │   │   ├── 20161109quantity-matters.txt │   │   │   │   ├── 20161109radar.txt │   │   │   │   ├── 20161109trials.txt │   │   │   │   ├── 20161110adversary.txt │   │   │   │   ├── 20161110books.txt │   │   │   │   ├── 20161110forget-it.txt │   │   │   │   ├── 20161110hiv-on-chip.txt │   │   │   │   ├── 20161110implants.txt │   │   │   │   ├── 20161110microswimmers.txt │   │   │   │   ├── 20161110mks.txt │   │   │   │   ├── 20161110narwhal.txt │   │   │   │   ├── 20161110predix.txt │   │   │   │   ├── 20161110Starch-dogs.txt │   │   │   │   ├── 20161110turkey.txt │   │   │   │   ├── 20161111aim2.txt │   │   │   │   ├── 20161111atmosphere-features-saturn.txt │   │   │   │   ├── 20161111beagle-2-so-close.txt │   │   │   │   ├── 20161111cyclogyro.txt │   │   │   │   ├── 20161111game.txt │   │   │   │   ├── 20161111leprosy.txt │   │   │   │   ├── 20161111onboard.txt │   │   │   │   ├── 20161111Out-of-Africa-adaptation.txt │   │   │   │   ├── 20161111single-molecule-cavity.txt │   │   │   │   ├── 20161111smart.txt │   │   │   │   ├── 20161111ticklishness.txt │   │   │   │   ├── 20161111Tongtianlong-limosus.txt │   │   │   │   ├── 20161111will-you-die-from-flu.txt │   │   │   │   ├── 20161112british-science.txt │   │   │   │   ├── 20161114ai-learns-about-physical-properties.txt │   │   │   │   ├── 20161114ara.txt │   │   │   │   ├── 20161114atomic-gravimeter.txt │   │   │   │   ├── 20161114black-holes-influence.txt │   │   │   │   ├── 20161114Chimp-fathers.txt │   │   │   │   ├── 20161114dysprosiumdroplet.txt │   │   │   │   ├── 20161114e-cigaretes-harm.txt │   │   │   │   ├── 20161114panther.txt │   │   │   │   ├── 20161114t80bv.txt │   │   │   │   ├── 20161114utm.txt │   │   │   │   ├── 20161114verticalspace.txt │   │   │   │   ├── 20161114zeptosecond.txt │   │   │   │   ├── 20161115black-silicone.txt │   │   │   │   ├── 20161115cropsweregood.txt │   │   │   │   ├── 20161115drone.txt │   │   │   │   ├── 20161115europe-ocean.txt │   │   │   │   ├── 20161115faraday.txt │   │   │   │   ├── 20161115fat-vertigo.txt │   │   │   │   ├── 20161115feringa-motors.txt │   │   │   │   ├── 20161115fight-germs-be-equal.txt │   │   │   │   ├── 20161115finalvicnano.txt │   │   │   │   ├── 20161115gorgon.txt │   │   │   │   ├── 20161115phoneanalysis.txt │   │   │   │   ├── 20161115rest-in-peace.txt │   │   │   │   ├── 20161115sexcircuit.txt │   │   │   │   ├── 20161115sounds.txt │   │   │   │   ├── 20161115swarms.txt │   │   │   │   ├── 20161115thermalswitches.txt │   │   │   │   ├── 20161115turn.txt │   │   │   │   ├── 2016111610-photon.txt │   │   │   │   ├── 20161116aircraft.txt │   │   │   │   ├── 20161116alexa.txt │   │   │   │   ├── 20161116Ancient-diary.txt │   │   │   │   ├── 20161116chemicalmessages.txt │   │   │   │   ├── 20161116crisprtested.txt │   │   │   │   ├── 20161116cute-men.txt │   │   │   │   ├── 20161116enlightener2016.txt │   │   │   │   ├── 20161116firefighting.txt │   │   │   │   ├── 20161116google-raisr.txt │   │   │   │   ├── 20161116Huns-structures.txt │   │   │   │   ├── 20161116killfie.txt │   │   │   │   ├── 20161116oldbutpotato.txt │   │   │   │   ├── 20161116pibot.txt │   │   │   │   ├── 20161116pigpersonality.txt │   │   │   │   ├── 20161116play-ai.txt │   │   │   │   ├── 20161116post-truth.txt │   │   │   │   ├── 20161116scanner.txt │   │   │   │   ├── 20161116xb1.txt │   │   │   │   ├── 20161117anti-hiv.txt │   │   │   │   ├── 20161117birdpoop.txt │   │   │   │   ├── 20161117carrier.txt │   │   │   │   ├── 20161117drones.txt │   │   │   │   ├── 20161117effector.txt │   │   │   │   ├── 20161117fast-moving-stars.txt │   │   │   │   ├── 20161117helicopter.txt │   │   │   │   ├── 20161117helmet.txt │   │   │   │   ├── 20161117MoGespincurrent.txt │   │   │   │   ├── 20161117pluto-new.txt │   │   │   │   ├── 20161117quitfacebook.txt │   │   │   │   ├── 20161117second.txt │   │   │   │   ├── 20161117soyuz-03.txt │   │   │   │   ├── 20161117stethoscope-patch.txt │   │   │   │   ├── 20161118BTX.txt │   │   │   │   ├── 20161118comet-seasons.txt │   │   │   │   ├── 20161118dartjet.txt │   │   │   │   ├── 20161118doublescotch.txt │   │   │   │   ├── 20161118ducklings.txt │   │   │   │   ├── 20161118fat-and-thin.txt │   │   │   │   ├── 20161118homeofail.txt │   │   │   │   ├── 20161118lm100j.txt │   │   │   │   ├── 20161118photosynthesis.txt │   │   │   │   ├── 20161118quantummm.txt │   │   │   │   ├── 20161118rustom.txt │   │   │   │   ├── 20161118sniper.txt │   │   │   │   ├── 20161118start.txt │   │   │   │   ├── 20161118Velocity-matters.txt │   │   │   │   ├── 20161119autocar.txt │   │   │   │   ├── 20161119box.txt │   │   │   │   ├── 20161119fat-dogs.txt │   │   │   │   ├── 20161119line.txt │   │   │   │   ├── 20161119tailsitter.txt │   │   │   │   ├── 20161119trauma.txt │   │   │   │   ├── 20161121adrift.txt │   │   │   │   ├── 20161121biodegradable-adidas.txt │   │   │   │   ├── 20161121ceres-new-pics.txt │   │   │   │   ├── 20161121dnamuscles.txt │   │   │   │   ├── 20161121facebook.txt │   │   │   │   ├── 20161121failsafe.txt │   │   │   │   ├── 20161121hi-fetus.txt │   │   │   │   ├── 20161121hree.txt │   │   │   │   ├── 20161121old-head-new-body.txt │   │   │   │   ├── 20161121photon-neural-network.txt │   │   │   │   ├── 20161121solar-roof.txt │   │   │   │   ├── 20161121sprayquencing.txt │   │   │   │   ├── 20161121vision.txt │   │   │   │   ├── 20161121world.txt │   │   │   │   ├── 2016112250feet.txt │   │   │   │   ├── 20161122barguzin.txt │   │   │   │   ├── 20161122congress-nanoindustry.txt │   │   │   │   ├── 20161122edna.txt │   │   │   │   ├── 20161122emdrive-published.txt │   │   │   │   ├── 20161122gut-with-nerves.txt │   │   │   │   ├── 20161122ironclad.txt │   │   │   │   ├── 20161122lifespanequality.txt │   │   │   │   ├── 20161122-newdesalinationdevice.txt │   │   │   │   ├── 20161122polittuber.txt │   │   │   │   ├── 20161122populationdecline.txt │   │   │   │   ├── 20161122robot.txt │   │   │   │   ├── 20161122Tuscany-Prosthesis.txt │   │   │   │   ├── 20161122twistwdlightnew.txt │   │   │   │   ├── 201611233d-regolith.txt │   │   │   │   ├── 20161123beta-keratine.txt │   │   │   │   ├── 20161123bloodstop.txt │   │   │   │   ├── 20161123criminalface.txt │   │   │   │   ├── 20161123drone-ramsay.txt │   │   │   │   ├── 20161123memoir.txt │   │   │   │   ├── 20161123neural-network.txt │   │   │   │   ├── 20161123phobia-cure.txt │   │   │   │   ├── 20161123realtek.txt │   │   │   │   ├── 20161123savekoalas.txt │   │   │   │   ├── 20161123sonar-cane.txt │   │   │   │   ├── 20161123ttfs.txt │   │   │   │   ├── 20161123zumwalt.txt │   │   │   │   ├── 20161124Abydos-new-city.txt │   │   │   │   ├── 20161124bells-inequality.txt │   │   │   │   ├── 20161124coconutcrab.txt │   │   │   │   ├── 20161124cws.txt │   │   │   │   ├── 20161124episodical-memory.txt │   │   │   │   ├── 20161124flee.txt │   │   │   │   ├── 20161124food.txt │   │   │   │   ├── 20161124help-from-ago.txt │   │   │   │   ├── 20161124liquorice.txt │   │   │   │   ├── 20161124nylon-muscles.txt │   │   │   │   ├── 20161124Philidris-nagasau.txt │   │   │   │   ├── 20161124quieter.txt │   │   │   │   ├── 20161124Sanivation.txt │   │   │   │   ├── 20161124shorebirds.txt │   │   │   │   ├── 20161124solitaire.txt │   │   │   │   ├── 20161124space-microbots.txt │   │   │   │   ├── 20161124subsurface-icy-sea.txt │   │   │   │   ├── 20161124sweat-sensing.txt │   │   │   │   ├── 20161124termopainting.txt │   │   │   │   ├── 201611253d-embryo.txt │   │   │   │   ├── 20161125a350.txt │   │   │   │   ├── 20161125African-recordsman.txt │   │   │   │   ├── 20161125ballu.txt │   │   │   │   ├── 20161125electric-balaclava.txt │   │   │   │   ├── 20161125gripen.txt │   │   │   │   ├── 20161125iwantsomesleep.txt │   │   │   │   ├── 20161125linguisticpositivity.txt │   │   │   │   ├── 20161125macaques.txt │   │   │   │   ├── 20161125net.txt │   │   │   │   ├── 20161125retrieval-rules.txt │   │   │   │   ├── 20161125teenageninjaprion.txt │   │   │   │   ├── 20161125thunderstorm-asthma.txt │   │   │   │   ├── 20161125winter-boots.txt │   │   │   │   ├── 20161126graphelmet.txt │   │   │   │   ├── 20161126isab.txt │   │   │   │   ├── 20161126self-mobile.txt │   │   │   │   ├── 20161126why-14.txt │   │   │   │   ├── 20161128an132.txt │   │   │   │   ├── 20161128carbon-14-battery.txt │   │   │   │   ├── 20161128collider-robot.txt │   │   │   │   ├── 20161128cryogenic.txt │   │   │   │   ├── 20161128dianamonkeys.txt │   │   │   │   ├── 20161128gearbasedmetamaterial.txt │   │   │   │   ├── 20161128il-1ra.txt │   │   │   │   ├── 20161128mobviolence.txt │   │   │   │   ├── 20161128monographenefriction.txt │   │   │   │   ├── 20161128Plimoth.txt │   │   │   │   ├── 20161128reinforced.txt │   │   │   │   ├── 20161128sentinel.txt │   │   │   │   ├── 20161128Strange-finding.txt │   │   │   │   ├── 20161128vocoder.txt │   │   │   │   ├── 20161128window.txt │   │   │   │   ├── 20161129AI-predicts-the-future.txt │   │   │   │   ├── 20161129alcohol.txt │   │   │   │   ├── 20161129dal-or-not-dal.txt │   │   │   │   ├── 20161129DroneGun.txt │   │   │   │   ├── 20161129forfree.txt │   │   │   │   ├── 20161129game-toddler.txt │   │   │   │   ├── 20161129Listen-how-corn-grows.txt │   │   │   │   ├── 20161129mapollution.txt │   │   │   │   ├── 20161129moon-water.txt │   │   │   │   ├── 20161129mtl-navigation.txt │   │   │   │   ├── 20161129run-like-hell.txt │   │   │   │   ├── 20161129shot-em-up.txt │   │   │   │   ├── 20161129smart.txt │   │   │   │   ├── 20161130Abrikosovbroom.txt │   │   │   │   ├── 20161130antkiss.txt │   │   │   │   ├── 20161130bacteriafossils.txt │   │   │   │   ├── 20161130charging.txt │   │   │   │   ├── 20161130dr-dl.txt │   │   │   │   ├── 20161130eeeee.txt │   │   │   │   ├── 20161130feel-the-spirit.txt │   │   │   │   ├── 20161130ford-europe.txt │   │   │   │   ├── 20161130google-gif.txt │   │   │   │   ├── 20161130inspire.txt │   │   │   │   ├── 20161130og-mc.txt │   │   │   │   ├── 20161130phononiclamb.txt │   │   │   │   ├── 20161130tail.txt │   │   │   │   ├── 20161130telescopic-walls.txt │   │   │   │   ├── 20161130tgo-first-shots.txt │   │   │   │   ├── 20161130Uperoleia-Mahonyi.txt │   │   │   │   ├── 20161130who-cmon.txt │   │   │   │   ├── 20161201alfred.txt │   │   │   │   ├── 20161201bloodthinnerpatch.txt │   │   │   │   ├── 20161201comma-vsem-darom.txt │   │   │   │   ├── 20161201draco.txt │   │   │   │   ├── 20161201f22.txt │   │   │   │   ├── 20161201handicap.txt │   │   │   │   ├── 20161201lighthouse-positioning.txt │   │   │   │   ├── 20161201mitoring.txt │   │   │   │   ├── 20161201predator.txt │   │   │   │   ├── 20161201progress-fail.txt │   │   │   │   ├── 20161201sentinel.txt │   │   │   │   ├── 20161201sexual-tms.txt │   │   │   │   ├── 20161201snowmobile.txt │   │   │   │   ├── 20161201soft-lcd.txt │   │   │   │   ├── 20161201submarines.txt │   │   │   │   ├── 20161201technosphere.txt │   │   │   │   ├── 20161202aerostat.txt │   │   │   │   ├── 20161202atlas-walkies.txt │   │   │   │   ├── 20161202BicrystalSC.txt │   │   │   │   ├── 20161202cargo.txt │   │   │   │   ├── 20161202ceramicturkey.txt │   │   │   │   ├── 20161202cgrp-imaging.txt │   │   │   │   ├── 20161202cs9pt4h.txt │   │   │   │   ├── 20161202drug-implant.txt │   │   │   │   ├── 20161202early-galaxy-forming.txt │   │   │   │   ├── 20161202esa-happy.txt │   │   │   │   ├── 20161202flip-disc.txt │   │   │   │   ├── 20161202isotope-lead-book.txt │   │   │   │   ├── 20161202lucyintheskywithdiamonds.txt │   │   │   │   ├── 20161202neural-x-mas.txt │   │   │   │   ├── 20161202nikola.txt │   │   │   │   ├── 20161202plutos-heart.txt │   │   │   │   ├── 20161202quantumsuperpositiontwocolors.txt │   │   │   │   ├── 20161202sniffing.txt │   │   │   │   ├── 20161202stateofmemory.txt │   │   │   │   ├── 20161202this-is-my-december.txt │   │   │   │   ├── 20161202underground.txt │   │   │   │   ├── 20161203plp-reduction.txt │   │   │   │   ├── 20161203ultem.txt │   │   │   │   ├── 20161205breakthrough-prize-16.txt │   │   │   │   ├── 20161205buttrecognition.txt │   │   │   │   ├── 20161205glide-test.txt │   │   │   │   ├── 20161205nimbus.txt │   │   │   │   ├── 20161205noise.txt │   │   │   │   ├── 20161205rde.txt │   │   │   │   ├── 20161205swipe-to-undrive.txt │   │   │   │   ├── 20161205there-is-a-spoon.txt │   │   │   │   ├── 20161205uav.txt │   │   │   │   ├── 20161205vacuumbirefringence.txt │   │   │   │   ├── 201612063d-wind-tool.txt │   │   │   │   ├── 20161206ai-universe.txt │   │   │   │   ├── 20161206amazon-go.txt │   │   │   │   ├── 20161206ancient-plasmodium.txt │   │   │   │   ├── 20161206Beckery-chapel.txt │   │   │   │   ├── 20161206cassini-F-ring-rev.txt │   │   │   │   ├── 20161206direct-brain-stimulation.txt │   │   │   │   ├── 20161206droplets.txt │   │   │   │   ├── 20161206electric.txt │   │   │   │   ├── 20161206false.txt │   │   │   │   ├── 20161206memory.txt │   │   │   │   ├── 20161206meteorite.txt │   │   │   │   ├── 20161206nosafelevelsmoking.txt │   │   │   │   ├── 20161206plants-association.txt │   │   │   │   ├── 20161206quantumdotsteraherz.txt │   │   │   │   ├── 20161206rolblok.txt │   │   │   │   ├── 20161206such-design.txt │   │   │   │   ├── 20161206teb.txt │   │   │   │   ├── 20161206tejas.txt │   │   │   │   ├── 20161207agile-bot.txt │   │   │   │   ├── 20161207aphrodisiac.txt │   │   │   │   ├── 20161207clam.txt │   │   │   │   ├── 20161207cosmic-dust-particles-on-rooftops.txt │   │   │   │   ├── 20161207curiosity-failure.txt │   │   │   │   ├── 20161207disney-recreated-teeth.txt │   │   │   │   ├── 20161207exoskeleton-arms.txt │   │   │   │   ├── 20161207globemaster.txt │   │   │   │   ├── 20161207grassffiti.txt │   │   │   │   ├── 20161207intake.txt │   │   │   │   ├── 20161207j20.txt │   │   │   │   ├── 20161207phobos-mars.txt │   │   │   │   ├── 20161207visa-people-take-care.txt │   │   │   │   ├── 20161207Wendelstein-7-X.txt │   │   │   │   ├── 201612083d-creepy-faces.txt │   │   │   │   ├── 20161208babylon-earth-rotation.txt │   │   │   │   ├── 20161208breathing.txt │   │   │   │   ├── 20161208chainform.txt │   │   │   │   ├── 20161208engines.txt │   │   │   │   ├── 20161208fetopelvic.txt │   │   │   │   ├── 20161208lighttherapy.txt │   │   │   │   ├── 20161208magnet-body.txt │   │   │   │   ├── 20161208navi.txt │   │   │   │   ├── 20161208next-year.txt │   │   │   │   ├── 20161208science-rules.txt │   │   │   │   ├── 20161208stop-bleeding.txt │   │   │   │   ├── 20161208Superdad-spider.txt │   │   │   │   ├── 20161208wing.txt │   │   │   │   ├── 20161208worldviz.txt │   │   │   │   ├── 201612095gcomms.txt │   │   │   │   ├── 20161209Altar-of-Heaven.txt │   │   │   │   ├── 20161209Appearance.txt │   │   │   │   ├── 20161209art-of-burial.txt │   │   │   │   ├── 20161209engines.txt │   │   │   │   ├── 20161209false-memories-meta.txt │   │   │   │   ├── 20161209fearfulmice.txt │   │   │   │   ├── 20161209fu-science.txt │   │   │   │   ├── 20161209pollution.txt │   │   │   │   ├── 20161209qr-elders.txt │   │   │   │   ├── 20161209quasicrystal.txt │   │   │   │   ├── 20161209silly-putty.txt │   │   │   │   ├── 20161209singingbirds.txt │   │   │   │   ├── 20161209tactics.txt │   │   │   │   ├── 20161209thermofloyd.txt │   │   │   │   ├── 20161210feldspars.txt │   │   │   │   ├── 20161210nanotubesstamping.txt │   │   │   │   ├── 20161210qudits-in-circle.txt │   │   │   │   ├── 20161212aggressive-drones.txt │   │   │   │   ├── 20161212approved.txt │   │   │   │   ├── 20161212bridge.txt │   │   │   │   ├── 20161212C-ring-age.txt │   │   │   │   ├── 20161212greenlandicemelted.txt │   │   │   │   ├── 20161212michigan-on-the-frontier.txt │   │   │   │   ├── 20161212plane.txt │   │   │   │   ├── 20161212rewritable-optical-chips.txt │   │   │   │   ├── 20161212sailor-nail.txt │   │   │   │   ├── 20161212Smallpox-XVI-version.txt │   │   │   │   ├── 20161212speech.txt │   │   │   │   ├── 20161212timefly.txt │   │   │   │   ├── 20161212timetoclimb.txt │   │   │   │   ├── 20161213brain-age.txt │   │   │   │   ├── 20161213cancer.txt │   │   │   │   ├── 20161213candida.txt │   │   │   │   ├── 20161213display.txt │   │   │   │   ├── 20161213dragon-wait.txt │   │   │   │   ├── 20161213jericho-look.txt │   │   │   │   ├── 20161213laser.txt │   │   │   │   ├── 20161213lucy-in-the-sky-with-corundum.txt │   │   │   │   ├── 20161213merry-issmas.txt │   │   │   │   ├── 20161213mig35.txt │   │   │   │   ├── 20161213panasonic-shopping.txt │   │   │   │   ├── 20161213pesticide.txt │   │   │   │   ├── 20161213pure-lonsdaleite.txt │   │   │   │   ├── 20161213relativity.txt │   │   │   │   ├── 20161213school-of-fish-flock-of-bird.txt │   │   │   │   ├── 20161213stroke.txt │   │   │   │   ├── 20161213Vlochos-hill.txt │   │   │   │   ├── 20161214baculum.txt │   │   │   │   ├── 20161214ceramics.txt │   │   │   │   ├── 20161214chewie.txt │   │   │   │   ├── 20161214deicing.txt │   │   │   │   ├── 20161214emucancer.txt │   │   │   │   ├── 20161214jerks.txt │   │   │   │   ├── 20161214kill-men.txt │   │   │   │   ├── 20161214proxima-b.txt │   │   │   │   ├── 20161214supercool.txt │   │   │   │   ├── 20161214swipebasednanogenerator.txt │   │   │   │   ├── 20161214tailsitter.txt │   │   │   │   ├── 20161214v2v.txt │   │   │   │   ├── 20161214volvo-uber.txt │   │   │   │   ├── 20161214vr-drone.txt │   │   │   │   ├── 20161214waymo.txt │   │   │   │   ├── 20161215engines.txt │   │   │   │   ├── 20161215first-detection-of-boron.txt │   │   │   │   ├── 20161215glowworms.txt │   │   │   │   ├── 20161215quake-detection-app.txt │   │   │   │   ├── 20161215russian-cyborg-astronauts.txt │   │   │   │   ├── 20161215seahorse.txt │   │   │   │   ├── 20161215tiny-glasses.txt │   │   │   │   ├── 20161215uk-drones.txt │   │   │   │   ├── 20161215useful-feature.txt │   │   │   │   ├── 20161215you-shall-not-drive.txt │   │   │   │   ├── 20161216ceres-water-everywhere.txt │   │   │   │   ├── 20161216confidence.txt │   │   │   │   ├── 20161216deeplearningbachstyle.txt │   │   │   │   ├── 20161216doom-optimus.txt │   │   │   │   ├── 20161216drone-bird.txt │   │   │   │   ├── 20161216holographic.txt │   │   │   │   ├── 20161216last-words.txt │   │   │   │   ├── 20161216m113.txt │   │   │   │   ├── 20161216Maya-sacred-sharks.txt │   │   │   │   ├── 20161216Meat-and-potato.txt │   │   │   │   ├── 20161216module.txt │   │   │   │   ├── 20161216OSKM.txt │   │   │   │   ├── 20161216pegasus.txt │   │   │   │   ├── 20161216pitcher.txt │   │   │   │   ├── 20161216slide.txt │   │   │   │   ├── 20161216water-mems.txt │   │   │   │   ├── 20161217aquila.txt │   │   │   │   ├── 20161217charging.txt │   │   │   │   ├── 20161217corvideswingmorphology.txt │   │   │   │   ├── 20161217neptun-like-planets.txt │   │   │   │   ├── 20161217pbn.txt │   │   │   │   ├── 20161217refueling.txt │   │   │   │   ├── 20161219ameba.txt │   │   │   │   ├── 20161219boring-company.txt │   │   │   │   ├── 20161219chemical-echoes.txt │   │   │   │   ├── 20161219crabs.txt │   │   │   │   ├── 20161219fca-waymo.txt │   │   │   │   ├── 20161219glider.txt │   │   │   │   ├── 20161219hungry-sun.txt │   │   │   │   ├── 20161219imagine.txt │   │   │   │   ├── 20161219shutter.txt │   │   │   │   ├── 20161219skinhairsensor.txt │   │   │   │   ├── 20161219van-der-waals.txt │   │   │   │   ├── 20161219why-not.txt │   │   │   │   ├── 20161220antihydrogen-spectrum.txt │   │   │   │   ├── 20161220boundary.txt │   │   │   │   ├── 20161220camelot-of-king-arthur.txt │   │   │   │   ├── 20161220cern-sun-axion-telescope.txt │   │   │   │   ├── 20161220famous-red-star-betelgeuse.txt │   │   │   │   ├── 20161220graphene-diagnostics.txt │   │   │   │   ├── 20161220high-social-status.txt │   │   │   │   ├── 20161220newspecies.txt │   │   │   │   ├── 20161220ownership.txt │   │   │   │   ├── 20161220photokinase.txt │   │   │   │   ├── 20161220pregnancy.txt │   │   │   │   ├── 20161220roads.txt │   │   │   │   ├── 20161220rules.txt │   │   │   │   ├── 20161220solo.txt │   │   │   │   ├── 20161220tiny-radio-receiver.txt │   │   │   │   ├── 20161220verylongfusion.txt │   │   │   │   ├── 20161220visibleuniversesurvey.txt │   │   │   │   ├── 20161221aero.txt │   │   │   │   ├── 20161221aromaticity.txt │   │   │   │   ├── 20161221indifferent.txt │   │   │   │   ├── 20161221Largegemdiamondsfrommetallicliquid.txt │   │   │   │   ├── 20161221martian-spiders.txt │   │   │   │   ├── 20161221nanoscale-snowman.txt │   │   │   │   ├── 20161221parasites.txt │   │   │   │   ├── 20161221speed.txt │   │   │   │   ├── 20161221stradivari.txt │   │   │   │   ├── 20161221tx.txt │   │   │   │   ├── 20161221vortexlarvae.txt │   │   │   │   ├── 20161222blinding.txt │   │   │   │   ├── 20161222bodymass.txt │   │   │   │   ├── 20161222British-Isles-blind.txt │   │   │   │   ├── 20161222coo.txt │   │   │   │   ├── 20161222dyslexia.txt │   │   │   │   ├── 20161222electric.txt │   │   │   │   ├── 20161222honda.txt │   │   │   │   ├── 20161222mail.txt │   │   │   │   ├── 20161222mechanosensor.txt │   │   │   │   ├── 20161222melt-not.txt │   │   │   │   ├── 20161222self-assembly.txt │   │   │   │   ├── 20161222tx.txt │   │   │   │   ├── 20161222uber.txt │   │   │   │   ├── 20161223arizona.txt │   │   │   │   ├── 20161223arms.txt │   │   │   │   ├── 20161223bats-AI.txt │   │   │   │   ├── 20161223bigbrains.txt │   │   │   │   ├── 20161223borealis.txt │   │   │   │   ├── 20161223double.txt │   │   │   │   ├── 20161223electron-photon-coupling.txt │   │   │   │   ├── 20161223five-mph.txt │   │   │   │   ├── 20161223lamprey.txt │   │   │   │   ├── 20161223lift.txt │   │   │   │   ├── 20161223solar.txt │   │   │   │   ├── 20161223spintronicartificialintelligence.txt │   │   │   │   ├── 20161223sweatglands.txt │   │   │   │   ├── 20161224cool.txt │   │   │   │   ├── 20161224long-arm.txt │   │   │   │   ├── 20161224second-glide-test.txt │   │   │   │   ├── 20161224tesla-on-mars.txt │   │   │   │   ├── 20161226african-american.txt │   │   │   │   ├── 20161226ar.txt │   │   │   │   ├── 20161226bliss-wallpaper.txt │   │   │   │   ├── 20161226Hyrcanus.txt │   │   │   │   ├── 20161226Knockout-SPDT.txt │   │   │   │   ├── 20161226lorenz-symmetry.txt │   │   │   │   ├── 20161226mytogamete.txt │   │   │   │   ├── 20161226podmoskovie.txt │   │   │   │   ├── 20161226quittingfacebookleadstohigherlevelsofwellbeing-.txt │   │   │   │   ├── 20161226response-political-beliefs.txt │   │   │   │   ├── 20161226scorpion.txt │   │   │   │   ├── 20161226sentry.txt │   │   │   │   ├── 20161227big-champain-bubbles.txt │   │   │   │   ├── 20161227boss-sensor.txt │   │   │   │   ├── 20161227double-kill.txt │   │   │   │   ├── 20161227gaze.txt │   │   │   │   ├── 20161227melanoma-learning.txt │   │   │   │   ├── 20161227mi-mi-mi.txt │   │   │   │   ├── 20161227nanowires-CuS.txt │   │   │   │   ├── 20161227oxytocin.txt │   │   │   │   ├── 20161227reverse.txt │   │   │   │   ├── 20161227shaanxi.txt │   │   │   │   ├── 20161228alexa-where-is-the-gardener.txt │   │   │   │   ├── 20161228Chinchorro-mummies.txt │   │   │   │   ├── 20161228nano-ag.txt │   │   │   │   ├── 20161228new-fast-radio-burst.txt │   │   │   │   ├── 20161228perovskite.txt │   │   │   │   ├── 20161228scales.txt │   │   │   │   ├── 20161228switch.txt │   │   │   │   ├── 20161228tesla-radar.txt │   │   │   │   ├── 20161228wolverineinspiredmaterial.txt │   │   │   │   ├── 20161229Amazon-go-ahead.txt │   │   │   │   ├── 20161229drinking-women.txt │   │   │   │   ├── 20161229earth-lightnings.txt │   │   │   │   ├── 20161229hydrogen-atoms.txt │   │   │   │   ├── 20161229paper-planes.txt │   │   │   │   ├── 20161229second-generation.txt │   │   │   │   ├── 20161229solargeoengineeringwithnoozoneloss.txt │   │   │   │   ├── 20161230Aphaenogaster.txt │   │   │   │   ├── 20161230Countermeasures.txt │   │   │   │   ├── 20161230diamond-and-light.txt │   │   │   │   ├── 20161230eye-contact.txt │   │   │   │   ├── 20161230new-comet.txt │   │   │   │   ├── 20161230orcas.txt │   │   │   │   ├── 20161230penileimplant.txt │   │   │   │   ├── 20161230switchoff.txt │   │   │   │   ├── 20170103falcon-9-new-start.txt │   │   │   │   ├── 20170103graphene-oled.txt │   │   │   │   ├── 20170103NDR-silicone-atom.txt │   │   │   │   ├── 20170104autogyro.txt │   │   │   │   ├── 20170104dive.txt │   │   │   │   ├── 20170104ff91.txt │   │   │   │   ├── 20170104taxi.txt │   │   │   │   ├── 20170104vr.txt │   │   │   │   ├── 20170105alexa.txt │   │   │   │   ├── 20170105powerray.txt │   │   │   │   ├── 20170105take-my-money.txt │   │   │   │   ├── 20170105xavier.txt │   │   │   │   ├── 20170105zenfone-ar.txt │   │   │   │   ├── 20170106no-swabs.txt │   │   │   │   ├── 20170106plutoscope.txt │   │   │   │   ├── 20170106solanaceae.txt │   │   │   │   ├── 20170109biodegradable.txt │   │   │   │   ├── 20170109bnsf.txt │   │   │   │   ├── 20170109graphene-strength.txt │   │   │   │   ├── 20170109honda.txt │   │   │   │   ├── 20170109nanofluidics.txt │   │   │   │   ├── 20170109nissan.txt │   │   │   │   ├── 20170109no-scars.txt │   │   │   │   ├── 20170109road-salt.txt │   │   │   │   ├── 20170109stretch-transistor.txt │   │   │   │   ├── 20170109system.txt │   │   │   │   ├── 20170109uav.txt │   │   │   │   ├── 20170110aptasensor.txt │   │   │   │   ├── 20170110contentanalysisofbritishperiodicals.txt │   │   │   │   ├── 20170110drones.txt │   │   │   │   ├── 20170110kilobots.txt │   │   │   │   ├── 20170110laser.txt │   │   │   │   ├── 20170110missile.txt │   │   │   │   ├── 20170110multi-mega-giga-impact.txt │   │   │   │   ├── 20170110no-redistribution.txt │   │   │   │   ├── 20170110pre-birth.txt │   │   │   │   ├── 20170110wheel.txt │   │   │   │   ├── 20170111augmented.txt │   │   │   │   ├── 20170111beta-poker.txt │   │   │   │   ├── 20170111bomb.txt │   │   │   │   ├── 20170111charon-protected-pluto-atmosphere.txt │   │   │   │   ├── 20170111drive-me.txt │   │   │   │   ├── 20170111energy.txt │   │   │   │   ├── 20170111garganornisbalmanni.txt │   │   │   │   ├── 20170111hydrogel.txt │   │   │   │   ├── 20170111Jorunnadavidbowiei.txt │   │   │   │   ├── 20170111mice-binge-drinking-linked-with-hunger.txt │   │   │   │   ├── 20170111molecular-fountain.txt │   │   │   │   ├── 20170111paperfuge.txt │   │   │   │   ├── 20170111skywalker-gibbons.txt │   │   │   │   ├── 20170111sustainedprotectionagainstplantviruses.txt │   │   │   │   ├── 201701123dprint.txt │   │   │   │   ├── 20170112Bloody-Diphylla-ecaudata.txt │   │   │   │   ├── 20170112bye-bye-drilling.txt │   │   │   │   ├── 20170112energyrus.txt │   │   │   │   ├── 20170112energy.txt │   │   │   │   ├── 20170112lily-go-away.txt │   │   │   │   ├── 20170112ok-adobe-make-funny-meme.txt │   │   │   │   ├── 20170112peng-idds.txt │   │   │   │   ├── 20170112relativistic-gold.txt │   │   │   │   ├── 20170112titan.txt │   │   │   │   ├── 20170112trip.txt │   │   │   │   ├── 20170112tuna.txt │   │   │   │   ├── 20170112vietnameesepygmydormouse.txt │   │   │   │   ├── 20170113carbocene.txt │   │   │   │   ├── 20170113eggbot.txt │   │   │   │   ├── 20170113goal-neurons.txt │   │   │   │   ├── 20170113Hallreversebymetamaterial.txt │   │   │   │   ├── 20170113Hungry.txt │   │   │   │   ├── 20170113neon.txt │   │   │   │   ├── 20170113papioscream.txt │   │   │   │   ├── 20170113predatormice.txt │   │   │   │   ├── 20170113raisr.txt │   │   │   │   ├── 20170113rogue-planet-x.txt │   │   │   │   ├── 20170113stemselltherapyblindness.txt │   │   │   │   ├── 20170113triple-eightfoil.txt │   │   │   │   ├── 20170114bacteria-e-messages.txt │   │   │   │   ├── 20170114falcon-is-back.txt │   │   │   │   ├── 20170114falcon-launch.txt │   │   │   │   ├── 20170114leaf-uk.txt │   │   │   │   ├── 20170114moon-express.txt │   │   │   │   ├── 20170114peace-or-victory.txt │   │   │   │   ├── 20170114polymer-modification.txt │   │   │   │   ├── 20170114ultimate-dongle.txt │   │   │   │   ├── 201701163d-is-a-lie.txt │   │   │   │   ├── 20170116all-resistant.txt │   │   │   │   ├── 20170116blitab.txt │   │   │   │   ├── 20170116dark-matter-season.txt │   │   │   │   ├── 20170116electro-dakar.txt │   │   │   │   ├── 20170116fire-extinguisher.txt │   │   │   │   ├── 20170116laser.txt │   │   │   │   ├── 20170116milky-way-steal-stars.txt │   │   │   │   ├── 20170116msu-space-faculty.txt │   │   │   │   ├── 20170116production.txt │   │   │   │   ├── 20170116rhcp-live.txt │   │   │   │   ├── 20170116sesame.txt │   │   │   │   ├── 20170116shark-asexual-reproduction.txt │   │   │   │   ├── 20170116stop-dea.txt │   │   │   │   ├── 20170116veyron.txt │   │   │   │   ├── 20170117airplane.txt │   │   │   │   ├── 20170117ammo.txt │   │   │   │   ├── 20170117firefoxgenome.txt │   │   │   │   ├── 20170117graphene-watch.txt │   │   │   │   ├── 20170117machine-learning-helps-quantum.txt │   │   │   │   ├── 20170117nanodrumlowerSQL.txt │   │   │   │   ├── 20170117number-of-galaxies.txt │   │   │   │   ├── 20170117oileasts.txt │   │   │   │   ├── 20170117plasmons.txt │   │   │   │   ├── 20170117sca-assay.txt │   │   │   │   ├── 20170117Sobibor-pendant.txt │   │   │   │   ├── 20170117soft-cubes.txt │   │   │   │   ├── 20170117sweden-ambulance.txt │   │   │   │   ├── 20170117venus-smiles-at-you.txt │   │   │   │   ├── 20170118ALMA-sun.txt │   │   │   │   ├── 20170118curiosity-spots-meteorite.txt │   │   │   │   ├── 20170118eat-less.txt │   │   │   │   ├── 20170118helicopter.txt │   │   │   │   ├── 20170118hoverbike.txt │   │   │   │   ├── 20170118mobile-dna.txt │   │   │   │   ├── 20170118modelingtheemergenceofnovelties.txt │   │   │   │   ├── 20170118non-classical-trajectory.txt │   │   │   │   ├── 20170118protein-fingerprinting.txt │   │   │   │   ├── 20170118search.txt │   │   │   │   ├── 20170118speed-limit.txt │   │   │   │   ├── 20170118speed.txt │   │   │   │   ├── 20170118superfluidblackholes.txt │   │   │   │   ├── 20170118three-parents-ua.txt │   │   │   │   ├── 20170118welcome-home.txt │   │   │   │   ├── 20170118Women-in-Ancient-China.txt │   │   │   │   ├── 20170119ai-diagnostics.txt │   │   │   │   ├── 20170119arena.txt │   │   │   │   ├── 20170119bombers.txt │   │   │   │   ├── 20170119chop-chop-xxl.txt │   │   │   │   ├── 20170119curiosity-mud-cracks.txt │   │   │   │   ├── 20170119durian.txt │   │   │   │   ├── 20170119electrocoli.txt │   │   │   │   ├── 20170119fairy-circles-explanation.txt │   │   │   │   ├── 20170119filterforeverywhere.txt │   │   │   │   ├── 20170119laser-plasma-optics.txt │   │   │   │   ├── 20170119soft-roboheart.txt │   │   │   │   ├── 20170119surge.txt │   │   │   │   ├── 20170119swiss-jammer.txt │   │   │   │   ├── 20170119Timna-valley.txt │   │   │   │   ├── 20170119virus-talks.txt │   │   │   │   ├── 20170120antiprotonmcorrection.txt │   │   │   │   ├── 20170120arrow.txt │   │   │   │   ├── 20170120cyber-squirrels-project.txt │   │   │   │   ├── 20170120E-XFEL-laser.txt │   │   │   │   ├── 20170120fast-memory.txt │   │   │   │   ├── 20170120long-time-ago.txt │   │   │   │   ├── 20170120magnetic.txt │   │   │   │   ├── 20170120metagenomics.txt │   │   │   │   ├── 20170120missile.txt │   │   │   │   ├── 20170120nasa-landing-on-pluto.txt │   │   │   │   ├── 20170120nofault.txt │   │   │   │   ├── 20170120oetzi-meal.txt │   │   │   │   ├── 20170120tesla-ff.txt │   │   │   │   ├── 20170120wait-what.txt │   │   │   │   ├── 20170121Asphaltene-3d.txt │   │   │   │   ├── 20170121gekko-adhesive.txt │   │   │   │   ├── 20170121lunar-beer.txt │   │   │   │   ├── 20170123ai-SPM-test.txt │   │   │   │   ├── 20170123co-chemical-scanning.txt │   │   │   │   ├── 20170123counter.txt │   │   │   │   ├── 20170123flying.txt │   │   │   │   ├── 20170123ground.txt │   │   │   │   ├── 20170123light-wave.txt │   │   │   │   ├── 20170123move-it.txt │   │   │   │   ├── 20170123phononicfrequencycomb.txt │   │   │   │   ├── 20170123retraction.txt │   │   │   │   ├── 20170123Seal-hunting.txt │   │   │   │   ├── 20170123sun-cycles.txt │   │   │   │   ├── 20170123tinker.txt │   │   │   │   ├── 20170123us-rna.txt │   │   │   │   ├── 20170124al--around-me-are-australian-faces.txt │   │   │   │   ├── 20170124computer-do-something.txt │   │   │   │   ├── 20170124crt.txt │   │   │   │   ├── 20170124debris.txt │   │   │   │   ├── 20170124decompose-it.txt │   │   │   │   ├── 20170124deoxycancer.txt │   │   │   │   ├── 20170124dna-nanotubes.txt │   │   │   │   ├── 20170124Manor-house-in-Birka.txt │   │   │   │   ├── 20170124pattern-lock.txt │   │   │   │   ├── 20170124rotatingmachineryportableatomicmagnetometer.txt │   │   │   │   ├── 20170124sso.txt │   │   │   │   ├── 20170124tree-recognition.txt │   │   │   │   ├── 20170124Virtual-out-of-body-experience.txt │   │   │   │   ├── 20170125atags.txt │   │   │   │   ├── 20170125diffraction.txt │   │   │   │   ├── 20170125experimental-hawking-radiation.txt │   │   │   │   ├── 20170125hydrodynamics.txt │   │   │   │   ├── 20170125lunar-x-prize.txt │   │   │   │   ├── 20170125microbes-low-pressure.txt │   │   │   │   ├── 20170125relay.txt │   │   │   │   ├── 20170125schizonicotine.txt │   │   │   │   ├── 20170125sequence-from-jar.txt │   │   │   │   ├── 20170125sex-related-hormone.txt │   │   │   │   ├── 20170125submarine.txt │   │   │   │   ├── 20170125x56a.txt │   │   │   │   ├── 20170126Candy-striped-hermit-crab.txt │   │   │   │   ├── 20170126coldspray.txt │   │   │   │   ├── 20170126dragonfleye.txt │   │   │   │   ├── 20170126d-wave-2000.txt │   │   │   │   ├── 20170126frisco.txt │   │   │   │   ├── 20170126robots.txt │   │   │   │   ├── 20170126six-days.txt │   │   │   │   ├── 20170126skin-cancer-diagnosis.txt │   │   │   │   ├── 20170126Trade-wasps.txt │   │   │   │   ├── 20170126tyer.txt │   │   │   │   ├── 20170126windshield.txt │   │   │   │   ├── 20170127catmemory.txt │   │   │   │   ├── 20170127chimera.txt │   │   │   │   ├── 20170127drag.txt │   │   │   │   ├── 20170127flex.txt │   │   │   │   ├── 20170127gender-stereotypes-6-years.txt │   │   │   │   ├── 20170127korean-hyperloop.txt │   │   │   │   ├── 20170127love-advice-AI.txt │   │   │   │   ├── 20170127maketomatogreatagain.txt │   │   │   │   ├── 20170127mig35.txt │   │   │   │   ├── 20170127overlapping.txt │   │   │   │   ├── 20170127solid-and-metallic.txt │   │   │   │   ├── 20170128antikythera.txt │   │   │   │   ├── 20170128chaser.txt │   │   │   │   ├── 20170128mig35.txt │   │   │   │   ├── 20170128missiles.txt │   │   │   │   ├── 20170128module.txt │   │   │   │   └── 20170128psp.txt │   │   │   ├── news │   │   │   ├── news.zip │   │   │   └── Untitled0.ipynb │   │   ├── PS1.ipynb │   │   ├── Release.ipynb │   │   ├── алггосы │   │   │   ├── 3w │   │   │   │   └── NNS - template.ipynb │   │   │   ├── DruzhininaPolina.ipynb │   │   │   └── TextSearch_KirillDemochkin.ipynb │   │   └── домаха линал.ipynb │   ├── Copy of NeuroML2022.xlsx │   ├── Copy of Polina_Druzhinina_qsar.ipynb │   ├── Copy of TAM SAM SOM Infographics by Slidesgo.gslides │   ├── doc107115449_473881457.gdoc │   ├── hackaton │   │   ├── baseline-20210924T161700Z-001.zip │   │   ├── city_population.csv │   │   ├── Copy of RAIF_playground (5).ipynb │   │   ├── data-20210924T160907Z-001.zip │   │   ├── found404_submission_11.csv │   │   ├── found404_submission_kkkkkk.csv │   │   ├── metrics.gsheet │   │   ├── model.picle │   │   ├── new.ipynb │   │   ├── out.csv │   │   ├── RAIF_playground (5).ipynb │   │   ├── regression_baseline_mmse.ipynb │   │   ├── regression_baseline_moca.ipynb │   │   ├── Untitled0.ipynb │   │   ├── zarplaty.xlsx │   │   └── идеи.gdoc │   ├── HCP_aging.docx │   ├── home_page — копия (1).txt.gdoc │   ├── home_page — копия.txt.gdoc │   ├── Ideal.txt.gdoc │   ├── JDBC.rar │   ├── Lecture_0_part.gslides │   ├── lfw_attributes.txt │   ├── material demo.pptx │   ├── MCMC.gslides │   ├── MIDL2022 │   │   ├── 120_ConsentForm.docx │   │   ├── MIDL2022_adni.gslides │   │   └──  мидл.gdoc │   ├── mri │   │   ├── baseline_augment.ipynb │   │   ├── baseline_augmentv2.ipynb │   │   ├── check_hw │   │   │   ├── NEUROML2021_hw3_part11.ipynb │   │   │   └── NEUROML2021_hw3_part12.ipynb │   │   ├── data │   │   │   └── ds000114 │   │   │   ├── CHANGES │   │   │   ├── dataset_description.json │   │   │   ├── dwi.bval │   │   │   ├── dwi.bvec │   │   │   ├── participants.tsv │   │   │   ├── sub-01 │   │   │   │   ├── ses-retest │   │   │   │   │   ├── anat │   │   │   │   │   │   └── sub-01_ses-retest_T1w.nii.gz │   │   │   │   │   ├── dwi │   │   │   │   │   │   └── sub-01_ses-retest_dwi.nii.gz │   │   │   │   │   └── func │   │   │   │   │   ├── sub-01_ses-retest_task-covertverbgeneration_bold.nii.gz │   │   │   │   │   ├── sub-01_ses-retest_task-fingerfootlips_bold.nii.gz │   │   │   │   │   ├── sub-01_ses-retest_task-linebisection_bold.nii.gz │   │   │   │   │   ├── sub-01_ses-retest_task-linebisection_events.tsv │   │   │   │   │   ├── sub-01_ses-retest_task-overtverbgeneration_bold.nii.gz │   │   │   │   │   └── sub-01_ses-retest_task-overtwordrepetition_bold.nii.gz │   │   │   │   └── ses-test │   │   │   │   ├── anat │   │   │   │   │   └── sub-01_ses-test_T1w.nii.gz │   │   │   │   ├── dwi │   │   │   │   │   └── sub-01_ses-test_dwi.nii.gz │   │   │   │   └── func │   │   │   │   ├── sub-01_ses-test_task-covertverbgeneration_bold.nii.gz │   │   │   │   ├── sub-01_ses-test_task-fingerfootlips_bold.nii.gz │   │   │   │   ├── sub-01_ses-test_task-linebisection_bold.nii.gz │   │   │   │   ├── sub-01_ses-test_task-linebisection_events.tsv │   │   │   │   ├── sub-01_ses-test_task-overtverbgeneration_bold.nii.gz │   │   │   │   └── sub-01_ses-test_task-overtwordrepetition_bold.nii.gz │   │   │   ├── sub-02 │   │   │   │   ├── ses-retest │   │   │   │   │   ├── anat │   │   │   │   │   │   └── sub-02_ses-retest_T1w.nii.gz │   │   │   │   │   ├── dwi │   │   │   │   │   │   └── sub-02_ses-retest_dwi.nii.gz │   │   │   │   │   └── func │   │   │   │   │   ├── sub-02_ses-retest_task-covertverbgeneration_bold.nii.gz │   │   │   │   │   ├── sub-02_ses-retest_task-fingerfootlips_bold.nii.gz │   │   │   │   │   ├── sub-02_ses-retest_task-linebisection_bold.nii.gz │   │   │   │   │   ├── sub-02_ses-retest_task-linebisection_events.tsv │   │   │   │   │   ├── sub-02_ses-retest_task-overtverbgeneration_bold.nii.gz │   │   │   │   │   └── sub-02_ses-retest_task-overtwordrepetition_bold.nii.gz │   │   │   │   └── ses-test │   │   │   │   ├── anat │   │   │   │   │   └── sub-02_ses-test_T1w.nii.gz │   │   │   │   ├── dwi │   │   │   │   │   └── sub-02_ses-test_dwi.nii.gz │   │   │   │   └── func │   │   │   │   ├── sub-02_ses-test_task-covertverbgeneration_bold.nii.gz │   │   │   │   ├── sub-02_ses-test_task-fingerfootlips_bold.nii.gz │   │   │   │   ├── sub-02_ses-test_task-linebisection_bold.nii.gz │   │   │   │   ├── sub-02_ses-test_task-linebisection_events.tsv │   │   │   │   ├── sub-02_ses-test_task-overtverbgeneration_bold.nii.gz │   │   │   │   └── sub-02_ses-test_task-overtwordrepetition_bold.nii.gz │   │   │   ├── sub-03 │   │   │   │   ├── ses-retest │   │   │   │   │   ├── anat │   │   │   │   │   │   └── sub-03_ses-retest_T1w.nii.gz │   │   │   │   │   ├── dwi │   │   │   │   │   └── func │   │   │   │   │   ├── sub-03_ses-retest_task-covertverbgeneration_bold.nii.gz │   │   │   │   │   └── sub-03_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-03_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-04 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-04_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-04_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-05 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-05_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-05_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-06 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-06_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-06_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-07 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-07_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-07_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-08 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-08_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-08_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-09 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-09_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-09_ses-test_task-linebisection_events.tsv │   │   │   ├── sub-10 │   │   │   │   ├── ses-retest │   │   │   │   │   └── func │   │   │   │   │   └── sub-10_ses-retest_task-linebisection_events.tsv │   │   │   │   └── ses-test │   │   │   │   └── func │   │   │   │   └── sub-10_ses-test_task-linebisection_events.tsv │   │   │   ├── task-covertverbgeneration_bold.json │   │   │   ├── task-covertverbgeneration_events.tsv │   │   │   ├── task-fingerfootlips_bold.json │   │   │   ├── task-fingerfootlips_events.tsv │   │   │   ├── task-linebisection_bold.json │   │   │   ├── task-overtverbgeneration_bold.json │   │   │   ├── task-overtverbgeneration_events.tsv │   │   │   ├── task-overtwordrepetition_bold.json │   │   │   └── task-overtwordrepetition_events.tsv │   │   ├── HW3 │   │   │   ├── adhd200 -> /content/drive/ │   │   │   ├── data.zip -> /content/drive/ │   │   │   ├── func -> /content/drive/ │   │   │   ├── hw3 │   │   │   │   ├── adhd200 -> /content/drive/ │   │   │   │   ├── NEUROML2020_hw3_part1_1.ipynb │   │   │   │   ├── NEUROML2020_hw3_part1_2.ipynb │   │   │   │   ├── NEUROML2020_hw3_part2.ipynb │   │   │   │   ├── NEUROML2020_hw3_part3.ipynb │   │   │   │   ├── __pycache__ │   │   │   │   │   └── utils.cpython-36.pyc │   │   │   │   └── utils.py │   │   │   └── HW3_data -> /content/drive/.shortcut-targets-by-id/1rgdw3BPcbM8u7dwbxEUcEfEuHaujYacy/HW3_data │   │   ├── landmarks.npy │   │   ├── lx.zip │   │   ├── mricron │   │   │   ├── dcm2niix │   │   │   ├── MRIcron │   │   │   └── Resources │   │   │   ├── dcm2niix │   │   │   ├── lut │   │   │   │   ├── 16.lut │   │   │   │   ├── 1hot.lut │   │   │   │   ├── 2winter.lut │   │   │   │   ├── 3warm.lut │   │   │   │   ├── 4cool.lut │   │   │   │   ├── 5redyell.lut │   │   │   │   ├── 6bluegrn.lut │   │   │   │   ├── actc.lut │   │   │   │   ├── blackbdy.lut │   │   │   │   ├── bluegray.lut │   │   │   │   ├── blue_otto.lut │   │   │   │   ├── bone.lut │   │   │   │   ├── cardiac.lut │   │   │   │   ├── cortex.lut │   │   │   │   ├── flow.lut │   │   │   │   ├── french.lut │   │   │   │   ├── GE_color.lut │   │   │   │   ├── gold.lut │   │   │   │   ├── gooch.lut │   │   │   │   ├── greengray.lut │   │   │   │   ├── HOTIRON.lut │   │   │   │   ├── NIH_fire.lut │   │   │   │   ├── NIH_ice.lut │   │   │   │   ├── NIH.lut │   │   │   │   ├── overlay_classic.lut │   │   │   │   ├── pink.lut │   │   │   │   ├── pink_old.lut │   │   │   │   ├── Rainramp.lut │   │   │   │   ├── red_otto.lut │   │   │   │   ├── spectrum.lut │   │   │   │   ├── surface.lut │   │   │   │   ├── x_hot.lut │   │   │   │   └── x_rain.lut │   │   │   ├── mricron.svg │   │   │   ├── pigz_mricron │   │   │   ├── render │   │   │   │   └── default.ini │   │   │   ├── templates │   │   │   │   ├── aal.nii.gz │   │   │   │   ├── aal.nii.lut │   │   │   │   ├── aal.nii.txt │   │   │   │   ├── AICHAmc.nii.gz │   │   │   │   ├── AICHAmc.nii.lut │   │   │   │   ├── AICHAmc.nii.txt │   │   │   │   ├── brodmann.nii.gz │   │   │   │   ├── brodmann.nii.lut │   │   │   │   ├── ch2bet.nii.gz │   │   │   │   ├── ch2better.nii.gz │   │   │   │   ├── ch2.nii.gz │   │   │   │   ├── HarvardOxford-cort-maxprob-thr0-1mm.nii.gz │   │   │   │   ├── inia19-NeuroMaps.nii.gz │   │   │   │   ├── inia19-t1-brain.nii.gz │   │   │   │   ├── jhu189.nii.gz │   │   │   │   ├── JHU-WhiteMatter-labels-1mm.nii.gz │   │   │   │   ├── JHU-WhiteMatter-labels-1mm.nii.lut │   │   │   │   ├── JHU-WhiteMatter-labels-1mm.nii.txt │   │   │   │   ├── JHU-WhiteMatter-labels-2mm.nii.gz │   │   │   │   ├── JHU-WhiteMatter-labels-2mm.nii.lut │   │   │   │   ├── JHU-WhiteMatter-labels-2mm.nii.txt │   │   │   │   └── natbrainlab.nii.gz │   │   │   ├── xclip.bat │   │   │   ├── xcut.bat │   │   │   ├── xfmri2.bat │   │   │   ├── xfmri3.bat │   │   │   └── xfmri.bat │   │   ├── MRIcron_linux.zip │   │   ├── project │   │   │   ├── 3DCNN.ipynb │   │   │   ├── best_acc_model_adam-4_sch │   │   │   ├── data -> /content/drive/ │   │   │   ├── masks │   │   │   │   ├── atlases.ipynb │   │   │   │   ├── grad_cam.py │   │   │   │   ├── meanpertrub.py │   │   │   │   ├── obtain_masks.ipynb │   │   │   │   └── __pycache__ │   │   │   │   ├── grad_cam.cpython-36.pyc │   │   │   │   └── meanpertrub.cpython-36.pyc │   │   │   ├── Project Proposal Template.docx │   │   │   └── Untitled presentation.gslides │   │   ├── weights_aug │   │   │   ├── whole_images_epoch_10.pth │   │   │   ├── whole_images_epoch_11.pth │   │   │   ├── whole_images_epoch_12.pth │   │   │   ├── whole_images_epoch_13.pth │   │   │   ├── whole_images_epoch_14.pth │   │   │   ├── whole_images_epoch_15.pth │   │   │   ├── whole_images_epoch_16.pth │   │   │   ├── whole_images_epoch_17.pth │   │   │   ├── whole_images_epoch_18.pth │   │   │   ├── whole_images_epoch_19.pth │   │   │   ├── whole_images_epoch_1.pth │   │   │   ├── whole_images_epoch_20.pth │   │   │   ├── whole_images_epoch_21.pth │   │   │   ├── whole_images_epoch_22.pth │   │   │   ├── whole_images_epoch_23.pth │   │   │   ├── whole_images_epoch_24.pth │   │   │   ├── whole_images_epoch_25.pth │   │   │   ├── whole_images_epoch_26.pth │   │   │   ├── whole_images_epoch_27.pth │   │   │   ├── whole_images_epoch_28.pth │   │   │   ├── whole_images_epoch_29.pth │   │   │   ├── whole_images_epoch_2.pth │   │   │   ├── whole_images_epoch_30.pth │   │   │   ├── whole_images_epoch_31.pth │   │   │   ├── whole_images_epoch_32.pth │   │   │   ├── whole_images_epoch_33.pth │   │   │   ├── whole_images_epoch_34.pth │   │   │   ├── whole_images_epoch_35.pth │   │   │   ├── whole_images_epoch_36.pth │   │   │   ├── whole_images_epoch_37.pth │   │   │   ├── whole_images_epoch_38.pth │   │   │   ├── whole_images_epoch_39.pth │   │   │   ├── whole_images_epoch_3.pth │   │   │   ├── whole_images_epoch_4.pth │   │   │   ├── whole_images_epoch_5.pth │   │   │   ├── whole_images_epoch_6.pth │   │   │   ├── whole_images_epoch_7.pth │   │   │   ├── whole_images_epoch_8.pth │   │   │   └── whole_images_epoch_9.pth │   │   └── weights_hist │   │   ├── whole_images_epoch_10.pth │   │   ├── whole_images_epoch_11.pth │   │   ├── whole_images_epoch_12.pth │   │   ├── whole_images_epoch_13.pth │   │   ├── whole_images_epoch_14.pth │   │   ├── whole_images_epoch_15.pth │   │   ├── whole_images_epoch_16.pth │   │   ├── whole_images_epoch_17.pth │   │   ├── whole_images_epoch_18.pth │   │   ├── whole_images_epoch_19.pth │   │   ├── whole_images_epoch_1.pth │   │   ├── whole_images_epoch_20.pth │   │   ├── whole_images_epoch_21.pth │   │   ├── whole_images_epoch_22.pth │   │   ├── whole_images_epoch_23.pth │   │   ├── whole_images_epoch_24.pth │   │   ├── whole_images_epoch_2.pth │   │   ├── whole_images_epoch_3.pth │   │   ├── whole_images_epoch_4.pth │   │   ├── whole_images_epoch_5.pth │   │   ├── whole_images_epoch_6.pth │   │   ├── whole_images_epoch_7.pth │   │   ├── whole_images_epoch_8.pth │   │   └── whole_images_epoch_9.pth │   ├── NGS_8_Transcriptomics_2.gdoc │   ├── PHD_репорты │   │   ├── PhD 1st year Review Progress.gslides │   │   ├── report phd1 2022.gdoc │   │   ├── tf00000009.xlsx │   │   ├── tf03987160_win32.gsheet │   │   └── tf03987160_win32.xltx │   ├── presentashky │   │   ├── 211567321cd04e6fadf1df12a2fd385f.pptx │   │   ├── Broadway.gdoc │   │   ├── Cute Instagram Business Plan by Slidesgo.pptx │   │   ├── elections.gdoc │   │   ├── Untitled document (1).gdoc │   │   ├── Untitled document.gdoc │   │   ├── Untitled presentation.gslides │   │   ├── Us Among Them! _ by Slidesgo.pptx │   │   └── АЛИСА_Happy_bday.pptx │   ├── report 1 мая 2018-23 июня 2018.html.gdoc │   ├── report 2 июля 2018-4 июля 2018.gdoc │   ├── robot │   │   ├── 01 │   │   │   ├── ananas_video.com-video-to-gif.gif │   │   │   ├── Copy of GTSAM_CAM_ALIGNED (2).ipynb │   │   │   ├── egor_app.com-video-to-gif.gif │   │   │   ├── movie.mp4 │   │   │   ├── Offline visual-inertial 3D reconstruction.gslides │   │   │   └── Project Proposal Team 1.gdoc │   │   ├── GTSAM_CAM_ALIGNED (2).ipynb │   │   ├── hw1 │   │   │   ├── Perception_in_Robotics_PS_1.ipynb │   │   │   ├── task2.ipynb │   │   │   └── task3.ipynb │   │   ├── hw2 │   │   │   ├── Untitled0.ipynb │   │   │   └── Untitled document.gdoc │   │   ├── IMU optimized estimate.mp4 │   │   ├── IMU preintegration estimate.mp4 │   │   ├── movie.mp4 │   │   ├── project │   │   │   ├── 2020_03_29_15_53_59 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── matching.pkl │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── 2020_03_29_15_54_20 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── 2020_03_29_15_56_18 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── 2020_03_30_13_47_38 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── matching.pkl │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── 2020_03_30_13_47_55 │   │   │   │   ├── edge_epochs.txt │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── matching.pkl │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── anim │   │   │   │   ├── 1003.png │   │   │   │   ├── 110.png │   │   │   │   ├── 123.png │   │   │   │   ├── 137.png │   │   │   │   ├── 150.png │   │   │   │   ├── 15.png │   │   │   │   ├── 164.png │   │   │   │   ├── 177.png │   │   │   │   ├── 191.png │   │   │   │   ├── 204.png │   │   │   │   ├── 218.png │   │   │   │   ├── 232.png │   │   │   │   ├── 245.png │   │   │   │   ├── 259.png │   │   │   │   ├── 272.png │   │   │   │   ├── 286.png │   │   │   │   ├── 299.png │   │   │   │   ├── 29.png │   │   │   │   ├── 2.png │   │   │   │   ├── 313.png │   │   │   │   ├── 326.png │   │   │   │   ├── 340.png │   │   │   │   ├── 353.png │   │   │   │   ├── 367.png │   │   │   │   ├── 380.png │   │   │   │   ├── 394.png │   │   │   │   ├── 407.png │   │   │   │   ├── 421.png │   │   │   │   ├── 42.png │   │   │   │   ├── 435.png │   │   │   │   ├── 448.png │   │   │   │   ├── 462.png │   │   │   │   ├── 475.png │   │   │   │   ├── 489.png │   │   │   │   ├── 502.png │   │   │   │   ├── 516.png │   │   │   │   ├── 529.png │   │   │   │   ├── 543.png │   │   │   │   ├── 556.png │   │   │   │   ├── 56.png │   │   │   │   ├── 570.png │   │   │   │   ├── 583.png │   │   │   │   ├── 597.png │   │   │   │   ├── 610.png │   │   │   │   ├── 624.png │   │   │   │   ├── 637.png │   │   │   │   ├── 651.png │   │   │   │   ├── 665.png │   │   │   │   ├── 678.png │   │   │   │   ├── 692.png │   │   │   │   ├── 69.png │   │   │   │   ├── 705.png │   │   │   │   ├── 719.png │   │   │   │   ├── 732.png │   │   │   │   ├── 746.png │   │   │   │   ├── 759.png │   │   │   │   ├── 773.png │   │   │   │   ├── 786.png │   │   │   │   ├── 800.png │   │   │   │   ├── 813.png │   │   │   │   ├── 827.png │   │   │   │   ├── 83.png │   │   │   │   ├── 840.png │   │   │   │   ├── 854.png │   │   │   │   ├── 867.png │   │   │   │   ├── 881.png │   │   │   │   ├── 895.png │   │   │   │   ├── 908.png │   │   │   │   ├── 922.png │   │   │   │   ├── 935.png │   │   │   │   ├── 949.png │   │   │   │   ├── 962.png │   │   │   │   ├── 96.png │   │   │   │   ├── 976.png │   │   │   │   └── 989.png │   │   │   ├── anim1 │   │   │   │   └── 123.png │   │   │   ├── circle_gold.npy │   │   │   ├── data │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── GTSAM.ipynb │   │   │   ├── movie1.gif │   │   │   ├── movie.gif │   │   │   ├── movie_optim.gif │   │   │   ├── sample_data │   │   │   │   ├── frame_timestamps.txt │   │   │   │   ├── gyro_accel.csv │   │   │   │   ├── movie_metadata.csv │   │   │   │   └── movie.mp4 │   │   │   ├── Untitled0.ipynb │   │   │   ├── Untitled1.ipynb │   │   │   └── Untitled2.ipynb │   │   └── video_2020-03-29_06-06-05.mp4 │   ├── thumb_39771.jpg&t=1.gdoc │   ├── top-use-cases-for-blockchain-in-hospitality-thoughtpost.pdf │   ├── Untitled0.ipynb │   ├── Untitled Diagram (1).drawio │   ├── Untitled Diagram (1).html │   ├── Untitled Diagram (2).html │   ├── Untitled Diagram (3).html │   ├── Untitled Diagram.drawio │   ├── Untitled Diagram.html │   ├── Untitled document (1).gdoc │   ├── Untitled document (2).gdoc │   ├── Untitled document.gdoc │   ├── USA culture.gslides │   ├── Zd4rysD7oxQ.jpg │   ├── Алиса │   │   ├── litrev.xlsx │   │   └── Untitled0.ipynb │   ├── Бизнес и инновации в сфере ИТ │   │   ├── Стартапы.gdoc │   │   └── Хайп.gdoc │   ├── блокчейн │   │   ├── 2_5402201906334400948.7z │   │   ├── Blockchain.Diagram.1.pdf │   │   ├── pharmablockchain.html │   │   ├── Дружинина_КР 3.docx │   │   ├── Дружинина_КР 3.docx.gdoc │   │   ├── Копия Проект по использованию технологии блокчейн.gslides │   │   ├── КР_блокчейн.2.docx │   │   ├── КР_блокчейн.2.gdoc │   │   ├── КР_блокчейн.docx │   │   ├── КР_блокчейн.docx.gdoc │   │   ├── Признаки.txt │   │   ├── Проект по использованию технологии блокчейн.pdf │   │   └── Реквизиты.gdoc │   ├── Дружинина_КР 3.docx │   ├── Дружинина_КР 3.docx.gdoc │   ├── Имитационное моделирование │   │   ├── Exam_0_IM.gdoc │   │   ├── IM_1 (1).doc │   │   ├── IM_1.gslides │   │   ├── IM_1.ppt │   │   ├── IM_2.doc │   │   ├── IM_2.gslides │   │   ├── IM_2.ppt │   │   ├── IM_3.doc │   │   ├── IM_3.gslides │   │   ├── IM_3.ppt │   │   ├── IM_3.xls │   │   ├── IM_4.doc │   │   ├── IM_4.gslides │   │   ├── IM_4.pptx │   │   ├── IM_4.xls │   │   ├── IM_5.doc │   │   ├── IM_5.gslides │   │   ├── IM_5.ppt │   │   ├── IM_6.doc │   │   ├── IM_6.gslides │   │   ├── IM_6.ppt │   │   ├── IM_7.gslides │   │   ├── IM_7.ppt │   │   ├── Боев В.Д. - Моделирование в AnyLogic (2016, Военная академия связи).pdf │   │   ├── Подключение_к_УРС.pdf │   │   └── Таха Х.А. - Введение в исследование операций (2005)(7-e изд.).djvu │   ├── Квиз.gdoc │   ├── КР.docx │   ├── курсовая.pptx │   ├── курсовая.pptx.gslides │   ├── Курсовая работа.docx │   ├── Курсовая работа.docx.gdoc │   ├── Курсовая работа Дружининой (1).docx.gdoc │   ├── Курсовая работа Дружининой.docx │   ├── Курсовая работа Дружининой.docx.gdoc │   ├── Лаборатория искусственного интеллекта.gslides │   ├── МАГ.gslides │   ├── нейро │   │   ├── neuro_2021-20220904T163116Z-001.zip │   │   ├── neuro2022 │   │   │   └── seminar_1 │   │   │   ├── Copy of homework_1.ipynb │   │   │   ├── Copy of seminar_tensorboard.ipynb │   │   │   ├── Copy of shell_intro.ipynb │   │   │   ├── Copy of TorchIO tutorial.ipynb │   │   │   ├── Lecture 0. Course intro.gslides │   │   │   └── Untitled document.gdoc │   │   ├── Untitled presentation.gslides │   │   └── What is the firing rate.gdoc │   ├── Николенко С. И. Глубокое обучение_OCR (2018).pdf │   ├── Новая презентация.gslides │   ├── Новый документ (1).gdoc │   ├── Новый документ (2).gdoc │   ├── Новый документ (3).gdoc │   ├── Новый документ (4).gdoc │   ├── Новый документ (5).gdoc │   ├── Новый документ (6).gdoc │   ├── Новый документ.gdoc │   ├── практика │   │   ├── Дневник.gdoc │   │   ├── Отчет.gdoc │   │   └── Титульник.gdoc │   ├── Проект по использованию технологии блокчейн.gdoc │   └── Проект по использованию технологии блокчейн.pdf ├── inside.sh └── sample_data ├── anscombe.json ├── california_housing_test.csv ├── california_housing_train.csv ├── mnist_test.csv ├── mnist_train_small.csv └── README.md 193 directories, 16251 files
!cat dir/*.txt
Sun Sep 4 21:00:45 UTC 2022 content
cd dir
/content/dir
!cp date.txt sub/; tree
. ├── date.txt ├── empty.txt ├── full.txt └── sub ├── date.txt └── subdir 2 directories, 4 files
!cat *.txt
Sun Sep 4 21:00:45 UTC 2022 content
!cat */*.txt
Sun Sep 4 21:00:45 UTC 2022
!date >> sub/date.txt
!cat */*.txt
Sun Sep 4 21:00:45 UTC 2022 Sun Sep 4 21:00:53 UTC 2022
!cp -a sub/date.txt sub/subdir/date_dual.txt; tree
. ├── date.txt ├── empty.txt ├── full.txt └── sub ├── date.txt └── subdir └── date_dual.txt 2 directories, 5 files
!cp sub/subdir sub/subdir_copy && tree
cp: -r not specified; omitting directory 'sub/subdir'
!cp -r sub/subdir sub/subdir_copy && tree
. ├── date.txt ├── empty.txt ├── full.txt └── sub ├── date.txt ├── subdir │   └── date_dual.txt └── subdir_copy └── date_dual.txt 3 directories, 6 files
ls -l */*
-rw-r--r-- 1 root root 58 Sep 4 21:00 sub/date.txt sub/subdir: total 4 -rw-r--r-- 1 root root 58 Sep 4 21:00 date_dual.txt sub/subdir_copy: total 4 -rw-r--r-- 1 root root 58 Sep 4 21:00 date_dual.txt
!cat date.txt; echo ----; cat sub/date.txt
Sun Sep 4 21:00:45 UTC 2022 ---- Sun Sep 4 21:00:45 UTC 2022 Sun Sep 4 21:00:53 UTC 2022

So, sub/date.txt consists of two dates. Let's make consistent names. Rename with mv

!mv sub/date.txt sub/date_dual.txt; tree sub; ls -l */*
sub ├── date_dual.txt ├── subdir │   └── date_dual.txt └── subdir_copy └── date_dual.txt 2 directories, 3 files -rw-r--r-- 1 root root 58 Sep 4 21:00 sub/date_dual.txt sub/subdir: total 4 -rw-r--r-- 1 root root 58 Sep 4 21:00 date_dual.txt sub/subdir_copy: total 4 -rw-r--r-- 1 root root 58 Sep 4 21:00 date_dual.txt

Content Filters

! ls -X sample_data
ls: cannot access 'sample_data': No such file or directory
!ls
date.txt empty.txt full.txt sub
!pwd
/content/dir
!date > date.txt
!date > date2.txt; date >> date2.txt
!find /content/*.txt
/content/date.txt
!cat *.txt
Sun Sep 4 21:00:55 UTC 2022 Sun Sep 4 21:00:55 UTC 2022 Sun Sep 4 21:00:54 UTC 2022 content
!awk '{if ($4 == "21:55:10") {print}}' *.txt
!awk '{if ($4 == "21:55:10") {print}}' *.txt | sed -e 's/^/[$(date)] /'
!awk '{if ($4 == "21:55:10") {print}}' *.txt | sed -e "s/^/[$(date)] /"
!awk "{print $4}" *.txt
Sun Sep 4 21:00:55 UTC 2022 Sun Sep 4 21:00:55 UTC 2022 Sun Sep 4 21:00:54 UTC 2022 content
!ls -X sample_data | cut -f2 -d. | uniq -c
ls: cannot access 'sample_data': No such file or directory
!sort --help
Usage: sort [OPTION]... [FILE]... or: sort [OPTION]... --files0-from=F Write sorted concatenation of all FILE(s) to standard output. With no FILE, or when FILE is -, read standard input. Mandatory arguments to long options are mandatory for short options too. Ordering options: -b, --ignore-leading-blanks ignore leading blanks -d, --dictionary-order consider only blanks and alphanumeric characters -f, --ignore-case fold lower case to upper case characters -g, --general-numeric-sort compare according to general numerical value -i, --ignore-nonprinting consider only printable characters -M, --month-sort compare (unknown) < 'JAN' < ... < 'DEC' -h, --human-numeric-sort compare human readable numbers (e.g., 2K 1G) -n, --numeric-sort compare according to string numerical value -R, --random-sort shuffle, but group identical keys. See shuf(1) --random-source=FILE get random bytes from FILE -r, --reverse reverse the result of comparisons --sort=WORD sort according to WORD: general-numeric -g, human-numeric -h, month -M, numeric -n, random -R, version -V -V, --version-sort natural sort of (version) numbers within text Other options: --batch-size=NMERGE merge at most NMERGE inputs at once; for more use temp files -c, --check, --check=diagnose-first check for sorted input; do not sort -C, --check=quiet, --check=silent like -c, but do not report first bad line --compress-program=PROG compress temporaries with PROG; decompress them with PROG -d --debug annotate the part of the line used to sort, and warn about questionable usage to stderr --files0-from=F read input from the files specified by NUL-terminated names in file F; If F is - then read names from standard input -k, --key=KEYDEF sort via a key; KEYDEF gives location and type -m, --merge merge already sorted files; do not sort -o, --output=FILE write result to FILE instead of standard output -s, --stable stabilize sort by disabling last-resort comparison -S, --buffer-size=SIZE use SIZE for main memory buffer -t, --field-separator=SEP use SEP instead of non-blank to blank transition -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or /tmp; multiple options specify multiple directories --parallel=N change the number of sorts run concurrently to N -u, --unique with -c, check for strict ordering; without -c, output only the first of an equal run -z, --zero-terminated line delimiter is NUL, not newline --help display this help and exit --version output version information and exit KEYDEF is F[.C][OPTS][,F[.C][OPTS]] for start and stop position, where F is a field number and C a character position in the field; both are origin 1, and the stop position defaults to the line's end. If neither -t nor -b is in effect, characters in a field are counted from the beginning of the preceding whitespace. OPTS is one or more single-letter ordering options [bdfgiMhnRrV], which override global ordering options for that key. If no key is given, use the entire line as the key. Use --debug to diagnose incorrect key usage. SIZE may be followed by the following multiplicative suffixes: % 1% of memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y. *** WARNING *** The locale specified by the environment affects sort order. Set LC_ALL=C to get the traditional sort order that uses native byte values. GNU coreutils online help: <http://www.gnu.org/software/coreutils/> Full documentation at: <http://www.gnu.org/software/coreutils/sort> or available locally via: info '(coreutils) sort invocation'
!ls sample_data; echo ---; ls sample_data | sort -u -t. -k2
ls: cannot access 'sample_data': No such file or directory --- ls: cannot access 'sample_data': No such file or directory

! wc -l sample_data/california_housing_test.csv
wc: sample_data/california_housing_test.csv: No such file or directory
! head sample_data/california_housing_test.csv
head: cannot open 'sample_data/california_housing_test.csv' for reading: No such file or directory
! tail sample_data/california_housing_test.csv
tail: cannot open 'sample_data/california_housing_test.csv' for reading: No such file or directory
! tail -4 sample_data/california_housing_test.csv
tail: cannot open 'sample_data/california_housing_test.csv' for reading: No such file or directory
! tail +2 sample_data/california_housing_test.csv | head
tail: cannot open 'sample_data/california_housing_test.csv' for reading: No such file or directory
!tail +2 sample_data/california_housing_test.csv | head | sort -t, -k3
tail: cannot open 'sample_data/california_housing_test.csv' for reading: No such file or directory
! tail +2 sample_data/california_housing_test.csv | head | sort -t, -k3 -k2 -n --debug
tail: cannot open 'sample_data/california_housing_test.csv' for reading: No such file or directory sort: using ‘en_US.UTF-8’ sorting rules sort: key 1 is numeric and spans multiple fields sort: key 2 is numeric and spans multiple fields
! test 11 -gt 10 && echo yes || echo no
yes
! ((11 > 10)) && echo yes || echo no
yes

cat, head, tail, sort

cut -d, -f1

! tail +2 sample_data/california_housing_test.csv | head | cut -d, -f3 | cut -d. -f1
tail: cannot open 'sample_data/california_housing_test.csv' for reading: No such file or directory
! tail +2 sample_data/california_housing_test.csv | head | cut -d, -f3 | cut -d. -f1 | xargs -I% sh -c 'test % -gt 19 && echo yes % || echo "no %"'
tail: cannot open 'sample_data/california_housing_test.csv' for reading: No such file or directory
!echo -e "[$(date)] @$(whoami) $(true 2>/dev/null && echo '\033[1;32mok\033[0m' || echo '\033[1;31merror\033[0m')"
[Sun Sep 4 21:00:57 UTC 2022] @root ok
!echo -e "[$(date)] @$(whoami) $(false 2>/dev/null && echo '\033[1;32mok\033[0m' || echo c)"
[Sun Sep 4 21:00:57 UTC 2022] @root c

!if false; then echo yes; else echo no; fi
no
!cm='if false; \ then echo yes; \ else echo no; \ fi'; $cm
/bin/bash: if: command not found
!true && \ (echo ok; false; true) || \ echo no
ok
!let c=0; echo $((c+2))
2
!let c=0; echo $((c++)); echo $c
0 1
!for i in 1 2 3; do echo $i; done
1 2 3
!c=0; for i in $(ls sample_data); do echo "$((c++)): $i"; done
ls: cannot access 'sample_data': No such file or directory
!c=1; while true; do ((c++)); echo "$(date) $c"; sleep 1; done
Streaming output truncated to the last 5000 lines. Sun Sep 4 21:06:59 UTC 2022 360 Sun Sep 4 21:07:01 UTC 2022 361 Sun Sep 4 21:07:02 UTC 2022 362 Sun Sep 4 21:07:03 UTC 2022 363 Sun Sep 4 21:07:04 UTC 2022 364 Sun Sep 4 21:07:05 UTC 2022 365 Sun Sep 4 21:07:06 UTC 2022 366 Sun Sep 4 21:07:07 UTC 2022 367 Sun Sep 4 21:07:08 UTC 2022 368 Sun Sep 4 21:07:09 UTC 2022 369 Sun Sep 4 21:07:10 UTC 2022 370 Sun Sep 4 21:07:11 UTC 2022 371 Sun Sep 4 21:07:12 UTC 2022 372 Sun Sep 4 21:07:13 UTC 2022 373 Sun Sep 4 21:07:14 UTC 2022 374 Sun Sep 4 21:07:15 UTC 2022 375 Sun Sep 4 21:07:16 UTC 2022 376 Sun Sep 4 21:07:17 UTC 2022 377 Sun Sep 4 21:07:18 UTC 2022 378 Sun Sep 4 21:07:19 UTC 2022 379 Sun Sep 4 21:07:20 UTC 2022 380 Sun Sep 4 21:07:21 UTC 2022 381 Sun Sep 4 21:07:22 UTC 2022 382 Sun Sep 4 21:07:23 UTC 2022 383 Sun Sep 4 21:07:24 UTC 2022 384 Sun Sep 4 21:07:25 UTC 2022 385 Sun Sep 4 21:07:26 UTC 2022 386 Sun Sep 4 21:07:27 UTC 2022 387 Sun Sep 4 21:07:28 UTC 2022 388 Sun Sep 4 21:07:29 UTC 2022 389 Sun Sep 4 21:07:30 UTC 2022 390 Sun Sep 4 21:07:31 UTC 2022 391 Sun Sep 4 21:07:32 UTC 2022 392 Sun Sep 4 21:07:33 UTC 2022 393 Sun Sep 4 21:07:34 UTC 2022 394 Sun Sep 4 21:07:35 UTC 2022 395 Sun Sep 4 21:07:36 UTC 2022 396 Sun Sep 4 21:07:37 UTC 2022 397 Sun Sep 4 21:07:38 UTC 2022 398 Sun Sep 4 21:07:39 UTC 2022 399 Sun Sep 4 21:07:40 UTC 2022 400 Sun Sep 4 21:07:41 UTC 2022 401 Sun Sep 4 21:07:42 UTC 2022 402 Sun Sep 4 21:07:43 UTC 2022 403 Sun Sep 4 21:07:44 UTC 2022 404 Sun Sep 4 21:07:45 UTC 2022 405 Sun Sep 4 21:07:46 UTC 2022 406 Sun Sep 4 21:07:47 UTC 2022 407 Sun Sep 4 21:07:48 UTC 2022 408 Sun Sep 4 21:07:49 UTC 2022 409 Sun Sep 4 21:07:50 UTC 2022 410 Sun Sep 4 21:07:51 UTC 2022 411 Sun Sep 4 21:07:52 UTC 2022 412 Sun Sep 4 21:07:53 UTC 2022 413 Sun Sep 4 21:07:54 UTC 2022 414 Sun Sep 4 21:07:55 UTC 2022 415 Sun Sep 4 21:07:56 UTC 2022 416 Sun Sep 4 21:07:57 UTC 2022 417 Sun Sep 4 21:07:58 UTC 2022 418 Sun Sep 4 21:07:59 UTC 2022 419 Sun Sep 4 21:08:00 UTC 2022 420 Sun Sep 4 21:08:01 UTC 2022 421 Sun Sep 4 21:08:02 UTC 2022 422 Sun Sep 4 21:08:03 UTC 2022 423 Sun Sep 4 21:08:04 UTC 2022 424 Sun Sep 4 21:08:05 UTC 2022 425 Sun Sep 4 21:08:06 UTC 2022 426 Sun Sep 4 21:08:07 UTC 2022 427 Sun Sep 4 21:08:08 UTC 2022 428 Sun Sep 4 21:08:09 UTC 2022 429 Sun Sep 4 21:08:10 UTC 2022 430 Sun Sep 4 21:08:11 UTC 2022 431 Sun Sep 4 21:08:12 UTC 2022 432 Sun Sep 4 21:08:13 UTC 2022 433 Sun Sep 4 21:08:14 UTC 2022 434 Sun Sep 4 21:08:15 UTC 2022 435 Sun Sep 4 21:08:16 UTC 2022 436 Sun Sep 4 21:08:17 UTC 2022 437 Sun Sep 4 21:08:18 UTC 2022 438 Sun Sep 4 21:08:19 UTC 2022 439 Sun Sep 4 21:08:20 UTC 2022 440 Sun Sep 4 21:08:21 UTC 2022 441 Sun Sep 4 21:08:22 UTC 2022 442 Sun Sep 4 21:08:23 UTC 2022 443 Sun Sep 4 21:08:24 UTC 2022 444 Sun Sep 4 21:08:25 UTC 2022 445 Sun Sep 4 21:08:26 UTC 2022 446 Sun Sep 4 21:08:27 UTC 2022 447 Sun Sep 4 21:08:28 UTC 2022 448 Sun Sep 4 21:08:29 UTC 2022 449 Sun Sep 4 21:08:30 UTC 2022 450 Sun Sep 4 21:08:31 UTC 2022 451 Sun Sep 4 21:08:32 UTC 2022 452 Sun Sep 4 21:08:33 UTC 2022 453 Sun Sep 4 21:08:34 UTC 2022 454 Sun Sep 4 21:08:35 UTC 2022 455 Sun Sep 4 21:08:36 UTC 2022 456 Sun Sep 4 21:08:37 UTC 2022 457 Sun Sep 4 21:08:38 UTC 2022 458 Sun Sep 4 21:08:39 UTC 2022 459 Sun Sep 4 21:08:40 UTC 2022 460 Sun Sep 4 21:08:41 UTC 2022 461 Sun Sep 4 21:08:42 UTC 2022 462 Sun Sep 4 21:08:43 UTC 2022 463 Sun Sep 4 21:08:44 UTC 2022 464 Sun Sep 4 21:08:45 UTC 2022 465 Sun Sep 4 21:08:46 UTC 2022 466 Sun Sep 4 21:08:47 UTC 2022 467 Sun Sep 4 21:08:48 UTC 2022 468 Sun Sep 4 21:08:50 UTC 2022 469 Sun Sep 4 21:08:51 UTC 2022 470 Sun Sep 4 21:08:52 UTC 2022 471 Sun Sep 4 21:08:53 UTC 2022 472 Sun Sep 4 21:08:54 UTC 2022 473 Sun Sep 4 21:08:55 UTC 2022 474 Sun Sep 4 21:08:56 UTC 2022 475 Sun Sep 4 21:08:57 UTC 2022 476 Sun Sep 4 21:08:58 UTC 2022 477 Sun Sep 4 21:08:59 UTC 2022 478 Sun Sep 4 21:09:00 UTC 2022 479 Sun Sep 4 21:09:01 UTC 2022 480 Sun Sep 4 21:09:02 UTC 2022 481 Sun Sep 4 21:09:03 UTC 2022 482 Sun Sep 4 21:09:04 UTC 2022 483 Sun Sep 4 21:09:05 UTC 2022 484 Sun Sep 4 21:09:06 UTC 2022 485 Sun Sep 4 21:09:07 UTC 2022 486 Sun Sep 4 21:09:08 UTC 2022 487 Sun Sep 4 21:09:09 UTC 2022 488 Sun Sep 4 21:09:10 UTC 2022 489 Sun Sep 4 21:09:11 UTC 2022 490 Sun Sep 4 21:09:12 UTC 2022 491 Sun Sep 4 21:09:13 UTC 2022 492 Sun Sep 4 21:09:14 UTC 2022 493 Sun Sep 4 21:09:15 UTC 2022 494 Sun Sep 4 21:09:16 UTC 2022 495 Sun Sep 4 21:09:17 UTC 2022 496 Sun Sep 4 21:09:18 UTC 2022 497 Sun Sep 4 21:09:19 UTC 2022 498 Sun Sep 4 21:09:20 UTC 2022 499 Sun Sep 4 21:09:21 UTC 2022 500 Sun Sep 4 21:09:22 UTC 2022 501 Sun Sep 4 21:09:23 UTC 2022 502 Sun Sep 4 21:09:24 UTC 2022 503 Sun Sep 4 21:09:25 UTC 2022 504 Sun Sep 4 21:09:26 UTC 2022 505 Sun Sep 4 21:09:27 UTC 2022 506 Sun Sep 4 21:09:28 UTC 2022 507 Sun Sep 4 21:09:29 UTC 2022 508 Sun Sep 4 21:09:30 UTC 2022 509 Sun Sep 4 21:09:31 UTC 2022 510 Sun Sep 4 21:09:32 UTC 2022 511 Sun Sep 4 21:09:33 UTC 2022 512 Sun Sep 4 21:09:34 UTC 2022 513 Sun Sep 4 21:09:35 UTC 2022 514 Sun Sep 4 21:09:36 UTC 2022 515 Sun Sep 4 21:09:37 UTC 2022 516 Sun Sep 4 21:09:38 UTC 2022 517 Sun Sep 4 21:09:39 UTC 2022 518 Sun Sep 4 21:09:40 UTC 2022 519 Sun Sep 4 21:09:41 UTC 2022 520 Sun Sep 4 21:09:42 UTC 2022 521 Sun Sep 4 21:09:43 UTC 2022 522 Sun Sep 4 21:09:44 UTC 2022 523 Sun Sep 4 21:09:45 UTC 2022 524 Sun Sep 4 21:09:46 UTC 2022 525 Sun Sep 4 21:09:47 UTC 2022 526 Sun Sep 4 21:09:48 UTC 2022 527 Sun Sep 4 21:09:49 UTC 2022 528 Sun Sep 4 21:09:50 UTC 2022 529 Sun Sep 4 21:09:51 UTC 2022 530 Sun Sep 4 21:09:52 UTC 2022 531 Sun Sep 4 21:09:53 UTC 2022 532 Sun Sep 4 21:09:54 UTC 2022 533 Sun Sep 4 21:09:55 UTC 2022 534 Sun Sep 4 21:09:56 UTC 2022 535 Sun Sep 4 21:09:57 UTC 2022 536 Sun Sep 4 21:09:58 UTC 2022 537 Sun Sep 4 21:09:59 UTC 2022 538 Sun Sep 4 21:10:00 UTC 2022 539 Sun Sep 4 21:10:01 UTC 2022 540 Sun Sep 4 21:10:02 UTC 2022 541 Sun Sep 4 21:10:03 UTC 2022 542 Sun Sep 4 21:10:04 UTC 2022 543 Sun Sep 4 21:10:05 UTC 2022 544 Sun Sep 4 21:10:06 UTC 2022 545 Sun Sep 4 21:10:07 UTC 2022 546 Sun Sep 4 21:10:08 UTC 2022 547 Sun Sep 4 21:10:09 UTC 2022 548 Sun Sep 4 21:10:10 UTC 2022 549 Sun Sep 4 21:10:11 UTC 2022 550 Sun Sep 4 21:10:12 UTC 2022 551 Sun Sep 4 21:10:13 UTC 2022 552 Sun Sep 4 21:10:14 UTC 2022 553 Sun Sep 4 21:10:15 UTC 2022 554 Sun Sep 4 21:10:16 UTC 2022 555 Sun Sep 4 21:10:17 UTC 2022 556 Sun Sep 4 21:10:18 UTC 2022 557 Sun Sep 4 21:10:19 UTC 2022 558 Sun Sep 4 21:10:20 UTC 2022 559 Sun Sep 4 21:10:21 UTC 2022 560 Sun Sep 4 21:10:22 UTC 2022 561 Sun Sep 4 21:10:23 UTC 2022 562 Sun Sep 4 21:10:24 UTC 2022 563 Sun Sep 4 21:10:25 UTC 2022 564 Sun Sep 4 21:10:26 UTC 2022 565 Sun Sep 4 21:10:27 UTC 2022 566 Sun Sep 4 21:10:28 UTC 2022 567 Sun Sep 4 21:10:29 UTC 2022 568 Sun Sep 4 21:10:30 UTC 2022 569 Sun Sep 4 21:10:32 UTC 2022 570 Sun Sep 4 21:10:33 UTC 2022 571 Sun Sep 4 21:10:34 UTC 2022 572 Sun Sep 4 21:10:35 UTC 2022 573 Sun Sep 4 21:10:36 UTC 2022 574 Sun Sep 4 21:10:37 UTC 2022 575 Sun Sep 4 21:10:38 UTC 2022 576 Sun Sep 4 21:10:39 UTC 2022 577 Sun Sep 4 21:10:40 UTC 2022 578 Sun Sep 4 21:10:41 UTC 2022 579 Sun Sep 4 21:10:42 UTC 2022 580 Sun Sep 4 21:10:43 UTC 2022 581 Sun Sep 4 21:10:44 UTC 2022 582 Sun Sep 4 21:10:45 UTC 2022 583 Sun Sep 4 21:10:46 UTC 2022 584 Sun Sep 4 21:10:47 UTC 2022 585 Sun Sep 4 21:10:48 UTC 2022 586 Sun Sep 4 21:10:49 UTC 2022 587 Sun Sep 4 21:10:50 UTC 2022 588 Sun Sep 4 21:10:51 UTC 2022 589 Sun Sep 4 21:10:52 UTC 2022 590 Sun Sep 4 21:10:53 UTC 2022 591 Sun Sep 4 21:10:54 UTC 2022 592 Sun Sep 4 21:10:55 UTC 2022 593 Sun Sep 4 21:10:56 UTC 2022 594 Sun Sep 4 21:10:57 UTC 2022 595 Sun Sep 4 21:10:58 UTC 2022 596 Sun Sep 4 21:10:59 UTC 2022 597 Sun Sep 4 21:11:00 UTC 2022 598 Sun Sep 4 21:11:01 UTC 2022 599 Sun Sep 4 21:11:02 UTC 2022 600 Sun Sep 4 21:11:03 UTC 2022 601 Sun Sep 4 21:11:04 UTC 2022 602 Sun Sep 4 21:11:05 UTC 2022 603 Sun Sep 4 21:11:06 UTC 2022 604 Sun Sep 4 21:11:07 UTC 2022 605 Sun Sep 4 21:11:08 UTC 2022 606 Sun Sep 4 21:11:09 UTC 2022 607 Sun Sep 4 21:11:10 UTC 2022 608 Sun Sep 4 21:11:11 UTC 2022 609 Sun Sep 4 21:11:12 UTC 2022 610 Sun Sep 4 21:11:13 UTC 2022 611 Sun Sep 4 21:11:14 UTC 2022 612 Sun Sep 4 21:11:15 UTC 2022 613 Sun Sep 4 21:11:16 UTC 2022 614 Sun Sep 4 21:11:17 UTC 2022 615 Sun Sep 4 21:11:18 UTC 2022 616 Sun Sep 4 21:11:19 UTC 2022 617 Sun Sep 4 21:11:20 UTC 2022 618 Sun Sep 4 21:11:21 UTC 2022 619 Sun Sep 4 21:11:22 UTC 2022 620 Sun Sep 4 21:11:23 UTC 2022 621 Sun Sep 4 21:11:24 UTC 2022 622 Sun Sep 4 21:11:25 UTC 2022 623 Sun Sep 4 21:11:26 UTC 2022 624 Sun Sep 4 21:11:27 UTC 2022 625 Sun Sep 4 21:11:28 UTC 2022 626 Sun Sep 4 21:11:29 UTC 2022 627 Sun Sep 4 21:11:30 UTC 2022 628 Sun Sep 4 21:11:31 UTC 2022 629 Sun Sep 4 21:11:32 UTC 2022 630 Sun Sep 4 21:11:33 UTC 2022 631 Sun Sep 4 21:11:34 UTC 2022 632 Sun Sep 4 21:11:35 UTC 2022 633 Sun Sep 4 21:11:36 UTC 2022 634 Sun Sep 4 21:11:37 UTC 2022 635 Sun Sep 4 21:11:38 UTC 2022 636 Sun Sep 4 21:11:39 UTC 2022 637 Sun Sep 4 21:11:40 UTC 2022 638 Sun Sep 4 21:11:41 UTC 2022 639 Sun Sep 4 21:11:42 UTC 2022 640 Sun Sep 4 21:11:43 UTC 2022 641 Sun Sep 4 21:11:44 UTC 2022 642 Sun Sep 4 21:11:45 UTC 2022 643 Sun Sep 4 21:11:46 UTC 2022 644 Sun Sep 4 21:11:47 UTC 2022 645 Sun Sep 4 21:11:48 UTC 2022 646 Sun Sep 4 21:11:49 UTC 2022 647 Sun Sep 4 21:11:50 UTC 2022 648 Sun Sep 4 21:11:51 UTC 2022 649 Sun Sep 4 21:11:52 UTC 2022 650 Sun Sep 4 21:11:53 UTC 2022 651 Sun Sep 4 21:11:54 UTC 2022 652 Sun Sep 4 21:11:55 UTC 2022 653 Sun Sep 4 21:11:56 UTC 2022 654 Sun Sep 4 21:11:57 UTC 2022 655 Sun Sep 4 21:11:58 UTC 2022 656 Sun Sep 4 21:11:59 UTC 2022 657 Sun Sep 4 21:12:00 UTC 2022 658 Sun Sep 4 21:12:01 UTC 2022 659 Sun Sep 4 21:12:02 UTC 2022 660 Sun Sep 4 21:12:03 UTC 2022 661 Sun Sep 4 21:12:04 UTC 2022 662 Sun Sep 4 21:12:05 UTC 2022 663 Sun Sep 4 21:12:06 UTC 2022 664 Sun Sep 4 21:12:07 UTC 2022 665 Sun Sep 4 21:12:08 UTC 2022 666 Sun Sep 4 21:12:09 UTC 2022 667 Sun Sep 4 21:12:10 UTC 2022 668 Sun Sep 4 21:12:11 UTC 2022 669 Sun Sep 4 21:12:12 UTC 2022 670 Sun Sep 4 21:12:13 UTC 2022 671 Sun Sep 4 21:12:14 UTC 2022 672 Sun Sep 4 21:12:15 UTC 2022 673 Sun Sep 4 21:12:17 UTC 2022 674 Sun Sep 4 21:12:18 UTC 2022 675 Sun Sep 4 21:12:19 UTC 2022 676 Sun Sep 4 21:12:20 UTC 2022 677 Sun Sep 4 21:12:21 UTC 2022 678 Sun Sep 4 21:12:22 UTC 2022 679 Sun Sep 4 21:12:23 UTC 2022 680 Sun Sep 4 21:12:24 UTC 2022 681 Sun Sep 4 21:12:25 UTC 2022 682 Sun Sep 4 21:12:26 UTC 2022 683 Sun Sep 4 21:12:27 UTC 2022 684 Sun Sep 4 21:12:28 UTC 2022 685 Sun Sep 4 21:12:29 UTC 2022 686 Sun Sep 4 21:12:30 UTC 2022 687 Sun Sep 4 21:12:31 UTC 2022 688 Sun Sep 4 21:12:32 UTC 2022 689 Sun Sep 4 21:12:33 UTC 2022 690 Sun Sep 4 21:12:34 UTC 2022 691 Sun Sep 4 21:12:35 UTC 2022 692 Sun Sep 4 21:12:36 UTC 2022 693 Sun Sep 4 21:12:37 UTC 2022 694 Sun Sep 4 21:12:38 UTC 2022 695 Sun Sep 4 21:12:39 UTC 2022 696 Sun Sep 4 21:12:40 UTC 2022 697 Sun Sep 4 21:12:41 UTC 2022 698 Sun Sep 4 21:12:42 UTC 2022 699 Sun Sep 4 21:12:43 UTC 2022 700 Sun Sep 4 21:12:44 UTC 2022 701 Sun Sep 4 21:12:45 UTC 2022 702 Sun Sep 4 21:12:46 UTC 2022 703 Sun Sep 4 21:12:47 UTC 2022 704 Sun Sep 4 21:12:48 UTC 2022 705 Sun Sep 4 21:12:49 UTC 2022 706 Sun Sep 4 21:12:50 UTC 2022 707 Sun Sep 4 21:12:51 UTC 2022 708 Sun Sep 4 21:12:52 UTC 2022 709 Sun Sep 4 21:12:53 UTC 2022 710 Sun Sep 4 21:12:54 UTC 2022 711 Sun Sep 4 21:12:55 UTC 2022 712 Sun Sep 4 21:12:56 UTC 2022 713 Sun Sep 4 21:12:57 UTC 2022 714 Sun Sep 4 21:12:58 UTC 2022 715 Sun Sep 4 21:12:59 UTC 2022 716 Sun Sep 4 21:13:00 UTC 2022 717 Sun Sep 4 21:13:01 UTC 2022 718 Sun Sep 4 21:13:02 UTC 2022 719 Sun Sep 4 21:13:03 UTC 2022 720 Sun Sep 4 21:13:04 UTC 2022 721 Sun Sep 4 21:13:05 UTC 2022 722 Sun Sep 4 21:13:06 UTC 2022 723 Sun Sep 4 21:13:07 UTC 2022 724 Sun Sep 4 21:13:08 UTC 2022 725 Sun Sep 4 21:13:09 UTC 2022 726 Sun Sep 4 21:13:10 UTC 2022 727 Sun Sep 4 21:13:11 UTC 2022 728 Sun Sep 4 21:13:12 UTC 2022 729 Sun Sep 4 21:13:13 UTC 2022 730 Sun Sep 4 21:13:14 UTC 2022 731 Sun Sep 4 21:13:15 UTC 2022 732 Sun Sep 4 21:13:16 UTC 2022 733 Sun Sep 4 21:13:17 UTC 2022 734 Sun Sep 4 21:13:18 UTC 2022 735 Sun Sep 4 21:13:19 UTC 2022 736 Sun Sep 4 21:13:20 UTC 2022 737 Sun Sep 4 21:13:21 UTC 2022 738 Sun Sep 4 21:13:22 UTC 2022 739 Sun Sep 4 21:13:23 UTC 2022 740 Sun Sep 4 21:13:24 UTC 2022 741 Sun Sep 4 21:13:25 UTC 2022 742 Sun Sep 4 21:13:26 UTC 2022 743 Sun Sep 4 21:13:27 UTC 2022 744 Sun Sep 4 21:13:28 UTC 2022 745 Sun Sep 4 21:13:29 UTC 2022 746 Sun Sep 4 21:13:30 UTC 2022 747 Sun Sep 4 21:13:31 UTC 2022 748 Sun Sep 4 21:13:32 UTC 2022 749 Sun Sep 4 21:13:33 UTC 2022 750 Sun Sep 4 21:13:34 UTC 2022 751 Sun Sep 4 21:13:35 UTC 2022 752 Sun Sep 4 21:13:36 UTC 2022 753 Sun Sep 4 21:13:37 UTC 2022 754 Sun Sep 4 21:13:38 UTC 2022 755 Sun Sep 4 21:13:39 UTC 2022 756 Sun Sep 4 21:13:40 UTC 2022 757 Sun Sep 4 21:13:41 UTC 2022 758 Sun Sep 4 21:13:42 UTC 2022 759 Sun Sep 4 21:13:43 UTC 2022 760 Sun Sep 4 21:13:44 UTC 2022 761 Sun Sep 4 21:13:45 UTC 2022 762 Sun Sep 4 21:13:46 UTC 2022 763 Sun Sep 4 21:13:47 UTC 2022 764 Sun Sep 4 21:13:48 UTC 2022 765 Sun Sep 4 21:13:49 UTC 2022 766 Sun Sep 4 21:13:50 UTC 2022 767 Sun Sep 4 21:13:51 UTC 2022 768 Sun Sep 4 21:13:52 UTC 2022 769 Sun Sep 4 21:13:53 UTC 2022 770 Sun Sep 4 21:13:54 UTC 2022 771 Sun Sep 4 21:13:55 UTC 2022 772 Sun Sep 4 21:13:56 UTC 2022 773 Sun Sep 4 21:13:57 UTC 2022 774 Sun Sep 4 21:13:58 UTC 2022 775 Sun Sep 4 21:13:59 UTC 2022 776 Sun Sep 4 21:14:00 UTC 2022 777 Sun Sep 4 21:14:01 UTC 2022 778 Sun Sep 4 21:14:02 UTC 2022 779 Sun Sep 4 21:14:03 UTC 2022 780 Sun Sep 4 21:14:04 UTC 2022 781 Sun Sep 4 21:14:05 UTC 2022 782 Sun Sep 4 21:14:06 UTC 2022 783 Sun Sep 4 21:14:08 UTC 2022 784 Sun Sep 4 21:14:09 UTC 2022 785 Sun Sep 4 21:14:10 UTC 2022 786 Sun Sep 4 21:14:11 UTC 2022 787 Sun Sep 4 21:14:12 UTC 2022 788 Sun Sep 4 21:14:13 UTC 2022 789 Sun Sep 4 21:14:14 UTC 2022 790 Sun Sep 4 21:14:15 UTC 2022 791 Sun Sep 4 21:14:16 UTC 2022 792 Sun Sep 4 21:14:17 UTC 2022 793 Sun Sep 4 21:14:18 UTC 2022 794 Sun Sep 4 21:14:19 UTC 2022 795 Sun Sep 4 21:14:20 UTC 2022 796 Sun Sep 4 21:14:21 UTC 2022 797 Sun Sep 4 21:14:22 UTC 2022 798 Sun Sep 4 21:14:23 UTC 2022 799 Sun Sep 4 21:14:24 UTC 2022 800 Sun Sep 4 21:14:25 UTC 2022 801 Sun Sep 4 21:14:26 UTC 2022 802 Sun Sep 4 21:14:27 UTC 2022 803 Sun Sep 4 21:14:28 UTC 2022 804 Sun Sep 4 21:14:29 UTC 2022 805 Sun Sep 4 21:14:30 UTC 2022 806 Sun Sep 4 21:14:31 UTC 2022 807 Sun Sep 4 21:14:32 UTC 2022 808 Sun Sep 4 21:14:33 UTC 2022 809 Sun Sep 4 21:14:34 UTC 2022 810 Sun Sep 4 21:14:35 UTC 2022 811 Sun Sep 4 21:14:36 UTC 2022 812 Sun Sep 4 21:14:37 UTC 2022 813 Sun Sep 4 21:14:38 UTC 2022 814 Sun Sep 4 21:14:39 UTC 2022 815 Sun Sep 4 21:14:40 UTC 2022 816 Sun Sep 4 21:14:41 UTC 2022 817 Sun Sep 4 21:14:42 UTC 2022 818 Sun Sep 4 21:14:43 UTC 2022 819 Sun Sep 4 21:14:44 UTC 2022 820 Sun Sep 4 21:14:45 UTC 2022 821 Sun Sep 4 21:14:46 UTC 2022 822 Sun Sep 4 21:14:47 UTC 2022 823 Sun Sep 4 21:14:48 UTC 2022 824 Sun Sep 4 21:14:49 UTC 2022 825 Sun Sep 4 21:14:50 UTC 2022 826 Sun Sep 4 21:14:51 UTC 2022 827 Sun Sep 4 21:14:52 UTC 2022 828 Sun Sep 4 21:14:53 UTC 2022 829 Sun Sep 4 21:14:54 UTC 2022 830 Sun Sep 4 21:14:55 UTC 2022 831 Sun Sep 4 21:14:56 UTC 2022 832 Sun Sep 4 21:14:57 UTC 2022 833 Sun Sep 4 21:14:58 UTC 2022 834 Sun Sep 4 21:14:59 UTC 2022 835 Sun Sep 4 21:15:00 UTC 2022 836 Sun Sep 4 21:15:01 UTC 2022 837 Sun Sep 4 21:15:02 UTC 2022 838 Sun Sep 4 21:15:03 UTC 2022 839 Sun Sep 4 21:15:04 UTC 2022 840 Sun Sep 4 21:15:05 UTC 2022 841 Sun Sep 4 21:15:06 UTC 2022 842 Sun Sep 4 21:15:07 UTC 2022 843 Sun Sep 4 21:15:08 UTC 2022 844 Sun Sep 4 21:15:09 UTC 2022 845 Sun Sep 4 21:15:10 UTC 2022 846 Sun Sep 4 21:15:11 UTC 2022 847 Sun Sep 4 21:15:12 UTC 2022 848 Sun Sep 4 21:15:13 UTC 2022 849 Sun Sep 4 21:15:14 UTC 2022 850 Sun Sep 4 21:15:15 UTC 2022 851 Sun Sep 4 21:15:16 UTC 2022 852 Sun Sep 4 21:15:17 UTC 2022 853 Sun Sep 4 21:15:18 UTC 2022 854 Sun Sep 4 21:15:19 UTC 2022 855 Sun Sep 4 21:15:20 UTC 2022 856 Sun Sep 4 21:15:21 UTC 2022 857 Sun Sep 4 21:15:22 UTC 2022 858 Sun Sep 4 21:15:23 UTC 2022 859 Sun Sep 4 21:15:24 UTC 2022 860 Sun Sep 4 21:15:25 UTC 2022 861 Sun Sep 4 21:15:26 UTC 2022 862 Sun Sep 4 21:15:27 UTC 2022 863 Sun Sep 4 21:15:28 UTC 2022 864 Sun Sep 4 21:15:29 UTC 2022 865 Sun Sep 4 21:15:30 UTC 2022 866 Sun Sep 4 21:15:31 UTC 2022 867 Sun Sep 4 21:15:32 UTC 2022 868 Sun Sep 4 21:15:33 UTC 2022 869 Sun Sep 4 21:15:34 UTC 2022 870 Sun Sep 4 21:15:35 UTC 2022 871 Sun Sep 4 21:15:36 UTC 2022 872 Sun Sep 4 21:15:37 UTC 2022 873 Sun Sep 4 21:15:38 UTC 2022 874 Sun Sep 4 21:15:39 UTC 2022 875 Sun Sep 4 21:15:40 UTC 2022 876 Sun Sep 4 21:15:41 UTC 2022 877 Sun Sep 4 21:15:42 UTC 2022 878 Sun Sep 4 21:15:43 UTC 2022 879 Sun Sep 4 21:15:44 UTC 2022 880 Sun Sep 4 21:15:45 UTC 2022 881 Sun Sep 4 21:15:46 UTC 2022 882 Sun Sep 4 21:15:47 UTC 2022 883 Sun Sep 4 21:15:48 UTC 2022 884 Sun Sep 4 21:15:49 UTC 2022 885 Sun Sep 4 21:15:50 UTC 2022 886 Sun Sep 4 21:15:51 UTC 2022 887 Sun Sep 4 21:15:52 UTC 2022 888 Sun Sep 4 21:15:53 UTC 2022 889 Sun Sep 4 21:15:54 UTC 2022 890 Sun Sep 4 21:15:55 UTC 2022 891 Sun Sep 4 21:15:56 UTC 2022 892 Sun Sep 4 21:15:58 UTC 2022 893 Sun Sep 4 21:15:59 UTC 2022 894 Sun Sep 4 21:16:00 UTC 2022 895 Sun Sep 4 21:16:01 UTC 2022 896 Sun Sep 4 21:16:02 UTC 2022 897 Sun Sep 4 21:16:03 UTC 2022 898 Sun Sep 4 21:16:04 UTC 2022 899 Sun Sep 4 21:16:05 UTC 2022 900 Sun Sep 4 21:16:06 UTC 2022 901 Sun Sep 4 21:16:07 UTC 2022 902 Sun Sep 4 21:16:08 UTC 2022 903 Sun Sep 4 21:16:09 UTC 2022 904 Sun Sep 4 21:16:10 UTC 2022 905 Sun Sep 4 21:16:11 UTC 2022 906 Sun Sep 4 21:16:12 UTC 2022 907 Sun Sep 4 21:16:13 UTC 2022 908 Sun Sep 4 21:16:14 UTC 2022 909 Sun Sep 4 21:16:15 UTC 2022 910 Sun Sep 4 21:16:16 UTC 2022 911 Sun Sep 4 21:16:17 UTC 2022 912 Sun Sep 4 21:16:18 UTC 2022 913 Sun Sep 4 21:16:19 UTC 2022 914 Sun Sep 4 21:16:20 UTC 2022 915 Sun Sep 4 21:16:21 UTC 2022 916 Sun Sep 4 21:16:22 UTC 2022 917 Sun Sep 4 21:16:23 UTC 2022 918 Sun Sep 4 21:16:24 UTC 2022 919 Sun Sep 4 21:16:25 UTC 2022 920 Sun Sep 4 21:16:26 UTC 2022 921 Sun Sep 4 21:16:27 UTC 2022 922 Sun Sep 4 21:16:28 UTC 2022 923 Sun Sep 4 21:16:29 UTC 2022 924 Sun Sep 4 21:16:30 UTC 2022 925 Sun Sep 4 21:16:31 UTC 2022 926 Sun Sep 4 21:16:32 UTC 2022 927 Sun Sep 4 21:16:33 UTC 2022 928 Sun Sep 4 21:16:34 UTC 2022 929 Sun Sep 4 21:16:35 UTC 2022 930 Sun Sep 4 21:16:36 UTC 2022 931 Sun Sep 4 21:16:37 UTC 2022 932 Sun Sep 4 21:16:38 UTC 2022 933 Sun Sep 4 21:16:39 UTC 2022 934 Sun Sep 4 21:16:40 UTC 2022 935 Sun Sep 4 21:16:41 UTC 2022 936 Sun Sep 4 21:16:42 UTC 2022 937 Sun Sep 4 21:16:43 UTC 2022 938 Sun Sep 4 21:16:44 UTC 2022 939 Sun Sep 4 21:16:45 UTC 2022 940 Sun Sep 4 21:16:46 UTC 2022 941 Sun Sep 4 21:16:47 UTC 2022 942 Sun Sep 4 21:16:48 UTC 2022 943 Sun Sep 4 21:16:49 UTC 2022 944 Sun Sep 4 21:16:50 UTC 2022 945 Sun Sep 4 21:16:51 UTC 2022 946 Sun Sep 4 21:16:52 UTC 2022 947 Sun Sep 4 21:16:53 UTC 2022 948 Sun Sep 4 21:16:54 UTC 2022 949 Sun Sep 4 21:16:55 UTC 2022 950 Sun Sep 4 21:16:56 UTC 2022 951 Sun Sep 4 21:16:57 UTC 2022 952 Sun Sep 4 21:16:58 UTC 2022 953 Sun Sep 4 21:16:59 UTC 2022 954 Sun Sep 4 21:17:00 UTC 2022 955 Sun Sep 4 21:17:01 UTC 2022 956 Sun Sep 4 21:17:02 UTC 2022 957 Sun Sep 4 21:17:03 UTC 2022 958 Sun Sep 4 21:17:04 UTC 2022 959 Sun Sep 4 21:17:05 UTC 2022 960 Sun Sep 4 21:17:06 UTC 2022 961 Sun Sep 4 21:17:07 UTC 2022 962 Sun Sep 4 21:17:08 UTC 2022 963 Sun Sep 4 21:17:09 UTC 2022 964 Sun Sep 4 21:17:10 UTC 2022 965 Sun Sep 4 21:17:11 UTC 2022 966 Sun Sep 4 21:17:12 UTC 2022 967 Sun Sep 4 21:17:13 UTC 2022 968 Sun Sep 4 21:17:14 UTC 2022 969 Sun Sep 4 21:17:15 UTC 2022 970 Sun Sep 4 21:17:16 UTC 2022 971 Sun Sep 4 21:17:17 UTC 2022 972 Sun Sep 4 21:17:18 UTC 2022 973 Sun Sep 4 21:17:19 UTC 2022 974 Sun Sep 4 21:17:20 UTC 2022 975 Sun Sep 4 21:17:21 UTC 2022 976 Sun Sep 4 21:17:22 UTC 2022 977 Sun Sep 4 21:17:23 UTC 2022 978 Sun Sep 4 21:17:24 UTC 2022 979 Sun Sep 4 21:17:25 UTC 2022 980 Sun Sep 4 21:17:26 UTC 2022 981 Sun Sep 4 21:17:27 UTC 2022 982 Sun Sep 4 21:17:28 UTC 2022 983 Sun Sep 4 21:17:29 UTC 2022 984 Sun Sep 4 21:17:30 UTC 2022 985 Sun Sep 4 21:17:31 UTC 2022 986 Sun Sep 4 21:17:32 UTC 2022 987 Sun Sep 4 21:17:33 UTC 2022 988 Sun Sep 4 21:17:34 UTC 2022 989 Sun Sep 4 21:17:35 UTC 2022 990 Sun Sep 4 21:17:36 UTC 2022 991 Sun Sep 4 21:17:37 UTC 2022 992 Sun Sep 4 21:17:38 UTC 2022 993 Sun Sep 4 21:17:39 UTC 2022 994 Sun Sep 4 21:17:40 UTC 2022 995 Sun Sep 4 21:17:41 UTC 2022 996 Sun Sep 4 21:17:42 UTC 2022 997 Sun Sep 4 21:17:43 UTC 2022 998 Sun Sep 4 21:17:44 UTC 2022 999 Sun Sep 4 21:17:45 UTC 2022 1000 Sun Sep 4 21:17:46 UTC 2022 1001 Sun Sep 4 21:17:47 UTC 2022 1002 Sun Sep 4 21:17:48 UTC 2022 1003 Sun Sep 4 21:17:50 UTC 2022 1004 Sun Sep 4 21:17:51 UTC 2022 1005 Sun Sep 4 21:17:52 UTC 2022 1006 Sun Sep 4 21:17:53 UTC 2022 1007 Sun Sep 4 21:17:54 UTC 2022 1008 Sun Sep 4 21:17:55 UTC 2022 1009 Sun Sep 4 21:17:56 UTC 2022 1010 Sun Sep 4 21:17:57 UTC 2022 1011 Sun Sep 4 21:17:58 UTC 2022 1012 Sun Sep 4 21:17:59 UTC 2022 1013 Sun Sep 4 21:18:00 UTC 2022 1014 Sun Sep 4 21:18:01 UTC 2022 1015 Sun Sep 4 21:18:02 UTC 2022 1016 Sun Sep 4 21:18:03 UTC 2022 1017 Sun Sep 4 21:18:04 UTC 2022 1018 Sun Sep 4 21:18:05 UTC 2022 1019 Sun Sep 4 21:18:06 UTC 2022 1020 Sun Sep 4 21:18:07 UTC 2022 1021 Sun Sep 4 21:18:08 UTC 2022 1022 Sun Sep 4 21:18:09 UTC 2022 1023 Sun Sep 4 21:18:10 UTC 2022 1024 Sun Sep 4 21:18:11 UTC 2022 1025 Sun Sep 4 21:18:12 UTC 2022 1026 Sun Sep 4 21:18:13 UTC 2022 1027 Sun Sep 4 21:18:14 UTC 2022 1028 Sun Sep 4 21:18:15 UTC 2022 1029 Sun Sep 4 21:18:16 UTC 2022 1030 Sun Sep 4 21:18:17 UTC 2022 1031 Sun Sep 4 21:18:18 UTC 2022 1032 Sun Sep 4 21:18:19 UTC 2022 1033 Sun Sep 4 21:18:20 UTC 2022 1034 Sun Sep 4 21:18:21 UTC 2022 1035 Sun Sep 4 21:18:22 UTC 2022 1036 Sun Sep 4 21:18:23 UTC 2022 1037 Sun Sep 4 21:18:24 UTC 2022 1038 Sun Sep 4 21:18:25 UTC 2022 1039 Sun Sep 4 21:18:26 UTC 2022 1040 Sun Sep 4 21:18:27 UTC 2022 1041 Sun Sep 4 21:18:28 UTC 2022 1042 Sun Sep 4 21:18:29 UTC 2022 1043 Sun Sep 4 21:18:30 UTC 2022 1044 Sun Sep 4 21:18:31 UTC 2022 1045 Sun Sep 4 21:18:32 UTC 2022 1046 Sun Sep 4 21:18:33 UTC 2022 1047 Sun Sep 4 21:18:34 UTC 2022 1048 Sun Sep 4 21:18:35 UTC 2022 1049 Sun Sep 4 21:18:36 UTC 2022 1050 Sun Sep 4 21:18:37 UTC 2022 1051 Sun Sep 4 21:18:38 UTC 2022 1052 Sun Sep 4 21:18:39 UTC 2022 1053 Sun Sep 4 21:18:40 UTC 2022 1054 Sun Sep 4 21:18:41 UTC 2022 1055 Sun Sep 4 21:18:42 UTC 2022 1056 Sun Sep 4 21:18:43 UTC 2022 1057 Sun Sep 4 21:18:44 UTC 2022 1058 Sun Sep 4 21:18:45 UTC 2022 1059 Sun Sep 4 21:18:46 UTC 2022 1060 Sun Sep 4 21:18:47 UTC 2022 1061 Sun Sep 4 21:18:48 UTC 2022 1062 Sun Sep 4 21:18:49 UTC 2022 1063 Sun Sep 4 21:18:50 UTC 2022 1064 Sun Sep 4 21:18:51 UTC 2022 1065 Sun Sep 4 21:18:52 UTC 2022 1066 Sun Sep 4 21:18:53 UTC 2022 1067 Sun Sep 4 21:18:54 UTC 2022 1068 Sun Sep 4 21:18:55 UTC 2022 1069 Sun Sep 4 21:18:56 UTC 2022 1070 Sun Sep 4 21:18:57 UTC 2022 1071 Sun Sep 4 21:18:58 UTC 2022 1072 Sun Sep 4 21:18:59 UTC 2022 1073 Sun Sep 4 21:19:00 UTC 2022 1074 Sun Sep 4 21:19:01 UTC 2022 1075 Sun Sep 4 21:19:02 UTC 2022 1076 Sun Sep 4 21:19:03 UTC 2022 1077 Sun Sep 4 21:19:04 UTC 2022 1078 Sun Sep 4 21:19:05 UTC 2022 1079 Sun Sep 4 21:19:06 UTC 2022 1080 Sun Sep 4 21:19:07 UTC 2022 1081 Sun Sep 4 21:19:08 UTC 2022 1082 Sun Sep 4 21:19:09 UTC 2022 1083 Sun Sep 4 21:19:10 UTC 2022 1084 Sun Sep 4 21:19:11 UTC 2022 1085 Sun Sep 4 21:19:12 UTC 2022 1086 Sun Sep 4 21:19:13 UTC 2022 1087 Sun Sep 4 21:19:14 UTC 2022 1088 Sun Sep 4 21:19:15 UTC 2022 1089 Sun Sep 4 21:19:16 UTC 2022 1090 Sun Sep 4 21:19:17 UTC 2022 1091 Sun Sep 4 21:19:18 UTC 2022 1092 Sun Sep 4 21:19:19 UTC 2022 1093 Sun Sep 4 21:19:20 UTC 2022 1094 Sun Sep 4 21:19:21 UTC 2022 1095 Sun Sep 4 21:19:22 UTC 2022 1096 Sun Sep 4 21:19:23 UTC 2022 1097 Sun Sep 4 21:19:24 UTC 2022 1098 Sun Sep 4 21:19:25 UTC 2022 1099 Sun Sep 4 21:19:26 UTC 2022 1100 Sun Sep 4 21:19:27 UTC 2022 1101 Sun Sep 4 21:19:28 UTC 2022 1102 Sun Sep 4 21:19:29 UTC 2022 1103 Sun Sep 4 21:19:30 UTC 2022 1104 Sun Sep 4 21:19:31 UTC 2022 1105 Sun Sep 4 21:19:32 UTC 2022 1106 Sun Sep 4 21:19:33 UTC 2022 1107 Sun Sep 4 21:19:34 UTC 2022 1108 Sun Sep 4 21:19:35 UTC 2022 1109 Sun Sep 4 21:19:36 UTC 2022 1110 Sun Sep 4 21:19:37 UTC 2022 1111 Sun Sep 4 21:19:38 UTC 2022 1112 Sun Sep 4 21:19:39 UTC 2022 1113 Sun Sep 4 21:19:40 UTC 2022 1114 Sun Sep 4 21:19:41 UTC 2022 1115 Sun Sep 4 21:19:42 UTC 2022 1116 Sun Sep 4 21:19:43 UTC 2022 1117 Sun Sep 4 21:19:44 UTC 2022 1118 Sun Sep 4 21:19:46 UTC 2022 1119 Sun Sep 4 21:19:47 UTC 2022 1120 Sun Sep 4 21:19:48 UTC 2022 1121 Sun Sep 4 21:19:49 UTC 2022 1122 Sun Sep 4 21:19:50 UTC 2022 1123 Sun Sep 4 21:19:51 UTC 2022 1124 Sun Sep 4 21:19:52 UTC 2022 1125 Sun Sep 4 21:19:53 UTC 2022 1126 Sun Sep 4 21:19:54 UTC 2022 1127 Sun Sep 4 21:19:55 UTC 2022 1128 Sun Sep 4 21:19:56 UTC 2022 1129 Sun Sep 4 21:19:57 UTC 2022 1130 Sun Sep 4 21:19:58 UTC 2022 1131 Sun Sep 4 21:19:59 UTC 2022 1132 Sun Sep 4 21:20:00 UTC 2022 1133 Sun Sep 4 21:20:01 UTC 2022 1134 Sun Sep 4 21:20:02 UTC 2022 1135 Sun Sep 4 21:20:03 UTC 2022 1136 Sun Sep 4 21:20:04 UTC 2022 1137 Sun Sep 4 21:20:05 UTC 2022 1138 Sun Sep 4 21:20:06 UTC 2022 1139 Sun Sep 4 21:20:07 UTC 2022 1140 Sun Sep 4 21:20:08 UTC 2022 1141 Sun Sep 4 21:20:09 UTC 2022 1142 Sun Sep 4 21:20:10 UTC 2022 1143 Sun Sep 4 21:20:11 UTC 2022 1144 Sun Sep 4 21:20:12 UTC 2022 1145 Sun Sep 4 21:20:13 UTC 2022 1146 Sun Sep 4 21:20:14 UTC 2022 1147 Sun Sep 4 21:20:15 UTC 2022 1148 Sun Sep 4 21:20:16 UTC 2022 1149 Sun Sep 4 21:20:17 UTC 2022 1150 Sun Sep 4 21:20:18 UTC 2022 1151 Sun Sep 4 21:20:19 UTC 2022 1152 Sun Sep 4 21:20:20 UTC 2022 1153 Sun Sep 4 21:20:21 UTC 2022 1154 Sun Sep 4 21:20:22 UTC 2022 1155 Sun Sep 4 21:20:23 UTC 2022 1156 Sun Sep 4 21:20:24 UTC 2022 1157 Sun Sep 4 21:20:25 UTC 2022 1158 Sun Sep 4 21:20:26 UTC 2022 1159 Sun Sep 4 21:20:27 UTC 2022 1160 Sun Sep 4 21:20:28 UTC 2022 1161 Sun Sep 4 21:20:29 UTC 2022 1162 Sun Sep 4 21:20:30 UTC 2022 1163 Sun Sep 4 21:20:31 UTC 2022 1164 Sun Sep 4 21:20:32 UTC 2022 1165 Sun Sep 4 21:20:33 UTC 2022 1166 Sun Sep 4 21:20:34 UTC 2022 1167 Sun Sep 4 21:20:35 UTC 2022 1168 Sun Sep 4 21:20:36 UTC 2022 1169 Sun Sep 4 21:20:37 UTC 2022 1170 Sun Sep 4 21:20:38 UTC 2022 1171 Sun Sep 4 21:20:39 UTC 2022 1172 Sun Sep 4 21:20:40 UTC 2022 1173 Sun Sep 4 21:20:41 UTC 2022 1174 Sun Sep 4 21:20:42 UTC 2022 1175 Sun Sep 4 21:20:43 UTC 2022 1176 Sun Sep 4 21:20:44 UTC 2022 1177 Sun Sep 4 21:20:45 UTC 2022 1178 Sun Sep 4 21:20:46 UTC 2022 1179 Sun Sep 4 21:20:47 UTC 2022 1180 Sun Sep 4 21:20:48 UTC 2022 1181 Sun Sep 4 21:20:49 UTC 2022 1182 Sun Sep 4 21:20:50 UTC 2022 1183 Sun Sep 4 21:20:51 UTC 2022 1184 Sun Sep 4 21:20:52 UTC 2022 1185 Sun Sep 4 21:20:53 UTC 2022 1186 Sun Sep 4 21:20:54 UTC 2022 1187 Sun Sep 4 21:20:55 UTC 2022 1188 Sun Sep 4 21:20:56 UTC 2022 1189 Sun Sep 4 21:20:57 UTC 2022 1190 Sun Sep 4 21:20:58 UTC 2022 1191 Sun Sep 4 21:20:59 UTC 2022 1192 Sun Sep 4 21:21:00 UTC 2022 1193 Sun Sep 4 21:21:01 UTC 2022 1194 Sun Sep 4 21:21:02 UTC 2022 1195 Sun Sep 4 21:21:03 UTC 2022 1196 Sun Sep 4 21:21:04 UTC 2022 1197 Sun Sep 4 21:21:05 UTC 2022 1198 Sun Sep 4 21:21:06 UTC 2022 1199 Sun Sep 4 21:21:07 UTC 2022 1200 Sun Sep 4 21:21:08 UTC 2022 1201 Sun Sep 4 21:21:09 UTC 2022 1202 Sun Sep 4 21:21:10 UTC 2022 1203 Sun Sep 4 21:21:11 UTC 2022 1204 Sun Sep 4 21:21:12 UTC 2022 1205 Sun Sep 4 21:21:13 UTC 2022 1206 Sun Sep 4 21:21:14 UTC 2022 1207 Sun Sep 4 21:21:15 UTC 2022 1208 Sun Sep 4 21:21:16 UTC 2022 1209 Sun Sep 4 21:21:17 UTC 2022 1210 Sun Sep 4 21:21:18 UTC 2022 1211 Sun Sep 4 21:21:19 UTC 2022 1212 Sun Sep 4 21:21:20 UTC 2022 1213 Sun Sep 4 21:21:21 UTC 2022 1214 Sun Sep 4 21:21:22 UTC 2022 1215 Sun Sep 4 21:21:23 UTC 2022 1216 Sun Sep 4 21:21:24 UTC 2022 1217 Sun Sep 4 21:21:25 UTC 2022 1218 Sun Sep 4 21:21:26 UTC 2022 1219 Sun Sep 4 21:21:27 UTC 2022 1220 Sun Sep 4 21:21:28 UTC 2022 1221 Sun Sep 4 21:21:29 UTC 2022 1222 Sun Sep 4 21:21:30 UTC 2022 1223 Sun Sep 4 21:21:31 UTC 2022 1224 Sun Sep 4 21:21:32 UTC 2022 1225 Sun Sep 4 21:21:33 UTC 2022 1226 Sun Sep 4 21:21:34 UTC 2022 1227 Sun Sep 4 21:21:35 UTC 2022 1228 Sun Sep 4 21:21:36 UTC 2022 1229 Sun Sep 4 21:21:37 UTC 2022 1230 Sun Sep 4 21:21:38 UTC 2022 1231 Sun Sep 4 21:21:39 UTC 2022 1232 Sun Sep 4 21:21:40 UTC 2022 1233 Sun Sep 4 21:21:41 UTC 2022 1234 Sun Sep 4 21:21:43 UTC 2022 1235 Sun Sep 4 21:21:44 UTC 2022 1236 Sun Sep 4 21:21:45 UTC 2022 1237 Sun Sep 4 21:21:46 UTC 2022 1238 Sun Sep 4 21:21:47 UTC 2022 1239 Sun Sep 4 21:21:48 UTC 2022 1240 Sun Sep 4 21:21:49 UTC 2022 1241 Sun Sep 4 21:21:50 UTC 2022 1242 Sun Sep 4 21:21:51 UTC 2022 1243 Sun Sep 4 21:21:52 UTC 2022 1244 Sun Sep 4 21:21:53 UTC 2022 1245 Sun Sep 4 21:21:54 UTC 2022 1246 Sun Sep 4 21:21:55 UTC 2022 1247 Sun Sep 4 21:21:56 UTC 2022 1248 Sun Sep 4 21:21:57 UTC 2022 1249 Sun Sep 4 21:21:58 UTC 2022 1250 Sun Sep 4 21:21:59 UTC 2022 1251 Sun Sep 4 21:22:00 UTC 2022 1252 Sun Sep 4 21:22:01 UTC 2022 1253 Sun Sep 4 21:22:02 UTC 2022 1254 Sun Sep 4 21:22:03 UTC 2022 1255 Sun Sep 4 21:22:04 UTC 2022 1256 Sun Sep 4 21:22:05 UTC 2022 1257 Sun Sep 4 21:22:06 UTC 2022 1258 Sun Sep 4 21:22:07 UTC 2022 1259 Sun Sep 4 21:22:08 UTC 2022 1260 Sun Sep 4 21:22:09 UTC 2022 1261 Sun Sep 4 21:22:10 UTC 2022 1262 Sun Sep 4 21:22:11 UTC 2022 1263 Sun Sep 4 21:22:12 UTC 2022 1264 Sun Sep 4 21:22:13 UTC 2022 1265 Sun Sep 4 21:22:14 UTC 2022 1266 Sun Sep 4 21:22:15 UTC 2022 1267 Sun Sep 4 21:22:16 UTC 2022 1268 Sun Sep 4 21:22:17 UTC 2022 1269 Sun Sep 4 21:22:18 UTC 2022 1270 Sun Sep 4 21:22:19 UTC 2022 1271 Sun Sep 4 21:22:20 UTC 2022 1272 Sun Sep 4 21:22:21 UTC 2022 1273 Sun Sep 4 21:22:22 UTC 2022 1274 Sun Sep 4 21:22:23 UTC 2022 1275 Sun Sep 4 21:22:24 UTC 2022 1276 Sun Sep 4 21:22:25 UTC 2022 1277 Sun Sep 4 21:22:26 UTC 2022 1278 Sun Sep 4 21:22:27 UTC 2022 1279 Sun Sep 4 21:22:28 UTC 2022 1280 Sun Sep 4 21:22:29 UTC 2022 1281 Sun Sep 4 21:22:30 UTC 2022 1282 Sun Sep 4 21:22:31 UTC 2022 1283 Sun Sep 4 21:22:32 UTC 2022 1284 Sun Sep 4 21:22:33 UTC 2022 1285 Sun Sep 4 21:22:34 UTC 2022 1286 Sun Sep 4 21:22:35 UTC 2022 1287 Sun Sep 4 21:22:36 UTC 2022 1288 Sun Sep 4 21:22:37 UTC 2022 1289 Sun Sep 4 21:22:38 UTC 2022 1290 Sun Sep 4 21:22:39 UTC 2022 1291 Sun Sep 4 21:22:40 UTC 2022 1292 Sun Sep 4 21:22:41 UTC 2022 1293 Sun Sep 4 21:22:42 UTC 2022 1294 Sun Sep 4 21:22:43 UTC 2022 1295 Sun Sep 4 21:22:44 UTC 2022 1296 Sun Sep 4 21:22:45 UTC 2022 1297 Sun Sep 4 21:22:46 UTC 2022 1298 Sun Sep 4 21:22:47 UTC 2022 1299 Sun Sep 4 21:22:48 UTC 2022 1300 Sun Sep 4 21:22:49 UTC 2022 1301 Sun Sep 4 21:22:50 UTC 2022 1302 Sun Sep 4 21:22:51 UTC 2022 1303 Sun Sep 4 21:22:52 UTC 2022 1304 Sun Sep 4 21:22:53 UTC 2022 1305 Sun Sep 4 21:22:54 UTC 2022 1306 Sun Sep 4 21:22:55 UTC 2022 1307 Sun Sep 4 21:22:56 UTC 2022 1308 Sun Sep 4 21:22:57 UTC 2022 1309 Sun Sep 4 21:22:58 UTC 2022 1310 Sun Sep 4 21:22:59 UTC 2022 1311 Sun Sep 4 21:23:00 UTC 2022 1312 Sun Sep 4 21:23:01 UTC 2022 1313 Sun Sep 4 21:23:02 UTC 2022 1314 Sun Sep 4 21:23:03 UTC 2022 1315 Sun Sep 4 21:23:04 UTC 2022 1316 Sun Sep 4 21:23:05 UTC 2022 1317 Sun Sep 4 21:23:06 UTC 2022 1318 Sun Sep 4 21:23:07 UTC 2022 1319 Sun Sep 4 21:23:08 UTC 2022 1320 Sun Sep 4 21:23:09 UTC 2022 1321 Sun Sep 4 21:23:10 UTC 2022 1322 Sun Sep 4 21:23:11 UTC 2022 1323 Sun Sep 4 21:23:12 UTC 2022 1324 Sun Sep 4 21:23:13 UTC 2022 1325 Sun Sep 4 21:23:14 UTC 2022 1326 Sun Sep 4 21:23:15 UTC 2022 1327 Sun Sep 4 21:23:16 UTC 2022 1328 Sun Sep 4 21:23:17 UTC 2022 1329 Sun Sep 4 21:23:18 UTC 2022 1330 Sun Sep 4 21:23:19 UTC 2022 1331 Sun Sep 4 21:23:20 UTC 2022 1332 Sun Sep 4 21:23:21 UTC 2022 1333 Sun Sep 4 21:23:22 UTC 2022 1334 Sun Sep 4 21:23:23 UTC 2022 1335 Sun Sep 4 21:23:24 UTC 2022 1336 Sun Sep 4 21:23:25 UTC 2022 1337 Sun Sep 4 21:23:26 UTC 2022 1338 Sun Sep 4 21:23:27 UTC 2022 1339 Sun Sep 4 21:23:28 UTC 2022 1340 Sun Sep 4 21:23:29 UTC 2022 1341 Sun Sep 4 21:23:30 UTC 2022 1342 Sun Sep 4 21:23:31 UTC 2022 1343 Sun Sep 4 21:23:32 UTC 2022 1344 Sun Sep 4 21:23:33 UTC 2022 1345 Sun Sep 4 21:23:34 UTC 2022 1346 Sun Sep 4 21:23:35 UTC 2022 1347 Sun Sep 4 21:23:36 UTC 2022 1348 Sun Sep 4 21:23:37 UTC 2022 1349 Sun Sep 4 21:23:38 UTC 2022 1350 Sun Sep 4 21:23:39 UTC 2022 1351 Sun Sep 4 21:23:40 UTC 2022 1352 Sun Sep 4 21:23:41 UTC 2022 1353 Sun Sep 4 21:23:42 UTC 2022 1354 Sun Sep 4 21:23:44 UTC 2022 1355 Sun Sep 4 21:23:45 UTC 2022 1356 Sun Sep 4 21:23:46 UTC 2022 1357 Sun Sep 4 21:23:47 UTC 2022 1358 Sun Sep 4 21:23:48 UTC 2022 1359 Sun Sep 4 21:23:49 UTC 2022 1360 Sun Sep 4 21:23:50 UTC 2022 1361 Sun Sep 4 21:23:51 UTC 2022 1362 Sun Sep 4 21:23:52 UTC 2022 1363 Sun Sep 4 21:23:53 UTC 2022 1364 Sun Sep 4 21:23:54 UTC 2022 1365 Sun Sep 4 21:23:55 UTC 2022 1366 Sun Sep 4 21:23:56 UTC 2022 1367 Sun Sep 4 21:23:57 UTC 2022 1368 Sun Sep 4 21:23:58 UTC 2022 1369 Sun Sep 4 21:23:59 UTC 2022 1370 Sun Sep 4 21:24:00 UTC 2022 1371 Sun Sep 4 21:24:01 UTC 2022 1372 Sun Sep 4 21:24:02 UTC 2022 1373 Sun Sep 4 21:24:03 UTC 2022 1374 Sun Sep 4 21:24:04 UTC 2022 1375 Sun Sep 4 21:24:05 UTC 2022 1376 Sun Sep 4 21:24:06 UTC 2022 1377 Sun Sep 4 21:24:07 UTC 2022 1378 Sun Sep 4 21:24:08 UTC 2022 1379 Sun Sep 4 21:24:09 UTC 2022 1380 Sun Sep 4 21:24:10 UTC 2022 1381 Sun Sep 4 21:24:11 UTC 2022 1382 Sun Sep 4 21:24:12 UTC 2022 1383 Sun Sep 4 21:24:13 UTC 2022 1384 Sun Sep 4 21:24:14 UTC 2022 1385 Sun Sep 4 21:24:15 UTC 2022 1386 Sun Sep 4 21:24:16 UTC 2022 1387 Sun Sep 4 21:24:17 UTC 2022 1388 Sun Sep 4 21:24:18 UTC 2022 1389 Sun Sep 4 21:24:19 UTC 2022 1390 Sun Sep 4 21:24:20 UTC 2022 1391 Sun Sep 4 21:24:21 UTC 2022 1392 Sun Sep 4 21:24:22 UTC 2022 1393 Sun Sep 4 21:24:23 UTC 2022 1394 Sun Sep 4 21:24:24 UTC 2022 1395 Sun Sep 4 21:24:25 UTC 2022 1396 Sun Sep 4 21:24:26 UTC 2022 1397 Sun Sep 4 21:24:27 UTC 2022 1398 Sun Sep 4 21:24:28 UTC 2022 1399 Sun Sep 4 21:24:29 UTC 2022 1400 Sun Sep 4 21:24:30 UTC 2022 1401 Sun Sep 4 21:24:31 UTC 2022 1402 Sun Sep 4 21:24:32 UTC 2022 1403 Sun Sep 4 21:24:33 UTC 2022 1404 Sun Sep 4 21:24:34 UTC 2022 1405 Sun Sep 4 21:24:35 UTC 2022 1406 Sun Sep 4 21:24:36 UTC 2022 1407 Sun Sep 4 21:24:37 UTC 2022 1408 Sun Sep 4 21:24:38 UTC 2022 1409 Sun Sep 4 21:24:39 UTC 2022 1410 Sun Sep 4 21:24:40 UTC 2022 1411 Sun Sep 4 21:24:41 UTC 2022 1412 Sun Sep 4 21:24:42 UTC 2022 1413 Sun Sep 4 21:24:43 UTC 2022 1414 Sun Sep 4 21:24:44 UTC 2022 1415 Sun Sep 4 21:24:45 UTC 2022 1416 Sun Sep 4 21:24:46 UTC 2022 1417 Sun Sep 4 21:24:47 UTC 2022 1418 Sun Sep 4 21:24:48 UTC 2022 1419 Sun Sep 4 21:24:49 UTC 2022 1420 Sun Sep 4 21:24:50 UTC 2022 1421 Sun Sep 4 21:24:51 UTC 2022 1422 Sun Sep 4 21:24:52 UTC 2022 1423 Sun Sep 4 21:24:53 UTC 2022 1424 Sun Sep 4 21:24:54 UTC 2022 1425 Sun Sep 4 21:24:55 UTC 2022 1426 Sun Sep 4 21:24:56 UTC 2022 1427 Sun Sep 4 21:24:57 UTC 2022 1428 Sun Sep 4 21:24:58 UTC 2022 1429 Sun Sep 4 21:24:59 UTC 2022 1430 Sun Sep 4 21:25:00 UTC 2022 1431 Sun Sep 4 21:25:01 UTC 2022 1432 Sun Sep 4 21:25:02 UTC 2022 1433 Sun Sep 4 21:25:03 UTC 2022 1434 Sun Sep 4 21:25:04 UTC 2022 1435 Sun Sep 4 21:25:05 UTC 2022 1436 Sun Sep 4 21:25:06 UTC 2022 1437 Sun Sep 4 21:25:07 UTC 2022 1438 Sun Sep 4 21:25:08 UTC 2022 1439 Sun Sep 4 21:25:09 UTC 2022 1440 Sun Sep 4 21:25:10 UTC 2022 1441 Sun Sep 4 21:25:11 UTC 2022 1442 Sun Sep 4 21:25:12 UTC 2022 1443 Sun Sep 4 21:25:13 UTC 2022 1444 Sun Sep 4 21:25:14 UTC 2022 1445 Sun Sep 4 21:25:15 UTC 2022 1446 Sun Sep 4 21:25:16 UTC 2022 1447 Sun Sep 4 21:25:17 UTC 2022 1448 Sun Sep 4 21:25:18 UTC 2022 1449 Sun Sep 4 21:25:19 UTC 2022 1450 Sun Sep 4 21:25:20 UTC 2022 1451 Sun Sep 4 21:25:21 UTC 2022 1452 Sun Sep 4 21:25:22 UTC 2022 1453 Sun Sep 4 21:25:23 UTC 2022 1454 Sun Sep 4 21:25:24 UTC 2022 1455 Sun Sep 4 21:25:25 UTC 2022 1456 Sun Sep 4 21:25:26 UTC 2022 1457 Sun Sep 4 21:25:27 UTC 2022 1458 Sun Sep 4 21:25:28 UTC 2022 1459 Sun Sep 4 21:25:29 UTC 2022 1460 Sun Sep 4 21:25:30 UTC 2022 1461 Sun Sep 4 21:25:31 UTC 2022 1462 Sun Sep 4 21:25:32 UTC 2022 1463 Sun Sep 4 21:25:33 UTC 2022 1464 Sun Sep 4 21:25:34 UTC 2022 1465 Sun Sep 4 21:25:35 UTC 2022 1466 Sun Sep 4 21:25:36 UTC 2022 1467 Sun Sep 4 21:25:37 UTC 2022 1468 Sun Sep 4 21:25:38 UTC 2022 1469 Sun Sep 4 21:25:39 UTC 2022 1470 Sun Sep 4 21:25:40 UTC 2022 1471 Sun Sep 4 21:25:41 UTC 2022 1472 Sun Sep 4 21:25:42 UTC 2022 1473 Sun Sep 4 21:25:43 UTC 2022 1474 Sun Sep 4 21:25:45 UTC 2022 1475 Sun Sep 4 21:25:46 UTC 2022 1476 Sun Sep 4 21:25:47 UTC 2022 1477 Sun Sep 4 21:25:48 UTC 2022 1478 Sun Sep 4 21:25:49 UTC 2022 1479 Sun Sep 4 21:25:50 UTC 2022 1480 Sun Sep 4 21:25:51 UTC 2022 1481 Sun Sep 4 21:25:52 UTC 2022 1482 Sun Sep 4 21:25:53 UTC 2022 1483 Sun Sep 4 21:25:54 UTC 2022 1484 Sun Sep 4 21:25:55 UTC 2022 1485 Sun Sep 4 21:25:56 UTC 2022 1486 Sun Sep 4 21:25:57 UTC 2022 1487 Sun Sep 4 21:25:58 UTC 2022 1488 Sun Sep 4 21:25:59 UTC 2022 1489 Sun Sep 4 21:26:00 UTC 2022 1490 Sun Sep 4 21:26:01 UTC 2022 1491 Sun Sep 4 21:26:02 UTC 2022 1492 Sun Sep 4 21:26:03 UTC 2022 1493 Sun Sep 4 21:26:04 UTC 2022 1494 Sun Sep 4 21:26:05 UTC 2022 1495 Sun Sep 4 21:26:06 UTC 2022 1496 Sun Sep 4 21:26:07 UTC 2022 1497 Sun Sep 4 21:26:08 UTC 2022 1498 Sun Sep 4 21:26:09 UTC 2022 1499 Sun Sep 4 21:26:10 UTC 2022 1500 Sun Sep 4 21:26:11 UTC 2022 1501 Sun Sep 4 21:26:12 UTC 2022 1502 Sun Sep 4 21:26:13 UTC 2022 1503 Sun Sep 4 21:26:14 UTC 2022 1504 Sun Sep 4 21:26:15 UTC 2022 1505 Sun Sep 4 21:26:16 UTC 2022 1506 Sun Sep 4 21:26:17 UTC 2022 1507 Sun Sep 4 21:26:18 UTC 2022 1508 Sun Sep 4 21:26:19 UTC 2022 1509 Sun Sep 4 21:26:20 UTC 2022 1510 Sun Sep 4 21:26:21 UTC 2022 1511 Sun Sep 4 21:26:22 UTC 2022 1512 Sun Sep 4 21:26:23 UTC 2022 1513 Sun Sep 4 21:26:24 UTC 2022 1514 Sun Sep 4 21:26:25 UTC 2022 1515 Sun Sep 4 21:26:26 UTC 2022 1516 Sun Sep 4 21:26:27 UTC 2022 1517 Sun Sep 4 21:26:28 UTC 2022 1518 Sun Sep 4 21:26:29 UTC 2022 1519 Sun Sep 4 21:26:30 UTC 2022 1520 Sun Sep 4 21:26:31 UTC 2022 1521 Sun Sep 4 21:26:32 UTC 2022 1522 Sun Sep 4 21:26:33 UTC 2022 1523 Sun Sep 4 21:26:34 UTC 2022 1524 Sun Sep 4 21:26:35 UTC 2022 1525 Sun Sep 4 21:26:36 UTC 2022 1526 Sun Sep 4 21:26:37 UTC 2022 1527 Sun Sep 4 21:26:38 UTC 2022 1528 Sun Sep 4 21:26:39 UTC 2022 1529 Sun Sep 4 21:26:40 UTC 2022 1530 Sun Sep 4 21:26:41 UTC 2022 1531 Sun Sep 4 21:26:42 UTC 2022 1532 Sun Sep 4 21:26:43 UTC 2022 1533 Sun Sep 4 21:26:44 UTC 2022 1534 Sun Sep 4 21:26:45 UTC 2022 1535 Sun Sep 4 21:26:46 UTC 2022 1536 Sun Sep 4 21:26:47 UTC 2022 1537 Sun Sep 4 21:26:48 UTC 2022 1538 Sun Sep 4 21:26:49 UTC 2022 1539 Sun Sep 4 21:26:50 UTC 2022 1540 Sun Sep 4 21:26:51 UTC 2022 1541 Sun Sep 4 21:26:52 UTC 2022 1542 Sun Sep 4 21:26:53 UTC 2022 1543 Sun Sep 4 21:26:54 UTC 2022 1544 Sun Sep 4 21:26:55 UTC 2022 1545 Sun Sep 4 21:26:56 UTC 2022 1546 Sun Sep 4 21:26:57 UTC 2022 1547 Sun Sep 4 21:26:58 UTC 2022 1548 Sun Sep 4 21:26:59 UTC 2022 1549 Sun Sep 4 21:27:00 UTC 2022 1550 Sun Sep 4 21:27:01 UTC 2022 1551 Sun Sep 4 21:27:02 UTC 2022 1552 Sun Sep 4 21:27:03 UTC 2022 1553 Sun Sep 4 21:27:04 UTC 2022 1554 Sun Sep 4 21:27:05 UTC 2022 1555 Sun Sep 4 21:27:06 UTC 2022 1556 Sun Sep 4 21:27:07 UTC 2022 1557 Sun Sep 4 21:27:08 UTC 2022 1558 Sun Sep 4 21:27:09 UTC 2022 1559 Sun Sep 4 21:27:10 UTC 2022 1560 Sun Sep 4 21:27:11 UTC 2022 1561 Sun Sep 4 21:27:12 UTC 2022 1562 Sun Sep 4 21:27:13 UTC 2022 1563 Sun Sep 4 21:27:14 UTC 2022 1564 Sun Sep 4 21:27:15 UTC 2022 1565 Sun Sep 4 21:27:16 UTC 2022 1566 Sun Sep 4 21:27:17 UTC 2022 1567 Sun Sep 4 21:27:18 UTC 2022 1568 Sun Sep 4 21:27:19 UTC 2022 1569 Sun Sep 4 21:27:20 UTC 2022 1570 Sun Sep 4 21:27:21 UTC 2022 1571 Sun Sep 4 21:27:22 UTC 2022 1572 Sun Sep 4 21:27:23 UTC 2022 1573 Sun Sep 4 21:27:24 UTC 2022 1574 Sun Sep 4 21:27:25 UTC 2022 1575 Sun Sep 4 21:27:26 UTC 2022 1576 Sun Sep 4 21:27:27 UTC 2022 1577 Sun Sep 4 21:27:28 UTC 2022 1578 Sun Sep 4 21:27:29 UTC 2022 1579 Sun Sep 4 21:27:30 UTC 2022 1580 Sun Sep 4 21:27:31 UTC 2022 1581 Sun Sep 4 21:27:32 UTC 2022 1582 Sun Sep 4 21:27:33 UTC 2022 1583 Sun Sep 4 21:27:34 UTC 2022 1584 Sun Sep 4 21:27:35 UTC 2022 1585 Sun Sep 4 21:27:36 UTC 2022 1586 Sun Sep 4 21:27:37 UTC 2022 1587 Sun Sep 4 21:27:38 UTC 2022 1588 Sun Sep 4 21:27:39 UTC 2022 1589 Sun Sep 4 21:27:40 UTC 2022 1590 Sun Sep 4 21:27:41 UTC 2022 1591 Sun Sep 4 21:27:42 UTC 2022 1592 Sun Sep 4 21:27:43 UTC 2022 1593 Sun Sep 4 21:27:45 UTC 2022 1594 Sun Sep 4 21:27:46 UTC 2022 1595 Sun Sep 4 21:27:47 UTC 2022 1596 Sun Sep 4 21:27:48 UTC 2022 1597 Sun Sep 4 21:27:49 UTC 2022 1598 Sun Sep 4 21:27:50 UTC 2022 1599 Sun Sep 4 21:27:51 UTC 2022 1600 Sun Sep 4 21:27:52 UTC 2022 1601 Sun Sep 4 21:27:53 UTC 2022 1602 Sun Sep 4 21:27:54 UTC 2022 1603 Sun Sep 4 21:27:55 UTC 2022 1604 Sun Sep 4 21:27:56 UTC 2022 1605 Sun Sep 4 21:27:57 UTC 2022 1606 Sun Sep 4 21:27:58 UTC 2022 1607 Sun Sep 4 21:27:59 UTC 2022 1608 Sun Sep 4 21:28:00 UTC 2022 1609 Sun Sep 4 21:28:01 UTC 2022 1610 Sun Sep 4 21:28:02 UTC 2022 1611 Sun Sep 4 21:28:03 UTC 2022 1612 Sun Sep 4 21:28:04 UTC 2022 1613 Sun Sep 4 21:28:05 UTC 2022 1614 Sun Sep 4 21:28:06 UTC 2022 1615 Sun Sep 4 21:28:07 UTC 2022 1616 Sun Sep 4 21:28:08 UTC 2022 1617 Sun Sep 4 21:28:09 UTC 2022 1618 Sun Sep 4 21:28:10 UTC 2022 1619 Sun Sep 4 21:28:11 UTC 2022 1620 Sun Sep 4 21:28:12 UTC 2022 1621 Sun Sep 4 21:28:13 UTC 2022 1622 Sun Sep 4 21:28:14 UTC 2022 1623 Sun Sep 4 21:28:15 UTC 2022 1624 Sun Sep 4 21:28:16 UTC 2022 1625 Sun Sep 4 21:28:17 UTC 2022 1626 Sun Sep 4 21:28:18 UTC 2022 1627 Sun Sep 4 21:28:19 UTC 2022 1628 Sun Sep 4 21:28:20 UTC 2022 1629 Sun Sep 4 21:28:21 UTC 2022 1630 Sun Sep 4 21:28:22 UTC 2022 1631 Sun Sep 4 21:28:23 UTC 2022 1632 Sun Sep 4 21:28:24 UTC 2022 1633 Sun Sep 4 21:28:25 UTC 2022 1634 Sun Sep 4 21:28:26 UTC 2022 1635 Sun Sep 4 21:28:27 UTC 2022 1636 Sun Sep 4 21:28:28 UTC 2022 1637 Sun Sep 4 21:28:29 UTC 2022 1638 Sun Sep 4 21:28:30 UTC 2022 1639 Sun Sep 4 21:28:31 UTC 2022 1640 Sun Sep 4 21:28:32 UTC 2022 1641 Sun Sep 4 21:28:33 UTC 2022 1642 Sun Sep 4 21:28:34 UTC 2022 1643 Sun Sep 4 21:28:35 UTC 2022 1644 Sun Sep 4 21:28:36 UTC 2022 1645 Sun Sep 4 21:28:37 UTC 2022 1646 Sun Sep 4 21:28:38 UTC 2022 1647 Sun Sep 4 21:28:39 UTC 2022 1648 Sun Sep 4 21:28:40 UTC 2022 1649 Sun Sep 4 21:28:41 UTC 2022 1650 Sun Sep 4 21:28:42 UTC 2022 1651 Sun Sep 4 21:28:43 UTC 2022 1652 Sun Sep 4 21:28:44 UTC 2022 1653 Sun Sep 4 21:28:45 UTC 2022 1654 Sun Sep 4 21:28:46 UTC 2022 1655 Sun Sep 4 21:28:47 UTC 2022 1656 Sun Sep 4 21:28:48 UTC 2022 1657 Sun Sep 4 21:28:49 UTC 2022 1658 Sun Sep 4 21:28:50 UTC 2022 1659 Sun Sep 4 21:28:51 UTC 2022 1660 Sun Sep 4 21:28:52 UTC 2022 1661 Sun Sep 4 21:28:53 UTC 2022 1662 Sun Sep 4 21:28:54 UTC 2022 1663 Sun Sep 4 21:28:55 UTC 2022 1664 Sun Sep 4 21:28:56 UTC 2022 1665 Sun Sep 4 21:28:57 UTC 2022 1666 Sun Sep 4 21:28:58 UTC 2022 1667 Sun Sep 4 21:28:59 UTC 2022 1668 Sun Sep 4 21:29:00 UTC 2022 1669 Sun Sep 4 21:29:01 UTC 2022 1670 Sun Sep 4 21:29:02 UTC 2022 1671 Sun Sep 4 21:29:03 UTC 2022 1672 Sun Sep 4 21:29:04 UTC 2022 1673 Sun Sep 4 21:29:05 UTC 2022 1674 Sun Sep 4 21:29:06 UTC 2022 1675 Sun Sep 4 21:29:07 UTC 2022 1676 Sun Sep 4 21:29:08 UTC 2022 1677 Sun Sep 4 21:29:09 UTC 2022 1678 Sun Sep 4 21:29:10 UTC 2022 1679 Sun Sep 4 21:29:11 UTC 2022 1680 Sun Sep 4 21:29:12 UTC 2022 1681 Sun Sep 4 21:29:13 UTC 2022 1682 Sun Sep 4 21:29:14 UTC 2022 1683 Sun Sep 4 21:29:15 UTC 2022 1684 Sun Sep 4 21:29:16 UTC 2022 1685 Sun Sep 4 21:29:17 UTC 2022 1686 Sun Sep 4 21:29:18 UTC 2022 1687 Sun Sep 4 21:29:19 UTC 2022 1688 Sun Sep 4 21:29:20 UTC 2022 1689 Sun Sep 4 21:29:21 UTC 2022 1690 Sun Sep 4 21:29:22 UTC 2022 1691 Sun Sep 4 21:29:23 UTC 2022 1692 Sun Sep 4 21:29:24 UTC 2022 1693 Sun Sep 4 21:29:25 UTC 2022 1694 Sun Sep 4 21:29:26 UTC 2022 1695 Sun Sep 4 21:29:27 UTC 2022 1696 Sun Sep 4 21:29:28 UTC 2022 1697 Sun Sep 4 21:29:29 UTC 2022 1698 Sun Sep 4 21:29:30 UTC 2022 1699 Sun Sep 4 21:29:31 UTC 2022 1700 Sun Sep 4 21:29:32 UTC 2022 1701 Sun Sep 4 21:29:33 UTC 2022 1702 Sun Sep 4 21:29:34 UTC 2022 1703 Sun Sep 4 21:29:35 UTC 2022 1704 Sun Sep 4 21:29:36 UTC 2022 1705 Sun Sep 4 21:29:37 UTC 2022 1706 Sun Sep 4 21:29:38 UTC 2022 1707 Sun Sep 4 21:29:39 UTC 2022 1708 Sun Sep 4 21:29:40 UTC 2022 1709 Sun Sep 4 21:29:41 UTC 2022 1710 Sun Sep 4 21:29:42 UTC 2022 1711 Sun Sep 4 21:29:43 UTC 2022 1712 Sun Sep 4 21:29:44 UTC 2022 1713 Sun Sep 4 21:29:45 UTC 2022 1714 Sun Sep 4 21:29:47 UTC 2022 1715 Sun Sep 4 21:29:48 UTC 2022 1716 Sun Sep 4 21:29:49 UTC 2022 1717 Sun Sep 4 21:29:50 UTC 2022 1718 Sun Sep 4 21:29:51 UTC 2022 1719 Sun Sep 4 21:29:52 UTC 2022 1720 Sun Sep 4 21:29:53 UTC 2022 1721 Sun Sep 4 21:29:54 UTC 2022 1722 Sun Sep 4 21:29:55 UTC 2022 1723 Sun Sep 4 21:29:56 UTC 2022 1724 Sun Sep 4 21:29:57 UTC 2022 1725 Sun Sep 4 21:29:58 UTC 2022 1726 Sun Sep 4 21:29:59 UTC 2022 1727 Sun Sep 4 21:30:00 UTC 2022 1728 Sun Sep 4 21:30:01 UTC 2022 1729 Sun Sep 4 21:30:02 UTC 2022 1730 Sun Sep 4 21:30:03 UTC 2022 1731 Sun Sep 4 21:30:04 UTC 2022 1732 Sun Sep 4 21:30:05 UTC 2022 1733 Sun Sep 4 21:30:06 UTC 2022 1734 Sun Sep 4 21:30:07 UTC 2022 1735 Sun Sep 4 21:30:08 UTC 2022 1736 Sun Sep 4 21:30:09 UTC 2022 1737 Sun Sep 4 21:30:10 UTC 2022 1738 Sun Sep 4 21:30:11 UTC 2022 1739 Sun Sep 4 21:30:12 UTC 2022 1740 Sun Sep 4 21:30:13 UTC 2022 1741 Sun Sep 4 21:30:14 UTC 2022 1742 Sun Sep 4 21:30:15 UTC 2022 1743 Sun Sep 4 21:30:16 UTC 2022 1744 Sun Sep 4 21:30:17 UTC 2022 1745 Sun Sep 4 21:30:18 UTC 2022 1746 Sun Sep 4 21:30:19 UTC 2022 1747 Sun Sep 4 21:30:20 UTC 2022 1748 Sun Sep 4 21:30:21 UTC 2022 1749 Sun Sep 4 21:30:22 UTC 2022 1750 Sun Sep 4 21:30:23 UTC 2022 1751 Sun Sep 4 21:30:24 UTC 2022 1752 Sun Sep 4 21:30:25 UTC 2022 1753 Sun Sep 4 21:30:26 UTC 2022 1754 Sun Sep 4 21:30:27 UTC 2022 1755 Sun Sep 4 21:30:28 UTC 2022 1756 Sun Sep 4 21:30:29 UTC 2022 1757 Sun Sep 4 21:30:30 UTC 2022 1758 Sun Sep 4 21:30:31 UTC 2022 1759 Sun Sep 4 21:30:32 UTC 2022 1760 Sun Sep 4 21:30:33 UTC 2022 1761 Sun Sep 4 21:30:34 UTC 2022 1762 Sun Sep 4 21:30:35 UTC 2022 1763 Sun Sep 4 21:30:36 UTC 2022 1764 Sun Sep 4 21:30:37 UTC 2022 1765 Sun Sep 4 21:30:38 UTC 2022 1766 Sun Sep 4 21:30:39 UTC 2022 1767 Sun Sep 4 21:30:40 UTC 2022 1768 Sun Sep 4 21:30:41 UTC 2022 1769 Sun Sep 4 21:30:42 UTC 2022 1770 Sun Sep 4 21:30:43 UTC 2022 1771 Sun Sep 4 21:30:44 UTC 2022 1772 Sun Sep 4 21:30:45 UTC 2022 1773 Sun Sep 4 21:30:46 UTC 2022 1774 Sun Sep 4 21:30:47 UTC 2022 1775 Sun Sep 4 21:30:48 UTC 2022 1776 Sun Sep 4 21:30:49 UTC 2022 1777 Sun Sep 4 21:30:50 UTC 2022 1778 Sun Sep 4 21:30:51 UTC 2022 1779 Sun Sep 4 21:30:52 UTC 2022 1780 Sun Sep 4 21:30:53 UTC 2022 1781 Sun Sep 4 21:30:54 UTC 2022 1782 Sun Sep 4 21:30:55 UTC 2022 1783 Sun Sep 4 21:30:56 UTC 2022 1784 Sun Sep 4 21:30:57 UTC 2022 1785 Sun Sep 4 21:30:58 UTC 2022 1786 Sun Sep 4 21:30:59 UTC 2022 1787 Sun Sep 4 21:31:00 UTC 2022 1788 Sun Sep 4 21:31:01 UTC 2022 1789 Sun Sep 4 21:31:02 UTC 2022 1790 Sun Sep 4 21:31:03 UTC 2022 1791 Sun Sep 4 21:31:04 UTC 2022 1792 Sun Sep 4 21:31:05 UTC 2022 1793 Sun Sep 4 21:31:06 UTC 2022 1794 Sun Sep 4 21:31:07 UTC 2022 1795 Sun Sep 4 21:31:08 UTC 2022 1796 Sun Sep 4 21:31:09 UTC 2022 1797 Sun Sep 4 21:31:10 UTC 2022 1798 Sun Sep 4 21:31:11 UTC 2022 1799 Sun Sep 4 21:31:12 UTC 2022 1800 Sun Sep 4 21:31:13 UTC 2022 1801 Sun Sep 4 21:31:14 UTC 2022 1802 Sun Sep 4 21:31:15 UTC 2022 1803 Sun Sep 4 21:31:16 UTC 2022 1804 Sun Sep 4 21:31:17 UTC 2022 1805 Sun Sep 4 21:31:18 UTC 2022 1806 Sun Sep 4 21:31:19 UTC 2022 1807 Sun Sep 4 21:31:20 UTC 2022 1808 Sun Sep 4 21:31:21 UTC 2022 1809 Sun Sep 4 21:31:22 UTC 2022 1810 Sun Sep 4 21:31:23 UTC 2022 1811 Sun Sep 4 21:31:24 UTC 2022 1812 Sun Sep 4 21:31:25 UTC 2022 1813 Sun Sep 4 21:31:26 UTC 2022 1814 Sun Sep 4 21:31:27 UTC 2022 1815 Sun Sep 4 21:31:28 UTC 2022 1816 Sun Sep 4 21:31:29 UTC 2022 1817 Sun Sep 4 21:31:30 UTC 2022 1818 Sun Sep 4 21:31:31 UTC 2022 1819 Sun Sep 4 21:31:32 UTC 2022 1820 Sun Sep 4 21:31:33 UTC 2022 1821 Sun Sep 4 21:31:34 UTC 2022 1822 Sun Sep 4 21:31:35 UTC 2022 1823 Sun Sep 4 21:31:36 UTC 2022 1824 Sun Sep 4 21:31:37 UTC 2022 1825 Sun Sep 4 21:31:38 UTC 2022 1826 Sun Sep 4 21:31:39 UTC 2022 1827 Sun Sep 4 21:31:40 UTC 2022 1828 Sun Sep 4 21:31:41 UTC 2022 1829 Sun Sep 4 21:31:42 UTC 2022 1830 Sun Sep 4 21:31:43 UTC 2022 1831 Sun Sep 4 21:31:44 UTC 2022 1832 Sun Sep 4 21:31:45 UTC 2022 1833 Sun Sep 4 21:31:46 UTC 2022 1834 Sun Sep 4 21:31:48 UTC 2022 1835 Sun Sep 4 21:31:49 UTC 2022 1836 Sun Sep 4 21:31:50 UTC 2022 1837 Sun Sep 4 21:31:51 UTC 2022 1838 Sun Sep 4 21:31:52 UTC 2022 1839 Sun Sep 4 21:31:53 UTC 2022 1840 Sun Sep 4 21:31:54 UTC 2022 1841 Sun Sep 4 21:31:55 UTC 2022 1842 Sun Sep 4 21:31:56 UTC 2022 1843 Sun Sep 4 21:31:57 UTC 2022 1844 Sun Sep 4 21:31:58 UTC 2022 1845 Sun Sep 4 21:31:59 UTC 2022 1846 Sun Sep 4 21:32:00 UTC 2022 1847 Sun Sep 4 21:32:01 UTC 2022 1848 Sun Sep 4 21:32:02 UTC 2022 1849 Sun Sep 4 21:32:03 UTC 2022 1850 Sun Sep 4 21:32:04 UTC 2022 1851 Sun Sep 4 21:32:05 UTC 2022 1852 Sun Sep 4 21:32:06 UTC 2022 1853 Sun Sep 4 21:32:07 UTC 2022 1854 Sun Sep 4 21:32:08 UTC 2022 1855 Sun Sep 4 21:32:09 UTC 2022 1856 Sun Sep 4 21:32:10 UTC 2022 1857 Sun Sep 4 21:32:11 UTC 2022 1858 Sun Sep 4 21:32:12 UTC 2022 1859 Sun Sep 4 21:32:13 UTC 2022 1860 Sun Sep 4 21:32:14 UTC 2022 1861 Sun Sep 4 21:32:15 UTC 2022 1862 Sun Sep 4 21:32:16 UTC 2022 1863 Sun Sep 4 21:32:17 UTC 2022 1864 Sun Sep 4 21:32:18 UTC 2022 1865 Sun Sep 4 21:32:19 UTC 2022 1866 Sun Sep 4 21:32:20 UTC 2022 1867 Sun Sep 4 21:32:21 UTC 2022 1868 Sun Sep 4 21:32:22 UTC 2022 1869 Sun Sep 4 21:32:23 UTC 2022 1870 Sun Sep 4 21:32:24 UTC 2022 1871 Sun Sep 4 21:32:25 UTC 2022 1872 Sun Sep 4 21:32:26 UTC 2022 1873 Sun Sep 4 21:32:27 UTC 2022 1874 Sun Sep 4 21:32:28 UTC 2022 1875 Sun Sep 4 21:32:29 UTC 2022 1876 Sun Sep 4 21:32:30 UTC 2022 1877 Sun Sep 4 21:32:31 UTC 2022 1878 Sun Sep 4 21:32:32 UTC 2022 1879 Sun Sep 4 21:32:33 UTC 2022 1880 Sun Sep 4 21:32:34 UTC 2022 1881 Sun Sep 4 21:32:35 UTC 2022 1882 Sun Sep 4 21:32:36 UTC 2022 1883 Sun Sep 4 21:32:37 UTC 2022 1884 Sun Sep 4 21:32:38 UTC 2022 1885 Sun Sep 4 21:32:39 UTC 2022 1886 Sun Sep 4 21:32:40 UTC 2022 1887 Sun Sep 4 21:32:41 UTC 2022 1888 Sun Sep 4 21:32:42 UTC 2022 1889 Sun Sep 4 21:32:43 UTC 2022 1890 Sun Sep 4 21:32:44 UTC 2022 1891 Sun Sep 4 21:32:45 UTC 2022 1892 Sun Sep 4 21:32:46 UTC 2022 1893 Sun Sep 4 21:32:47 UTC 2022 1894 Sun Sep 4 21:32:48 UTC 2022 1895 Sun Sep 4 21:32:49 UTC 2022 1896 Sun Sep 4 21:32:50 UTC 2022 1897 Sun Sep 4 21:32:51 UTC 2022 1898 Sun Sep 4 21:32:52 UTC 2022 1899 Sun Sep 4 21:32:53 UTC 2022 1900 Sun Sep 4 21:32:54 UTC 2022 1901 Sun Sep 4 21:32:55 UTC 2022 1902 Sun Sep 4 21:32:56 UTC 2022 1903 Sun Sep 4 21:32:57 UTC 2022 1904 Sun Sep 4 21:32:58 UTC 2022 1905 Sun Sep 4 21:32:59 UTC 2022 1906 Sun Sep 4 21:33:00 UTC 2022 1907 Sun Sep 4 21:33:01 UTC 2022 1908 Sun Sep 4 21:33:02 UTC 2022 1909 Sun Sep 4 21:33:03 UTC 2022 1910 Sun Sep 4 21:33:04 UTC 2022 1911 Sun Sep 4 21:33:05 UTC 2022 1912 Sun Sep 4 21:33:06 UTC 2022 1913 Sun Sep 4 21:33:07 UTC 2022 1914 Sun Sep 4 21:33:08 UTC 2022 1915 Sun Sep 4 21:33:09 UTC 2022 1916 Sun Sep 4 21:33:10 UTC 2022 1917 Sun Sep 4 21:33:11 UTC 2022 1918 Sun Sep 4 21:33:12 UTC 2022 1919 Sun Sep 4 21:33:13 UTC 2022 1920 Sun Sep 4 21:33:14 UTC 2022 1921 Sun Sep 4 21:33:15 UTC 2022 1922 Sun Sep 4 21:33:16 UTC 2022 1923 Sun Sep 4 21:33:17 UTC 2022 1924 Sun Sep 4 21:33:18 UTC 2022 1925 Sun Sep 4 21:33:19 UTC 2022 1926 Sun Sep 4 21:33:20 UTC 2022 1927 Sun Sep 4 21:33:21 UTC 2022 1928 Sun Sep 4 21:33:22 UTC 2022 1929 Sun Sep 4 21:33:23 UTC 2022 1930 Sun Sep 4 21:33:24 UTC 2022 1931 Sun Sep 4 21:33:25 UTC 2022 1932 Sun Sep 4 21:33:26 UTC 2022 1933 Sun Sep 4 21:33:27 UTC 2022 1934 Sun Sep 4 21:33:28 UTC 2022 1935 Sun Sep 4 21:33:29 UTC 2022 1936 Sun Sep 4 21:33:30 UTC 2022 1937 Sun Sep 4 21:33:31 UTC 2022 1938 Sun Sep 4 21:33:32 UTC 2022 1939 Sun Sep 4 21:33:33 UTC 2022 1940 Sun Sep 4 21:33:34 UTC 2022 1941 Sun Sep 4 21:33:35 UTC 2022 1942 Sun Sep 4 21:33:36 UTC 2022 1943 Sun Sep 4 21:33:37 UTC 2022 1944 Sun Sep 4 21:33:38 UTC 2022 1945 Sun Sep 4 21:33:39 UTC 2022 1946 Sun Sep 4 21:33:40 UTC 2022 1947 Sun Sep 4 21:33:41 UTC 2022 1948 Sun Sep 4 21:33:42 UTC 2022 1949 Sun Sep 4 21:33:43 UTC 2022 1950 Sun Sep 4 21:33:44 UTC 2022 1951 Sun Sep 4 21:33:45 UTC 2022 1952 Sun Sep 4 21:33:46 UTC 2022 1953 Sun Sep 4 21:33:47 UTC 2022 1954 Sun Sep 4 21:33:48 UTC 2022 1955 Sun Sep 4 21:33:49 UTC 2022 1956 Sun Sep 4 21:33:50 UTC 2022 1957 Sun Sep 4 21:33:52 UTC 2022 1958 Sun Sep 4 21:33:53 UTC 2022 1959 Sun Sep 4 21:33:54 UTC 2022 1960 Sun Sep 4 21:33:55 UTC 2022 1961 Sun Sep 4 21:33:56 UTC 2022 1962 Sun Sep 4 21:33:57 UTC 2022 1963 Sun Sep 4 21:33:58 UTC 2022 1964 Sun Sep 4 21:33:59 UTC 2022 1965 Sun Sep 4 21:34:00 UTC 2022 1966 Sun Sep 4 21:34:01 UTC 2022 1967 Sun Sep 4 21:34:02 UTC 2022 1968 Sun Sep 4 21:34:03 UTC 2022 1969 Sun Sep 4 21:34:04 UTC 2022 1970 Sun Sep 4 21:34:05 UTC 2022 1971 Sun Sep 4 21:34:06 UTC 2022 1972 Sun Sep 4 21:34:07 UTC 2022 1973 Sun Sep 4 21:34:08 UTC 2022 1974 Sun Sep 4 21:34:09 UTC 2022 1975 Sun Sep 4 21:34:10 UTC 2022 1976 Sun Sep 4 21:34:11 UTC 2022 1977 Sun Sep 4 21:34:12 UTC 2022 1978 Sun Sep 4 21:34:13 UTC 2022 1979 Sun Sep 4 21:34:14 UTC 2022 1980 Sun Sep 4 21:34:15 UTC 2022 1981 Sun Sep 4 21:34:16 UTC 2022 1982 Sun Sep 4 21:34:17 UTC 2022 1983 Sun Sep 4 21:34:18 UTC 2022 1984 Sun Sep 4 21:34:19 UTC 2022 1985 Sun Sep 4 21:34:20 UTC 2022 1986 Sun Sep 4 21:34:21 UTC 2022 1987 Sun Sep 4 21:34:22 UTC 2022 1988 Sun Sep 4 21:34:23 UTC 2022 1989 Sun Sep 4 21:34:24 UTC 2022 1990 Sun Sep 4 21:34:25 UTC 2022 1991 Sun Sep 4 21:34:26 UTC 2022 1992 Sun Sep 4 21:34:27 UTC 2022 1993 Sun Sep 4 21:34:28 UTC 2022 1994 Sun Sep 4 21:34:29 UTC 2022 1995 Sun Sep 4 21:34:30 UTC 2022 1996 Sun Sep 4 21:34:31 UTC 2022 1997 Sun Sep 4 21:34:32 UTC 2022 1998 Sun Sep 4 21:34:33 UTC 2022 1999 Sun Sep 4 21:34:34 UTC 2022 2000 Sun Sep 4 21:34:35 UTC 2022 2001 Sun Sep 4 21:34:36 UTC 2022 2002 Sun Sep 4 21:34:37 UTC 2022 2003 Sun Sep 4 21:34:38 UTC 2022 2004 Sun Sep 4 21:34:39 UTC 2022 2005 Sun Sep 4 21:34:40 UTC 2022 2006 Sun Sep 4 21:34:41 UTC 2022 2007 Sun Sep 4 21:34:42 UTC 2022 2008 Sun Sep 4 21:34:43 UTC 2022 2009 Sun Sep 4 21:34:44 UTC 2022 2010 Sun Sep 4 21:34:45 UTC 2022 2011 Sun Sep 4 21:34:46 UTC 2022 2012 Sun Sep 4 21:34:47 UTC 2022 2013 Sun Sep 4 21:34:48 UTC 2022 2014 Sun Sep 4 21:34:49 UTC 2022 2015 Sun Sep 4 21:34:50 UTC 2022 2016 Sun Sep 4 21:34:51 UTC 2022 2017 Sun Sep 4 21:34:52 UTC 2022 2018 Sun Sep 4 21:34:53 UTC 2022 2019 Sun Sep 4 21:34:54 UTC 2022 2020 Sun Sep 4 21:34:55 UTC 2022 2021 Sun Sep 4 21:34:56 UTC 2022 2022 Sun Sep 4 21:34:57 UTC 2022 2023 Sun Sep 4 21:34:58 UTC 2022 2024 Sun Sep 4 21:34:59 UTC 2022 2025 Sun Sep 4 21:35:00 UTC 2022 2026 Sun Sep 4 21:35:01 UTC 2022 2027 Sun Sep 4 21:35:02 UTC 2022 2028 Sun Sep 4 21:35:03 UTC 2022 2029 Sun Sep 4 21:35:04 UTC 2022 2030 Sun Sep 4 21:35:05 UTC 2022 2031 Sun Sep 4 21:35:06 UTC 2022 2032 Sun Sep 4 21:35:07 UTC 2022 2033 Sun Sep 4 21:35:08 UTC 2022 2034 Sun Sep 4 21:35:09 UTC 2022 2035 Sun Sep 4 21:35:10 UTC 2022 2036 Sun Sep 4 21:35:11 UTC 2022 2037 Sun Sep 4 21:35:12 UTC 2022 2038 Sun Sep 4 21:35:13 UTC 2022 2039 Sun Sep 4 21:35:14 UTC 2022 2040 Sun Sep 4 21:35:15 UTC 2022 2041 Sun Sep 4 21:35:16 UTC 2022 2042 Sun Sep 4 21:35:17 UTC 2022 2043 Sun Sep 4 21:35:18 UTC 2022 2044 Sun Sep 4 21:35:19 UTC 2022 2045 Sun Sep 4 21:35:20 UTC 2022 2046 Sun Sep 4 21:35:21 UTC 2022 2047 Sun Sep 4 21:35:22 UTC 2022 2048 Sun Sep 4 21:35:23 UTC 2022 2049 Sun Sep 4 21:35:24 UTC 2022 2050 Sun Sep 4 21:35:25 UTC 2022 2051 Sun Sep 4 21:35:26 UTC 2022 2052 Sun Sep 4 21:35:27 UTC 2022 2053 Sun Sep 4 21:35:28 UTC 2022 2054 Sun Sep 4 21:35:29 UTC 2022 2055 Sun Sep 4 21:35:30 UTC 2022 2056 Sun Sep 4 21:35:31 UTC 2022 2057 Sun Sep 4 21:35:32 UTC 2022 2058 Sun Sep 4 21:35:33 UTC 2022 2059 Sun Sep 4 21:35:34 UTC 2022 2060 Sun Sep 4 21:35:35 UTC 2022 2061 Sun Sep 4 21:35:36 UTC 2022 2062 Sun Sep 4 21:35:37 UTC 2022 2063 Sun Sep 4 21:35:38 UTC 2022 2064 Sun Sep 4 21:35:39 UTC 2022 2065 Sun Sep 4 21:35:40 UTC 2022 2066 Sun Sep 4 21:35:41 UTC 2022 2067 Sun Sep 4 21:35:42 UTC 2022 2068 Sun Sep 4 21:35:43 UTC 2022 2069 Sun Sep 4 21:35:44 UTC 2022 2070 Sun Sep 4 21:35:45 UTC 2022 2071 Sun Sep 4 21:35:46 UTC 2022 2072 Sun Sep 4 21:35:47 UTC 2022 2073 Sun Sep 4 21:35:48 UTC 2022 2074 Sun Sep 4 21:35:49 UTC 2022 2075 Sun Sep 4 21:35:50 UTC 2022 2076 Sun Sep 4 21:35:51 UTC 2022 2077 Sun Sep 4 21:35:52 UTC 2022 2078 Sun Sep 4 21:35:53 UTC 2022 2079 Sun Sep 4 21:35:54 UTC 2022 2080 Sun Sep 4 21:35:55 UTC 2022 2081 Sun Sep 4 21:35:57 UTC 2022 2082 Sun Sep 4 21:35:58 UTC 2022 2083 Sun Sep 4 21:35:59 UTC 2022 2084 Sun Sep 4 21:36:00 UTC 2022 2085 Sun Sep 4 21:36:01 UTC 2022 2086 Sun Sep 4 21:36:02 UTC 2022 2087 Sun Sep 4 21:36:03 UTC 2022 2088 Sun Sep 4 21:36:04 UTC 2022 2089 Sun Sep 4 21:36:05 UTC 2022 2090 Sun Sep 4 21:36:06 UTC 2022 2091 Sun Sep 4 21:36:07 UTC 2022 2092 Sun Sep 4 21:36:08 UTC 2022 2093 Sun Sep 4 21:36:09 UTC 2022 2094 Sun Sep 4 21:36:10 UTC 2022 2095 Sun Sep 4 21:36:11 UTC 2022 2096 Sun Sep 4 21:36:12 UTC 2022 2097 Sun Sep 4 21:36:13 UTC 2022 2098 Sun Sep 4 21:36:14 UTC 2022 2099 Sun Sep 4 21:36:15 UTC 2022 2100 Sun Sep 4 21:36:16 UTC 2022 2101 Sun Sep 4 21:36:17 UTC 2022 2102 Sun Sep 4 21:36:18 UTC 2022 2103 Sun Sep 4 21:36:19 UTC 2022 2104 Sun Sep 4 21:36:20 UTC 2022 2105 Sun Sep 4 21:36:21 UTC 2022 2106 Sun Sep 4 21:36:22 UTC 2022 2107 Sun Sep 4 21:36:23 UTC 2022 2108 Sun Sep 4 21:36:24 UTC 2022 2109 Sun Sep 4 21:36:25 UTC 2022 2110 Sun Sep 4 21:36:26 UTC 2022 2111 Sun Sep 4 21:36:27 UTC 2022 2112 Sun Sep 4 21:36:28 UTC 2022 2113 Sun Sep 4 21:36:29 UTC 2022 2114 Sun Sep 4 21:36:30 UTC 2022 2115 Sun Sep 4 21:36:31 UTC 2022 2116 Sun Sep 4 21:36:32 UTC 2022 2117 Sun Sep 4 21:36:33 UTC 2022 2118 Sun Sep 4 21:36:34 UTC 2022 2119 Sun Sep 4 21:36:35 UTC 2022 2120 Sun Sep 4 21:36:36 UTC 2022 2121 Sun Sep 4 21:36:37 UTC 2022 2122 Sun Sep 4 21:36:38 UTC 2022 2123 Sun Sep 4 21:36:39 UTC 2022 2124 Sun Sep 4 21:36:40 UTC 2022 2125 Sun Sep 4 21:36:41 UTC 2022 2126 Sun Sep 4 21:36:42 UTC 2022 2127 Sun Sep 4 21:36:43 UTC 2022 2128 Sun Sep 4 21:36:44 UTC 2022 2129 Sun Sep 4 21:36:45 UTC 2022 2130 Sun Sep 4 21:36:46 UTC 2022 2131 Sun Sep 4 21:36:47 UTC 2022 2132 Sun Sep 4 21:36:48 UTC 2022 2133 Sun Sep 4 21:36:49 UTC 2022 2134 Sun Sep 4 21:36:50 UTC 2022 2135 Sun Sep 4 21:36:51 UTC 2022 2136 Sun Sep 4 21:36:52 UTC 2022 2137 Sun Sep 4 21:36:53 UTC 2022 2138 Sun Sep 4 21:36:54 UTC 2022 2139 Sun Sep 4 21:36:55 UTC 2022 2140 Sun Sep 4 21:36:56 UTC 2022 2141 Sun Sep 4 21:36:57 UTC 2022 2142 Sun Sep 4 21:36:58 UTC 2022 2143 Sun Sep 4 21:36:59 UTC 2022 2144 Sun Sep 4 21:37:00 UTC 2022 2145 Sun Sep 4 21:37:01 UTC 2022 2146 Sun Sep 4 21:37:02 UTC 2022 2147 Sun Sep 4 21:37:03 UTC 2022 2148 Sun Sep 4 21:37:04 UTC 2022 2149 Sun Sep 4 21:37:05 UTC 2022 2150 Sun Sep 4 21:37:06 UTC 2022 2151 Sun Sep 4 21:37:07 UTC 2022 2152 Sun Sep 4 21:37:08 UTC 2022 2153 Sun Sep 4 21:37:09 UTC 2022 2154 Sun Sep 4 21:37:10 UTC 2022 2155 Sun Sep 4 21:37:11 UTC 2022 2156 Sun Sep 4 21:37:12 UTC 2022 2157 Sun Sep 4 21:37:13 UTC 2022 2158 Sun Sep 4 21:37:14 UTC 2022 2159 Sun Sep 4 21:37:15 UTC 2022 2160 Sun Sep 4 21:37:16 UTC 2022 2161 Sun Sep 4 21:37:17 UTC 2022 2162 Sun Sep 4 21:37:18 UTC 2022 2163 Sun Sep 4 21:37:19 UTC 2022 2164 Sun Sep 4 21:37:20 UTC 2022 2165 Sun Sep 4 21:37:21 UTC 2022 2166 Sun Sep 4 21:37:22 UTC 2022 2167 Sun Sep 4 21:37:23 UTC 2022 2168 Sun Sep 4 21:37:24 UTC 2022 2169 Sun Sep 4 21:37:25 UTC 2022 2170 Sun Sep 4 21:37:26 UTC 2022 2171 Sun Sep 4 21:37:27 UTC 2022 2172 Sun Sep 4 21:37:28 UTC 2022 2173 Sun Sep 4 21:37:29 UTC 2022 2174 Sun Sep 4 21:37:30 UTC 2022 2175 Sun Sep 4 21:37:31 UTC 2022 2176 Sun Sep 4 21:37:32 UTC 2022 2177 Sun Sep 4 21:37:33 UTC 2022 2178 Sun Sep 4 21:37:34 UTC 2022 2179 Sun Sep 4 21:37:35 UTC 2022 2180 Sun Sep 4 21:37:36 UTC 2022 2181 Sun Sep 4 21:37:37 UTC 2022 2182 Sun Sep 4 21:37:38 UTC 2022 2183 Sun Sep 4 21:37:39 UTC 2022 2184 Sun Sep 4 21:37:40 UTC 2022 2185 Sun Sep 4 21:37:41 UTC 2022 2186 Sun Sep 4 21:37:42 UTC 2022 2187 Sun Sep 4 21:37:43 UTC 2022 2188 Sun Sep 4 21:37:44 UTC 2022 2189 Sun Sep 4 21:37:45 UTC 2022 2190 Sun Sep 4 21:37:46 UTC 2022 2191 Sun Sep 4 21:37:47 UTC 2022 2192 Sun Sep 4 21:37:48 UTC 2022 2193 Sun Sep 4 21:37:49 UTC 2022 2194 Sun Sep 4 21:37:50 UTC 2022 2195 Sun Sep 4 21:37:51 UTC 2022 2196 Sun Sep 4 21:37:52 UTC 2022 2197 Sun Sep 4 21:37:53 UTC 2022 2198 Sun Sep 4 21:37:54 UTC 2022 2199 Sun Sep 4 21:37:55 UTC 2022 2200 Sun Sep 4 21:37:56 UTC 2022 2201 Sun Sep 4 21:37:57 UTC 2022 2202 Sun Sep 4 21:37:59 UTC 2022 2203 Sun Sep 4 21:38:00 UTC 2022 2204 Sun Sep 4 21:38:01 UTC 2022 2205 Sun Sep 4 21:38:02 UTC 2022 2206 Sun Sep 4 21:38:03 UTC 2022 2207 Sun Sep 4 21:38:04 UTC 2022 2208 Sun Sep 4 21:38:05 UTC 2022 2209 Sun Sep 4 21:38:06 UTC 2022 2210 Sun Sep 4 21:38:07 UTC 2022 2211 Sun Sep 4 21:38:08 UTC 2022 2212 Sun Sep 4 21:38:09 UTC 2022 2213 Sun Sep 4 21:38:10 UTC 2022 2214 Sun Sep 4 21:38:11 UTC 2022 2215 Sun Sep 4 21:38:12 UTC 2022 2216 Sun Sep 4 21:38:13 UTC 2022 2217 Sun Sep 4 21:38:14 UTC 2022 2218 Sun Sep 4 21:38:15 UTC 2022 2219 Sun Sep 4 21:38:16 UTC 2022 2220 Sun Sep 4 21:38:17 UTC 2022 2221 Sun Sep 4 21:38:18 UTC 2022 2222 Sun Sep 4 21:38:19 UTC 2022 2223 Sun Sep 4 21:38:20 UTC 2022 2224 Sun Sep 4 21:38:21 UTC 2022 2225 Sun Sep 4 21:38:22 UTC 2022 2226 Sun Sep 4 21:38:23 UTC 2022 2227 Sun Sep 4 21:38:24 UTC 2022 2228 Sun Sep 4 21:38:25 UTC 2022 2229 Sun Sep 4 21:38:26 UTC 2022 2230 Sun Sep 4 21:38:27 UTC 2022 2231 Sun Sep 4 21:38:28 UTC 2022 2232 Sun Sep 4 21:38:29 UTC 2022 2233 Sun Sep 4 21:38:30 UTC 2022 2234 Sun Sep 4 21:38:31 UTC 2022 2235 Sun Sep 4 21:38:32 UTC 2022 2236 Sun Sep 4 21:38:33 UTC 2022 2237 Sun Sep 4 21:38:34 UTC 2022 2238 Sun Sep 4 21:38:35 UTC 2022 2239 Sun Sep 4 21:38:36 UTC 2022 2240 Sun Sep 4 21:38:37 UTC 2022 2241 Sun Sep 4 21:38:38 UTC 2022 2242 Sun Sep 4 21:38:39 UTC 2022 2243 Sun Sep 4 21:38:40 UTC 2022 2244 Sun Sep 4 21:38:41 UTC 2022 2245 Sun Sep 4 21:38:42 UTC 2022 2246 Sun Sep 4 21:38:43 UTC 2022 2247 Sun Sep 4 21:38:44 UTC 2022 2248 Sun Sep 4 21:38:45 UTC 2022 2249 Sun Sep 4 21:38:46 UTC 2022 2250 Sun Sep 4 21:38:47 UTC 2022 2251 Sun Sep 4 21:38:48 UTC 2022 2252 Sun Sep 4 21:38:49 UTC 2022 2253 Sun Sep 4 21:38:50 UTC 2022 2254 Sun Sep 4 21:38:51 UTC 2022 2255 Sun Sep 4 21:38:52 UTC 2022 2256 Sun Sep 4 21:38:53 UTC 2022 2257 Sun Sep 4 21:38:54 UTC 2022 2258 Sun Sep 4 21:38:55 UTC 2022 2259 Sun Sep 4 21:38:56 UTC 2022 2260 Sun Sep 4 21:38:57 UTC 2022 2261 Sun Sep 4 21:38:58 UTC 2022 2262 Sun Sep 4 21:38:59 UTC 2022 2263 Sun Sep 4 21:39:00 UTC 2022 2264 Sun Sep 4 21:39:01 UTC 2022 2265 Sun Sep 4 21:39:02 UTC 2022 2266 Sun Sep 4 21:39:03 UTC 2022 2267 Sun Sep 4 21:39:04 UTC 2022 2268 Sun Sep 4 21:39:05 UTC 2022 2269 Sun Sep 4 21:39:06 UTC 2022 2270 Sun Sep 4 21:39:07 UTC 2022 2271 Sun Sep 4 21:39:08 UTC 2022 2272 Sun Sep 4 21:39:09 UTC 2022 2273 Sun Sep 4 21:39:10 UTC 2022 2274 Sun Sep 4 21:39:11 UTC 2022 2275 Sun Sep 4 21:39:12 UTC 2022 2276 Sun Sep 4 21:39:13 UTC 2022 2277 Sun Sep 4 21:39:14 UTC 2022 2278 Sun Sep 4 21:39:15 UTC 2022 2279 Sun Sep 4 21:39:16 UTC 2022 2280 Sun Sep 4 21:39:17 UTC 2022 2281 Sun Sep 4 21:39:18 UTC 2022 2282 Sun Sep 4 21:39:19 UTC 2022 2283 Sun Sep 4 21:39:20 UTC 2022 2284 Sun Sep 4 21:39:21 UTC 2022 2285 Sun Sep 4 21:39:22 UTC 2022 2286 Sun Sep 4 21:39:23 UTC 2022 2287 Sun Sep 4 21:39:24 UTC 2022 2288 Sun Sep 4 21:39:25 UTC 2022 2289 Sun Sep 4 21:39:26 UTC 2022 2290 Sun Sep 4 21:39:27 UTC 2022 2291 Sun Sep 4 21:39:28 UTC 2022 2292 Sun Sep 4 21:39:29 UTC 2022 2293 Sun Sep 4 21:39:30 UTC 2022 2294 Sun Sep 4 21:39:31 UTC 2022 2295 Sun Sep 4 21:39:32 UTC 2022 2296 Sun Sep 4 21:39:33 UTC 2022 2297 Sun Sep 4 21:39:34 UTC 2022 2298 Sun Sep 4 21:39:35 UTC 2022 2299 Sun Sep 4 21:39:36 UTC 2022 2300 Sun Sep 4 21:39:37 UTC 2022 2301 Sun Sep 4 21:39:38 UTC 2022 2302 Sun Sep 4 21:39:39 UTC 2022 2303 Sun Sep 4 21:39:40 UTC 2022 2304 Sun Sep 4 21:39:41 UTC 2022 2305 Sun Sep 4 21:39:42 UTC 2022 2306 Sun Sep 4 21:39:43 UTC 2022 2307 Sun Sep 4 21:39:44 UTC 2022 2308 Sun Sep 4 21:39:45 UTC 2022 2309 Sun Sep 4 21:39:46 UTC 2022 2310 Sun Sep 4 21:39:47 UTC 2022 2311 Sun Sep 4 21:39:48 UTC 2022 2312 Sun Sep 4 21:39:49 UTC 2022 2313 Sun Sep 4 21:39:50 UTC 2022 2314 Sun Sep 4 21:39:51 UTC 2022 2315 Sun Sep 4 21:39:52 UTC 2022 2316 Sun Sep 4 21:39:53 UTC 2022 2317 Sun Sep 4 21:39:54 UTC 2022 2318 Sun Sep 4 21:39:55 UTC 2022 2319 Sun Sep 4 21:39:56 UTC 2022 2320 Sun Sep 4 21:39:57 UTC 2022 2321 Sun Sep 4 21:39:58 UTC 2022 2322 Sun Sep 4 21:39:59 UTC 2022 2323 Sun Sep 4 21:40:00 UTC 2022 2324 Sun Sep 4 21:40:01 UTC 2022 2325 Sun Sep 4 21:40:03 UTC 2022 2326 Sun Sep 4 21:40:04 UTC 2022 2327 Sun Sep 4 21:40:05 UTC 2022 2328 Sun Sep 4 21:40:06 UTC 2022 2329 Sun Sep 4 21:40:07 UTC 2022 2330 Sun Sep 4 21:40:08 UTC 2022 2331 Sun Sep 4 21:40:09 UTC 2022 2332 Sun Sep 4 21:40:10 UTC 2022 2333 Sun Sep 4 21:40:11 UTC 2022 2334 Sun Sep 4 21:40:12 UTC 2022 2335 Sun Sep 4 21:40:13 UTC 2022 2336 Sun Sep 4 21:40:14 UTC 2022 2337 Sun Sep 4 21:40:15 UTC 2022 2338 Sun Sep 4 21:40:16 UTC 2022 2339 Sun Sep 4 21:40:17 UTC 2022 2340 Sun Sep 4 21:40:18 UTC 2022 2341 Sun Sep 4 21:40:19 UTC 2022 2342 Sun Sep 4 21:40:20 UTC 2022 2343 Sun Sep 4 21:40:21 UTC 2022 2344 Sun Sep 4 21:40:22 UTC 2022 2345 Sun Sep 4 21:40:23 UTC 2022 2346 Sun Sep 4 21:40:24 UTC 2022 2347 Sun Sep 4 21:40:25 UTC 2022 2348 Sun Sep 4 21:40:26 UTC 2022 2349 Sun Sep 4 21:40:27 UTC 2022 2350 Sun Sep 4 21:40:28 UTC 2022 2351 Sun Sep 4 21:40:29 UTC 2022 2352 Sun Sep 4 21:40:30 UTC 2022 2353 Sun Sep 4 21:40:31 UTC 2022 2354 Sun Sep 4 21:40:32 UTC 2022 2355 Sun Sep 4 21:40:33 UTC 2022 2356 Sun Sep 4 21:40:34 UTC 2022 2357 Sun Sep 4 21:40:35 UTC 2022 2358 Sun Sep 4 21:40:36 UTC 2022 2359 Sun Sep 4 21:40:37 UTC 2022 2360 Sun Sep 4 21:40:38 UTC 2022 2361 Sun Sep 4 21:40:39 UTC 2022 2362 Sun Sep 4 21:40:40 UTC 2022 2363 Sun Sep 4 21:40:41 UTC 2022 2364 Sun Sep 4 21:40:42 UTC 2022 2365 Sun Sep 4 21:40:43 UTC 2022 2366 Sun Sep 4 21:40:44 UTC 2022 2367 Sun Sep 4 21:40:45 UTC 2022 2368 Sun Sep 4 21:40:46 UTC 2022 2369 Sun Sep 4 21:40:47 UTC 2022 2370 Sun Sep 4 21:40:48 UTC 2022 2371 Sun Sep 4 21:40:49 UTC 2022 2372 Sun Sep 4 21:40:50 UTC 2022 2373 Sun Sep 4 21:40:51 UTC 2022 2374 Sun Sep 4 21:40:52 UTC 2022 2375 Sun Sep 4 21:40:53 UTC 2022 2376 Sun Sep 4 21:40:54 UTC 2022 2377 Sun Sep 4 21:40:55 UTC 2022 2378 Sun Sep 4 21:40:56 UTC 2022 2379 Sun Sep 4 21:40:57 UTC 2022 2380 Sun Sep 4 21:40:58 UTC 2022 2381 Sun Sep 4 21:40:59 UTC 2022 2382 Sun Sep 4 21:41:00 UTC 2022 2383 Sun Sep 4 21:41:01 UTC 2022 2384 Sun Sep 4 21:41:02 UTC 2022 2385 Sun Sep 4 21:41:03 UTC 2022 2386 Sun Sep 4 21:41:04 UTC 2022 2387 Sun Sep 4 21:41:05 UTC 2022 2388 Sun Sep 4 21:41:06 UTC 2022 2389 Sun Sep 4 21:41:07 UTC 2022 2390 Sun Sep 4 21:41:08 UTC 2022 2391 Sun Sep 4 21:41:09 UTC 2022 2392 Sun Sep 4 21:41:10 UTC 2022 2393 Sun Sep 4 21:41:11 UTC 2022 2394 Sun Sep 4 21:41:12 UTC 2022 2395 Sun Sep 4 21:41:13 UTC 2022 2396 Sun Sep 4 21:41:14 UTC 2022 2397 Sun Sep 4 21:41:15 UTC 2022 2398 Sun Sep 4 21:41:16 UTC 2022 2399 Sun Sep 4 21:41:17 UTC 2022 2400 Sun Sep 4 21:41:18 UTC 2022 2401 Sun Sep 4 21:41:19 UTC 2022 2402 Sun Sep 4 21:41:20 UTC 2022 2403 Sun Sep 4 21:41:21 UTC 2022 2404 Sun Sep 4 21:41:22 UTC 2022 2405 Sun Sep 4 21:41:23 UTC 2022 2406 Sun Sep 4 21:41:24 UTC 2022 2407 Sun Sep 4 21:41:25 UTC 2022 2408 Sun Sep 4 21:41:26 UTC 2022 2409 Sun Sep 4 21:41:27 UTC 2022 2410 Sun Sep 4 21:41:28 UTC 2022 2411 Sun Sep 4 21:41:29 UTC 2022 2412 Sun Sep 4 21:41:30 UTC 2022 2413 Sun Sep 4 21:41:31 UTC 2022 2414 Sun Sep 4 21:41:32 UTC 2022 2415 Sun Sep 4 21:41:33 UTC 2022 2416 Sun Sep 4 21:41:34 UTC 2022 2417 Sun Sep 4 21:41:35 UTC 2022 2418 Sun Sep 4 21:41:36 UTC 2022 2419 Sun Sep 4 21:41:37 UTC 2022 2420 Sun Sep 4 21:41:38 UTC 2022 2421 Sun Sep 4 21:41:39 UTC 2022 2422 Sun Sep 4 21:41:40 UTC 2022 2423 Sun Sep 4 21:41:41 UTC 2022 2424 Sun Sep 4 21:41:42 UTC 2022 2425 Sun Sep 4 21:41:43 UTC 2022 2426 Sun Sep 4 21:41:44 UTC 2022 2427 Sun Sep 4 21:41:45 UTC 2022 2428 Sun Sep 4 21:41:46 UTC 2022 2429 Sun Sep 4 21:41:47 UTC 2022 2430 Sun Sep 4 21:41:48 UTC 2022 2431 Sun Sep 4 21:41:49 UTC 2022 2432 Sun Sep 4 21:41:50 UTC 2022 2433 Sun Sep 4 21:41:51 UTC 2022 2434 Sun Sep 4 21:41:52 UTC 2022 2435 Sun Sep 4 21:41:53 UTC 2022 2436 Sun Sep 4 21:41:54 UTC 2022 2437 Sun Sep 4 21:41:55 UTC 2022 2438 Sun Sep 4 21:41:56 UTC 2022 2439 Sun Sep 4 21:41:57 UTC 2022 2440 Sun Sep 4 21:41:58 UTC 2022 2441 Sun Sep 4 21:41:59 UTC 2022 2442 Sun Sep 4 21:42:00 UTC 2022 2443 Sun Sep 4 21:42:01 UTC 2022 2444 Sun Sep 4 21:42:02 UTC 2022 2445 Sun Sep 4 21:42:03 UTC 2022 2446 Sun Sep 4 21:42:04 UTC 2022 2447 Sun Sep 4 21:42:05 UTC 2022 2448 Sun Sep 4 21:42:06 UTC 2022 2449 Sun Sep 4 21:42:07 UTC 2022 2450 Sun Sep 4 21:42:09 UTC 2022 2451 Sun Sep 4 21:42:10 UTC 2022 2452 Sun Sep 4 21:42:11 UTC 2022 2453 Sun Sep 4 21:42:12 UTC 2022 2454 Sun Sep 4 21:42:13 UTC 2022 2455 Sun Sep 4 21:42:14 UTC 2022 2456 Sun Sep 4 21:42:15 UTC 2022 2457 Sun Sep 4 21:42:16 UTC 2022 2458 Sun Sep 4 21:42:17 UTC 2022 2459 Sun Sep 4 21:42:18 UTC 2022 2460 Sun Sep 4 21:42:19 UTC 2022 2461 Sun Sep 4 21:42:20 UTC 2022 2462 Sun Sep 4 21:42:21 UTC 2022 2463 Sun Sep 4 21:42:22 UTC 2022 2464 Sun Sep 4 21:42:23 UTC 2022 2465 Sun Sep 4 21:42:24 UTC 2022 2466 Sun Sep 4 21:42:25 UTC 2022 2467 Sun Sep 4 21:42:26 UTC 2022 2468 Sun Sep 4 21:42:27 UTC 2022 2469 Sun Sep 4 21:42:28 UTC 2022 2470 Sun Sep 4 21:42:29 UTC 2022 2471 Sun Sep 4 21:42:30 UTC 2022 2472 Sun Sep 4 21:42:31 UTC 2022 2473 Sun Sep 4 21:42:32 UTC 2022 2474 Sun Sep 4 21:42:33 UTC 2022 2475 Sun Sep 4 21:42:34 UTC 2022 2476 Sun Sep 4 21:42:35 UTC 2022 2477 Sun Sep 4 21:42:36 UTC 2022 2478 Sun Sep 4 21:42:37 UTC 2022 2479 Sun Sep 4 21:42:38 UTC 2022 2480 Sun Sep 4 21:42:39 UTC 2022 2481 Sun Sep 4 21:42:40 UTC 2022 2482 Sun Sep 4 21:42:41 UTC 2022 2483 Sun Sep 4 21:42:42 UTC 2022 2484 Sun Sep 4 21:42:43 UTC 2022 2485 Sun Sep 4 21:42:44 UTC 2022 2486 Sun Sep 4 21:42:45 UTC 2022 2487 Sun Sep 4 21:42:46 UTC 2022 2488 Sun Sep 4 21:42:47 UTC 2022 2489 Sun Sep 4 21:42:48 UTC 2022 2490 Sun Sep 4 21:42:49 UTC 2022 2491 Sun Sep 4 21:42:50 UTC 2022 2492 Sun Sep 4 21:42:51 UTC 2022 2493 Sun Sep 4 21:42:52 UTC 2022 2494 Sun Sep 4 21:42:53 UTC 2022 2495 Sun Sep 4 21:42:54 UTC 2022 2496 Sun Sep 4 21:42:55 UTC 2022 2497 Sun Sep 4 21:42:56 UTC 2022 2498 Sun Sep 4 21:42:57 UTC 2022 2499 Sun Sep 4 21:42:58 UTC 2022 2500 Sun Sep 4 21:42:59 UTC 2022 2501 Sun Sep 4 21:43:00 UTC 2022 2502 Sun Sep 4 21:43:01 UTC 2022 2503 Sun Sep 4 21:43:02 UTC 2022 2504 Sun Sep 4 21:43:03 UTC 2022 2505 Sun Sep 4 21:43:04 UTC 2022 2506 Sun Sep 4 21:43:05 UTC 2022 2507 Sun Sep 4 21:43:06 UTC 2022 2508 Sun Sep 4 21:43:07 UTC 2022 2509 Sun Sep 4 21:43:08 UTC 2022 2510 Sun Sep 4 21:43:09 UTC 2022 2511 Sun Sep 4 21:43:10 UTC 2022 2512 Sun Sep 4 21:43:11 UTC 2022 2513 Sun Sep 4 21:43:12 UTC 2022 2514 Sun Sep 4 21:43:13 UTC 2022 2515 Sun Sep 4 21:43:14 UTC 2022 2516 Sun Sep 4 21:43:15 UTC 2022 2517 Sun Sep 4 21:43:16 UTC 2022 2518 Sun Sep 4 21:43:17 UTC 2022 2519 Sun Sep 4 21:43:18 UTC 2022 2520 Sun Sep 4 21:43:19 UTC 2022 2521 Sun Sep 4 21:43:20 UTC 2022 2522 Sun Sep 4 21:43:21 UTC 2022 2523 Sun Sep 4 21:43:22 UTC 2022 2524 Sun Sep 4 21:43:23 UTC 2022 2525 Sun Sep 4 21:43:24 UTC 2022 2526 Sun Sep 4 21:43:25 UTC 2022 2527 Sun Sep 4 21:43:26 UTC 2022 2528 Sun Sep 4 21:43:27 UTC 2022 2529 Sun Sep 4 21:43:28 UTC 2022 2530 Sun Sep 4 21:43:29 UTC 2022 2531 Sun Sep 4 21:43:30 UTC 2022 2532 Sun Sep 4 21:43:31 UTC 2022 2533 Sun Sep 4 21:43:32 UTC 2022 2534 Sun Sep 4 21:43:33 UTC 2022 2535 Sun Sep 4 21:43:34 UTC 2022 2536 Sun Sep 4 21:43:35 UTC 2022 2537 Sun Sep 4 21:43:36 UTC 2022 2538 Sun Sep 4 21:43:37 UTC 2022 2539 Sun Sep 4 21:43:38 UTC 2022 2540 Sun Sep 4 21:43:39 UTC 2022 2541 Sun Sep 4 21:43:40 UTC 2022 2542 Sun Sep 4 21:43:41 UTC 2022 2543 Sun Sep 4 21:43:42 UTC 2022 2544 Sun Sep 4 21:43:43 UTC 2022 2545 Sun Sep 4 21:43:44 UTC 2022 2546 Sun Sep 4 21:43:45 UTC 2022 2547 Sun Sep 4 21:43:46 UTC 2022 2548 Sun Sep 4 21:43:47 UTC 2022 2549 Sun Sep 4 21:43:48 UTC 2022 2550 Sun Sep 4 21:43:49 UTC 2022 2551 Sun Sep 4 21:43:50 UTC 2022 2552 Sun Sep 4 21:43:51 UTC 2022 2553 Sun Sep 4 21:43:52 UTC 2022 2554 Sun Sep 4 21:43:53 UTC 2022 2555 Sun Sep 4 21:43:54 UTC 2022 2556 Sun Sep 4 21:43:55 UTC 2022 2557 Sun Sep 4 21:43:56 UTC 2022 2558 Sun Sep 4 21:43:57 UTC 2022 2559 Sun Sep 4 21:43:58 UTC 2022 2560 Sun Sep 4 21:43:59 UTC 2022 2561 Sun Sep 4 21:44:00 UTC 2022 2562 Sun Sep 4 21:44:01 UTC 2022 2563 Sun Sep 4 21:44:02 UTC 2022 2564 Sun Sep 4 21:44:03 UTC 2022 2565 Sun Sep 4 21:44:04 UTC 2022 2566 Sun Sep 4 21:44:05 UTC 2022 2567 Sun Sep 4 21:44:06 UTC 2022 2568 Sun Sep 4 21:44:07 UTC 2022 2569 Sun Sep 4 21:44:08 UTC 2022 2570 Sun Sep 4 21:44:10 UTC 2022 2571 Sun Sep 4 21:44:11 UTC 2022 2572 Sun Sep 4 21:44:12 UTC 2022 2573 Sun Sep 4 21:44:13 UTC 2022 2574 Sun Sep 4 21:44:14 UTC 2022 2575 Sun Sep 4 21:44:15 UTC 2022 2576 Sun Sep 4 21:44:16 UTC 2022 2577 Sun Sep 4 21:44:17 UTC 2022 2578 Sun Sep 4 21:44:18 UTC 2022 2579 Sun Sep 4 21:44:19 UTC 2022 2580 Sun Sep 4 21:44:20 UTC 2022 2581 Sun Sep 4 21:44:21 UTC 2022 2582 Sun Sep 4 21:44:22 UTC 2022 2583 Sun Sep 4 21:44:23 UTC 2022 2584 Sun Sep 4 21:44:24 UTC 2022 2585 Sun Sep 4 21:44:25 UTC 2022 2586 Sun Sep 4 21:44:26 UTC 2022 2587 Sun Sep 4 21:44:27 UTC 2022 2588 Sun Sep 4 21:44:28 UTC 2022 2589 Sun Sep 4 21:44:29 UTC 2022 2590 Sun Sep 4 21:44:30 UTC 2022 2591 Sun Sep 4 21:44:31 UTC 2022 2592 Sun Sep 4 21:44:32 UTC 2022 2593 Sun Sep 4 21:44:33 UTC 2022 2594 Sun Sep 4 21:44:34 UTC 2022 2595 Sun Sep 4 21:44:35 UTC 2022 2596 Sun Sep 4 21:44:36 UTC 2022 2597 Sun Sep 4 21:44:37 UTC 2022 2598 Sun Sep 4 21:44:38 UTC 2022 2599 Sun Sep 4 21:44:39 UTC 2022 2600 Sun Sep 4 21:44:40 UTC 2022 2601 Sun Sep 4 21:44:41 UTC 2022 2602 Sun Sep 4 21:44:42 UTC 2022 2603 Sun Sep 4 21:44:43 UTC 2022 2604 Sun Sep 4 21:44:44 UTC 2022 2605 Sun Sep 4 21:44:45 UTC 2022 2606 Sun Sep 4 21:44:46 UTC 2022 2607 Sun Sep 4 21:44:47 UTC 2022 2608 Sun Sep 4 21:44:48 UTC 2022 2609 Sun Sep 4 21:44:49 UTC 2022 2610 Sun Sep 4 21:44:50 UTC 2022 2611 Sun Sep 4 21:44:51 UTC 2022 2612 Sun Sep 4 21:44:52 UTC 2022 2613 Sun Sep 4 21:44:53 UTC 2022 2614 Sun Sep 4 21:44:54 UTC 2022 2615 Sun Sep 4 21:44:55 UTC 2022 2616 Sun Sep 4 21:44:56 UTC 2022 2617 Sun Sep 4 21:44:57 UTC 2022 2618 Sun Sep 4 21:44:58 UTC 2022 2619 Sun Sep 4 21:44:59 UTC 2022 2620 Sun Sep 4 21:45:00 UTC 2022 2621 Sun Sep 4 21:45:01 UTC 2022 2622 Sun Sep 4 21:45:02 UTC 2022 2623 Sun Sep 4 21:45:03 UTC 2022 2624 Sun Sep 4 21:45:04 UTC 2022 2625 Sun Sep 4 21:45:05 UTC 2022 2626 Sun Sep 4 21:45:06 UTC 2022 2627 Sun Sep 4 21:45:07 UTC 2022 2628 Sun Sep 4 21:45:08 UTC 2022 2629 Sun Sep 4 21:45:09 UTC 2022 2630 Sun Sep 4 21:45:10 UTC 2022 2631 Sun Sep 4 21:45:11 UTC 2022 2632 Sun Sep 4 21:45:12 UTC 2022 2633 Sun Sep 4 21:45:13 UTC 2022 2634 Sun Sep 4 21:45:14 UTC 2022 2635 Sun Sep 4 21:45:15 UTC 2022 2636 Sun Sep 4 21:45:16 UTC 2022 2637 Sun Sep 4 21:45:17 UTC 2022 2638 Sun Sep 4 21:45:18 UTC 2022 2639 Sun Sep 4 21:45:19 UTC 2022 2640 Sun Sep 4 21:45:20 UTC 2022 2641 Sun Sep 4 21:45:21 UTC 2022 2642 Sun Sep 4 21:45:22 UTC 2022 2643 Sun Sep 4 21:45:23 UTC 2022 2644 Sun Sep 4 21:45:24 UTC 2022 2645 Sun Sep 4 21:45:25 UTC 2022 2646 Sun Sep 4 21:45:26 UTC 2022 2647 Sun Sep 4 21:45:27 UTC 2022 2648 Sun Sep 4 21:45:28 UTC 2022 2649 Sun Sep 4 21:45:29 UTC 2022 2650 Sun Sep 4 21:45:30 UTC 2022 2651 Sun Sep 4 21:45:31 UTC 2022 2652 Sun Sep 4 21:45:32 UTC 2022 2653 Sun Sep 4 21:45:33 UTC 2022 2654 Sun Sep 4 21:45:34 UTC 2022 2655 Sun Sep 4 21:45:35 UTC 2022 2656 Sun Sep 4 21:45:36 UTC 2022 2657 Sun Sep 4 21:45:37 UTC 2022 2658 Sun Sep 4 21:45:38 UTC 2022 2659 Sun Sep 4 21:45:39 UTC 2022 2660 Sun Sep 4 21:45:40 UTC 2022 2661 Sun Sep 4 21:45:41 UTC 2022 2662 Sun Sep 4 21:45:42 UTC 2022 2663 Sun Sep 4 21:45:43 UTC 2022 2664 Sun Sep 4 21:45:44 UTC 2022 2665 Sun Sep 4 21:45:45 UTC 2022 2666 Sun Sep 4 21:45:46 UTC 2022 2667 Sun Sep 4 21:45:47 UTC 2022 2668 Sun Sep 4 21:45:48 UTC 2022 2669 Sun Sep 4 21:45:49 UTC 2022 2670 Sun Sep 4 21:45:50 UTC 2022 2671 Sun Sep 4 21:45:51 UTC 2022 2672 Sun Sep 4 21:45:52 UTC 2022 2673 Sun Sep 4 21:45:53 UTC 2022 2674 Sun Sep 4 21:45:54 UTC 2022 2675 Sun Sep 4 21:45:55 UTC 2022 2676 Sun Sep 4 21:45:56 UTC 2022 2677 Sun Sep 4 21:45:57 UTC 2022 2678 Sun Sep 4 21:45:58 UTC 2022 2679 Sun Sep 4 21:45:59 UTC 2022 2680 Sun Sep 4 21:46:00 UTC 2022 2681 Sun Sep 4 21:46:01 UTC 2022 2682 Sun Sep 4 21:46:02 UTC 2022 2683 Sun Sep 4 21:46:03 UTC 2022 2684 Sun Sep 4 21:46:04 UTC 2022 2685 Sun Sep 4 21:46:05 UTC 2022 2686 Sun Sep 4 21:46:06 UTC 2022 2687 Sun Sep 4 21:46:07 UTC 2022 2688 Sun Sep 4 21:46:08 UTC 2022 2689 Sun Sep 4 21:46:09 UTC 2022 2690 Sun Sep 4 21:46:10 UTC 2022 2691 Sun Sep 4 21:46:11 UTC 2022 2692 Sun Sep 4 21:46:13 UTC 2022 2693 Sun Sep 4 21:46:14 UTC 2022 2694 Sun Sep 4 21:46:15 UTC 2022 2695 Sun Sep 4 21:46:16 UTC 2022 2696 Sun Sep 4 21:46:17 UTC 2022 2697 Sun Sep 4 21:46:18 UTC 2022 2698 Sun Sep 4 21:46:19 UTC 2022 2699 Sun Sep 4 21:46:20 UTC 2022 2700 Sun Sep 4 21:46:21 UTC 2022 2701 Sun Sep 4 21:46:22 UTC 2022 2702 Sun Sep 4 21:46:23 UTC 2022 2703 Sun Sep 4 21:46:24 UTC 2022 2704 Sun Sep 4 21:46:25 UTC 2022 2705 Sun Sep 4 21:46:26 UTC 2022 2706 Sun Sep 4 21:46:27 UTC 2022 2707 Sun Sep 4 21:46:28 UTC 2022 2708 Sun Sep 4 21:46:29 UTC 2022 2709 Sun Sep 4 21:46:30 UTC 2022 2710 Sun Sep 4 21:46:31 UTC 2022 2711 Sun Sep 4 21:46:32 UTC 2022 2712 Sun Sep 4 21:46:33 UTC 2022 2713 Sun Sep 4 21:46:34 UTC 2022 2714 Sun Sep 4 21:46:35 UTC 2022 2715 Sun Sep 4 21:46:36 UTC 2022 2716 Sun Sep 4 21:46:37 UTC 2022 2717 Sun Sep 4 21:46:38 UTC 2022 2718 Sun Sep 4 21:46:39 UTC 2022 2719 Sun Sep 4 21:46:40 UTC 2022 2720 Sun Sep 4 21:46:41 UTC 2022 2721 Sun Sep 4 21:46:42 UTC 2022 2722 Sun Sep 4 21:46:43 UTC 2022 2723 Sun Sep 4 21:46:44 UTC 2022 2724 Sun Sep 4 21:46:45 UTC 2022 2725 Sun Sep 4 21:46:46 UTC 2022 2726 Sun Sep 4 21:46:47 UTC 2022 2727 Sun Sep 4 21:46:48 UTC 2022 2728 Sun Sep 4 21:46:49 UTC 2022 2729 Sun Sep 4 21:46:50 UTC 2022 2730 Sun Sep 4 21:46:51 UTC 2022 2731 Sun Sep 4 21:46:52 UTC 2022 2732 Sun Sep 4 21:46:53 UTC 2022 2733 Sun Sep 4 21:46:54 UTC 2022 2734 Sun Sep 4 21:46:55 UTC 2022 2735 Sun Sep 4 21:46:56 UTC 2022 2736 Sun Sep 4 21:46:57 UTC 2022 2737 Sun Sep 4 21:46:58 UTC 2022 2738 Sun Sep 4 21:46:59 UTC 2022 2739 Sun Sep 4 21:47:00 UTC 2022 2740 Sun Sep 4 21:47:01 UTC 2022 2741 Sun Sep 4 21:47:02 UTC 2022 2742 Sun Sep 4 21:47:03 UTC 2022 2743 Sun Sep 4 21:47:04 UTC 2022 2744 Sun Sep 4 21:47:05 UTC 2022 2745 Sun Sep 4 21:47:06 UTC 2022 2746 Sun Sep 4 21:47:07 UTC 2022 2747 Sun Sep 4 21:47:08 UTC 2022 2748 Sun Sep 4 21:47:09 UTC 2022 2749 Sun Sep 4 21:47:10 UTC 2022 2750 Sun Sep 4 21:47:11 UTC 2022 2751 Sun Sep 4 21:47:12 UTC 2022 2752 Sun Sep 4 21:47:13 UTC 2022 2753 Sun Sep 4 21:47:14 UTC 2022 2754 Sun Sep 4 21:47:15 UTC 2022 2755 Sun Sep 4 21:47:16 UTC 2022 2756 Sun Sep 4 21:47:17 UTC 2022 2757 Sun Sep 4 21:47:18 UTC 2022 2758 Sun Sep 4 21:47:19 UTC 2022 2759 Sun Sep 4 21:47:20 UTC 2022 2760 Sun Sep 4 21:47:21 UTC 2022 2761 Sun Sep 4 21:47:22 UTC 2022 2762 Sun Sep 4 21:47:23 UTC 2022 2763 Sun Sep 4 21:47:24 UTC 2022 2764 Sun Sep 4 21:47:25 UTC 2022 2765 Sun Sep 4 21:47:26 UTC 2022 2766 Sun Sep 4 21:47:27 UTC 2022 2767 Sun Sep 4 21:47:28 UTC 2022 2768 Sun Sep 4 21:47:29 UTC 2022 2769 Sun Sep 4 21:47:30 UTC 2022 2770 Sun Sep 4 21:47:31 UTC 2022 2771 Sun Sep 4 21:47:32 UTC 2022 2772 Sun Sep 4 21:47:33 UTC 2022 2773 Sun Sep 4 21:47:34 UTC 2022 2774 Sun Sep 4 21:47:35 UTC 2022 2775 Sun Sep 4 21:47:36 UTC 2022 2776 Sun Sep 4 21:47:37 UTC 2022 2777 Sun Sep 4 21:47:38 UTC 2022 2778 Sun Sep 4 21:47:39 UTC 2022 2779 Sun Sep 4 21:47:40 UTC 2022 2780 Sun Sep 4 21:47:41 UTC 2022 2781 Sun Sep 4 21:47:42 UTC 2022 2782 Sun Sep 4 21:47:43 UTC 2022 2783 Sun Sep 4 21:47:44 UTC 2022 2784 Sun Sep 4 21:47:45 UTC 2022 2785 Sun Sep 4 21:47:46 UTC 2022 2786 Sun Sep 4 21:47:47 UTC 2022 2787 Sun Sep 4 21:47:48 UTC 2022 2788 Sun Sep 4 21:47:49 UTC 2022 2789 Sun Sep 4 21:47:50 UTC 2022 2790 Sun Sep 4 21:47:51 UTC 2022 2791 Sun Sep 4 21:47:52 UTC 2022 2792 Sun Sep 4 21:47:53 UTC 2022 2793 Sun Sep 4 21:47:54 UTC 2022 2794 Sun Sep 4 21:47:55 UTC 2022 2795 Sun Sep 4 21:47:56 UTC 2022 2796 Sun Sep 4 21:47:57 UTC 2022 2797 Sun Sep 4 21:47:58 UTC 2022 2798 Sun Sep 4 21:47:59 UTC 2022 2799 Sun Sep 4 21:48:00 UTC 2022 2800 Sun Sep 4 21:48:01 UTC 2022 2801 Sun Sep 4 21:48:02 UTC 2022 2802 Sun Sep 4 21:48:03 UTC 2022 2803 Sun Sep 4 21:48:04 UTC 2022 2804 Sun Sep 4 21:48:05 UTC 2022 2805 Sun Sep 4 21:48:06 UTC 2022 2806 Sun Sep 4 21:48:07 UTC 2022 2807 Sun Sep 4 21:48:08 UTC 2022 2808 Sun Sep 4 21:48:09 UTC 2022 2809 Sun Sep 4 21:48:10 UTC 2022 2810 Sun Sep 4 21:48:11 UTC 2022 2811 Sun Sep 4 21:48:12 UTC 2022 2812 Sun Sep 4 21:48:13 UTC 2022 2813 Sun Sep 4 21:48:14 UTC 2022 2814 Sun Sep 4 21:48:15 UTC 2022 2815 Sun Sep 4 21:48:16 UTC 2022 2816 Sun Sep 4 21:48:17 UTC 2022 2817 Sun Sep 4 21:48:19 UTC 2022 2818 Sun Sep 4 21:48:20 UTC 2022 2819 Sun Sep 4 21:48:21 UTC 2022 2820 Sun Sep 4 21:48:22 UTC 2022 2821 Sun Sep 4 21:48:23 UTC 2022 2822 Sun Sep 4 21:48:24 UTC 2022 2823 Sun Sep 4 21:48:25 UTC 2022 2824 Sun Sep 4 21:48:26 UTC 2022 2825 Sun Sep 4 21:48:27 UTC 2022 2826 Sun Sep 4 21:48:28 UTC 2022 2827 Sun Sep 4 21:48:29 UTC 2022 2828 Sun Sep 4 21:48:30 UTC 2022 2829 Sun Sep 4 21:48:31 UTC 2022 2830 Sun Sep 4 21:48:32 UTC 2022 2831 Sun Sep 4 21:48:33 UTC 2022 2832 Sun Sep 4 21:48:34 UTC 2022 2833 Sun Sep 4 21:48:35 UTC 2022 2834 Sun Sep 4 21:48:36 UTC 2022 2835 Sun Sep 4 21:48:37 UTC 2022 2836 Sun Sep 4 21:48:38 UTC 2022 2837 Sun Sep 4 21:48:39 UTC 2022 2838 Sun Sep 4 21:48:40 UTC 2022 2839 Sun Sep 4 21:48:41 UTC 2022 2840 Sun Sep 4 21:48:42 UTC 2022 2841 Sun Sep 4 21:48:43 UTC 2022 2842 Sun Sep 4 21:48:44 UTC 2022 2843 Sun Sep 4 21:48:45 UTC 2022 2844 Sun Sep 4 21:48:46 UTC 2022 2845 Sun Sep 4 21:48:47 UTC 2022 2846 Sun Sep 4 21:48:48 UTC 2022 2847 Sun Sep 4 21:48:49 UTC 2022 2848 Sun Sep 4 21:48:50 UTC 2022 2849 Sun Sep 4 21:48:51 UTC 2022 2850 Sun Sep 4 21:48:52 UTC 2022 2851 Sun Sep 4 21:48:53 UTC 2022 2852 Sun Sep 4 21:48:54 UTC 2022 2853 Sun Sep 4 21:48:55 UTC 2022 2854 Sun Sep 4 21:48:56 UTC 2022 2855 Sun Sep 4 21:48:57 UTC 2022 2856 Sun Sep 4 21:48:58 UTC 2022 2857 Sun Sep 4 21:48:59 UTC 2022 2858 Sun Sep 4 21:49:00 UTC 2022 2859 Sun Sep 4 21:49:01 UTC 2022 2860 Sun Sep 4 21:49:02 UTC 2022 2861 Sun Sep 4 21:49:03 UTC 2022 2862 Sun Sep 4 21:49:04 UTC 2022 2863 Sun Sep 4 21:49:05 UTC 2022 2864 Sun Sep 4 21:49:06 UTC 2022 2865 Sun Sep 4 21:49:07 UTC 2022 2866 Sun Sep 4 21:49:08 UTC 2022 2867 Sun Sep 4 21:49:09 UTC 2022 2868 Sun Sep 4 21:49:10 UTC 2022 2869 Sun Sep 4 21:49:11 UTC 2022 2870 Sun Sep 4 21:49:12 UTC 2022 2871 Sun Sep 4 21:49:13 UTC 2022 2872 Sun Sep 4 21:49:14 UTC 2022 2873 Sun Sep 4 21:49:15 UTC 2022 2874 Sun Sep 4 21:49:16 UTC 2022 2875 Sun Sep 4 21:49:17 UTC 2022 2876 Sun Sep 4 21:49:18 UTC 2022 2877 Sun Sep 4 21:49:19 UTC 2022 2878 Sun Sep 4 21:49:20 UTC 2022 2879 Sun Sep 4 21:49:21 UTC 2022 2880 Sun Sep 4 21:49:22 UTC 2022 2881 Sun Sep 4 21:49:23 UTC 2022 2882 Sun Sep 4 21:49:24 UTC 2022 2883 Sun Sep 4 21:49:25 UTC 2022 2884 Sun Sep 4 21:49:26 UTC 2022 2885 Sun Sep 4 21:49:27 UTC 2022 2886 Sun Sep 4 21:49:28 UTC 2022 2887 Sun Sep 4 21:49:29 UTC 2022 2888 Sun Sep 4 21:49:30 UTC 2022 2889 Sun Sep 4 21:49:31 UTC 2022 2890 Sun Sep 4 21:49:32 UTC 2022 2891 Sun Sep 4 21:49:33 UTC 2022 2892 Sun Sep 4 21:49:34 UTC 2022 2893 Sun Sep 4 21:49:35 UTC 2022 2894 Sun Sep 4 21:49:36 UTC 2022 2895 Sun Sep 4 21:49:37 UTC 2022 2896 Sun Sep 4 21:49:38 UTC 2022 2897 Sun Sep 4 21:49:39 UTC 2022 2898 Sun Sep 4 21:49:40 UTC 2022 2899 Sun Sep 4 21:49:41 UTC 2022 2900 Sun Sep 4 21:49:42 UTC 2022 2901 Sun Sep 4 21:49:43 UTC 2022 2902 Sun Sep 4 21:49:44 UTC 2022 2903 Sun Sep 4 21:49:45 UTC 2022 2904 Sun Sep 4 21:49:46 UTC 2022 2905 Sun Sep 4 21:49:47 UTC 2022 2906 Sun Sep 4 21:49:48 UTC 2022 2907 Sun Sep 4 21:49:49 UTC 2022 2908 Sun Sep 4 21:49:50 UTC 2022 2909 Sun Sep 4 21:49:51 UTC 2022 2910 Sun Sep 4 21:49:52 UTC 2022 2911 Sun Sep 4 21:49:53 UTC 2022 2912 Sun Sep 4 21:49:54 UTC 2022 2913 Sun Sep 4 21:49:55 UTC 2022 2914 Sun Sep 4 21:49:56 UTC 2022 2915 Sun Sep 4 21:49:57 UTC 2022 2916 Sun Sep 4 21:49:58 UTC 2022 2917 Sun Sep 4 21:49:59 UTC 2022 2918 Sun Sep 4 21:50:00 UTC 2022 2919 Sun Sep 4 21:50:01 UTC 2022 2920 Sun Sep 4 21:50:02 UTC 2022 2921 Sun Sep 4 21:50:03 UTC 2022 2922 Sun Sep 4 21:50:04 UTC 2022 2923 Sun Sep 4 21:50:05 UTC 2022 2924 Sun Sep 4 21:50:06 UTC 2022 2925 Sun Sep 4 21:50:07 UTC 2022 2926 Sun Sep 4 21:50:08 UTC 2022 2927 Sun Sep 4 21:50:09 UTC 2022 2928 Sun Sep 4 21:50:10 UTC 2022 2929 Sun Sep 4 21:50:11 UTC 2022 2930 Sun Sep 4 21:50:12 UTC 2022 2931 Sun Sep 4 21:50:13 UTC 2022 2932 Sun Sep 4 21:50:14 UTC 2022 2933 Sun Sep 4 21:50:15 UTC 2022 2934 Sun Sep 4 21:50:16 UTC 2022 2935 Sun Sep 4 21:50:17 UTC 2022 2936 Sun Sep 4 21:50:18 UTC 2022 2937 Sun Sep 4 21:50:19 UTC 2022 2938 Sun Sep 4 21:50:20 UTC 2022 2939 Sun Sep 4 21:50:21 UTC 2022 2940 Sun Sep 4 21:50:22 UTC 2022 2941 Sun Sep 4 21:50:23 UTC 2022 2942 Sun Sep 4 21:50:24 UTC 2022 2943 Sun Sep 4 21:50:26 UTC 2022 2944 Sun Sep 4 21:50:27 UTC 2022 2945 Sun Sep 4 21:50:28 UTC 2022 2946 Sun Sep 4 21:50:29 UTC 2022 2947 Sun Sep 4 21:50:30 UTC 2022 2948 Sun Sep 4 21:50:31 UTC 2022 2949 Sun Sep 4 21:50:32 UTC 2022 2950 Sun Sep 4 21:50:33 UTC 2022 2951 Sun Sep 4 21:50:34 UTC 2022 2952 Sun Sep 4 21:50:35 UTC 2022 2953 Sun Sep 4 21:50:36 UTC 2022 2954 Sun Sep 4 21:50:37 UTC 2022 2955 Sun Sep 4 21:50:38 UTC 2022 2956 Sun Sep 4 21:50:39 UTC 2022 2957 Sun Sep 4 21:50:40 UTC 2022 2958 Sun Sep 4 21:50:41 UTC 2022 2959 Sun Sep 4 21:50:42 UTC 2022 2960 Sun Sep 4 21:50:43 UTC 2022 2961 Sun Sep 4 21:50:44 UTC 2022 2962 Sun Sep 4 21:50:45 UTC 2022 2963 Sun Sep 4 21:50:46 UTC 2022 2964 Sun Sep 4 21:50:47 UTC 2022 2965 Sun Sep 4 21:50:48 UTC 2022 2966 Sun Sep 4 21:50:49 UTC 2022 2967 Sun Sep 4 21:50:50 UTC 2022 2968 Sun Sep 4 21:50:51 UTC 2022 2969 Sun Sep 4 21:50:52 UTC 2022 2970 Sun Sep 4 21:50:53 UTC 2022 2971 Sun Sep 4 21:50:54 UTC 2022 2972 Sun Sep 4 21:50:55 UTC 2022 2973 Sun Sep 4 21:50:56 UTC 2022 2974 Sun Sep 4 21:50:57 UTC 2022 2975 Sun Sep 4 21:50:58 UTC 2022 2976 Sun Sep 4 21:50:59 UTC 2022 2977 Sun Sep 4 21:51:00 UTC 2022 2978 Sun Sep 4 21:51:01 UTC 2022 2979 Sun Sep 4 21:51:02 UTC 2022 2980 Sun Sep 4 21:51:03 UTC 2022 2981 Sun Sep 4 21:51:04 UTC 2022 2982 Sun Sep 4 21:51:05 UTC 2022 2983 Sun Sep 4 21:51:06 UTC 2022 2984 Sun Sep 4 21:51:07 UTC 2022 2985 Sun Sep 4 21:51:08 UTC 2022 2986 Sun Sep 4 21:51:09 UTC 2022 2987 Sun Sep 4 21:51:10 UTC 2022 2988 Sun Sep 4 21:51:11 UTC 2022 2989 Sun Sep 4 21:51:12 UTC 2022 2990 Sun Sep 4 21:51:13 UTC 2022 2991 Sun Sep 4 21:51:14 UTC 2022 2992 Sun Sep 4 21:51:15 UTC 2022 2993 Sun Sep 4 21:51:16 UTC 2022 2994 Sun Sep 4 21:51:17 UTC 2022 2995 Sun Sep 4 21:51:18 UTC 2022 2996 Sun Sep 4 21:51:19 UTC 2022 2997 Sun Sep 4 21:51:20 UTC 2022 2998 Sun Sep 4 21:51:21 UTC 2022 2999 Sun Sep 4 21:51:22 UTC 2022 3000 Sun Sep 4 21:51:23 UTC 2022 3001 Sun Sep 4 21:51:24 UTC 2022 3002 Sun Sep 4 21:51:25 UTC 2022 3003 Sun Sep 4 21:51:26 UTC 2022 3004 Sun Sep 4 21:51:27 UTC 2022 3005 Sun Sep 4 21:51:28 UTC 2022 3006 Sun Sep 4 21:51:29 UTC 2022 3007 Sun Sep 4 21:51:30 UTC 2022 3008 Sun Sep 4 21:51:31 UTC 2022 3009 Sun Sep 4 21:51:32 UTC 2022 3010 Sun Sep 4 21:51:33 UTC 2022 3011 Sun Sep 4 21:51:34 UTC 2022 3012 Sun Sep 4 21:51:35 UTC 2022 3013 Sun Sep 4 21:51:36 UTC 2022 3014 Sun Sep 4 21:51:37 UTC 2022 3015 Sun Sep 4 21:51:38 UTC 2022 3016 Sun Sep 4 21:51:39 UTC 2022 3017 Sun Sep 4 21:51:40 UTC 2022 3018 Sun Sep 4 21:51:41 UTC 2022 3019 Sun Sep 4 21:51:42 UTC 2022 3020 Sun Sep 4 21:51:43 UTC 2022 3021 Sun Sep 4 21:51:44 UTC 2022 3022 Sun Sep 4 21:51:45 UTC 2022 3023 Sun Sep 4 21:51:46 UTC 2022 3024 Sun Sep 4 21:51:47 UTC 2022 3025 Sun Sep 4 21:51:48 UTC 2022 3026 Sun Sep 4 21:51:49 UTC 2022 3027 Sun Sep 4 21:51:50 UTC 2022 3028 Sun Sep 4 21:51:51 UTC 2022 3029 Sun Sep 4 21:51:52 UTC 2022 3030 Sun Sep 4 21:51:53 UTC 2022 3031 Sun Sep 4 21:51:54 UTC 2022 3032 Sun Sep 4 21:51:55 UTC 2022 3033 Sun Sep 4 21:51:56 UTC 2022 3034 Sun Sep 4 21:51:57 UTC 2022 3035 Sun Sep 4 21:51:58 UTC 2022 3036 Sun Sep 4 21:51:59 UTC 2022 3037 Sun Sep 4 21:52:00 UTC 2022 3038 Sun Sep 4 21:52:01 UTC 2022 3039 Sun Sep 4 21:52:02 UTC 2022 3040 Sun Sep 4 21:52:03 UTC 2022 3041 Sun Sep 4 21:52:04 UTC 2022 3042 Sun Sep 4 21:52:05 UTC 2022 3043 Sun Sep 4 21:52:06 UTC 2022 3044 Sun Sep 4 21:52:07 UTC 2022 3045 Sun Sep 4 21:52:08 UTC 2022 3046 Sun Sep 4 21:52:09 UTC 2022 3047 Sun Sep 4 21:52:10 UTC 2022 3048 Sun Sep 4 21:52:11 UTC 2022 3049 Sun Sep 4 21:52:12 UTC 2022 3050 Sun Sep 4 21:52:13 UTC 2022 3051 Sun Sep 4 21:52:14 UTC 2022 3052 Sun Sep 4 21:52:15 UTC 2022 3053 Sun Sep 4 21:52:16 UTC 2022 3054 Sun Sep 4 21:52:17 UTC 2022 3055 Sun Sep 4 21:52:18 UTC 2022 3056 Sun Sep 4 21:52:19 UTC 2022 3057 Sun Sep 4 21:52:20 UTC 2022 3058 Sun Sep 4 21:52:21 UTC 2022 3059 Sun Sep 4 21:52:22 UTC 2022 3060 Sun Sep 4 21:52:23 UTC 2022 3061 Sun Sep 4 21:52:24 UTC 2022 3062 Sun Sep 4 21:52:25 UTC 2022 3063 Sun Sep 4 21:52:26 UTC 2022 3064 Sun Sep 4 21:52:27 UTC 2022 3065 Sun Sep 4 21:52:28 UTC 2022 3066 Sun Sep 4 21:52:29 UTC 2022 3067 Sun Sep 4 21:52:31 UTC 2022 3068 Sun Sep 4 21:52:32 UTC 2022 3069 Sun Sep 4 21:52:33 UTC 2022 3070 Sun Sep 4 21:52:34 UTC 2022 3071 Sun Sep 4 21:52:35 UTC 2022 3072 Sun Sep 4 21:52:36 UTC 2022 3073 Sun Sep 4 21:52:37 UTC 2022 3074 Sun Sep 4 21:52:38 UTC 2022 3075 Sun Sep 4 21:52:39 UTC 2022 3076 Sun Sep 4 21:52:40 UTC 2022 3077 Sun Sep 4 21:52:41 UTC 2022 3078 Sun Sep 4 21:52:42 UTC 2022 3079 Sun Sep 4 21:52:43 UTC 2022 3080 Sun Sep 4 21:52:44 UTC 2022 3081 Sun Sep 4 21:52:45 UTC 2022 3082 Sun Sep 4 21:52:46 UTC 2022 3083 Sun Sep 4 21:52:47 UTC 2022 3084 Sun Sep 4 21:52:48 UTC 2022 3085 Sun Sep 4 21:52:49 UTC 2022 3086 Sun Sep 4 21:52:50 UTC 2022 3087 Sun Sep 4 21:52:51 UTC 2022 3088 Sun Sep 4 21:52:52 UTC 2022 3089 Sun Sep 4 21:52:53 UTC 2022 3090 Sun Sep 4 21:52:54 UTC 2022 3091 Sun Sep 4 21:52:55 UTC 2022 3092 Sun Sep 4 21:52:56 UTC 2022 3093 Sun Sep 4 21:52:57 UTC 2022 3094 Sun Sep 4 21:52:58 UTC 2022 3095 Sun Sep 4 21:52:59 UTC 2022 3096 Sun Sep 4 21:53:00 UTC 2022 3097 Sun Sep 4 21:53:01 UTC 2022 3098 Sun Sep 4 21:53:02 UTC 2022 3099 Sun Sep 4 21:53:03 UTC 2022 3100 Sun Sep 4 21:53:04 UTC 2022 3101 Sun Sep 4 21:53:05 UTC 2022 3102 Sun Sep 4 21:53:06 UTC 2022 3103 Sun Sep 4 21:53:07 UTC 2022 3104 Sun Sep 4 21:53:08 UTC 2022 3105 Sun Sep 4 21:53:09 UTC 2022 3106 Sun Sep 4 21:53:10 UTC 2022 3107 Sun Sep 4 21:53:11 UTC 2022 3108 Sun Sep 4 21:53:12 UTC 2022 3109 Sun Sep 4 21:53:13 UTC 2022 3110 Sun Sep 4 21:53:14 UTC 2022 3111 Sun Sep 4 21:53:15 UTC 2022 3112 Sun Sep 4 21:53:16 UTC 2022 3113 Sun Sep 4 21:53:17 UTC 2022 3114 Sun Sep 4 21:53:18 UTC 2022 3115 Sun Sep 4 21:53:19 UTC 2022 3116 Sun Sep 4 21:53:20 UTC 2022 3117 Sun Sep 4 21:53:21 UTC 2022 3118 Sun Sep 4 21:53:22 UTC 2022 3119 Sun Sep 4 21:53:23 UTC 2022 3120 Sun Sep 4 21:53:24 UTC 2022 3121 Sun Sep 4 21:53:25 UTC 2022 3122 Sun Sep 4 21:53:26 UTC 2022 3123 Sun Sep 4 21:53:27 UTC 2022 3124 Sun Sep 4 21:53:28 UTC 2022 3125 Sun Sep 4 21:53:29 UTC 2022 3126 Sun Sep 4 21:53:30 UTC 2022 3127 Sun Sep 4 21:53:31 UTC 2022 3128 Sun Sep 4 21:53:32 UTC 2022 3129 Sun Sep 4 21:53:33 UTC 2022 3130 Sun Sep 4 21:53:34 UTC 2022 3131 Sun Sep 4 21:53:35 UTC 2022 3132 Sun Sep 4 21:53:36 UTC 2022 3133 Sun Sep 4 21:53:37 UTC 2022 3134 Sun Sep 4 21:53:38 UTC 2022 3135 Sun Sep 4 21:53:39 UTC 2022 3136 Sun Sep 4 21:53:40 UTC 2022 3137 Sun Sep 4 21:53:41 UTC 2022 3138 Sun Sep 4 21:53:42 UTC 2022 3139 Sun Sep 4 21:53:43 UTC 2022 3140 Sun Sep 4 21:53:44 UTC 2022 3141 Sun Sep 4 21:53:45 UTC 2022 3142 Sun Sep 4 21:53:46 UTC 2022 3143 Sun Sep 4 21:53:47 UTC 2022 3144 Sun Sep 4 21:53:48 UTC 2022 3145 Sun Sep 4 21:53:49 UTC 2022 3146 Sun Sep 4 21:53:50 UTC 2022 3147 Sun Sep 4 21:53:51 UTC 2022 3148 Sun Sep 4 21:53:52 UTC 2022 3149 Sun Sep 4 21:53:53 UTC 2022 3150 Sun Sep 4 21:53:54 UTC 2022 3151 Sun Sep 4 21:53:55 UTC 2022 3152 Sun Sep 4 21:53:56 UTC 2022 3153 Sun Sep 4 21:53:57 UTC 2022 3154 Sun Sep 4 21:53:58 UTC 2022 3155 Sun Sep 4 21:53:59 UTC 2022 3156 Sun Sep 4 21:54:00 UTC 2022 3157 Sun Sep 4 21:54:01 UTC 2022 3158 Sun Sep 4 21:54:02 UTC 2022 3159 Sun Sep 4 21:54:03 UTC 2022 3160 Sun Sep 4 21:54:04 UTC 2022 3161 Sun Sep 4 21:54:05 UTC 2022 3162 Sun Sep 4 21:54:06 UTC 2022 3163 Sun Sep 4 21:54:07 UTC 2022 3164 Sun Sep 4 21:54:08 UTC 2022 3165 Sun Sep 4 21:54:09 UTC 2022 3166 Sun Sep 4 21:54:10 UTC 2022 3167 Sun Sep 4 21:54:11 UTC 2022 3168 Sun Sep 4 21:54:12 UTC 2022 3169 Sun Sep 4 21:54:13 UTC 2022 3170 Sun Sep 4 21:54:14 UTC 2022 3171 Sun Sep 4 21:54:15 UTC 2022 3172 Sun Sep 4 21:54:16 UTC 2022 3173 Sun Sep 4 21:54:17 UTC 2022 3174 Sun Sep 4 21:54:18 UTC 2022 3175 Sun Sep 4 21:54:19 UTC 2022 3176 Sun Sep 4 21:54:20 UTC 2022 3177 Sun Sep 4 21:54:21 UTC 2022 3178 Sun Sep 4 21:54:22 UTC 2022 3179 Sun Sep 4 21:54:23 UTC 2022 3180 Sun Sep 4 21:54:24 UTC 2022 3181 Sun Sep 4 21:54:25 UTC 2022 3182 Sun Sep 4 21:54:26 UTC 2022 3183 Sun Sep 4 21:54:27 UTC 2022 3184 Sun Sep 4 21:54:28 UTC 2022 3185 Sun Sep 4 21:54:29 UTC 2022 3186 Sun Sep 4 21:54:30 UTC 2022 3187 Sun Sep 4 21:54:31 UTC 2022 3188 Sun Sep 4 21:54:32 UTC 2022 3189 Sun Sep 4 21:54:33 UTC 2022 3190 Sun Sep 4 21:54:34 UTC 2022 3191 Sun Sep 4 21:54:35 UTC 2022 3192 Sun Sep 4 21:54:36 UTC 2022 3193 Sun Sep 4 21:54:37 UTC 2022 3194 Sun Sep 4 21:54:39 UTC 2022 3195 Sun Sep 4 21:54:40 UTC 2022 3196 Sun Sep 4 21:54:41 UTC 2022 3197 Sun Sep 4 21:54:42 UTC 2022 3198 Sun Sep 4 21:54:43 UTC 2022 3199 Sun Sep 4 21:54:44 UTC 2022 3200 Sun Sep 4 21:54:45 UTC 2022 3201 Sun Sep 4 21:54:46 UTC 2022 3202 Sun Sep 4 21:54:47 UTC 2022 3203 Sun Sep 4 21:54:48 UTC 2022 3204 Sun Sep 4 21:54:49 UTC 2022 3205 Sun Sep 4 21:54:50 UTC 2022 3206 Sun Sep 4 21:54:51 UTC 2022 3207 Sun Sep 4 21:54:52 UTC 2022 3208 Sun Sep 4 21:54:53 UTC 2022 3209 Sun Sep 4 21:54:54 UTC 2022 3210 Sun Sep 4 21:54:55 UTC 2022 3211 Sun Sep 4 21:54:56 UTC 2022 3212 Sun Sep 4 21:54:57 UTC 2022 3213 Sun Sep 4 21:54:58 UTC 2022 3214 Sun Sep 4 21:54:59 UTC 2022 3215 Sun Sep 4 21:55:00 UTC 2022 3216 Sun Sep 4 21:55:01 UTC 2022 3217 Sun Sep 4 21:55:02 UTC 2022 3218 Sun Sep 4 21:55:03 UTC 2022 3219 Sun Sep 4 21:55:04 UTC 2022 3220 Sun Sep 4 21:55:05 UTC 2022 3221 Sun Sep 4 21:55:06 UTC 2022 3222 Sun Sep 4 21:55:07 UTC 2022 3223 Sun Sep 4 21:55:08 UTC 2022 3224 Sun Sep 4 21:55:09 UTC 2022 3225 Sun Sep 4 21:55:10 UTC 2022 3226 Sun Sep 4 21:55:11 UTC 2022 3227 Sun Sep 4 21:55:12 UTC 2022 3228 Sun Sep 4 21:55:13 UTC 2022 3229 Sun Sep 4 21:55:14 UTC 2022 3230 Sun Sep 4 21:55:15 UTC 2022 3231 Sun Sep 4 21:55:16 UTC 2022 3232 Sun Sep 4 21:55:17 UTC 2022 3233 Sun Sep 4 21:55:18 UTC 2022 3234 Sun Sep 4 21:55:19 UTC 2022 3235 Sun Sep 4 21:55:20 UTC 2022 3236 Sun Sep 4 21:55:21 UTC 2022 3237 Sun Sep 4 21:55:22 UTC 2022 3238 Sun Sep 4 21:55:23 UTC 2022 3239 Sun Sep 4 21:55:24 UTC 2022 3240 Sun Sep 4 21:55:25 UTC 2022 3241 Sun Sep 4 21:55:26 UTC 2022 3242 Sun Sep 4 21:55:27 UTC 2022 3243 Sun Sep 4 21:55:28 UTC 2022 3244 Sun Sep 4 21:55:29 UTC 2022 3245 Sun Sep 4 21:55:30 UTC 2022 3246 Sun Sep 4 21:55:31 UTC 2022 3247 Sun Sep 4 21:55:32 UTC 2022 3248 Sun Sep 4 21:55:33 UTC 2022 3249 Sun Sep 4 21:55:34 UTC 2022 3250 Sun Sep 4 21:55:35 UTC 2022 3251 Sun Sep 4 21:55:36 UTC 2022 3252 Sun Sep 4 21:55:37 UTC 2022 3253 Sun Sep 4 21:55:38 UTC 2022 3254 Sun Sep 4 21:55:39 UTC 2022 3255 Sun Sep 4 21:55:40 UTC 2022 3256 Sun Sep 4 21:55:41 UTC 2022 3257 Sun Sep 4 21:55:42 UTC 2022 3258 Sun Sep 4 21:55:43 UTC 2022 3259 Sun Sep 4 21:55:44 UTC 2022 3260 Sun Sep 4 21:55:45 UTC 2022 3261 Sun Sep 4 21:55:46 UTC 2022 3262 Sun Sep 4 21:55:47 UTC 2022 3263 Sun Sep 4 21:55:48 UTC 2022 3264 Sun Sep 4 21:55:49 UTC 2022 3265 Sun Sep 4 21:55:50 UTC 2022 3266 Sun Sep 4 21:55:51 UTC 2022 3267 Sun Sep 4 21:55:52 UTC 2022 3268 Sun Sep 4 21:55:53 UTC 2022 3269 Sun Sep 4 21:55:54 UTC 2022 3270 Sun Sep 4 21:55:55 UTC 2022 3271 Sun Sep 4 21:55:56 UTC 2022 3272 Sun Sep 4 21:55:57 UTC 2022 3273 Sun Sep 4 21:55:58 UTC 2022 3274 Sun Sep 4 21:55:59 UTC 2022 3275 Sun Sep 4 21:56:00 UTC 2022 3276 Sun Sep 4 21:56:01 UTC 2022 3277 Sun Sep 4 21:56:02 UTC 2022 3278 Sun Sep 4 21:56:03 UTC 2022 3279 Sun Sep 4 21:56:04 UTC 2022 3280 Sun Sep 4 21:56:05 UTC 2022 3281 Sun Sep 4 21:56:06 UTC 2022 3282 Sun Sep 4 21:56:07 UTC 2022 3283 Sun Sep 4 21:56:08 UTC 2022 3284 Sun Sep 4 21:56:09 UTC 2022 3285 Sun Sep 4 21:56:10 UTC 2022 3286 Sun Sep 4 21:56:11 UTC 2022 3287 Sun Sep 4 21:56:12 UTC 2022 3288 Sun Sep 4 21:56:13 UTC 2022 3289 Sun Sep 4 21:56:14 UTC 2022 3290 Sun Sep 4 21:56:15 UTC 2022 3291 Sun Sep 4 21:56:16 UTC 2022 3292 Sun Sep 4 21:56:17 UTC 2022 3293 Sun Sep 4 21:56:18 UTC 2022 3294 Sun Sep 4 21:56:19 UTC 2022 3295 Sun Sep 4 21:56:20 UTC 2022 3296 Sun Sep 4 21:56:21 UTC 2022 3297 Sun Sep 4 21:56:22 UTC 2022 3298 Sun Sep 4 21:56:23 UTC 2022 3299 Sun Sep 4 21:56:24 UTC 2022 3300 Sun Sep 4 21:56:25 UTC 2022 3301 Sun Sep 4 21:56:26 UTC 2022 3302 Sun Sep 4 21:56:27 UTC 2022 3303 Sun Sep 4 21:56:28 UTC 2022 3304 Sun Sep 4 21:56:29 UTC 2022 3305 Sun Sep 4 21:56:30 UTC 2022 3306 Sun Sep 4 21:56:31 UTC 2022 3307 Sun Sep 4 21:56:32 UTC 2022 3308 Sun Sep 4 21:56:33 UTC 2022 3309 Sun Sep 4 21:56:34 UTC 2022 3310 Sun Sep 4 21:56:35 UTC 2022 3311 Sun Sep 4 21:56:36 UTC 2022 3312 Sun Sep 4 21:56:37 UTC 2022 3313 Sun Sep 4 21:56:38 UTC 2022 3314 Sun Sep 4 21:56:39 UTC 2022 3315 Sun Sep 4 21:56:40 UTC 2022 3316 Sun Sep 4 21:56:41 UTC 2022 3317 Sun Sep 4 21:56:42 UTC 2022 3318 Sun Sep 4 21:56:43 UTC 2022 3319 Sun Sep 4 21:56:45 UTC 2022 3320 Sun Sep 4 21:56:46 UTC 2022 3321 Sun Sep 4 21:56:47 UTC 2022 3322 Sun Sep 4 21:56:48 UTC 2022 3323 Sun Sep 4 21:56:49 UTC 2022 3324 Sun Sep 4 21:56:50 UTC 2022 3325 Sun Sep 4 21:56:51 UTC 2022 3326 Sun Sep 4 21:56:52 UTC 2022 3327 Sun Sep 4 21:56:53 UTC 2022 3328 Sun Sep 4 21:56:54 UTC 2022 3329 Sun Sep 4 21:56:55 UTC 2022 3330 Sun Sep 4 21:56:56 UTC 2022 3331 Sun Sep 4 21:56:57 UTC 2022 3332 Sun Sep 4 21:56:58 UTC 2022 3333 Sun Sep 4 21:56:59 UTC 2022 3334 Sun Sep 4 21:57:00 UTC 2022 3335 Sun Sep 4 21:57:01 UTC 2022 3336 Sun Sep 4 21:57:02 UTC 2022 3337 Sun Sep 4 21:57:03 UTC 2022 3338 Sun Sep 4 21:57:04 UTC 2022 3339 Sun Sep 4 21:57:05 UTC 2022 3340 Sun Sep 4 21:57:06 UTC 2022 3341 Sun Sep 4 21:57:07 UTC 2022 3342 Sun Sep 4 21:57:08 UTC 2022 3343 Sun Sep 4 21:57:09 UTC 2022 3344 Sun Sep 4 21:57:10 UTC 2022 3345 Sun Sep 4 21:57:11 UTC 2022 3346 Sun Sep 4 21:57:12 UTC 2022 3347 Sun Sep 4 21:57:13 UTC 2022 3348 Sun Sep 4 21:57:14 UTC 2022 3349 Sun Sep 4 21:57:15 UTC 2022 3350 Sun Sep 4 21:57:16 UTC 2022 3351 Sun Sep 4 21:57:17 UTC 2022 3352 Sun Sep 4 21:57:18 UTC 2022 3353 Sun Sep 4 21:57:19 UTC 2022 3354 Sun Sep 4 21:57:20 UTC 2022 3355 Sun Sep 4 21:57:21 UTC 2022 3356 Sun Sep 4 21:57:22 UTC 2022 3357 Sun Sep 4 21:57:23 UTC 2022 3358 Sun Sep 4 21:57:24 UTC 2022 3359 Sun Sep 4 21:57:25 UTC 2022 3360 Sun Sep 4 21:57:26 UTC 2022 3361 Sun Sep 4 21:57:27 UTC 2022 3362 Sun Sep 4 21:57:28 UTC 2022 3363 Sun Sep 4 21:57:29 UTC 2022 3364 Sun Sep 4 21:57:30 UTC 2022 3365 Sun Sep 4 21:57:31 UTC 2022 3366 Sun Sep 4 21:57:32 UTC 2022 3367 Sun Sep 4 21:57:33 UTC 2022 3368 Sun Sep 4 21:57:34 UTC 2022 3369 Sun Sep 4 21:57:35 UTC 2022 3370 Sun Sep 4 21:57:36 UTC 2022 3371 Sun Sep 4 21:57:37 UTC 2022 3372 Sun Sep 4 21:57:38 UTC 2022 3373 Sun Sep 4 21:57:39 UTC 2022 3374 Sun Sep 4 21:57:40 UTC 2022 3375 Sun Sep 4 21:57:41 UTC 2022 3376 Sun Sep 4 21:57:42 UTC 2022 3377 Sun Sep 4 21:57:43 UTC 2022 3378 Sun Sep 4 21:57:44 UTC 2022 3379 Sun Sep 4 21:57:45 UTC 2022 3380 Sun Sep 4 21:57:46 UTC 2022 3381 Sun Sep 4 21:57:47 UTC 2022 3382 Sun Sep 4 21:57:48 UTC 2022 3383 Sun Sep 4 21:57:49 UTC 2022 3384 Sun Sep 4 21:57:50 UTC 2022 3385 Sun Sep 4 21:57:51 UTC 2022 3386 Sun Sep 4 21:57:52 UTC 2022 3387 Sun Sep 4 21:57:53 UTC 2022 3388 Sun Sep 4 21:57:54 UTC 2022 3389 Sun Sep 4 21:57:55 UTC 2022 3390 Sun Sep 4 21:57:56 UTC 2022 3391 Sun Sep 4 21:57:57 UTC 2022 3392 Sun Sep 4 21:57:58 UTC 2022 3393 Sun Sep 4 21:57:59 UTC 2022 3394 Sun Sep 4 21:58:00 UTC 2022 3395 Sun Sep 4 21:58:01 UTC 2022 3396 Sun Sep 4 21:58:02 UTC 2022 3397 Sun Sep 4 21:58:03 UTC 2022 3398 Sun Sep 4 21:58:04 UTC 2022 3399 Sun Sep 4 21:58:05 UTC 2022 3400 Sun Sep 4 21:58:06 UTC 2022 3401 Sun Sep 4 21:58:07 UTC 2022 3402 Sun Sep 4 21:58:08 UTC 2022 3403 Sun Sep 4 21:58:09 UTC 2022 3404 Sun Sep 4 21:58:10 UTC 2022 3405 Sun Sep 4 21:58:11 UTC 2022 3406 Sun Sep 4 21:58:12 UTC 2022 3407 Sun Sep 4 21:58:13 UTC 2022 3408 Sun Sep 4 21:58:14 UTC 2022 3409 Sun Sep 4 21:58:15 UTC 2022 3410 Sun Sep 4 21:58:16 UTC 2022 3411 Sun Sep 4 21:58:17 UTC 2022 3412 Sun Sep 4 21:58:18 UTC 2022 3413 Sun Sep 4 21:58:19 UTC 2022 3414 Sun Sep 4 21:58:20 UTC 2022 3415 Sun Sep 4 21:58:21 UTC 2022 3416 Sun Sep 4 21:58:22 UTC 2022 3417 Sun Sep 4 21:58:23 UTC 2022 3418 Sun Sep 4 21:58:24 UTC 2022 3419 Sun Sep 4 21:58:25 UTC 2022 3420 Sun Sep 4 21:58:26 UTC 2022 3421 Sun Sep 4 21:58:27 UTC 2022 3422 Sun Sep 4 21:58:28 UTC 2022 3423 Sun Sep 4 21:58:29 UTC 2022 3424 Sun Sep 4 21:58:30 UTC 2022 3425 Sun Sep 4 21:58:31 UTC 2022 3426 Sun Sep 4 21:58:32 UTC 2022 3427 Sun Sep 4 21:58:33 UTC 2022 3428 Sun Sep 4 21:58:34 UTC 2022 3429 Sun Sep 4 21:58:35 UTC 2022 3430 Sun Sep 4 21:58:36 UTC 2022 3431 Sun Sep 4 21:58:37 UTC 2022 3432 Sun Sep 4 21:58:38 UTC 2022 3433 Sun Sep 4 21:58:39 UTC 2022 3434 Sun Sep 4 21:58:40 UTC 2022 3435 Sun Sep 4 21:58:41 UTC 2022 3436 Sun Sep 4 21:58:42 UTC 2022 3437 Sun Sep 4 21:58:43 UTC 2022 3438 Sun Sep 4 21:58:44 UTC 2022 3439 Sun Sep 4 21:58:45 UTC 2022 3440 Sun Sep 4 21:58:46 UTC 2022 3441 Sun Sep 4 21:58:47 UTC 2022 3442 Sun Sep 4 21:58:48 UTC 2022 3443 Sun Sep 4 21:58:49 UTC 2022 3444 Sun Sep 4 21:58:50 UTC 2022 3445 Sun Sep 4 21:58:51 UTC 2022 3446 Sun Sep 4 21:58:53 UTC 2022 3447 Sun Sep 4 21:58:54 UTC 2022 3448 Sun Sep 4 21:58:55 UTC 2022 3449 Sun Sep 4 21:58:56 UTC 2022 3450 Sun Sep 4 21:58:57 UTC 2022 3451 Sun Sep 4 21:58:58 UTC 2022 3452 Sun Sep 4 21:58:59 UTC 2022 3453 Sun Sep 4 21:59:00 UTC 2022 3454 Sun Sep 4 21:59:01 UTC 2022 3455 Sun Sep 4 21:59:02 UTC 2022 3456 Sun Sep 4 21:59:03 UTC 2022 3457 Sun Sep 4 21:59:04 UTC 2022 3458 Sun Sep 4 21:59:05 UTC 2022 3459 Sun Sep 4 21:59:06 UTC 2022 3460 Sun Sep 4 21:59:07 UTC 2022 3461 Sun Sep 4 21:59:08 UTC 2022 3462 Sun Sep 4 21:59:09 UTC 2022 3463 Sun Sep 4 21:59:10 UTC 2022 3464 Sun Sep 4 21:59:11 UTC 2022 3465 Sun Sep 4 21:59:12 UTC 2022 3466 Sun Sep 4 21:59:13 UTC 2022 3467 Sun Sep 4 21:59:14 UTC 2022 3468 Sun Sep 4 21:59:15 UTC 2022 3469 Sun Sep 4 21:59:16 UTC 2022 3470 Sun Sep 4 21:59:17 UTC 2022 3471 Sun Sep 4 21:59:18 UTC 2022 3472 Sun Sep 4 21:59:19 UTC 2022 3473 Sun Sep 4 21:59:20 UTC 2022 3474 Sun Sep 4 21:59:21 UTC 2022 3475 Sun Sep 4 21:59:22 UTC 2022 3476 Sun Sep 4 21:59:23 UTC 2022 3477 Sun Sep 4 21:59:24 UTC 2022 3478 Sun Sep 4 21:59:25 UTC 2022 3479 Sun Sep 4 21:59:26 UTC 2022 3480 Sun Sep 4 21:59:27 UTC 2022 3481 Sun Sep 4 21:59:28 UTC 2022 3482 Sun Sep 4 21:59:29 UTC 2022 3483 Sun Sep 4 21:59:30 UTC 2022 3484 Sun Sep 4 21:59:31 UTC 2022 3485 Sun Sep 4 21:59:32 UTC 2022 3486 Sun Sep 4 21:59:33 UTC 2022 3487 Sun Sep 4 21:59:34 UTC 2022 3488 Sun Sep 4 21:59:35 UTC 2022 3489 Sun Sep 4 21:59:36 UTC 2022 3490 Sun Sep 4 21:59:37 UTC 2022 3491 Sun Sep 4 21:59:38 UTC 2022 3492 Sun Sep 4 21:59:39 UTC 2022 3493 Sun Sep 4 21:59:40 UTC 2022 3494 Sun Sep 4 21:59:41 UTC 2022 3495 Sun Sep 4 21:59:42 UTC 2022 3496 Sun Sep 4 21:59:43 UTC 2022 3497 Sun Sep 4 21:59:44 UTC 2022 3498 Sun Sep 4 21:59:45 UTC 2022 3499 Sun Sep 4 21:59:46 UTC 2022 3500 Sun Sep 4 21:59:47 UTC 2022 3501 Sun Sep 4 21:59:48 UTC 2022 3502 Sun Sep 4 21:59:49 UTC 2022 3503 Sun Sep 4 21:59:50 UTC 2022 3504 Sun Sep 4 21:59:51 UTC 2022 3505 Sun Sep 4 21:59:52 UTC 2022 3506 Sun Sep 4 21:59:53 UTC 2022 3507 Sun Sep 4 21:59:54 UTC 2022 3508 Sun Sep 4 21:59:55 UTC 2022 3509 Sun Sep 4 21:59:56 UTC 2022 3510 Sun Sep 4 21:59:57 UTC 2022 3511 Sun Sep 4 21:59:58 UTC 2022 3512 Sun Sep 4 21:59:59 UTC 2022 3513 Sun Sep 4 22:00:00 UTC 2022 3514 Sun Sep 4 22:00:01 UTC 2022 3515 Sun Sep 4 22:00:02 UTC 2022 3516 Sun Sep 4 22:00:03 UTC 2022 3517 Sun Sep 4 22:00:04 UTC 2022 3518 Sun Sep 4 22:00:05 UTC 2022 3519 Sun Sep 4 22:00:06 UTC 2022 3520 Sun Sep 4 22:00:07 UTC 2022 3521 Sun Sep 4 22:00:08 UTC 2022 3522 Sun Sep 4 22:00:09 UTC 2022 3523 Sun Sep 4 22:00:10 UTC 2022 3524 Sun Sep 4 22:00:11 UTC 2022 3525 Sun Sep 4 22:00:12 UTC 2022 3526 Sun Sep 4 22:00:13 UTC 2022 3527 Sun Sep 4 22:00:14 UTC 2022 3528 Sun Sep 4 22:00:15 UTC 2022 3529 Sun Sep 4 22:00:16 UTC 2022 3530 Sun Sep 4 22:00:17 UTC 2022 3531 Sun Sep 4 22:00:18 UTC 2022 3532 Sun Sep 4 22:00:19 UTC 2022 3533 Sun Sep 4 22:00:20 UTC 2022 3534 Sun Sep 4 22:00:21 UTC 2022 3535 Sun Sep 4 22:00:22 UTC 2022 3536 Sun Sep 4 22:00:23 UTC 2022 3537 Sun Sep 4 22:00:24 UTC 2022 3538 Sun Sep 4 22:00:25 UTC 2022 3539 Sun Sep 4 22:00:26 UTC 2022 3540 Sun Sep 4 22:00:27 UTC 2022 3541 Sun Sep 4 22:00:28 UTC 2022 3542 Sun Sep 4 22:00:29 UTC 2022 3543 Sun Sep 4 22:00:30 UTC 2022 3544 Sun Sep 4 22:00:31 UTC 2022 3545 Sun Sep 4 22:00:32 UTC 2022 3546 Sun Sep 4 22:00:33 UTC 2022 3547 Sun Sep 4 22:00:34 UTC 2022 3548 Sun Sep 4 22:00:35 UTC 2022 3549 Sun Sep 4 22:00:36 UTC 2022 3550 Sun Sep 4 22:00:37 UTC 2022 3551 Sun Sep 4 22:00:38 UTC 2022 3552 Sun Sep 4 22:00:39 UTC 2022 3553 Sun Sep 4 22:00:40 UTC 2022 3554 Sun Sep 4 22:00:41 UTC 2022 3555 Sun Sep 4 22:00:42 UTC 2022 3556 Sun Sep 4 22:00:43 UTC 2022 3557 Sun Sep 4 22:00:44 UTC 2022 3558 Sun Sep 4 22:00:45 UTC 2022 3559 Sun Sep 4 22:00:46 UTC 2022 3560 Sun Sep 4 22:00:47 UTC 2022 3561 Sun Sep 4 22:00:48 UTC 2022 3562 Sun Sep 4 22:00:49 UTC 2022 3563 Sun Sep 4 22:00:50 UTC 2022 3564 Sun Sep 4 22:00:51 UTC 2022 3565 Sun Sep 4 22:00:52 UTC 2022 3566 Sun Sep 4 22:00:53 UTC 2022 3567 Sun Sep 4 22:00:54 UTC 2022 3568 Sun Sep 4 22:00:55 UTC 2022 3569 Sun Sep 4 22:00:57 UTC 2022 3570 Sun Sep 4 22:00:58 UTC 2022 3571 Sun Sep 4 22:00:59 UTC 2022 3572 Sun Sep 4 22:01:00 UTC 2022 3573 Sun Sep 4 22:01:01 UTC 2022 3574 Sun Sep 4 22:01:02 UTC 2022 3575 Sun Sep 4 22:01:03 UTC 2022 3576 Sun Sep 4 22:01:04 UTC 2022 3577 Sun Sep 4 22:01:05 UTC 2022 3578 Sun Sep 4 22:01:06 UTC 2022 3579 Sun Sep 4 22:01:07 UTC 2022 3580 Sun Sep 4 22:01:08 UTC 2022 3581 Sun Sep 4 22:01:09 UTC 2022 3582 Sun Sep 4 22:01:10 UTC 2022 3583 Sun Sep 4 22:01:11 UTC 2022 3584 Sun Sep 4 22:01:12 UTC 2022 3585 Sun Sep 4 22:01:13 UTC 2022 3586 Sun Sep 4 22:01:14 UTC 2022 3587 Sun Sep 4 22:01:15 UTC 2022 3588 Sun Sep 4 22:01:16 UTC 2022 3589 Sun Sep 4 22:01:17 UTC 2022 3590 Sun Sep 4 22:01:18 UTC 2022 3591 Sun Sep 4 22:01:19 UTC 2022 3592 Sun Sep 4 22:01:20 UTC 2022 3593 Sun Sep 4 22:01:21 UTC 2022 3594 Sun Sep 4 22:01:22 UTC 2022 3595 Sun Sep 4 22:01:23 UTC 2022 3596 Sun Sep 4 22:01:24 UTC 2022 3597 Sun Sep 4 22:01:25 UTC 2022 3598 Sun Sep 4 22:01:26 UTC 2022 3599 Sun Sep 4 22:01:27 UTC 2022 3600 Sun Sep 4 22:01:28 UTC 2022 3601 Sun Sep 4 22:01:29 UTC 2022 3602 Sun Sep 4 22:01:30 UTC 2022 3603 Sun Sep 4 22:01:31 UTC 2022 3604 Sun Sep 4 22:01:32 UTC 2022 3605 Sun Sep 4 22:01:33 UTC 2022 3606 Sun Sep 4 22:01:34 UTC 2022 3607 Sun Sep 4 22:01:35 UTC 2022 3608 Sun Sep 4 22:01:36 UTC 2022 3609 Sun Sep 4 22:01:37 UTC 2022 3610 Sun Sep 4 22:01:38 UTC 2022 3611 Sun Sep 4 22:01:39 UTC 2022 3612 Sun Sep 4 22:01:40 UTC 2022 3613 Sun Sep 4 22:01:41 UTC 2022 3614 Sun Sep 4 22:01:42 UTC 2022 3615 Sun Sep 4 22:01:43 UTC 2022 3616 Sun Sep 4 22:01:44 UTC 2022 3617 Sun Sep 4 22:01:45 UTC 2022 3618 Sun Sep 4 22:01:46 UTC 2022 3619 Sun Sep 4 22:01:47 UTC 2022 3620 Sun Sep 4 22:01:48 UTC 2022 3621 Sun Sep 4 22:01:49 UTC 2022 3622 Sun Sep 4 22:01:50 UTC 2022 3623 Sun Sep 4 22:01:51 UTC 2022 3624 Sun Sep 4 22:01:52 UTC 2022 3625 Sun Sep 4 22:01:53 UTC 2022 3626 Sun Sep 4 22:01:54 UTC 2022 3627 Sun Sep 4 22:01:55 UTC 2022 3628 Sun Sep 4 22:01:56 UTC 2022 3629 Sun Sep 4 22:01:57 UTC 2022 3630 Sun Sep 4 22:01:58 UTC 2022 3631 Sun Sep 4 22:01:59 UTC 2022 3632 Sun Sep 4 22:02:00 UTC 2022 3633 Sun Sep 4 22:02:01 UTC 2022 3634 Sun Sep 4 22:02:02 UTC 2022 3635 Sun Sep 4 22:02:03 UTC 2022 3636 Sun Sep 4 22:02:04 UTC 2022 3637 Sun Sep 4 22:02:05 UTC 2022 3638 Sun Sep 4 22:02:06 UTC 2022 3639 Sun Sep 4 22:02:07 UTC 2022 3640 Sun Sep 4 22:02:08 UTC 2022 3641 Sun Sep 4 22:02:09 UTC 2022 3642 Sun Sep 4 22:02:10 UTC 2022 3643 Sun Sep 4 22:02:11 UTC 2022 3644 Sun Sep 4 22:02:12 UTC 2022 3645 Sun Sep 4 22:02:13 UTC 2022 3646 Sun Sep 4 22:02:14 UTC 2022 3647 Sun Sep 4 22:02:15 UTC 2022 3648 Sun Sep 4 22:02:16 UTC 2022 3649 Sun Sep 4 22:02:17 UTC 2022 3650 Sun Sep 4 22:02:18 UTC 2022 3651 Sun Sep 4 22:02:19 UTC 2022 3652 Sun Sep 4 22:02:20 UTC 2022 3653 Sun Sep 4 22:02:21 UTC 2022 3654 Sun Sep 4 22:02:22 UTC 2022 3655 Sun Sep 4 22:02:23 UTC 2022 3656 Sun Sep 4 22:02:24 UTC 2022 3657 Sun Sep 4 22:02:25 UTC 2022 3658 Sun Sep 4 22:02:26 UTC 2022 3659 Sun Sep 4 22:02:27 UTC 2022 3660 Sun Sep 4 22:02:28 UTC 2022 3661 Sun Sep 4 22:02:29 UTC 2022 3662 Sun Sep 4 22:02:30 UTC 2022 3663 Sun Sep 4 22:02:31 UTC 2022 3664 Sun Sep 4 22:02:32 UTC 2022 3665 Sun Sep 4 22:02:33 UTC 2022 3666 Sun Sep 4 22:02:34 UTC 2022 3667 Sun Sep 4 22:02:35 UTC 2022 3668 Sun Sep 4 22:02:36 UTC 2022 3669 Sun Sep 4 22:02:37 UTC 2022 3670 Sun Sep 4 22:02:38 UTC 2022 3671 Sun Sep 4 22:02:39 UTC 2022 3672 Sun Sep 4 22:02:40 UTC 2022 3673 Sun Sep 4 22:02:41 UTC 2022 3674 Sun Sep 4 22:02:42 UTC 2022 3675 Sun Sep 4 22:02:43 UTC 2022 3676 Sun Sep 4 22:02:44 UTC 2022 3677 Sun Sep 4 22:02:45 UTC 2022 3678 Sun Sep 4 22:02:46 UTC 2022 3679 Sun Sep 4 22:02:47 UTC 2022 3680 Sun Sep 4 22:02:48 UTC 2022 3681 Sun Sep 4 22:02:49 UTC 2022 3682 Sun Sep 4 22:02:50 UTC 2022 3683 Sun Sep 4 22:02:51 UTC 2022 3684 Sun Sep 4 22:02:52 UTC 2022 3685 Sun Sep 4 22:02:53 UTC 2022 3686 Sun Sep 4 22:02:54 UTC 2022 3687 Sun Sep 4 22:02:55 UTC 2022 3688 Sun Sep 4 22:02:56 UTC 2022 3689 Sun Sep 4 22:02:57 UTC 2022 3690 Sun Sep 4 22:02:58 UTC 2022 3691 Sun Sep 4 22:02:59 UTC 2022 3692 Sun Sep 4 22:03:00 UTC 2022 3693 Sun Sep 4 22:03:02 UTC 2022 3694 Sun Sep 4 22:03:03 UTC 2022 3695 Sun Sep 4 22:03:04 UTC 2022 3696 Sun Sep 4 22:03:05 UTC 2022 3697 Sun Sep 4 22:03:06 UTC 2022 3698 Sun Sep 4 22:03:07 UTC 2022 3699 Sun Sep 4 22:03:08 UTC 2022 3700 Sun Sep 4 22:03:09 UTC 2022 3701 Sun Sep 4 22:03:10 UTC 2022 3702 Sun Sep 4 22:03:11 UTC 2022 3703 Sun Sep 4 22:03:12 UTC 2022 3704 Sun Sep 4 22:03:13 UTC 2022 3705 Sun Sep 4 22:03:14 UTC 2022 3706 Sun Sep 4 22:03:15 UTC 2022 3707 Sun Sep 4 22:03:16 UTC 2022 3708 Sun Sep 4 22:03:17 UTC 2022 3709 Sun Sep 4 22:03:18 UTC 2022 3710 Sun Sep 4 22:03:19 UTC 2022 3711 Sun Sep 4 22:03:20 UTC 2022 3712 Sun Sep 4 22:03:21 UTC 2022 3713 Sun Sep 4 22:03:22 UTC 2022 3714 Sun Sep 4 22:03:23 UTC 2022 3715 Sun Sep 4 22:03:24 UTC 2022 3716 Sun Sep 4 22:03:25 UTC 2022 3717 Sun Sep 4 22:03:26 UTC 2022 3718 Sun Sep 4 22:03:27 UTC 2022 3719 Sun Sep 4 22:03:28 UTC 2022 3720 Sun Sep 4 22:03:29 UTC 2022 3721 Sun Sep 4 22:03:30 UTC 2022 3722 Sun Sep 4 22:03:31 UTC 2022 3723 Sun Sep 4 22:03:32 UTC 2022 3724 Sun Sep 4 22:03:33 UTC 2022 3725 Sun Sep 4 22:03:34 UTC 2022 3726 Sun Sep 4 22:03:35 UTC 2022 3727 Sun Sep 4 22:03:36 UTC 2022 3728 Sun Sep 4 22:03:37 UTC 2022 3729 Sun Sep 4 22:03:38 UTC 2022 3730 Sun Sep 4 22:03:39 UTC 2022 3731 Sun Sep 4 22:03:40 UTC 2022 3732 Sun Sep 4 22:03:41 UTC 2022 3733 Sun Sep 4 22:03:42 UTC 2022 3734 Sun Sep 4 22:03:43 UTC 2022 3735 Sun Sep 4 22:03:44 UTC 2022 3736 Sun Sep 4 22:03:45 UTC 2022 3737 Sun Sep 4 22:03:46 UTC 2022 3738 Sun Sep 4 22:03:47 UTC 2022 3739 Sun Sep 4 22:03:48 UTC 2022 3740 Sun Sep 4 22:03:49 UTC 2022 3741 Sun Sep 4 22:03:50 UTC 2022 3742 Sun Sep 4 22:03:51 UTC 2022 3743 Sun Sep 4 22:03:52 UTC 2022 3744 Sun Sep 4 22:03:53 UTC 2022 3745 Sun Sep 4 22:03:54 UTC 2022 3746 Sun Sep 4 22:03:55 UTC 2022 3747 Sun Sep 4 22:03:56 UTC 2022 3748 Sun Sep 4 22:03:57 UTC 2022 3749 Sun Sep 4 22:03:58 UTC 2022 3750 Sun Sep 4 22:03:59 UTC 2022 3751 Sun Sep 4 22:04:00 UTC 2022 3752 Sun Sep 4 22:04:01 UTC 2022 3753 Sun Sep 4 22:04:02 UTC 2022 3754 Sun Sep 4 22:04:03 UTC 2022 3755 Sun Sep 4 22:04:04 UTC 2022 3756 Sun Sep 4 22:04:05 UTC 2022 3757 Sun Sep 4 22:04:06 UTC 2022 3758 Sun Sep 4 22:04:07 UTC 2022 3759 Sun Sep 4 22:04:08 UTC 2022 3760 Sun Sep 4 22:04:09 UTC 2022 3761 Sun Sep 4 22:04:10 UTC 2022 3762 Sun Sep 4 22:04:11 UTC 2022 3763 Sun Sep 4 22:04:12 UTC 2022 3764 Sun Sep 4 22:04:13 UTC 2022 3765 Sun Sep 4 22:04:14 UTC 2022 3766 Sun Sep 4 22:04:15 UTC 2022 3767 Sun Sep 4 22:04:16 UTC 2022 3768 Sun Sep 4 22:04:17 UTC 2022 3769 Sun Sep 4 22:04:18 UTC 2022 3770 Sun Sep 4 22:04:19 UTC 2022 3771 Sun Sep 4 22:04:20 UTC 2022 3772 Sun Sep 4 22:04:21 UTC 2022 3773 Sun Sep 4 22:04:22 UTC 2022 3774 Sun Sep 4 22:04:23 UTC 2022 3775 Sun Sep 4 22:04:24 UTC 2022 3776 Sun Sep 4 22:04:25 UTC 2022 3777 Sun Sep 4 22:04:26 UTC 2022 3778 Sun Sep 4 22:04:27 UTC 2022 3779 Sun Sep 4 22:04:28 UTC 2022 3780 Sun Sep 4 22:04:29 UTC 2022 3781 Sun Sep 4 22:04:30 UTC 2022 3782 Sun Sep 4 22:04:31 UTC 2022 3783 Sun Sep 4 22:04:32 UTC 2022 3784 Sun Sep 4 22:04:33 UTC 2022 3785 Sun Sep 4 22:04:34 UTC 2022 3786 Sun Sep 4 22:04:35 UTC 2022 3787 Sun Sep 4 22:04:36 UTC 2022 3788 Sun Sep 4 22:04:37 UTC 2022 3789 Sun Sep 4 22:04:38 UTC 2022 3790 Sun Sep 4 22:04:39 UTC 2022 3791 Sun Sep 4 22:04:40 UTC 2022 3792 Sun Sep 4 22:04:41 UTC 2022 3793 Sun Sep 4 22:04:42 UTC 2022 3794 Sun Sep 4 22:04:43 UTC 2022 3795 Sun Sep 4 22:04:44 UTC 2022 3796 Sun Sep 4 22:04:45 UTC 2022 3797 Sun Sep 4 22:04:46 UTC 2022 3798 Sun Sep 4 22:04:47 UTC 2022 3799 Sun Sep 4 22:04:48 UTC 2022 3800 Sun Sep 4 22:04:49 UTC 2022 3801 Sun Sep 4 22:04:50 UTC 2022 3802 Sun Sep 4 22:04:51 UTC 2022 3803 Sun Sep 4 22:04:52 UTC 2022 3804 Sun Sep 4 22:04:53 UTC 2022 3805 Sun Sep 4 22:04:54 UTC 2022 3806 Sun Sep 4 22:04:55 UTC 2022 3807 Sun Sep 4 22:04:56 UTC 2022 3808 Sun Sep 4 22:04:57 UTC 2022 3809 Sun Sep 4 22:04:58 UTC 2022 3810 Sun Sep 4 22:04:59 UTC 2022 3811 Sun Sep 4 22:05:00 UTC 2022 3812 Sun Sep 4 22:05:01 UTC 2022 3813 Sun Sep 4 22:05:02 UTC 2022 3814 Sun Sep 4 22:05:03 UTC 2022 3815 Sun Sep 4 22:05:04 UTC 2022 3816 Sun Sep 4 22:05:06 UTC 2022 3817 Sun Sep 4 22:05:07 UTC 2022 3818 Sun Sep 4 22:05:08 UTC 2022 3819 Sun Sep 4 22:05:09 UTC 2022 3820 Sun Sep 4 22:05:10 UTC 2022 3821 Sun Sep 4 22:05:11 UTC 2022 3822 Sun Sep 4 22:05:12 UTC 2022 3823 Sun Sep 4 22:05:13 UTC 2022 3824 Sun Sep 4 22:05:14 UTC 2022 3825 Sun Sep 4 22:05:15 UTC 2022 3826 Sun Sep 4 22:05:16 UTC 2022 3827 Sun Sep 4 22:05:17 UTC 2022 3828 Sun Sep 4 22:05:18 UTC 2022 3829 Sun Sep 4 22:05:19 UTC 2022 3830 Sun Sep 4 22:05:20 UTC 2022 3831 Sun Sep 4 22:05:21 UTC 2022 3832 Sun Sep 4 22:05:22 UTC 2022 3833 Sun Sep 4 22:05:23 UTC 2022 3834 Sun Sep 4 22:05:24 UTC 2022 3835 Sun Sep 4 22:05:25 UTC 2022 3836 Sun Sep 4 22:05:26 UTC 2022 3837 Sun Sep 4 22:05:27 UTC 2022 3838 Sun Sep 4 22:05:28 UTC 2022 3839 Sun Sep 4 22:05:29 UTC 2022 3840 Sun Sep 4 22:05:30 UTC 2022 3841 Sun Sep 4 22:05:31 UTC 2022 3842 Sun Sep 4 22:05:32 UTC 2022 3843 Sun Sep 4 22:05:33 UTC 2022 3844 Sun Sep 4 22:05:34 UTC 2022 3845 Sun Sep 4 22:05:35 UTC 2022 3846 Sun Sep 4 22:05:36 UTC 2022 3847 Sun Sep 4 22:05:37 UTC 2022 3848 Sun Sep 4 22:05:38 UTC 2022 3849 Sun Sep 4 22:05:39 UTC 2022 3850 Sun Sep 4 22:05:40 UTC 2022 3851 Sun Sep 4 22:05:41 UTC 2022 3852 Sun Sep 4 22:05:42 UTC 2022 3853 Sun Sep 4 22:05:43 UTC 2022 3854 Sun Sep 4 22:05:44 UTC 2022 3855 Sun Sep 4 22:05:45 UTC 2022 3856 Sun Sep 4 22:05:46 UTC 2022 3857 Sun Sep 4 22:05:47 UTC 2022 3858 Sun Sep 4 22:05:48 UTC 2022 3859 Sun Sep 4 22:05:49 UTC 2022 3860 Sun Sep 4 22:05:50 UTC 2022 3861 Sun Sep 4 22:05:51 UTC 2022 3862 Sun Sep 4 22:05:52 UTC 2022 3863 Sun Sep 4 22:05:53 UTC 2022 3864 Sun Sep 4 22:05:54 UTC 2022 3865 Sun Sep 4 22:05:55 UTC 2022 3866 Sun Sep 4 22:05:56 UTC 2022 3867 Sun Sep 4 22:05:57 UTC 2022 3868 Sun Sep 4 22:05:58 UTC 2022 3869 Sun Sep 4 22:05:59 UTC 2022 3870 Sun Sep 4 22:06:00 UTC 2022 3871 Sun Sep 4 22:06:01 UTC 2022 3872 Sun Sep 4 22:06:02 UTC 2022 3873 Sun Sep 4 22:06:03 UTC 2022 3874 Sun Sep 4 22:06:04 UTC 2022 3875 Sun Sep 4 22:06:05 UTC 2022 3876 Sun Sep 4 22:06:06 UTC 2022 3877 Sun Sep 4 22:06:07 UTC 2022 3878 Sun Sep 4 22:06:08 UTC 2022 3879 Sun Sep 4 22:06:09 UTC 2022 3880 Sun Sep 4 22:06:10 UTC 2022 3881 Sun Sep 4 22:06:11 UTC 2022 3882 Sun Sep 4 22:06:12 UTC 2022 3883 Sun Sep 4 22:06:13 UTC 2022 3884 Sun Sep 4 22:06:14 UTC 2022 3885 Sun Sep 4 22:06:15 UTC 2022 3886 Sun Sep 4 22:06:16 UTC 2022 3887 Sun Sep 4 22:06:17 UTC 2022 3888 Sun Sep 4 22:06:18 UTC 2022 3889 Sun Sep 4 22:06:19 UTC 2022 3890 Sun Sep 4 22:06:20 UTC 2022 3891 Sun Sep 4 22:06:21 UTC 2022 3892 Sun Sep 4 22:06:22 UTC 2022 3893 Sun Sep 4 22:06:23 UTC 2022 3894 Sun Sep 4 22:06:24 UTC 2022 3895 Sun Sep 4 22:06:25 UTC 2022 3896 Sun Sep 4 22:06:26 UTC 2022 3897 Sun Sep 4 22:06:27 UTC 2022 3898 Sun Sep 4 22:06:28 UTC 2022 3899 Sun Sep 4 22:06:29 UTC 2022 3900 Sun Sep 4 22:06:30 UTC 2022 3901 Sun Sep 4 22:06:31 UTC 2022 3902 Sun Sep 4 22:06:32 UTC 2022 3903 Sun Sep 4 22:06:33 UTC 2022 3904 Sun Sep 4 22:06:34 UTC 2022 3905 Sun Sep 4 22:06:35 UTC 2022 3906 Sun Sep 4 22:06:36 UTC 2022 3907 Sun Sep 4 22:06:37 UTC 2022 3908 Sun Sep 4 22:06:38 UTC 2022 3909 Sun Sep 4 22:06:39 UTC 2022 3910 Sun Sep 4 22:06:40 UTC 2022 3911 Sun Sep 4 22:06:41 UTC 2022 3912 Sun Sep 4 22:06:42 UTC 2022 3913 Sun Sep 4 22:06:43 UTC 2022 3914 Sun Sep 4 22:06:44 UTC 2022 3915 Sun Sep 4 22:06:45 UTC 2022 3916 Sun Sep 4 22:06:46 UTC 2022 3917 Sun Sep 4 22:06:47 UTC 2022 3918 Sun Sep 4 22:06:48 UTC 2022 3919 Sun Sep 4 22:06:49 UTC 2022 3920 Sun Sep 4 22:06:50 UTC 2022 3921 Sun Sep 4 22:06:51 UTC 2022 3922 Sun Sep 4 22:06:52 UTC 2022 3923 Sun Sep 4 22:06:53 UTC 2022 3924 Sun Sep 4 22:06:54 UTC 2022 3925 Sun Sep 4 22:06:55 UTC 2022 3926 Sun Sep 4 22:06:56 UTC 2022 3927 Sun Sep 4 22:06:57 UTC 2022 3928 Sun Sep 4 22:06:58 UTC 2022 3929 Sun Sep 4 22:06:59 UTC 2022 3930 Sun Sep 4 22:07:00 UTC 2022 3931 Sun Sep 4 22:07:01 UTC 2022 3932 Sun Sep 4 22:07:02 UTC 2022 3933 Sun Sep 4 22:07:03 UTC 2022 3934 Sun Sep 4 22:07:05 UTC 2022 3935 Sun Sep 4 22:07:06 UTC 2022 3936 Sun Sep 4 22:07:07 UTC 2022 3937 Sun Sep 4 22:07:08 UTC 2022 3938 Sun Sep 4 22:07:09 UTC 2022 3939 Sun Sep 4 22:07:10 UTC 2022 3940 Sun Sep 4 22:07:11 UTC 2022 3941 Sun Sep 4 22:07:12 UTC 2022 3942 Sun Sep 4 22:07:13 UTC 2022 3943 Sun Sep 4 22:07:14 UTC 2022 3944 Sun Sep 4 22:07:15 UTC 2022 3945 Sun Sep 4 22:07:16 UTC 2022 3946 Sun Sep 4 22:07:17 UTC 2022 3947 Sun Sep 4 22:07:18 UTC 2022 3948 Sun Sep 4 22:07:19 UTC 2022 3949 Sun Sep 4 22:07:20 UTC 2022 3950 Sun Sep 4 22:07:21 UTC 2022 3951 Sun Sep 4 22:07:22 UTC 2022 3952 Sun Sep 4 22:07:23 UTC 2022 3953 Sun Sep 4 22:07:24 UTC 2022 3954 Sun Sep 4 22:07:25 UTC 2022 3955 Sun Sep 4 22:07:26 UTC 2022 3956 Sun Sep 4 22:07:27 UTC 2022 3957 Sun Sep 4 22:07:28 UTC 2022 3958 Sun Sep 4 22:07:29 UTC 2022 3959 Sun Sep 4 22:07:30 UTC 2022 3960 Sun Sep 4 22:07:31 UTC 2022 3961 Sun Sep 4 22:07:32 UTC 2022 3962 Sun Sep 4 22:07:33 UTC 2022 3963 Sun Sep 4 22:07:34 UTC 2022 3964 Sun Sep 4 22:07:35 UTC 2022 3965 Sun Sep 4 22:07:36 UTC 2022 3966 Sun Sep 4 22:07:37 UTC 2022 3967 Sun Sep 4 22:07:38 UTC 2022 3968 Sun Sep 4 22:07:39 UTC 2022 3969 Sun Sep 4 22:07:40 UTC 2022 3970 Sun Sep 4 22:07:41 UTC 2022 3971 Sun Sep 4 22:07:42 UTC 2022 3972 Sun Sep 4 22:07:43 UTC 2022 3973 Sun Sep 4 22:07:44 UTC 2022 3974 Sun Sep 4 22:07:45 UTC 2022 3975 Sun Sep 4 22:07:46 UTC 2022 3976 Sun Sep 4 22:07:47 UTC 2022 3977 Sun Sep 4 22:07:48 UTC 2022 3978 Sun Sep 4 22:07:49 UTC 2022 3979 Sun Sep 4 22:07:50 UTC 2022 3980 Sun Sep 4 22:07:51 UTC 2022 3981 Sun Sep 4 22:07:52 UTC 2022 3982 Sun Sep 4 22:07:53 UTC 2022 3983 Sun Sep 4 22:07:54 UTC 2022 3984 Sun Sep 4 22:07:55 UTC 2022 3985 Sun Sep 4 22:07:56 UTC 2022 3986 Sun Sep 4 22:07:57 UTC 2022 3987 Sun Sep 4 22:07:58 UTC 2022 3988 Sun Sep 4 22:07:59 UTC 2022 3989 Sun Sep 4 22:08:00 UTC 2022 3990 Sun Sep 4 22:08:01 UTC 2022 3991 Sun Sep 4 22:08:02 UTC 2022 3992 Sun Sep 4 22:08:03 UTC 2022 3993 Sun Sep 4 22:08:04 UTC 2022 3994 Sun Sep 4 22:08:05 UTC 2022 3995 Sun Sep 4 22:08:06 UTC 2022 3996 Sun Sep 4 22:08:07 UTC 2022 3997 Sun Sep 4 22:08:08 UTC 2022 3998 Sun Sep 4 22:08:09 UTC 2022 3999 Sun Sep 4 22:08:10 UTC 2022 4000 Sun Sep 4 22:08:11 UTC 2022 4001 Sun Sep 4 22:08:12 UTC 2022 4002 Sun Sep 4 22:08:13 UTC 2022 4003 Sun Sep 4 22:08:14 UTC 2022 4004 Sun Sep 4 22:08:15 UTC 2022 4005 Sun Sep 4 22:08:16 UTC 2022 4006 Sun Sep 4 22:08:17 UTC 2022 4007 Sun Sep 4 22:08:18 UTC 2022 4008 Sun Sep 4 22:08:19 UTC 2022 4009 Sun Sep 4 22:08:20 UTC 2022 4010 Sun Sep 4 22:08:21 UTC 2022 4011 Sun Sep 4 22:08:22 UTC 2022 4012 Sun Sep 4 22:08:23 UTC 2022 4013 Sun Sep 4 22:08:24 UTC 2022 4014 Sun Sep 4 22:08:25 UTC 2022 4015 Sun Sep 4 22:08:26 UTC 2022 4016 Sun Sep 4 22:08:27 UTC 2022 4017 Sun Sep 4 22:08:28 UTC 2022 4018 Sun Sep 4 22:08:29 UTC 2022 4019 Sun Sep 4 22:08:30 UTC 2022 4020 Sun Sep 4 22:08:31 UTC 2022 4021 Sun Sep 4 22:08:32 UTC 2022 4022 Sun Sep 4 22:08:33 UTC 2022 4023 Sun Sep 4 22:08:34 UTC 2022 4024 Sun Sep 4 22:08:35 UTC 2022 4025 Sun Sep 4 22:08:36 UTC 2022 4026 Sun Sep 4 22:08:37 UTC 2022 4027 Sun Sep 4 22:08:38 UTC 2022 4028 Sun Sep 4 22:08:39 UTC 2022 4029 Sun Sep 4 22:08:40 UTC 2022 4030 Sun Sep 4 22:08:41 UTC 2022 4031 Sun Sep 4 22:08:42 UTC 2022 4032 Sun Sep 4 22:08:43 UTC 2022 4033 Sun Sep 4 22:08:44 UTC 2022 4034 Sun Sep 4 22:08:45 UTC 2022 4035 Sun Sep 4 22:08:46 UTC 2022 4036 Sun Sep 4 22:08:47 UTC 2022 4037 Sun Sep 4 22:08:48 UTC 2022 4038 Sun Sep 4 22:08:49 UTC 2022 4039 Sun Sep 4 22:08:50 UTC 2022 4040 Sun Sep 4 22:08:51 UTC 2022 4041 Sun Sep 4 22:08:52 UTC 2022 4042 Sun Sep 4 22:08:53 UTC 2022 4043 Sun Sep 4 22:08:54 UTC 2022 4044 Sun Sep 4 22:08:55 UTC 2022 4045 Sun Sep 4 22:08:56 UTC 2022 4046 Sun Sep 4 22:08:57 UTC 2022 4047 Sun Sep 4 22:08:58 UTC 2022 4048 Sun Sep 4 22:09:00 UTC 2022 4049 Sun Sep 4 22:09:01 UTC 2022 4050 Sun Sep 4 22:09:02 UTC 2022 4051 Sun Sep 4 22:09:03 UTC 2022 4052 Sun Sep 4 22:09:04 UTC 2022 4053 Sun Sep 4 22:09:05 UTC 2022 4054 Sun Sep 4 22:09:06 UTC 2022 4055 Sun Sep 4 22:09:07 UTC 2022 4056 Sun Sep 4 22:09:08 UTC 2022 4057 Sun Sep 4 22:09:09 UTC 2022 4058 Sun Sep 4 22:09:10 UTC 2022 4059 Sun Sep 4 22:09:11 UTC 2022 4060 Sun Sep 4 22:09:12 UTC 2022 4061 Sun Sep 4 22:09:13 UTC 2022 4062 Sun Sep 4 22:09:14 UTC 2022 4063 Sun Sep 4 22:09:15 UTC 2022 4064 Sun Sep 4 22:09:16 UTC 2022 4065 Sun Sep 4 22:09:17 UTC 2022 4066 Sun Sep 4 22:09:18 UTC 2022 4067 Sun Sep 4 22:09:19 UTC 2022 4068 Sun Sep 4 22:09:20 UTC 2022 4069 Sun Sep 4 22:09:21 UTC 2022 4070 Sun Sep 4 22:09:22 UTC 2022 4071 Sun Sep 4 22:09:23 UTC 2022 4072 Sun Sep 4 22:09:24 UTC 2022 4073 Sun Sep 4 22:09:25 UTC 2022 4074 Sun Sep 4 22:09:26 UTC 2022 4075 Sun Sep 4 22:09:27 UTC 2022 4076 Sun Sep 4 22:09:28 UTC 2022 4077 Sun Sep 4 22:09:29 UTC 2022 4078 Sun Sep 4 22:09:30 UTC 2022 4079 Sun Sep 4 22:09:31 UTC 2022 4080 Sun Sep 4 22:09:32 UTC 2022 4081 Sun Sep 4 22:09:33 UTC 2022 4082 Sun Sep 4 22:09:34 UTC 2022 4083 Sun Sep 4 22:09:35 UTC 2022 4084 Sun Sep 4 22:09:36 UTC 2022 4085 Sun Sep 4 22:09:37 UTC 2022 4086 Sun Sep 4 22:09:38 UTC 2022 4087 Sun Sep 4 22:09:39 UTC 2022 4088 Sun Sep 4 22:09:40 UTC 2022 4089 Sun Sep 4 22:09:41 UTC 2022 4090 Sun Sep 4 22:09:42 UTC 2022 4091 Sun Sep 4 22:09:43 UTC 2022 4092 Sun Sep 4 22:09:44 UTC 2022 4093 Sun Sep 4 22:09:45 UTC 2022 4094 Sun Sep 4 22:09:46 UTC 2022 4095 Sun Sep 4 22:09:47 UTC 2022 4096 Sun Sep 4 22:09:48 UTC 2022 4097 Sun Sep 4 22:09:49 UTC 2022 4098 Sun Sep 4 22:09:50 UTC 2022 4099 Sun Sep 4 22:09:51 UTC 2022 4100 Sun Sep 4 22:09:52 UTC 2022 4101 Sun Sep 4 22:09:53 UTC 2022 4102 Sun Sep 4 22:09:54 UTC 2022 4103 Sun Sep 4 22:09:55 UTC 2022 4104 Sun Sep 4 22:09:56 UTC 2022 4105 Sun Sep 4 22:09:57 UTC 2022 4106 Sun Sep 4 22:09:58 UTC 2022 4107 Sun Sep 4 22:09:59 UTC 2022 4108 Sun Sep 4 22:10:00 UTC 2022 4109 Sun Sep 4 22:10:01 UTC 2022 4110 Sun Sep 4 22:10:02 UTC 2022 4111 Sun Sep 4 22:10:03 UTC 2022 4112 Sun Sep 4 22:10:04 UTC 2022 4113 Sun Sep 4 22:10:05 UTC 2022 4114 Sun Sep 4 22:10:06 UTC 2022 4115 Sun Sep 4 22:10:07 UTC 2022 4116 Sun Sep 4 22:10:08 UTC 2022 4117 Sun Sep 4 22:10:09 UTC 2022 4118 Sun Sep 4 22:10:10 UTC 2022 4119 Sun Sep 4 22:10:11 UTC 2022 4120 Sun Sep 4 22:10:12 UTC 2022 4121 Sun Sep 4 22:10:13 UTC 2022 4122 Sun Sep 4 22:10:14 UTC 2022 4123 Sun Sep 4 22:10:15 UTC 2022 4124 Sun Sep 4 22:10:16 UTC 2022 4125 Sun Sep 4 22:10:17 UTC 2022 4126 Sun Sep 4 22:10:18 UTC 2022 4127 Sun Sep 4 22:10:19 UTC 2022 4128 Sun Sep 4 22:10:20 UTC 2022 4129 Sun Sep 4 22:10:21 UTC 2022 4130 Sun Sep 4 22:10:22 UTC 2022 4131 Sun Sep 4 22:10:23 UTC 2022 4132 Sun Sep 4 22:10:24 UTC 2022 4133 Sun Sep 4 22:10:25 UTC 2022 4134 Sun Sep 4 22:10:26 UTC 2022 4135 Sun Sep 4 22:10:27 UTC 2022 4136 Sun Sep 4 22:10:28 UTC 2022 4137 Sun Sep 4 22:10:29 UTC 2022 4138 Sun Sep 4 22:10:30 UTC 2022 4139 Sun Sep 4 22:10:31 UTC 2022 4140 Sun Sep 4 22:10:32 UTC 2022 4141 Sun Sep 4 22:10:33 UTC 2022 4142 Sun Sep 4 22:10:34 UTC 2022 4143 Sun Sep 4 22:10:35 UTC 2022 4144 Sun Sep 4 22:10:36 UTC 2022 4145 Sun Sep 4 22:10:37 UTC 2022 4146 Sun Sep 4 22:10:38 UTC 2022 4147 Sun Sep 4 22:10:39 UTC 2022 4148 Sun Sep 4 22:10:40 UTC 2022 4149 Sun Sep 4 22:10:41 UTC 2022 4150 Sun Sep 4 22:10:42 UTC 2022 4151 Sun Sep 4 22:10:43 UTC 2022 4152 Sun Sep 4 22:10:44 UTC 2022 4153 Sun Sep 4 22:10:45 UTC 2022 4154 Sun Sep 4 22:10:46 UTC 2022 4155 Sun Sep 4 22:10:47 UTC 2022 4156 Sun Sep 4 22:10:48 UTC 2022 4157 Sun Sep 4 22:10:49 UTC 2022 4158 Sun Sep 4 22:10:50 UTC 2022 4159 Sun Sep 4 22:10:51 UTC 2022 4160 Sun Sep 4 22:10:52 UTC 2022 4161 Sun Sep 4 22:10:53 UTC 2022 4162 Sun Sep 4 22:10:54 UTC 2022 4163 Sun Sep 4 22:10:55 UTC 2022 4164 Sun Sep 4 22:10:56 UTC 2022 4165 Sun Sep 4 22:10:57 UTC 2022 4166 Sun Sep 4 22:10:58 UTC 2022 4167 Sun Sep 4 22:11:00 UTC 2022 4168 Sun Sep 4 22:11:01 UTC 2022 4169 Sun Sep 4 22:11:02 UTC 2022 4170 Sun Sep 4 22:11:03 UTC 2022 4171 Sun Sep 4 22:11:04 UTC 2022 4172 Sun Sep 4 22:11:05 UTC 2022 4173 Sun Sep 4 22:11:06 UTC 2022 4174 Sun Sep 4 22:11:07 UTC 2022 4175 Sun Sep 4 22:11:08 UTC 2022 4176 Sun Sep 4 22:11:09 UTC 2022 4177 Sun Sep 4 22:11:10 UTC 2022 4178 Sun Sep 4 22:11:11 UTC 2022 4179 Sun Sep 4 22:11:12 UTC 2022 4180 Sun Sep 4 22:11:13 UTC 2022 4181 Sun Sep 4 22:11:14 UTC 2022 4182 Sun Sep 4 22:11:15 UTC 2022 4183 Sun Sep 4 22:11:16 UTC 2022 4184 Sun Sep 4 22:11:17 UTC 2022 4185 Sun Sep 4 22:11:18 UTC 2022 4186 Sun Sep 4 22:11:19 UTC 2022 4187 Sun Sep 4 22:11:20 UTC 2022 4188 Sun Sep 4 22:11:21 UTC 2022 4189 Sun Sep 4 22:11:22 UTC 2022 4190 Sun Sep 4 22:11:23 UTC 2022 4191 Sun Sep 4 22:11:24 UTC 2022 4192 Sun Sep 4 22:11:25 UTC 2022 4193 Sun Sep 4 22:11:26 UTC 2022 4194 Sun Sep 4 22:11:27 UTC 2022 4195 Sun Sep 4 22:11:28 UTC 2022 4196 Sun Sep 4 22:11:29 UTC 2022 4197 Sun Sep 4 22:11:30 UTC 2022 4198 Sun Sep 4 22:11:31 UTC 2022 4199 Sun Sep 4 22:11:32 UTC 2022 4200 Sun Sep 4 22:11:33 UTC 2022 4201 Sun Sep 4 22:11:34 UTC 2022 4202 Sun Sep 4 22:11:35 UTC 2022 4203 Sun Sep 4 22:11:36 UTC 2022 4204 Sun Sep 4 22:11:37 UTC 2022 4205 Sun Sep 4 22:11:38 UTC 2022 4206 Sun Sep 4 22:11:39 UTC 2022 4207 Sun Sep 4 22:11:40 UTC 2022 4208 Sun Sep 4 22:11:41 UTC 2022 4209 Sun Sep 4 22:11:42 UTC 2022 4210 Sun Sep 4 22:11:43 UTC 2022 4211 Sun Sep 4 22:11:44 UTC 2022 4212 Sun Sep 4 22:11:45 UTC 2022 4213 Sun Sep 4 22:11:46 UTC 2022 4214 Sun Sep 4 22:11:47 UTC 2022 4215 Sun Sep 4 22:11:48 UTC 2022 4216 Sun Sep 4 22:11:49 UTC 2022 4217 Sun Sep 4 22:11:50 UTC 2022 4218 Sun Sep 4 22:11:51 UTC 2022 4219 Sun Sep 4 22:11:52 UTC 2022 4220 Sun Sep 4 22:11:53 UTC 2022 4221 Sun Sep 4 22:11:54 UTC 2022 4222 Sun Sep 4 22:11:55 UTC 2022 4223 Sun Sep 4 22:11:56 UTC 2022 4224 Sun Sep 4 22:11:57 UTC 2022 4225 Sun Sep 4 22:11:58 UTC 2022 4226 Sun Sep 4 22:11:59 UTC 2022 4227 Sun Sep 4 22:12:00 UTC 2022 4228 Sun Sep 4 22:12:01 UTC 2022 4229 Sun Sep 4 22:12:02 UTC 2022 4230 Sun Sep 4 22:12:03 UTC 2022 4231 Sun Sep 4 22:12:04 UTC 2022 4232 Sun Sep 4 22:12:05 UTC 2022 4233 Sun Sep 4 22:12:06 UTC 2022 4234 Sun Sep 4 22:12:07 UTC 2022 4235 Sun Sep 4 22:12:08 UTC 2022 4236 Sun Sep 4 22:12:09 UTC 2022 4237 Sun Sep 4 22:12:10 UTC 2022 4238 Sun Sep 4 22:12:11 UTC 2022 4239 Sun Sep 4 22:12:12 UTC 2022 4240 Sun Sep 4 22:12:13 UTC 2022 4241 Sun Sep 4 22:12:14 UTC 2022 4242 Sun Sep 4 22:12:15 UTC 2022 4243 Sun Sep 4 22:12:16 UTC 2022 4244 Sun Sep 4 22:12:17 UTC 2022 4245 Sun Sep 4 22:12:18 UTC 2022 4246 Sun Sep 4 22:12:19 UTC 2022 4247 Sun Sep 4 22:12:20 UTC 2022 4248 Sun Sep 4 22:12:21 UTC 2022 4249 Sun Sep 4 22:12:22 UTC 2022 4250 Sun Sep 4 22:12:23 UTC 2022 4251 Sun Sep 4 22:12:24 UTC 2022 4252 Sun Sep 4 22:12:25 UTC 2022 4253 Sun Sep 4 22:12:26 UTC 2022 4254 Sun Sep 4 22:12:27 UTC 2022 4255 Sun Sep 4 22:12:28 UTC 2022 4256 Sun Sep 4 22:12:29 UTC 2022 4257 Sun Sep 4 22:12:30 UTC 2022 4258 Sun Sep 4 22:12:31 UTC 2022 4259 Sun Sep 4 22:12:32 UTC 2022 4260 Sun Sep 4 22:12:33 UTC 2022 4261 Sun Sep 4 22:12:34 UTC 2022 4262 Sun Sep 4 22:12:35 UTC 2022 4263 Sun Sep 4 22:12:36 UTC 2022 4264 Sun Sep 4 22:12:37 UTC 2022 4265 Sun Sep 4 22:12:38 UTC 2022 4266 Sun Sep 4 22:12:39 UTC 2022 4267 Sun Sep 4 22:12:40 UTC 2022 4268 Sun Sep 4 22:12:41 UTC 2022 4269 Sun Sep 4 22:12:42 UTC 2022 4270 Sun Sep 4 22:12:43 UTC 2022 4271 Sun Sep 4 22:12:44 UTC 2022 4272 Sun Sep 4 22:12:45 UTC 2022 4273 Sun Sep 4 22:12:46 UTC 2022 4274 Sun Sep 4 22:12:47 UTC 2022 4275 Sun Sep 4 22:12:48 UTC 2022 4276 Sun Sep 4 22:12:49 UTC 2022 4277 Sun Sep 4 22:12:50 UTC 2022 4278 Sun Sep 4 22:12:51 UTC 2022 4279 Sun Sep 4 22:12:52 UTC 2022 4280 Sun Sep 4 22:12:53 UTC 2022 4281 Sun Sep 4 22:12:54 UTC 2022 4282 Sun Sep 4 22:12:55 UTC 2022 4283 Sun Sep 4 22:12:56 UTC 2022 4284 Sun Sep 4 22:12:57 UTC 2022 4285 Sun Sep 4 22:12:58 UTC 2022 4286 Sun Sep 4 22:12:59 UTC 2022 4287 Sun Sep 4 22:13:01 UTC 2022 4288 Sun Sep 4 22:13:02 UTC 2022 4289 Sun Sep 4 22:13:03 UTC 2022 4290 Sun Sep 4 22:13:04 UTC 2022 4291 Sun Sep 4 22:13:05 UTC 2022 4292 Sun Sep 4 22:13:06 UTC 2022 4293 Sun Sep 4 22:13:07 UTC 2022 4294 Sun Sep 4 22:13:08 UTC 2022 4295 Sun Sep 4 22:13:09 UTC 2022 4296 Sun Sep 4 22:13:10 UTC 2022 4297 Sun Sep 4 22:13:11 UTC 2022 4298 Sun Sep 4 22:13:12 UTC 2022 4299 Sun Sep 4 22:13:13 UTC 2022 4300 Sun Sep 4 22:13:14 UTC 2022 4301 Sun Sep 4 22:13:15 UTC 2022 4302 Sun Sep 4 22:13:16 UTC 2022 4303 Sun Sep 4 22:13:17 UTC 2022 4304 Sun Sep 4 22:13:18 UTC 2022 4305 Sun Sep 4 22:13:19 UTC 2022 4306 Sun Sep 4 22:13:20 UTC 2022 4307 Sun Sep 4 22:13:21 UTC 2022 4308 Sun Sep 4 22:13:22 UTC 2022 4309 Sun Sep 4 22:13:23 UTC 2022 4310 Sun Sep 4 22:13:24 UTC 2022 4311 Sun Sep 4 22:13:25 UTC 2022 4312 Sun Sep 4 22:13:26 UTC 2022 4313 Sun Sep 4 22:13:27 UTC 2022 4314 Sun Sep 4 22:13:28 UTC 2022 4315 Sun Sep 4 22:13:29 UTC 2022 4316 Sun Sep 4 22:13:30 UTC 2022 4317 Sun Sep 4 22:13:31 UTC 2022 4318 Sun Sep 4 22:13:32 UTC 2022 4319 Sun Sep 4 22:13:33 UTC 2022 4320 Sun Sep 4 22:13:34 UTC 2022 4321 Sun Sep 4 22:13:35 UTC 2022 4322 Sun Sep 4 22:13:36 UTC 2022 4323 Sun Sep 4 22:13:37 UTC 2022 4324 Sun Sep 4 22:13:38 UTC 2022 4325 Sun Sep 4 22:13:39 UTC 2022 4326 Sun Sep 4 22:13:40 UTC 2022 4327 Sun Sep 4 22:13:41 UTC 2022 4328 Sun Sep 4 22:13:42 UTC 2022 4329 Sun Sep 4 22:13:43 UTC 2022 4330 Sun Sep 4 22:13:44 UTC 2022 4331 Sun Sep 4 22:13:45 UTC 2022 4332 Sun Sep 4 22:13:46 UTC 2022 4333 Sun Sep 4 22:13:47 UTC 2022 4334 Sun Sep 4 22:13:48 UTC 2022 4335 Sun Sep 4 22:13:49 UTC 2022 4336 Sun Sep 4 22:13:50 UTC 2022 4337 Sun Sep 4 22:13:51 UTC 2022 4338 Sun Sep 4 22:13:52 UTC 2022 4339 Sun Sep 4 22:13:53 UTC 2022 4340 Sun Sep 4 22:13:54 UTC 2022 4341 Sun Sep 4 22:13:55 UTC 2022 4342 Sun Sep 4 22:13:56 UTC 2022 4343 Sun Sep 4 22:13:57 UTC 2022 4344 Sun Sep 4 22:13:58 UTC 2022 4345 Sun Sep 4 22:13:59 UTC 2022 4346 Sun Sep 4 22:14:00 UTC 2022 4347 Sun Sep 4 22:14:01 UTC 2022 4348 Sun Sep 4 22:14:02 UTC 2022 4349 Sun Sep 4 22:14:03 UTC 2022 4350 Sun Sep 4 22:14:04 UTC 2022 4351 Sun Sep 4 22:14:05 UTC 2022 4352 Sun Sep 4 22:14:06 UTC 2022 4353 Sun Sep 4 22:14:07 UTC 2022 4354 Sun Sep 4 22:14:08 UTC 2022 4355 Sun Sep 4 22:14:09 UTC 2022 4356 Sun Sep 4 22:14:10 UTC 2022 4357 Sun Sep 4 22:14:11 UTC 2022 4358 Sun Sep 4 22:14:12 UTC 2022 4359 Sun Sep 4 22:14:13 UTC 2022 4360 Sun Sep 4 22:14:14 UTC 2022 4361 Sun Sep 4 22:14:15 UTC 2022 4362 Sun Sep 4 22:14:16 UTC 2022 4363 Sun Sep 4 22:14:17 UTC 2022 4364 Sun Sep 4 22:14:18 UTC 2022 4365 Sun Sep 4 22:14:19 UTC 2022 4366 Sun Sep 4 22:14:20 UTC 2022 4367 Sun Sep 4 22:14:21 UTC 2022 4368 Sun Sep 4 22:14:22 UTC 2022 4369 Sun Sep 4 22:14:23 UTC 2022 4370 Sun Sep 4 22:14:24 UTC 2022 4371 Sun Sep 4 22:14:25 UTC 2022 4372 Sun Sep 4 22:14:26 UTC 2022 4373 Sun Sep 4 22:14:27 UTC 2022 4374 Sun Sep 4 22:14:28 UTC 2022 4375 Sun Sep 4 22:14:29 UTC 2022 4376 Sun Sep 4 22:14:30 UTC 2022 4377 Sun Sep 4 22:14:31 UTC 2022 4378 Sun Sep 4 22:14:32 UTC 2022 4379 Sun Sep 4 22:14:33 UTC 2022 4380 Sun Sep 4 22:14:34 UTC 2022 4381 Sun Sep 4 22:14:35 UTC 2022 4382 Sun Sep 4 22:14:36 UTC 2022 4383 Sun Sep 4 22:14:37 UTC 2022 4384 Sun Sep 4 22:14:38 UTC 2022 4385 Sun Sep 4 22:14:39 UTC 2022 4386 Sun Sep 4 22:14:40 UTC 2022 4387 Sun Sep 4 22:14:41 UTC 2022 4388 Sun Sep 4 22:14:42 UTC 2022 4389 Sun Sep 4 22:14:43 UTC 2022 4390 Sun Sep 4 22:14:44 UTC 2022 4391 Sun Sep 4 22:14:45 UTC 2022 4392 Sun Sep 4 22:14:46 UTC 2022 4393 Sun Sep 4 22:14:47 UTC 2022 4394 Sun Sep 4 22:14:48 UTC 2022 4395 Sun Sep 4 22:14:49 UTC 2022 4396 Sun Sep 4 22:14:50 UTC 2022 4397 Sun Sep 4 22:14:51 UTC 2022 4398 Sun Sep 4 22:14:52 UTC 2022 4399 Sun Sep 4 22:14:53 UTC 2022 4400 Sun Sep 4 22:14:55 UTC 2022 4401 Sun Sep 4 22:14:56 UTC 2022 4402 Sun Sep 4 22:14:57 UTC 2022 4403 Sun Sep 4 22:14:58 UTC 2022 4404 Sun Sep 4 22:14:59 UTC 2022 4405 Sun Sep 4 22:15:00 UTC 2022 4406 Sun Sep 4 22:15:01 UTC 2022 4407 Sun Sep 4 22:15:02 UTC 2022 4408 Sun Sep 4 22:15:03 UTC 2022 4409 Sun Sep 4 22:15:04 UTC 2022 4410 Sun Sep 4 22:15:05 UTC 2022 4411 Sun Sep 4 22:15:06 UTC 2022 4412 Sun Sep 4 22:15:07 UTC 2022 4413 Sun Sep 4 22:15:08 UTC 2022 4414 Sun Sep 4 22:15:09 UTC 2022 4415 Sun Sep 4 22:15:10 UTC 2022 4416 Sun Sep 4 22:15:11 UTC 2022 4417 Sun Sep 4 22:15:12 UTC 2022 4418 Sun Sep 4 22:15:13 UTC 2022 4419 Sun Sep 4 22:15:14 UTC 2022 4420 Sun Sep 4 22:15:15 UTC 2022 4421 Sun Sep 4 22:15:16 UTC 2022 4422 Sun Sep 4 22:15:17 UTC 2022 4423 Sun Sep 4 22:15:18 UTC 2022 4424 Sun Sep 4 22:15:19 UTC 2022 4425 Sun Sep 4 22:15:20 UTC 2022 4426 Sun Sep 4 22:15:21 UTC 2022 4427 Sun Sep 4 22:15:22 UTC 2022 4428 Sun Sep 4 22:15:23 UTC 2022 4429 Sun Sep 4 22:15:24 UTC 2022 4430 Sun Sep 4 22:15:25 UTC 2022 4431 Sun Sep 4 22:15:26 UTC 2022 4432 Sun Sep 4 22:15:27 UTC 2022 4433 Sun Sep 4 22:15:28 UTC 2022 4434 Sun Sep 4 22:15:29 UTC 2022 4435 Sun Sep 4 22:15:30 UTC 2022 4436 Sun Sep 4 22:15:31 UTC 2022 4437 Sun Sep 4 22:15:32 UTC 2022 4438 Sun Sep 4 22:15:33 UTC 2022 4439 Sun Sep 4 22:15:34 UTC 2022 4440 Sun Sep 4 22:15:35 UTC 2022 4441 Sun Sep 4 22:15:36 UTC 2022 4442 Sun Sep 4 22:15:37 UTC 2022 4443 Sun Sep 4 22:15:38 UTC 2022 4444 Sun Sep 4 22:15:39 UTC 2022 4445 Sun Sep 4 22:15:40 UTC 2022 4446 Sun Sep 4 22:15:41 UTC 2022 4447 Sun Sep 4 22:15:42 UTC 2022 4448 Sun Sep 4 22:15:43 UTC 2022 4449 Sun Sep 4 22:15:44 UTC 2022 4450 Sun Sep 4 22:15:45 UTC 2022 4451 Sun Sep 4 22:15:46 UTC 2022 4452 Sun Sep 4 22:15:47 UTC 2022 4453 Sun Sep 4 22:15:48 UTC 2022 4454 Sun Sep 4 22:15:49 UTC 2022 4455 Sun Sep 4 22:15:50 UTC 2022 4456 Sun Sep 4 22:15:51 UTC 2022 4457 Sun Sep 4 22:15:52 UTC 2022 4458 Sun Sep 4 22:15:53 UTC 2022 4459 Sun Sep 4 22:15:54 UTC 2022 4460 Sun Sep 4 22:15:55 UTC 2022 4461 Sun Sep 4 22:15:56 UTC 2022 4462 Sun Sep 4 22:15:57 UTC 2022 4463 Sun Sep 4 22:15:58 UTC 2022 4464 Sun Sep 4 22:15:59 UTC 2022 4465 Sun Sep 4 22:16:00 UTC 2022 4466 Sun Sep 4 22:16:01 UTC 2022 4467 Sun Sep 4 22:16:02 UTC 2022 4468 Sun Sep 4 22:16:03 UTC 2022 4469 Sun Sep 4 22:16:04 UTC 2022 4470 Sun Sep 4 22:16:05 UTC 2022 4471 Sun Sep 4 22:16:06 UTC 2022 4472 Sun Sep 4 22:16:07 UTC 2022 4473 Sun Sep 4 22:16:08 UTC 2022 4474 Sun Sep 4 22:16:09 UTC 2022 4475 Sun Sep 4 22:16:10 UTC 2022 4476 Sun Sep 4 22:16:11 UTC 2022 4477 Sun Sep 4 22:16:12 UTC 2022 4478 Sun Sep 4 22:16:13 UTC 2022 4479 Sun Sep 4 22:16:14 UTC 2022 4480 Sun Sep 4 22:16:15 UTC 2022 4481 Sun Sep 4 22:16:16 UTC 2022 4482 Sun Sep 4 22:16:17 UTC 2022 4483 Sun Sep 4 22:16:18 UTC 2022 4484 Sun Sep 4 22:16:19 UTC 2022 4485 Sun Sep 4 22:16:20 UTC 2022 4486 Sun Sep 4 22:16:21 UTC 2022 4487 Sun Sep 4 22:16:22 UTC 2022 4488 Sun Sep 4 22:16:23 UTC 2022 4489 Sun Sep 4 22:16:24 UTC 2022 4490 Sun Sep 4 22:16:25 UTC 2022 4491 Sun Sep 4 22:16:26 UTC 2022 4492 Sun Sep 4 22:16:27 UTC 2022 4493 Sun Sep 4 22:16:28 UTC 2022 4494 Sun Sep 4 22:16:29 UTC 2022 4495 Sun Sep 4 22:16:30 UTC 2022 4496 Sun Sep 4 22:16:31 UTC 2022 4497 Sun Sep 4 22:16:32 UTC 2022 4498 Sun Sep 4 22:16:33 UTC 2022 4499 Sun Sep 4 22:16:34 UTC 2022 4500 Sun Sep 4 22:16:35 UTC 2022 4501 Sun Sep 4 22:16:36 UTC 2022 4502 Sun Sep 4 22:16:37 UTC 2022 4503 Sun Sep 4 22:16:38 UTC 2022 4504 Sun Sep 4 22:16:39 UTC 2022 4505 Sun Sep 4 22:16:40 UTC 2022 4506 Sun Sep 4 22:16:41 UTC 2022 4507 Sun Sep 4 22:16:42 UTC 2022 4508 Sun Sep 4 22:16:43 UTC 2022 4509 Sun Sep 4 22:16:44 UTC 2022 4510 Sun Sep 4 22:16:46 UTC 2022 4511 Sun Sep 4 22:16:47 UTC 2022 4512 Sun Sep 4 22:16:48 UTC 2022 4513 Sun Sep 4 22:16:49 UTC 2022 4514 Sun Sep 4 22:16:50 UTC 2022 4515 Sun Sep 4 22:16:51 UTC 2022 4516 Sun Sep 4 22:16:52 UTC 2022 4517 Sun Sep 4 22:16:53 UTC 2022 4518 Sun Sep 4 22:16:54 UTC 2022 4519 Sun Sep 4 22:16:55 UTC 2022 4520 Sun Sep 4 22:16:56 UTC 2022 4521 Sun Sep 4 22:16:57 UTC 2022 4522 Sun Sep 4 22:16:58 UTC 2022 4523 Sun Sep 4 22:16:59 UTC 2022 4524 Sun Sep 4 22:17:00 UTC 2022 4525 Sun Sep 4 22:17:01 UTC 2022 4526 Sun Sep 4 22:17:02 UTC 2022 4527 Sun Sep 4 22:17:03 UTC 2022 4528 Sun Sep 4 22:17:04 UTC 2022 4529 Sun Sep 4 22:17:05 UTC 2022 4530 Sun Sep 4 22:17:06 UTC 2022 4531 Sun Sep 4 22:17:07 UTC 2022 4532 Sun Sep 4 22:17:08 UTC 2022 4533 Sun Sep 4 22:17:09 UTC 2022 4534 Sun Sep 4 22:17:10 UTC 2022 4535 Sun Sep 4 22:17:11 UTC 2022 4536 Sun Sep 4 22:17:12 UTC 2022 4537 Sun Sep 4 22:17:13 UTC 2022 4538 Sun Sep 4 22:17:14 UTC 2022 4539 Sun Sep 4 22:17:15 UTC 2022 4540 Sun Sep 4 22:17:16 UTC 2022 4541 Sun Sep 4 22:17:17 UTC 2022 4542 Sun Sep 4 22:17:18 UTC 2022 4543 Sun Sep 4 22:17:19 UTC 2022 4544 Sun Sep 4 22:17:20 UTC 2022 4545 Sun Sep 4 22:17:21 UTC 2022 4546 Sun Sep 4 22:17:22 UTC 2022 4547 Sun Sep 4 22:17:23 UTC 2022 4548 Sun Sep 4 22:17:24 UTC 2022 4549 Sun Sep 4 22:17:25 UTC 2022 4550 Sun Sep 4 22:17:26 UTC 2022 4551 Sun Sep 4 22:17:27 UTC 2022 4552 Sun Sep 4 22:17:28 UTC 2022 4553 Sun Sep 4 22:17:29 UTC 2022 4554 Sun Sep 4 22:17:30 UTC 2022 4555 Sun Sep 4 22:17:31 UTC 2022 4556 Sun Sep 4 22:17:32 UTC 2022 4557 Sun Sep 4 22:17:33 UTC 2022 4558 Sun Sep 4 22:17:34 UTC 2022 4559 Sun Sep 4 22:17:35 UTC 2022 4560 Sun Sep 4 22:17:36 UTC 2022 4561 Sun Sep 4 22:17:37 UTC 2022 4562 Sun Sep 4 22:17:38 UTC 2022 4563 Sun Sep 4 22:17:39 UTC 2022 4564 Sun Sep 4 22:17:40 UTC 2022 4565 Sun Sep 4 22:17:41 UTC 2022 4566 Sun Sep 4 22:17:42 UTC 2022 4567 Sun Sep 4 22:17:43 UTC 2022 4568 Sun Sep 4 22:17:44 UTC 2022 4569 Sun Sep 4 22:17:45 UTC 2022 4570 Sun Sep 4 22:17:46 UTC 2022 4571 Sun Sep 4 22:17:47 UTC 2022 4572 Sun Sep 4 22:17:48 UTC 2022 4573 Sun Sep 4 22:17:49 UTC 2022 4574 Sun Sep 4 22:17:50 UTC 2022 4575 Sun Sep 4 22:17:51 UTC 2022 4576 Sun Sep 4 22:17:52 UTC 2022 4577 Sun Sep 4 22:17:53 UTC 2022 4578 Sun Sep 4 22:17:54 UTC 2022 4579 Sun Sep 4 22:17:55 UTC 2022 4580 Sun Sep 4 22:17:56 UTC 2022 4581 Sun Sep 4 22:17:57 UTC 2022 4582 Sun Sep 4 22:17:58 UTC 2022 4583 Sun Sep 4 22:17:59 UTC 2022 4584 Sun Sep 4 22:18:00 UTC 2022 4585 Sun Sep 4 22:18:01 UTC 2022 4586 Sun Sep 4 22:18:02 UTC 2022 4587 Sun Sep 4 22:18:03 UTC 2022 4588 Sun Sep 4 22:18:04 UTC 2022 4589 Sun Sep 4 22:18:05 UTC 2022 4590 Sun Sep 4 22:18:06 UTC 2022 4591 Sun Sep 4 22:18:07 UTC 2022 4592 Sun Sep 4 22:18:08 UTC 2022 4593 Sun Sep 4 22:18:09 UTC 2022 4594 Sun Sep 4 22:18:10 UTC 2022 4595 Sun Sep 4 22:18:11 UTC 2022 4596 Sun Sep 4 22:18:12 UTC 2022 4597 Sun Sep 4 22:18:13 UTC 2022 4598 Sun Sep 4 22:18:14 UTC 2022 4599 Sun Sep 4 22:18:15 UTC 2022 4600 Sun Sep 4 22:18:16 UTC 2022 4601 Sun Sep 4 22:18:17 UTC 2022 4602 Sun Sep 4 22:18:18 UTC 2022 4603 Sun Sep 4 22:18:19 UTC 2022 4604 Sun Sep 4 22:18:20 UTC 2022 4605 Sun Sep 4 22:18:21 UTC 2022 4606 Sun Sep 4 22:18:22 UTC 2022 4607 Sun Sep 4 22:18:23 UTC 2022 4608 Sun Sep 4 22:18:24 UTC 2022 4609 Sun Sep 4 22:18:25 UTC 2022 4610 Sun Sep 4 22:18:26 UTC 2022 4611 Sun Sep 4 22:18:27 UTC 2022 4612 Sun Sep 4 22:18:28 UTC 2022 4613 Sun Sep 4 22:18:29 UTC 2022 4614 Sun Sep 4 22:18:30 UTC 2022 4615 Sun Sep 4 22:18:31 UTC 2022 4616 Sun Sep 4 22:18:32 UTC 2022 4617 Sun Sep 4 22:18:33 UTC 2022 4618 Sun Sep 4 22:18:34 UTC 2022 4619 Sun Sep 4 22:18:35 UTC 2022 4620 Sun Sep 4 22:18:36 UTC 2022 4621 Sun Sep 4 22:18:37 UTC 2022 4622 Sun Sep 4 22:18:38 UTC 2022 4623 Sun Sep 4 22:18:39 UTC 2022 4624 Sun Sep 4 22:18:40 UTC 2022 4625 Sun Sep 4 22:18:41 UTC 2022 4626 Sun Sep 4 22:18:43 UTC 2022 4627 Sun Sep 4 22:18:44 UTC 2022 4628 Sun Sep 4 22:18:45 UTC 2022 4629 Sun Sep 4 22:18:46 UTC 2022 4630 Sun Sep 4 22:18:47 UTC 2022 4631 Sun Sep 4 22:18:48 UTC 2022 4632 Sun Sep 4 22:18:49 UTC 2022 4633 Sun Sep 4 22:18:50 UTC 2022 4634 Sun Sep 4 22:18:51 UTC 2022 4635 Sun Sep 4 22:18:52 UTC 2022 4636 Sun Sep 4 22:18:53 UTC 2022 4637 Sun Sep 4 22:18:54 UTC 2022 4638 Sun Sep 4 22:18:55 UTC 2022 4639 Sun Sep 4 22:18:56 UTC 2022 4640 Sun Sep 4 22:18:57 UTC 2022 4641 Sun Sep 4 22:18:58 UTC 2022 4642 Sun Sep 4 22:18:59 UTC 2022 4643 Sun Sep 4 22:19:00 UTC 2022 4644 Sun Sep 4 22:19:01 UTC 2022 4645 Sun Sep 4 22:19:02 UTC 2022 4646 Sun Sep 4 22:19:03 UTC 2022 4647 Sun Sep 4 22:19:04 UTC 2022 4648 Sun Sep 4 22:19:05 UTC 2022 4649 Sun Sep 4 22:19:06 UTC 2022 4650 Sun Sep 4 22:19:07 UTC 2022 4651 Sun Sep 4 22:19:08 UTC 2022 4652 Sun Sep 4 22:19:09 UTC 2022 4653 Sun Sep 4 22:19:10 UTC 2022 4654 Sun Sep 4 22:19:11 UTC 2022 4655 Sun Sep 4 22:19:12 UTC 2022 4656 Sun Sep 4 22:19:13 UTC 2022 4657 Sun Sep 4 22:19:14 UTC 2022 4658 Sun Sep 4 22:19:15 UTC 2022 4659 Sun Sep 4 22:19:16 UTC 2022 4660 Sun Sep 4 22:19:17 UTC 2022 4661 Sun Sep 4 22:19:18 UTC 2022 4662 Sun Sep 4 22:19:19 UTC 2022 4663 Sun Sep 4 22:19:20 UTC 2022 4664 Sun Sep 4 22:19:21 UTC 2022 4665 Sun Sep 4 22:19:22 UTC 2022 4666 Sun Sep 4 22:19:23 UTC 2022 4667 Sun Sep 4 22:19:24 UTC 2022 4668 Sun Sep 4 22:19:25 UTC 2022 4669 Sun Sep 4 22:19:26 UTC 2022 4670 Sun Sep 4 22:19:27 UTC 2022 4671 Sun Sep 4 22:19:28 UTC 2022 4672 Sun Sep 4 22:19:29 UTC 2022 4673 Sun Sep 4 22:19:30 UTC 2022 4674 Sun Sep 4 22:19:31 UTC 2022 4675 Sun Sep 4 22:19:32 UTC 2022 4676 Sun Sep 4 22:19:33 UTC 2022 4677 Sun Sep 4 22:19:34 UTC 2022 4678 Sun Sep 4 22:19:35 UTC 2022 4679 Sun Sep 4 22:19:36 UTC 2022 4680 Sun Sep 4 22:19:37 UTC 2022 4681 Sun Sep 4 22:19:38 UTC 2022 4682 Sun Sep 4 22:19:39 UTC 2022 4683 Sun Sep 4 22:19:40 UTC 2022 4684 Sun Sep 4 22:19:41 UTC 2022 4685 Sun Sep 4 22:19:42 UTC 2022 4686 Sun Sep 4 22:19:43 UTC 2022 4687 Sun Sep 4 22:19:44 UTC 2022 4688 Sun Sep 4 22:19:45 UTC 2022 4689 Sun Sep 4 22:19:46 UTC 2022 4690 Sun Sep 4 22:19:47 UTC 2022 4691 Sun Sep 4 22:19:48 UTC 2022 4692 Sun Sep 4 22:19:49 UTC 2022 4693 Sun Sep 4 22:19:50 UTC 2022 4694 Sun Sep 4 22:19:51 UTC 2022 4695 Sun Sep 4 22:19:52 UTC 2022 4696 Sun Sep 4 22:19:53 UTC 2022 4697 Sun Sep 4 22:19:54 UTC 2022 4698 Sun Sep 4 22:19:55 UTC 2022 4699 Sun Sep 4 22:19:56 UTC 2022 4700 Sun Sep 4 22:19:57 UTC 2022 4701 Sun Sep 4 22:19:58 UTC 2022 4702 Sun Sep 4 22:19:59 UTC 2022 4703 Sun Sep 4 22:20:00 UTC 2022 4704 Sun Sep 4 22:20:01 UTC 2022 4705 Sun Sep 4 22:20:02 UTC 2022 4706 Sun Sep 4 22:20:03 UTC 2022 4707 Sun Sep 4 22:20:04 UTC 2022 4708 Sun Sep 4 22:20:05 UTC 2022 4709 Sun Sep 4 22:20:06 UTC 2022 4710 Sun Sep 4 22:20:07 UTC 2022 4711 Sun Sep 4 22:20:08 UTC 2022 4712 Sun Sep 4 22:20:09 UTC 2022 4713 Sun Sep 4 22:20:10 UTC 2022 4714 Sun Sep 4 22:20:11 UTC 2022 4715 Sun Sep 4 22:20:12 UTC 2022 4716 Sun Sep 4 22:20:13 UTC 2022 4717 Sun Sep 4 22:20:14 UTC 2022 4718 Sun Sep 4 22:20:15 UTC 2022 4719 Sun Sep 4 22:20:16 UTC 2022 4720 Sun Sep 4 22:20:17 UTC 2022 4721 Sun Sep 4 22:20:18 UTC 2022 4722 Sun Sep 4 22:20:19 UTC 2022 4723 Sun Sep 4 22:20:20 UTC 2022 4724 Sun Sep 4 22:20:21 UTC 2022 4725 Sun Sep 4 22:20:22 UTC 2022 4726 Sun Sep 4 22:20:23 UTC 2022 4727 Sun Sep 4 22:20:24 UTC 2022 4728 Sun Sep 4 22:20:25 UTC 2022 4729 Sun Sep 4 22:20:26 UTC 2022 4730 Sun Sep 4 22:20:27 UTC 2022 4731 Sun Sep 4 22:20:28 UTC 2022 4732 Sun Sep 4 22:20:29 UTC 2022 4733 Sun Sep 4 22:20:30 UTC 2022 4734 Sun Sep 4 22:20:31 UTC 2022 4735 Sun Sep 4 22:20:32 UTC 2022 4736 Sun Sep 4 22:20:33 UTC 2022 4737 Sun Sep 4 22:20:34 UTC 2022 4738 Sun Sep 4 22:20:35 UTC 2022 4739 Sun Sep 4 22:20:36 UTC 2022 4740 Sun Sep 4 22:20:38 UTC 2022 4741 Sun Sep 4 22:20:39 UTC 2022 4742 Sun Sep 4 22:20:40 UTC 2022 4743 Sun Sep 4 22:20:41 UTC 2022 4744 Sun Sep 4 22:20:42 UTC 2022 4745 Sun Sep 4 22:20:43 UTC 2022 4746 Sun Sep 4 22:20:44 UTC 2022 4747 Sun Sep 4 22:20:45 UTC 2022 4748 Sun Sep 4 22:20:46 UTC 2022 4749 Sun Sep 4 22:20:47 UTC 2022 4750 Sun Sep 4 22:20:48 UTC 2022 4751 Sun Sep 4 22:20:49 UTC 2022 4752 Sun Sep 4 22:20:50 UTC 2022 4753 Sun Sep 4 22:20:51 UTC 2022 4754 Sun Sep 4 22:20:52 UTC 2022 4755 Sun Sep 4 22:20:53 UTC 2022 4756 Sun Sep 4 22:20:54 UTC 2022 4757 Sun Sep 4 22:20:55 UTC 2022 4758 Sun Sep 4 22:20:56 UTC 2022 4759 Sun Sep 4 22:20:57 UTC 2022 4760 Sun Sep 4 22:20:58 UTC 2022 4761 Sun Sep 4 22:20:59 UTC 2022 4762 Sun Sep 4 22:21:00 UTC 2022 4763 Sun Sep 4 22:21:01 UTC 2022 4764 Sun Sep 4 22:21:02 UTC 2022 4765 Sun Sep 4 22:21:03 UTC 2022 4766 Sun Sep 4 22:21:04 UTC 2022 4767 Sun Sep 4 22:21:05 UTC 2022 4768 Sun Sep 4 22:21:06 UTC 2022 4769 Sun Sep 4 22:21:07 UTC 2022 4770 Sun Sep 4 22:21:08 UTC 2022 4771 Sun Sep 4 22:21:09 UTC 2022 4772 Sun Sep 4 22:21:10 UTC 2022 4773 Sun Sep 4 22:21:11 UTC 2022 4774 Sun Sep 4 22:21:12 UTC 2022 4775 Sun Sep 4 22:21:13 UTC 2022 4776 Sun Sep 4 22:21:14 UTC 2022 4777 Sun Sep 4 22:21:15 UTC 2022 4778 Sun Sep 4 22:21:16 UTC 2022 4779 Sun Sep 4 22:21:17 UTC 2022 4780 Sun Sep 4 22:21:18 UTC 2022 4781 Sun Sep 4 22:21:19 UTC 2022 4782 Sun Sep 4 22:21:20 UTC 2022 4783 Sun Sep 4 22:21:21 UTC 2022 4784 Sun Sep 4 22:21:22 UTC 2022 4785 Sun Sep 4 22:21:23 UTC 2022 4786 Sun Sep 4 22:21:24 UTC 2022 4787 Sun Sep 4 22:21:25 UTC 2022 4788 Sun Sep 4 22:21:26 UTC 2022 4789 Sun Sep 4 22:21:27 UTC 2022 4790 Sun Sep 4 22:21:28 UTC 2022 4791 Sun Sep 4 22:21:29 UTC 2022 4792 Sun Sep 4 22:21:30 UTC 2022 4793 Sun Sep 4 22:21:31 UTC 2022 4794 Sun Sep 4 22:21:32 UTC 2022 4795 Sun Sep 4 22:21:33 UTC 2022 4796 Sun Sep 4 22:21:34 UTC 2022 4797 Sun Sep 4 22:21:35 UTC 2022 4798 Sun Sep 4 22:21:36 UTC 2022 4799 Sun Sep 4 22:21:37 UTC 2022 4800 Sun Sep 4 22:21:38 UTC 2022 4801 Sun Sep 4 22:21:39 UTC 2022 4802 Sun Sep 4 22:21:40 UTC 2022 4803 Sun Sep 4 22:21:41 UTC 2022 4804 Sun Sep 4 22:21:42 UTC 2022 4805 Sun Sep 4 22:21:43 UTC 2022 4806 Sun Sep 4 22:21:44 UTC 2022 4807 Sun Sep 4 22:21:45 UTC 2022 4808 Sun Sep 4 22:21:46 UTC 2022 4809 Sun Sep 4 22:21:47 UTC 2022 4810 Sun Sep 4 22:21:48 UTC 2022 4811 Sun Sep 4 22:21:49 UTC 2022 4812 Sun Sep 4 22:21:50 UTC 2022 4813 Sun Sep 4 22:21:51 UTC 2022 4814 Sun Sep 4 22:21:52 UTC 2022 4815 Sun Sep 4 22:21:53 UTC 2022 4816 Sun Sep 4 22:21:54 UTC 2022 4817 Sun Sep 4 22:21:55 UTC 2022 4818 Sun Sep 4 22:21:56 UTC 2022 4819 Sun Sep 4 22:21:57 UTC 2022 4820 Sun Sep 4 22:21:58 UTC 2022 4821 Sun Sep 4 22:21:59 UTC 2022 4822 Sun Sep 4 22:22:00 UTC 2022 4823 Sun Sep 4 22:22:01 UTC 2022 4824 Sun Sep 4 22:22:02 UTC 2022 4825 Sun Sep 4 22:22:03 UTC 2022 4826 Sun Sep 4 22:22:04 UTC 2022 4827 Sun Sep 4 22:22:05 UTC 2022 4828 Sun Sep 4 22:22:06 UTC 2022 4829 Sun Sep 4 22:22:07 UTC 2022 4830 Sun Sep 4 22:22:08 UTC 2022 4831 Sun Sep 4 22:22:09 UTC 2022 4832 Sun Sep 4 22:22:10 UTC 2022 4833 Sun Sep 4 22:22:11 UTC 2022 4834 Sun Sep 4 22:22:12 UTC 2022 4835 Sun Sep 4 22:22:13 UTC 2022 4836 Sun Sep 4 22:22:14 UTC 2022 4837 Sun Sep 4 22:22:15 UTC 2022 4838 Sun Sep 4 22:22:16 UTC 2022 4839 Sun Sep 4 22:22:17 UTC 2022 4840 Sun Sep 4 22:22:18 UTC 2022 4841 Sun Sep 4 22:22:19 UTC 2022 4842 Sun Sep 4 22:22:20 UTC 2022 4843 Sun Sep 4 22:22:21 UTC 2022 4844 Sun Sep 4 22:22:22 UTC 2022 4845 Sun Sep 4 22:22:23 UTC 2022 4846 Sun Sep 4 22:22:24 UTC 2022 4847 Sun Sep 4 22:22:25 UTC 2022 4848 Sun Sep 4 22:22:26 UTC 2022 4849 Sun Sep 4 22:22:27 UTC 2022 4850 Sun Sep 4 22:22:28 UTC 2022 4851 Sun Sep 4 22:22:29 UTC 2022 4852 Sun Sep 4 22:22:30 UTC 2022 4853 Sun Sep 4 22:22:31 UTC 2022 4854 Sun Sep 4 22:22:32 UTC 2022 4855 Sun Sep 4 22:22:33 UTC 2022 4856 Sun Sep 4 22:22:34 UTC 2022 4857 Sun Sep 4 22:22:36 UTC 2022 4858 Sun Sep 4 22:22:37 UTC 2022 4859 Sun Sep 4 22:22:38 UTC 2022 4860 Sun Sep 4 22:22:39 UTC 2022 4861 Sun Sep 4 22:22:40 UTC 2022 4862 Sun Sep 4 22:22:41 UTC 2022 4863 Sun Sep 4 22:22:42 UTC 2022 4864 Sun Sep 4 22:22:43 UTC 2022 4865 Sun Sep 4 22:22:44 UTC 2022 4866 Sun Sep 4 22:22:45 UTC 2022 4867 Sun Sep 4 22:22:46 UTC 2022 4868 Sun Sep 4 22:22:47 UTC 2022 4869 Sun Sep 4 22:22:48 UTC 2022 4870 Sun Sep 4 22:22:49 UTC 2022 4871 Sun Sep 4 22:22:50 UTC 2022 4872 Sun Sep 4 22:22:51 UTC 2022 4873 Sun Sep 4 22:22:52 UTC 2022 4874 Sun Sep 4 22:22:53 UTC 2022 4875 Sun Sep 4 22:22:54 UTC 2022 4876 Sun Sep 4 22:22:55 UTC 2022 4877 Sun Sep 4 22:22:56 UTC 2022 4878 Sun Sep 4 22:22:57 UTC 2022 4879 Sun Sep 4 22:22:58 UTC 2022 4880 Sun Sep 4 22:22:59 UTC 2022 4881 Sun Sep 4 22:23:00 UTC 2022 4882 Sun Sep 4 22:23:01 UTC 2022 4883 Sun Sep 4 22:23:02 UTC 2022 4884 Sun Sep 4 22:23:03 UTC 2022 4885 Sun Sep 4 22:23:04 UTC 2022 4886 Sun Sep 4 22:23:05 UTC 2022 4887 Sun Sep 4 22:23:06 UTC 2022 4888 Sun Sep 4 22:23:07 UTC 2022 4889 Sun Sep 4 22:23:08 UTC 2022 4890 Sun Sep 4 22:23:09 UTC 2022 4891 Sun Sep 4 22:23:10 UTC 2022 4892 Sun Sep 4 22:23:11 UTC 2022 4893 Sun Sep 4 22:23:12 UTC 2022 4894 Sun Sep 4 22:23:13 UTC 2022 4895 Sun Sep 4 22:23:14 UTC 2022 4896 Sun Sep 4 22:23:15 UTC 2022 4897 Sun Sep 4 22:23:16 UTC 2022 4898 Sun Sep 4 22:23:17 UTC 2022 4899 Sun Sep 4 22:23:18 UTC 2022 4900 Sun Sep 4 22:23:19 UTC 2022 4901 Sun Sep 4 22:23:20 UTC 2022 4902 Sun Sep 4 22:23:21 UTC 2022 4903 Sun Sep 4 22:23:22 UTC 2022 4904 Sun Sep 4 22:23:23 UTC 2022 4905 Sun Sep 4 22:23:24 UTC 2022 4906 Sun Sep 4 22:23:25 UTC 2022 4907 Sun Sep 4 22:23:26 UTC 2022 4908 Sun Sep 4 22:23:27 UTC 2022 4909 Sun Sep 4 22:23:28 UTC 2022 4910 Sun Sep 4 22:23:29 UTC 2022 4911 Sun Sep 4 22:23:30 UTC 2022 4912 Sun Sep 4 22:23:31 UTC 2022 4913 Sun Sep 4 22:23:32 UTC 2022 4914 Sun Sep 4 22:23:33 UTC 2022 4915 Sun Sep 4 22:23:34 UTC 2022 4916 Sun Sep 4 22:23:35 UTC 2022 4917 Sun Sep 4 22:23:36 UTC 2022 4918 Sun Sep 4 22:23:37 UTC 2022 4919 Sun Sep 4 22:23:38 UTC 2022 4920 Sun Sep 4 22:23:39 UTC 2022 4921 Sun Sep 4 22:23:40 UTC 2022 4922 Sun Sep 4 22:23:41 UTC 2022 4923 Sun Sep 4 22:23:42 UTC 2022 4924 Sun Sep 4 22:23:43 UTC 2022 4925 Sun Sep 4 22:23:44 UTC 2022 4926 Sun Sep 4 22:23:45 UTC 2022 4927 Sun Sep 4 22:23:46 UTC 2022 4928 Sun Sep 4 22:23:47 UTC 2022 4929 Sun Sep 4 22:23:48 UTC 2022 4930 Sun Sep 4 22:23:49 UTC 2022 4931 Sun Sep 4 22:23:50 UTC 2022 4932 Sun Sep 4 22:23:51 UTC 2022 4933 Sun Sep 4 22:23:52 UTC 2022 4934 Sun Sep 4 22:23:53 UTC 2022 4935 Sun Sep 4 22:23:54 UTC 2022 4936 Sun Sep 4 22:23:55 UTC 2022 4937 Sun Sep 4 22:23:56 UTC 2022 4938 Sun Sep 4 22:23:57 UTC 2022 4939 Sun Sep 4 22:23:58 UTC 2022 4940 Sun Sep 4 22:23:59 UTC 2022 4941 Sun Sep 4 22:24:00 UTC 2022 4942 Sun Sep 4 22:24:01 UTC 2022 4943 Sun Sep 4 22:24:02 UTC 2022 4944 Sun Sep 4 22:24:03 UTC 2022 4945 Sun Sep 4 22:24:04 UTC 2022 4946 Sun Sep 4 22:24:05 UTC 2022 4947 Sun Sep 4 22:24:06 UTC 2022 4948 Sun Sep 4 22:24:07 UTC 2022 4949 Sun Sep 4 22:24:08 UTC 2022 4950 Sun Sep 4 22:24:09 UTC 2022 4951 Sun Sep 4 22:24:10 UTC 2022 4952 Sun Sep 4 22:24:11 UTC 2022 4953 Sun Sep 4 22:24:12 UTC 2022 4954 Sun Sep 4 22:24:13 UTC 2022 4955 Sun Sep 4 22:24:14 UTC 2022 4956 Sun Sep 4 22:24:15 UTC 2022 4957 Sun Sep 4 22:24:16 UTC 2022 4958 Sun Sep 4 22:24:17 UTC 2022 4959 Sun Sep 4 22:24:18 UTC 2022 4960 Sun Sep 4 22:24:19 UTC 2022 4961 Sun Sep 4 22:24:20 UTC 2022 4962 Sun Sep 4 22:24:21 UTC 2022 4963 Sun Sep 4 22:24:22 UTC 2022 4964 Sun Sep 4 22:24:23 UTC 2022 4965 Sun Sep 4 22:24:24 UTC 2022 4966 Sun Sep 4 22:24:25 UTC 2022 4967 Sun Sep 4 22:24:26 UTC 2022 4968 Sun Sep 4 22:24:27 UTC 2022 4969 Sun Sep 4 22:24:28 UTC 2022 4970 Sun Sep 4 22:24:29 UTC 2022 4971 Sun Sep 4 22:24:30 UTC 2022 4972 Sun Sep 4 22:24:31 UTC 2022 4973 Sun Sep 4 22:24:32 UTC 2022 4974 Sun Sep 4 22:24:33 UTC 2022 4975 Sun Sep 4 22:24:34 UTC 2022 4976 Sun Sep 4 22:24:35 UTC 2022 4977 Sun Sep 4 22:24:37 UTC 2022 4978 Sun Sep 4 22:24:38 UTC 2022 4979 Sun Sep 4 22:24:39 UTC 2022 4980 Sun Sep 4 22:24:40 UTC 2022 4981 Sun Sep 4 22:24:41 UTC 2022 4982 Sun Sep 4 22:24:42 UTC 2022 4983 Sun Sep 4 22:24:43 UTC 2022 4984 Sun Sep 4 22:24:44 UTC 2022 4985 Sun Sep 4 22:24:45 UTC 2022 4986 Sun Sep 4 22:24:46 UTC 2022 4987 Sun Sep 4 22:24:47 UTC 2022 4988 Sun Sep 4 22:24:48 UTC 2022 4989 Sun Sep 4 22:24:49 UTC 2022 4990 Sun Sep 4 22:24:50 UTC 2022 4991 Sun Sep 4 22:24:51 UTC 2022 4992 Sun Sep 4 22:24:52 UTC 2022 4993 Sun Sep 4 22:24:53 UTC 2022 4994 Sun Sep 4 22:24:54 UTC 2022 4995 Sun Sep 4 22:24:55 UTC 2022 4996 Sun Sep 4 22:24:56 UTC 2022 4997 Sun Sep 4 22:24:57 UTC 2022 4998 Sun Sep 4 22:24:58 UTC 2022 4999 Sun Sep 4 22:24:59 UTC 2022 5000 Sun Sep 4 22:25:00 UTC 2022 5001 Sun Sep 4 22:25:01 UTC 2022 5002 Sun Sep 4 22:25:02 UTC 2022 5003 Sun Sep 4 22:25:03 UTC 2022 5004 Sun Sep 4 22:25:04 UTC 2022 5005 Sun Sep 4 22:25:05 UTC 2022 5006 Sun Sep 4 22:25:06 UTC 2022 5007 Sun Sep 4 22:25:07 UTC 2022 5008 Sun Sep 4 22:25:08 UTC 2022 5009 Sun Sep 4 22:25:09 UTC 2022 5010 Sun Sep 4 22:25:10 UTC 2022 5011 Sun Sep 4 22:25:11 UTC 2022 5012 Sun Sep 4 22:25:12 UTC 2022 5013 Sun Sep 4 22:25:13 UTC 2022 5014 Sun Sep 4 22:25:14 UTC 2022 5015 Sun Sep 4 22:25:15 UTC 2022 5016 Sun Sep 4 22:25:16 UTC 2022 5017 Sun Sep 4 22:25:17 UTC 2022 5018 Sun Sep 4 22:25:18 UTC 2022 5019 Sun Sep 4 22:25:19 UTC 2022 5020 Sun Sep 4 22:25:20 UTC 2022 5021 Sun Sep 4 22:25:21 UTC 2022 5022 Sun Sep 4 22:25:22 UTC 2022 5023 Sun Sep 4 22:25:23 UTC 2022 5024 Sun Sep 4 22:25:24 UTC 2022 5025 Sun Sep 4 22:25:25 UTC 2022 5026 Sun Sep 4 22:25:26 UTC 2022 5027 Sun Sep 4 22:25:27 UTC 2022 5028 Sun Sep 4 22:25:28 UTC 2022 5029 Sun Sep 4 22:25:29 UTC 2022 5030 Sun Sep 4 22:25:30 UTC 2022 5031 Sun Sep 4 22:25:31 UTC 2022 5032 Sun Sep 4 22:25:32 UTC 2022 5033 Sun Sep 4 22:25:33 UTC 2022 5034 Sun Sep 4 22:25:34 UTC 2022 5035 Sun Sep 4 22:25:35 UTC 2022 5036 Sun Sep 4 22:25:36 UTC 2022 5037 Sun Sep 4 22:25:37 UTC 2022 5038 Sun Sep 4 22:25:38 UTC 2022 5039 Sun Sep 4 22:25:39 UTC 2022 5040 Sun Sep 4 22:25:40 UTC 2022 5041 Sun Sep 4 22:25:41 UTC 2022 5042 Sun Sep 4 22:25:42 UTC 2022 5043 Sun Sep 4 22:25:43 UTC 2022 5044 Sun Sep 4 22:25:44 UTC 2022 5045 Sun Sep 4 22:25:45 UTC 2022 5046 Sun Sep 4 22:25:46 UTC 2022 5047 Sun Sep 4 22:25:47 UTC 2022 5048 Sun Sep 4 22:25:48 UTC 2022 5049 Sun Sep 4 22:25:49 UTC 2022 5050 Sun Sep 4 22:25:50 UTC 2022 5051 Sun Sep 4 22:25:51 UTC 2022 5052 Sun Sep 4 22:25:52 UTC 2022 5053 Sun Sep 4 22:25:53 UTC 2022 5054 Sun Sep 4 22:25:54 UTC 2022 5055 Sun Sep 4 22:25:55 UTC 2022 5056 Sun Sep 4 22:25:56 UTC 2022 5057 Sun Sep 4 22:25:57 UTC 2022 5058 Sun Sep 4 22:25:58 UTC 2022 5059 Sun Sep 4 22:25:59 UTC 2022 5060 Sun Sep 4 22:26:00 UTC 2022 5061 Sun Sep 4 22:26:01 UTC 2022 5062 Sun Sep 4 22:26:02 UTC 2022 5063 Sun Sep 4 22:26:03 UTC 2022 5064 Sun Sep 4 22:26:04 UTC 2022 5065 Sun Sep 4 22:26:05 UTC 2022 5066 Sun Sep 4 22:26:06 UTC 2022 5067 Sun Sep 4 22:26:07 UTC 2022 5068 Sun Sep 4 22:26:08 UTC 2022 5069 Sun Sep 4 22:26:09 UTC 2022 5070 Sun Sep 4 22:26:10 UTC 2022 5071 Sun Sep 4 22:26:11 UTC 2022 5072 Sun Sep 4 22:26:12 UTC 2022 5073 Sun Sep 4 22:26:13 UTC 2022 5074 Sun Sep 4 22:26:14 UTC 2022 5075 Sun Sep 4 22:26:15 UTC 2022 5076 Sun Sep 4 22:26:16 UTC 2022 5077 Sun Sep 4 22:26:17 UTC 2022 5078 Sun Sep 4 22:26:18 UTC 2022 5079 Sun Sep 4 22:26:19 UTC 2022 5080 Sun Sep 4 22:26:20 UTC 2022 5081 Sun Sep 4 22:26:21 UTC 2022 5082 Sun Sep 4 22:26:22 UTC 2022 5083 Sun Sep 4 22:26:23 UTC 2022 5084 Sun Sep 4 22:26:24 UTC 2022 5085 Sun Sep 4 22:26:25 UTC 2022 5086 Sun Sep 4 22:26:26 UTC 2022 5087 Sun Sep 4 22:26:27 UTC 2022 5088 Sun Sep 4 22:26:28 UTC 2022 5089 Sun Sep 4 22:26:29 UTC 2022 5090 Sun Sep 4 22:26:30 UTC 2022 5091 Sun Sep 4 22:26:31 UTC 2022 5092 Sun Sep 4 22:26:32 UTC 2022 5093 Sun Sep 4 22:26:33 UTC 2022 5094 Sun Sep 4 22:26:34 UTC 2022 5095 Sun Sep 4 22:26:35 UTC 2022 5096 Sun Sep 4 22:26:36 UTC 2022 5097 Sun Sep 4 22:26:37 UTC 2022 5098 Sun Sep 4 22:26:39 UTC 2022 5099 Sun Sep 4 22:26:40 UTC 2022 5100 Sun Sep 4 22:26:41 UTC 2022 5101 Sun Sep 4 22:26:42 UTC 2022 5102 Sun Sep 4 22:26:43 UTC 2022 5103 Sun Sep 4 22:26:44 UTC 2022 5104 Sun Sep 4 22:26:45 UTC 2022 5105 Sun Sep 4 22:26:46 UTC 2022 5106 Sun Sep 4 22:26:47 UTC 2022 5107 Sun Sep 4 22:26:48 UTC 2022 5108 Sun Sep 4 22:26:49 UTC 2022 5109 Sun Sep 4 22:26:50 UTC 2022 5110 Sun Sep 4 22:26:51 UTC 2022 5111 Sun Sep 4 22:26:52 UTC 2022 5112 Sun Sep 4 22:26:53 UTC 2022 5113 Sun Sep 4 22:26:54 UTC 2022 5114 Sun Sep 4 22:26:55 UTC 2022 5115 Sun Sep 4 22:26:56 UTC 2022 5116 Sun Sep 4 22:26:57 UTC 2022 5117 Sun Sep 4 22:26:58 UTC 2022 5118 Sun Sep 4 22:26:59 UTC 2022 5119 Sun Sep 4 22:27:00 UTC 2022 5120 Sun Sep 4 22:27:01 UTC 2022 5121 Sun Sep 4 22:27:02 UTC 2022 5122 Sun Sep 4 22:27:03 UTC 2022 5123 Sun Sep 4 22:27:04 UTC 2022 5124 Sun Sep 4 22:27:05 UTC 2022 5125 Sun Sep 4 22:27:06 UTC 2022 5126 Sun Sep 4 22:27:07 UTC 2022 5127 Sun Sep 4 22:27:08 UTC 2022 5128 Sun Sep 4 22:27:09 UTC 2022 5129 Sun Sep 4 22:27:10 UTC 2022 5130 Sun Sep 4 22:27:11 UTC 2022 5131 Sun Sep 4 22:27:12 UTC 2022 5132 Sun Sep 4 22:27:13 UTC 2022 5133 Sun Sep 4 22:27:14 UTC 2022 5134 Sun Sep 4 22:27:15 UTC 2022 5135 Sun Sep 4 22:27:16 UTC 2022 5136 Sun Sep 4 22:27:17 UTC 2022 5137 Sun Sep 4 22:27:18 UTC 2022 5138 Sun Sep 4 22:27:19 UTC 2022 5139 Sun Sep 4 22:27:20 UTC 2022 5140 Sun Sep 4 22:27:21 UTC 2022 5141 Sun Sep 4 22:27:22 UTC 2022 5142 Sun Sep 4 22:27:23 UTC 2022 5143 Sun Sep 4 22:27:24 UTC 2022 5144 Sun Sep 4 22:27:25 UTC 2022 5145 Sun Sep 4 22:27:26 UTC 2022 5146 Sun Sep 4 22:27:27 UTC 2022 5147 Sun Sep 4 22:27:28 UTC 2022 5148 Sun Sep 4 22:27:29 UTC 2022 5149 Sun Sep 4 22:27:30 UTC 2022 5150 Sun Sep 4 22:27:31 UTC 2022 5151 Sun Sep 4 22:27:32 UTC 2022 5152 Sun Sep 4 22:27:33 UTC 2022 5153 Sun Sep 4 22:27:34 UTC 2022 5154 Sun Sep 4 22:27:35 UTC 2022 5155 Sun Sep 4 22:27:36 UTC 2022 5156 Sun Sep 4 22:27:37 UTC 2022 5157 Sun Sep 4 22:27:38 UTC 2022 5158 Sun Sep 4 22:27:39 UTC 2022 5159 Sun Sep 4 22:27:40 UTC 2022 5160 Sun Sep 4 22:27:41 UTC 2022 5161 Sun Sep 4 22:27:42 UTC 2022 5162 Sun Sep 4 22:27:43 UTC 2022 5163 Sun Sep 4 22:27:44 UTC 2022 5164 Sun Sep 4 22:27:45 UTC 2022 5165 Sun Sep 4 22:27:46 UTC 2022 5166 Sun Sep 4 22:27:47 UTC 2022 5167 Sun Sep 4 22:27:48 UTC 2022 5168 Sun Sep 4 22:27:49 UTC 2022 5169 Sun Sep 4 22:27:50 UTC 2022 5170 Sun Sep 4 22:27:51 UTC 2022 5171 Sun Sep 4 22:27:52 UTC 2022 5172 Sun Sep 4 22:27:53 UTC 2022 5173 Sun Sep 4 22:27:54 UTC 2022 5174 Sun Sep 4 22:27:55 UTC 2022 5175 Sun Sep 4 22:27:56 UTC 2022 5176 Sun Sep 4 22:27:57 UTC 2022 5177 Sun Sep 4 22:27:58 UTC 2022 5178 Sun Sep 4 22:27:59 UTC 2022 5179 Sun Sep 4 22:28:00 UTC 2022 5180 Sun Sep 4 22:28:01 UTC 2022 5181 Sun Sep 4 22:28:02 UTC 2022 5182 Sun Sep 4 22:28:03 UTC 2022 5183 Sun Sep 4 22:28:04 UTC 2022 5184 Sun Sep 4 22:28:05 UTC 2022 5185 Sun Sep 4 22:28:06 UTC 2022 5186 Sun Sep 4 22:28:07 UTC 2022 5187 Sun Sep 4 22:28:08 UTC 2022 5188 Sun Sep 4 22:28:09 UTC 2022 5189 Sun Sep 4 22:28:10 UTC 2022 5190 Sun Sep 4 22:28:11 UTC 2022 5191 Sun Sep 4 22:28:12 UTC 2022 5192 Sun Sep 4 22:28:13 UTC 2022 5193 Sun Sep 4 22:28:14 UTC 2022 5194 Sun Sep 4 22:28:15 UTC 2022 5195 Sun Sep 4 22:28:16 UTC 2022 5196 Sun Sep 4 22:28:17 UTC 2022 5197 Sun Sep 4 22:28:18 UTC 2022 5198 Sun Sep 4 22:28:19 UTC 2022 5199 Sun Sep 4 22:28:20 UTC 2022 5200 Sun Sep 4 22:28:21 UTC 2022 5201 Sun Sep 4 22:28:22 UTC 2022 5202 Sun Sep 4 22:28:23 UTC 2022 5203 Sun Sep 4 22:28:24 UTC 2022 5204 Sun Sep 4 22:28:25 UTC 2022 5205 Sun Sep 4 22:28:26 UTC 2022 5206 Sun Sep 4 22:28:27 UTC 2022 5207 Sun Sep 4 22:28:28 UTC 2022 5208 Sun Sep 4 22:28:29 UTC 2022 5209 Sun Sep 4 22:28:30 UTC 2022 5210 Sun Sep 4 22:28:31 UTC 2022 5211 Sun Sep 4 22:28:32 UTC 2022 5212 Sun Sep 4 22:28:33 UTC 2022 5213 Sun Sep 4 22:28:34 UTC 2022 5214 Sun Sep 4 22:28:35 UTC 2022 5215 Sun Sep 4 22:28:36 UTC 2022 5216 Sun Sep 4 22:28:37 UTC 2022 5217 Sun Sep 4 22:28:38 UTC 2022 5218 Sun Sep 4 22:28:39 UTC 2022 5219 Sun Sep 4 22:28:40 UTC 2022 5220 Sun Sep 4 22:28:41 UTC 2022 5221 Sun Sep 4 22:28:42 UTC 2022 5222 Sun Sep 4 22:28:43 UTC 2022 5223 Sun Sep 4 22:28:44 UTC 2022 5224 Sun Sep 4 22:28:46 UTC 2022 5225 Sun Sep 4 22:28:47 UTC 2022 5226 Sun Sep 4 22:28:48 UTC 2022 5227 Sun Sep 4 22:28:49 UTC 2022 5228 Sun Sep 4 22:28:50 UTC 2022 5229 Sun Sep 4 22:28:51 UTC 2022 5230 Sun Sep 4 22:28:52 UTC 2022 5231 Sun Sep 4 22:28:53 UTC 2022 5232 Sun Sep 4 22:28:54 UTC 2022 5233 Sun Sep 4 22:28:55 UTC 2022 5234 Sun Sep 4 22:28:56 UTC 2022 5235 Sun Sep 4 22:28:57 UTC 2022 5236 Sun Sep 4 22:28:58 UTC 2022 5237 Sun Sep 4 22:28:59 UTC 2022 5238 Sun Sep 4 22:29:00 UTC 2022 5239 Sun Sep 4 22:29:01 UTC 2022 5240 Sun Sep 4 22:29:02 UTC 2022 5241 Sun Sep 4 22:29:03 UTC 2022 5242 Sun Sep 4 22:29:04 UTC 2022 5243 Sun Sep 4 22:29:05 UTC 2022 5244 Sun Sep 4 22:29:06 UTC 2022 5245 Sun Sep 4 22:29:07 UTC 2022 5246 Sun Sep 4 22:29:08 UTC 2022 5247 Sun Sep 4 22:29:09 UTC 2022 5248 Sun Sep 4 22:29:10 UTC 2022 5249 Sun Sep 4 22:29:11 UTC 2022 5250 Sun Sep 4 22:29:12 UTC 2022 5251 Sun Sep 4 22:29:13 UTC 2022 5252 Sun Sep 4 22:29:14 UTC 2022 5253 Sun Sep 4 22:29:15 UTC 2022 5254 Sun Sep 4 22:29:16 UTC 2022 5255 Sun Sep 4 22:29:17 UTC 2022 5256 Sun Sep 4 22:29:18 UTC 2022 5257 Sun Sep 4 22:29:19 UTC 2022 5258 Sun Sep 4 22:29:20 UTC 2022 5259 Sun Sep 4 22:29:21 UTC 2022 5260 Sun Sep 4 22:29:22 UTC 2022 5261 Sun Sep 4 22:29:23 UTC 2022 5262 Sun Sep 4 22:29:24 UTC 2022 5263 Sun Sep 4 22:29:25 UTC 2022 5264 Sun Sep 4 22:29:26 UTC 2022 5265 Sun Sep 4 22:29:27 UTC 2022 5266 Sun Sep 4 22:29:28 UTC 2022 5267 Sun Sep 4 22:29:29 UTC 2022 5268 Sun Sep 4 22:29:30 UTC 2022 5269 Sun Sep 4 22:29:31 UTC 2022 5270 Sun Sep 4 22:29:32 UTC 2022 5271 Sun Sep 4 22:29:33 UTC 2022 5272 Sun Sep 4 22:29:34 UTC 2022 5273 Sun Sep 4 22:29:35 UTC 2022 5274 Sun Sep 4 22:29:36 UTC 2022 5275 Sun Sep 4 22:29:37 UTC 2022 5276 Sun Sep 4 22:29:38 UTC 2022 5277 Sun Sep 4 22:29:39 UTC 2022 5278 Sun Sep 4 22:29:40 UTC 2022 5279 Sun Sep 4 22:29:41 UTC 2022 5280 Sun Sep 4 22:29:42 UTC 2022 5281 Sun Sep 4 22:29:43 UTC 2022 5282 Sun Sep 4 22:29:44 UTC 2022 5283 Sun Sep 4 22:29:45 UTC 2022 5284 Sun Sep 4 22:29:46 UTC 2022 5285 Sun Sep 4 22:29:47 UTC 2022 5286 Sun Sep 4 22:29:48 UTC 2022 5287 Sun Sep 4 22:29:49 UTC 2022 5288 Sun Sep 4 22:29:50 UTC 2022 5289 Sun Sep 4 22:29:51 UTC 2022 5290 Sun Sep 4 22:29:52 UTC 2022 5291 Sun Sep 4 22:29:53 UTC 2022 5292 Sun Sep 4 22:29:54 UTC 2022 5293 Sun Sep 4 22:29:55 UTC 2022 5294 Sun Sep 4 22:29:56 UTC 2022 5295 Sun Sep 4 22:29:57 UTC 2022 5296 Sun Sep 4 22:29:58 UTC 2022 5297 Sun Sep 4 22:29:59 UTC 2022 5298 Sun Sep 4 22:30:00 UTC 2022 5299 Sun Sep 4 22:30:01 UTC 2022 5300 Sun Sep 4 22:30:02 UTC 2022 5301 Sun Sep 4 22:30:03 UTC 2022 5302 Sun Sep 4 22:30:04 UTC 2022 5303 Sun Sep 4 22:30:05 UTC 2022 5304 Sun Sep 4 22:30:06 UTC 2022 5305 Sun Sep 4 22:30:07 UTC 2022 5306 Sun Sep 4 22:30:08 UTC 2022 5307 Sun Sep 4 22:30:09 UTC 2022 5308 Sun Sep 4 22:30:10 UTC 2022 5309 Sun Sep 4 22:30:11 UTC 2022 5310 Sun Sep 4 22:30:12 UTC 2022 5311 Sun Sep 4 22:30:13 UTC 2022 5312 Sun Sep 4 22:30:14 UTC 2022 5313 Sun Sep 4 22:30:15 UTC 2022 5314 Sun Sep 4 22:30:16 UTC 2022 5315 Sun Sep 4 22:30:17 UTC 2022 5316 Sun Sep 4 22:30:18 UTC 2022 5317 Sun Sep 4 22:30:19 UTC 2022 5318 Sun Sep 4 22:30:20 UTC 2022 5319 Sun Sep 4 22:30:21 UTC 2022 5320 Sun Sep 4 22:30:22 UTC 2022 5321 Sun Sep 4 22:30:23 UTC 2022 5322 Sun Sep 4 22:30:24 UTC 2022 5323 Sun Sep 4 22:30:25 UTC 2022 5324 Sun Sep 4 22:30:26 UTC 2022 5325 Sun Sep 4 22:30:27 UTC 2022 5326 Sun Sep 4 22:30:28 UTC 2022 5327 Sun Sep 4 22:30:29 UTC 2022 5328 Sun Sep 4 22:30:30 UTC 2022 5329 Sun Sep 4 22:30:31 UTC 2022 5330 Sun Sep 4 22:30:32 UTC 2022 5331 Sun Sep 4 22:30:33 UTC 2022 5332 Sun Sep 4 22:30:34 UTC 2022 5333 Sun Sep 4 22:30:35 UTC 2022 5334 Sun Sep 4 22:30:36 UTC 2022 5335 Sun Sep 4 22:30:37 UTC 2022 5336 Sun Sep 4 22:30:38 UTC 2022 5337 Sun Sep 4 22:30:39 UTC 2022 5338 Sun Sep 4 22:30:40 UTC 2022 5339 Sun Sep 4 22:30:41 UTC 2022 5340 Sun Sep 4 22:30:42 UTC 2022 5341 Sun Sep 4 22:30:43 UTC 2022 5342 Sun Sep 4 22:30:44 UTC 2022 5343 Sun Sep 4 22:30:45 UTC 2022 5344 Sun Sep 4 22:30:46 UTC 2022 5345 Sun Sep 4 22:30:47 UTC 2022 5346 Sun Sep 4 22:30:49 UTC 2022 5347 Sun Sep 4 22:30:50 UTC 2022 5348 Sun Sep 4 22:30:51 UTC 2022 5349 Sun Sep 4 22:30:52 UTC 2022 5350 Sun Sep 4 22:30:53 UTC 2022 5351 Sun Sep 4 22:30:54 UTC 2022 5352 Sun Sep 4 22:30:55 UTC 2022 5353 Sun Sep 4 22:30:56 UTC 2022 5354 Sun Sep 4 22:30:57 UTC 2022 5355 Sun Sep 4 22:30:58 UTC 2022 5356 Sun Sep 4 22:30:59 UTC 2022 5357 Sun Sep 4 22:31:00 UTC 2022 5358 Sun Sep 4 22:31:01 UTC 2022 5359
! (set | cut -d= -f1) | grep -v -E "'$(env | cut -d= -f1 | tr '\n' '|')'"
! env | grep test; test=tt; env | grep test; echo "set: $(set | grep test) << set"; export test; env | grep test; export -n test; env | grep test

!ls sample_data; echo ---; ls sample_data | sort -u -t. -k2
!whereis head
!whereis time
!which head
!apt install bc
!bc --help

Docker

! docker ps
! echo $PPID-$$ ! echo $$PPID-$$
! ps -p 39623
! sh -c 'echo $PPID'
! bash -c "alias ppid='echo $PPID' && alias && ppid"
! echo $SHELL
! ps -o ppid= $$
! env