├── .gitignore ├── http ├── api │ ├── urls.json │ └── index.js ├── package.json ├── public │ ├── index.html │ ├── scripts.js │ └── style.css ├── server.js └── package-lock.json ├── logger.js ├── stats.js └── log.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | 4 | -------------------------------------------------------------------------------- /http/api/urls.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "name": "Rockeseat", 5 | "url": "http://rocketseat.com.br" 6 | }, 7 | { 8 | "name": "Google", 9 | "url": "http://google.com" 10 | }, 11 | { 12 | "name": "Discord", 13 | "url": "http://discord.com" 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /logger.js: -------------------------------------------------------------------------------- 1 | const EventEmitter = require('events') 2 | const fs = require('fs') 3 | const path = require('path') 4 | 5 | const emitter = new EventEmitter() 6 | 7 | emitter.on('log', (message) => { 8 | fs.appendFile(path.join(__dirname, 'log.txt'), message, err => { 9 | if (err) throw err 10 | }) 11 | }) 12 | 13 | 14 | function log(message) { 15 | emitter.emit('log', message) 16 | } 17 | 18 | module.exports = log 19 | -------------------------------------------------------------------------------- /http/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "http-studying", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "server.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "nodemon server.js", 9 | "api": "nodemon api/index.js" 10 | 11 | }, 12 | "keywords": [], 13 | "author": "", 14 | "license": "ISC", 15 | "devDependencies": { 16 | "nodemon": "^2.0.2" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /http/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | My URLS 8 | 9 | 10 | 11 |

My Links

12 | 13 |
14 | 15 |
16 | 17 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /stats.js: -------------------------------------------------------------------------------- 1 | const os = require('os') 2 | const log = require('./logger') 3 | 4 | setInterval(() => { 5 | const { freemem, totalmem } = os 6 | 7 | const total = parseInt(totalmem() / 1024 / 1024) 8 | const mem = parseInt(freemem() / 1024 / 1024) 9 | const percents = parseInt((mem / total) * 100) 10 | 11 | const stats = { 12 | free: `${mem} MB`, 13 | total: `${total} MB`, 14 | usage: `${percents}%` 15 | } 16 | 17 | console.clear() 18 | console.log("===== PC STATS =====") 19 | console.table(stats) 20 | 21 | log(`${JSON.stringify(stats)}\n`) 22 | 23 | }, 1000) 24 | -------------------------------------------------------------------------------- /http/server.js: -------------------------------------------------------------------------------- 1 | const http = require('http') 2 | const fs = require('fs') 3 | const path = require('path') 4 | 5 | 6 | http.createServer((req, res) => { 7 | 8 | const file = req.url === '/' ? 'index.html' : req.url 9 | const filePath = path.join(__dirname, 'public', file) 10 | const extname = path.extname(filePath) 11 | 12 | const allowedFileTypes = ['.html', '.css', '.js'] 13 | const allowed = allowedFileTypes.find(item => item == extname) 14 | 15 | if(!allowed) return 16 | 17 | fs.readFile( 18 | filePath, 19 | (err, content) => { 20 | if(err) throw err 21 | 22 | res.end(content) 23 | } 24 | ) 25 | }).listen(5000, () => console.log('Server is running')) -------------------------------------------------------------------------------- /http/api/index.js: -------------------------------------------------------------------------------- 1 | const http = require('http') 2 | const URL = require('url') 3 | const fs = require('fs') 4 | const path = require('path') 5 | 6 | const data = require('./urls.json') 7 | 8 | function writeFile(cb) { 9 | fs.writeFile( 10 | path.join(__dirname, "urls.json"), 11 | JSON.stringify(data, null, 2), 12 | err => { 13 | if(err) throw err 14 | 15 | cb(JSON.stringify({message: "ok"})) 16 | } 17 | ) 18 | } 19 | 20 | http.createServer((req, res) => { 21 | const { name, url, del } = URL.parse(req.url, true).query 22 | 23 | res.writeHead(200, { 24 | 'Access-Control-Allow-Origin': '*' 25 | }) 26 | 27 | // all resources 28 | if(!name || !url) 29 | return res.end(JSON.stringify(data)) 30 | 31 | if(del) { 32 | data.urls = data.urls.filter(item => String(item.url) !== String(url)) 33 | return writeFile((message) => res.end(message)) 34 | } 35 | 36 | data.urls.push({name, url}) 37 | 38 | return writeFile((message) => res.end(message)) 39 | 40 | }).listen(3000, () => console.log('Api is running')) -------------------------------------------------------------------------------- /http/public/scripts.js: -------------------------------------------------------------------------------- 1 | const ul = document.querySelector("ul") 2 | const input = document.querySelector("input") 3 | const form = document.querySelector('form') 4 | 5 | 6 | async function load() { 7 | const res = await fetch("http://localhost:3000/").then((data) => data.json()) 8 | 9 | res.urls.map(({name, url}) => addElement({name, url})) 10 | } 11 | 12 | load() 13 | 14 | 15 | function addElement({ name, url }) { 16 | const li = document.createElement('li') 17 | const a = document.createElement("a") 18 | const trash = document.createElement("span") 19 | 20 | a.href = url 21 | a.innerHTML = name 22 | a.target = "_blank" 23 | 24 | trash.innerHTML = "x" 25 | trash.onclick = () => removeElement(trash) 26 | 27 | li.append(a) 28 | li.append(trash) 29 | ul.append(li) 30 | } 31 | 32 | function removeElement(el) { 33 | if (confirm('Tem certeza que deseja deletar?')) 34 | el.parentNode.remove() 35 | } 36 | 37 | form.addEventListener("submit", (event) => { 38 | event.preventDefault(); 39 | 40 | let { value } = input 41 | 42 | if (!value) 43 | return alert('Preencha o campo') 44 | 45 | const [name, url] = value.split(",") 46 | 47 | if (!url) 48 | return alert('formate o texto da maneira correta') 49 | 50 | if (!/^http/.test(url)) 51 | return alert("Digite a url da maneira correta") 52 | 53 | addElement({ name, url }) 54 | 55 | input.value = "" 56 | }) -------------------------------------------------------------------------------- /http/public/style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;600&display=swap'); 2 | 3 | * { 4 | box-sizing: border-box; 5 | } 6 | 7 | html { 8 | font-size: 62.5%; 9 | } 10 | 11 | body { 12 | font-family: 'Quicksand', sans-serif; 13 | 14 | background: #7159c1; 15 | } 16 | 17 | .container { 18 | width: 80%; 19 | max-width: 400px; 20 | 21 | margin: auto; 22 | } 23 | 24 | h1 { 25 | text-align:center; 26 | color: white; 27 | 28 | font-size: 3.4rem; 29 | } 30 | 31 | input { 32 | width: 100%; 33 | 34 | padding: 8px 16px; 35 | margin-bottom: 32px; 36 | 37 | border-radius: 16px; 38 | border: 1px solid #ccc; 39 | 40 | outline: none; 41 | 42 | font-size: 1.6rem; 43 | font-weight:300; 44 | } 45 | 46 | ul { 47 | background: white; 48 | 49 | box-shadow: 0px 4px 8px -2px #00000033; 50 | border-radius: 6px; 51 | border: 1px solid #ddd; 52 | 53 | padding: 16px; 54 | 55 | font-size: 1.4rem; 56 | 57 | } 58 | 59 | li { 60 | list-style: none; 61 | 62 | display:flex; 63 | align-items: center; 64 | justify-content: space-between; 65 | 66 | border-bottom: 1px solid #ddd; 67 | } 68 | 69 | 70 | a { 71 | display: block; 72 | 73 | color: #333; 74 | text-decoration: none; 75 | 76 | padding: 16px 0; 77 | font-size: 1.8rem; 78 | 79 | } 80 | 81 | a:hover { 82 | font-weight: bold; 83 | } 84 | 85 | li:first-child, 86 | li:last-child { 87 | border: none; 88 | } 89 | 90 | li span { 91 | cursor:pointer; 92 | } -------------------------------------------------------------------------------- /http/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "http-studying", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "abbrev": { 8 | "version": "1.1.1", 9 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 10 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", 11 | "dev": true 12 | }, 13 | "ansi-align": { 14 | "version": "2.0.0", 15 | "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", 16 | "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", 17 | "dev": true, 18 | "requires": { 19 | "string-width": "^2.0.0" 20 | } 21 | }, 22 | "ansi-regex": { 23 | "version": "3.0.0", 24 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", 25 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", 26 | "dev": true 27 | }, 28 | "ansi-styles": { 29 | "version": "3.2.1", 30 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 31 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 32 | "dev": true, 33 | "requires": { 34 | "color-convert": "^1.9.0" 35 | } 36 | }, 37 | "anymatch": { 38 | "version": "3.1.1", 39 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", 40 | "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", 41 | "dev": true, 42 | "requires": { 43 | "normalize-path": "^3.0.0", 44 | "picomatch": "^2.0.4" 45 | } 46 | }, 47 | "balanced-match": { 48 | "version": "1.0.0", 49 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 50 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", 51 | "dev": true 52 | }, 53 | "binary-extensions": { 54 | "version": "2.0.0", 55 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz", 56 | "integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==", 57 | "dev": true 58 | }, 59 | "boxen": { 60 | "version": "1.3.0", 61 | "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", 62 | "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", 63 | "dev": true, 64 | "requires": { 65 | "ansi-align": "^2.0.0", 66 | "camelcase": "^4.0.0", 67 | "chalk": "^2.0.1", 68 | "cli-boxes": "^1.0.0", 69 | "string-width": "^2.0.0", 70 | "term-size": "^1.2.0", 71 | "widest-line": "^2.0.0" 72 | } 73 | }, 74 | "brace-expansion": { 75 | "version": "1.1.11", 76 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 77 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 78 | "dev": true, 79 | "requires": { 80 | "balanced-match": "^1.0.0", 81 | "concat-map": "0.0.1" 82 | } 83 | }, 84 | "braces": { 85 | "version": "3.0.2", 86 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 87 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 88 | "dev": true, 89 | "requires": { 90 | "fill-range": "^7.0.1" 91 | } 92 | }, 93 | "camelcase": { 94 | "version": "4.1.0", 95 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", 96 | "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", 97 | "dev": true 98 | }, 99 | "capture-stack-trace": { 100 | "version": "1.0.1", 101 | "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", 102 | "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", 103 | "dev": true 104 | }, 105 | "chalk": { 106 | "version": "2.4.2", 107 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 108 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 109 | "dev": true, 110 | "requires": { 111 | "ansi-styles": "^3.2.1", 112 | "escape-string-regexp": "^1.0.5", 113 | "supports-color": "^5.3.0" 114 | } 115 | }, 116 | "chokidar": { 117 | "version": "3.3.1", 118 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.3.1.tgz", 119 | "integrity": "sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg==", 120 | "dev": true, 121 | "requires": { 122 | "anymatch": "~3.1.1", 123 | "braces": "~3.0.2", 124 | "fsevents": "~2.1.2", 125 | "glob-parent": "~5.1.0", 126 | "is-binary-path": "~2.1.0", 127 | "is-glob": "~4.0.1", 128 | "normalize-path": "~3.0.0", 129 | "readdirp": "~3.3.0" 130 | } 131 | }, 132 | "ci-info": { 133 | "version": "1.6.0", 134 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", 135 | "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", 136 | "dev": true 137 | }, 138 | "cli-boxes": { 139 | "version": "1.0.0", 140 | "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", 141 | "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", 142 | "dev": true 143 | }, 144 | "color-convert": { 145 | "version": "1.9.3", 146 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 147 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 148 | "dev": true, 149 | "requires": { 150 | "color-name": "1.1.3" 151 | } 152 | }, 153 | "color-name": { 154 | "version": "1.1.3", 155 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 156 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 157 | "dev": true 158 | }, 159 | "concat-map": { 160 | "version": "0.0.1", 161 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 162 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 163 | "dev": true 164 | }, 165 | "configstore": { 166 | "version": "3.1.2", 167 | "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz", 168 | "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==", 169 | "dev": true, 170 | "requires": { 171 | "dot-prop": "^4.1.0", 172 | "graceful-fs": "^4.1.2", 173 | "make-dir": "^1.0.0", 174 | "unique-string": "^1.0.0", 175 | "write-file-atomic": "^2.0.0", 176 | "xdg-basedir": "^3.0.0" 177 | } 178 | }, 179 | "create-error-class": { 180 | "version": "3.0.2", 181 | "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", 182 | "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", 183 | "dev": true, 184 | "requires": { 185 | "capture-stack-trace": "^1.0.0" 186 | } 187 | }, 188 | "cross-spawn": { 189 | "version": "5.1.0", 190 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", 191 | "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", 192 | "dev": true, 193 | "requires": { 194 | "lru-cache": "^4.0.1", 195 | "shebang-command": "^1.2.0", 196 | "which": "^1.2.9" 197 | } 198 | }, 199 | "crypto-random-string": { 200 | "version": "1.0.0", 201 | "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", 202 | "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", 203 | "dev": true 204 | }, 205 | "debug": { 206 | "version": "3.2.6", 207 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", 208 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", 209 | "dev": true, 210 | "requires": { 211 | "ms": "^2.1.1" 212 | } 213 | }, 214 | "deep-extend": { 215 | "version": "0.6.0", 216 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", 217 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", 218 | "dev": true 219 | }, 220 | "dot-prop": { 221 | "version": "4.2.0", 222 | "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", 223 | "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", 224 | "dev": true, 225 | "requires": { 226 | "is-obj": "^1.0.0" 227 | } 228 | }, 229 | "duplexer3": { 230 | "version": "0.1.4", 231 | "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", 232 | "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", 233 | "dev": true 234 | }, 235 | "escape-string-regexp": { 236 | "version": "1.0.5", 237 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 238 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 239 | "dev": true 240 | }, 241 | "execa": { 242 | "version": "0.7.0", 243 | "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", 244 | "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", 245 | "dev": true, 246 | "requires": { 247 | "cross-spawn": "^5.0.1", 248 | "get-stream": "^3.0.0", 249 | "is-stream": "^1.1.0", 250 | "npm-run-path": "^2.0.0", 251 | "p-finally": "^1.0.0", 252 | "signal-exit": "^3.0.0", 253 | "strip-eof": "^1.0.0" 254 | } 255 | }, 256 | "fill-range": { 257 | "version": "7.0.1", 258 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 259 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 260 | "dev": true, 261 | "requires": { 262 | "to-regex-range": "^5.0.1" 263 | } 264 | }, 265 | "fsevents": { 266 | "version": "2.1.2", 267 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz", 268 | "integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==", 269 | "dev": true, 270 | "optional": true 271 | }, 272 | "get-stream": { 273 | "version": "3.0.0", 274 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", 275 | "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", 276 | "dev": true 277 | }, 278 | "glob-parent": { 279 | "version": "5.1.1", 280 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", 281 | "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", 282 | "dev": true, 283 | "requires": { 284 | "is-glob": "^4.0.1" 285 | } 286 | }, 287 | "global-dirs": { 288 | "version": "0.1.1", 289 | "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", 290 | "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", 291 | "dev": true, 292 | "requires": { 293 | "ini": "^1.3.4" 294 | } 295 | }, 296 | "got": { 297 | "version": "6.7.1", 298 | "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", 299 | "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", 300 | "dev": true, 301 | "requires": { 302 | "create-error-class": "^3.0.0", 303 | "duplexer3": "^0.1.4", 304 | "get-stream": "^3.0.0", 305 | "is-redirect": "^1.0.0", 306 | "is-retry-allowed": "^1.0.0", 307 | "is-stream": "^1.0.0", 308 | "lowercase-keys": "^1.0.0", 309 | "safe-buffer": "^5.0.1", 310 | "timed-out": "^4.0.0", 311 | "unzip-response": "^2.0.1", 312 | "url-parse-lax": "^1.0.0" 313 | } 314 | }, 315 | "graceful-fs": { 316 | "version": "4.2.3", 317 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", 318 | "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==", 319 | "dev": true 320 | }, 321 | "has-flag": { 322 | "version": "3.0.0", 323 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 324 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 325 | "dev": true 326 | }, 327 | "ignore-by-default": { 328 | "version": "1.0.1", 329 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 330 | "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", 331 | "dev": true 332 | }, 333 | "import-lazy": { 334 | "version": "2.1.0", 335 | "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", 336 | "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", 337 | "dev": true 338 | }, 339 | "imurmurhash": { 340 | "version": "0.1.4", 341 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 342 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", 343 | "dev": true 344 | }, 345 | "ini": { 346 | "version": "1.3.5", 347 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", 348 | "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", 349 | "dev": true 350 | }, 351 | "is-binary-path": { 352 | "version": "2.1.0", 353 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 354 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 355 | "dev": true, 356 | "requires": { 357 | "binary-extensions": "^2.0.0" 358 | } 359 | }, 360 | "is-ci": { 361 | "version": "1.2.1", 362 | "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", 363 | "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", 364 | "dev": true, 365 | "requires": { 366 | "ci-info": "^1.5.0" 367 | } 368 | }, 369 | "is-extglob": { 370 | "version": "2.1.1", 371 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 372 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 373 | "dev": true 374 | }, 375 | "is-fullwidth-code-point": { 376 | "version": "2.0.0", 377 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 378 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", 379 | "dev": true 380 | }, 381 | "is-glob": { 382 | "version": "4.0.1", 383 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 384 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 385 | "dev": true, 386 | "requires": { 387 | "is-extglob": "^2.1.1" 388 | } 389 | }, 390 | "is-installed-globally": { 391 | "version": "0.1.0", 392 | "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", 393 | "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", 394 | "dev": true, 395 | "requires": { 396 | "global-dirs": "^0.1.0", 397 | "is-path-inside": "^1.0.0" 398 | } 399 | }, 400 | "is-npm": { 401 | "version": "1.0.0", 402 | "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", 403 | "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", 404 | "dev": true 405 | }, 406 | "is-number": { 407 | "version": "7.0.0", 408 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 409 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 410 | "dev": true 411 | }, 412 | "is-obj": { 413 | "version": "1.0.1", 414 | "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", 415 | "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", 416 | "dev": true 417 | }, 418 | "is-path-inside": { 419 | "version": "1.0.1", 420 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", 421 | "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", 422 | "dev": true, 423 | "requires": { 424 | "path-is-inside": "^1.0.1" 425 | } 426 | }, 427 | "is-redirect": { 428 | "version": "1.0.0", 429 | "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", 430 | "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", 431 | "dev": true 432 | }, 433 | "is-retry-allowed": { 434 | "version": "1.2.0", 435 | "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", 436 | "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", 437 | "dev": true 438 | }, 439 | "is-stream": { 440 | "version": "1.1.0", 441 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 442 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", 443 | "dev": true 444 | }, 445 | "isexe": { 446 | "version": "2.0.0", 447 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 448 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 449 | "dev": true 450 | }, 451 | "latest-version": { 452 | "version": "3.1.0", 453 | "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", 454 | "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", 455 | "dev": true, 456 | "requires": { 457 | "package-json": "^4.0.0" 458 | } 459 | }, 460 | "lowercase-keys": { 461 | "version": "1.0.1", 462 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", 463 | "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", 464 | "dev": true 465 | }, 466 | "lru-cache": { 467 | "version": "4.1.5", 468 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", 469 | "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", 470 | "dev": true, 471 | "requires": { 472 | "pseudomap": "^1.0.2", 473 | "yallist": "^2.1.2" 474 | } 475 | }, 476 | "make-dir": { 477 | "version": "1.3.0", 478 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", 479 | "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", 480 | "dev": true, 481 | "requires": { 482 | "pify": "^3.0.0" 483 | } 484 | }, 485 | "minimatch": { 486 | "version": "3.0.4", 487 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 488 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 489 | "dev": true, 490 | "requires": { 491 | "brace-expansion": "^1.1.7" 492 | } 493 | }, 494 | "minimist": { 495 | "version": "1.2.5", 496 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 497 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", 498 | "dev": true 499 | }, 500 | "ms": { 501 | "version": "2.1.2", 502 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 503 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 504 | "dev": true 505 | }, 506 | "nodemon": { 507 | "version": "2.0.2", 508 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.2.tgz", 509 | "integrity": "sha512-GWhYPMfde2+M0FsHnggIHXTqPDHXia32HRhh6H0d75Mt9FKUoCBvumNHr7LdrpPBTKxsWmIEOjoN+P4IU6Hcaw==", 510 | "dev": true, 511 | "requires": { 512 | "chokidar": "^3.2.2", 513 | "debug": "^3.2.6", 514 | "ignore-by-default": "^1.0.1", 515 | "minimatch": "^3.0.4", 516 | "pstree.remy": "^1.1.7", 517 | "semver": "^5.7.1", 518 | "supports-color": "^5.5.0", 519 | "touch": "^3.1.0", 520 | "undefsafe": "^2.0.2", 521 | "update-notifier": "^2.5.0" 522 | } 523 | }, 524 | "nopt": { 525 | "version": "1.0.10", 526 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", 527 | "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", 528 | "dev": true, 529 | "requires": { 530 | "abbrev": "1" 531 | } 532 | }, 533 | "normalize-path": { 534 | "version": "3.0.0", 535 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 536 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 537 | "dev": true 538 | }, 539 | "npm-run-path": { 540 | "version": "2.0.2", 541 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", 542 | "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", 543 | "dev": true, 544 | "requires": { 545 | "path-key": "^2.0.0" 546 | } 547 | }, 548 | "p-finally": { 549 | "version": "1.0.0", 550 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", 551 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", 552 | "dev": true 553 | }, 554 | "package-json": { 555 | "version": "4.0.1", 556 | "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", 557 | "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", 558 | "dev": true, 559 | "requires": { 560 | "got": "^6.7.1", 561 | "registry-auth-token": "^3.0.1", 562 | "registry-url": "^3.0.3", 563 | "semver": "^5.1.0" 564 | } 565 | }, 566 | "path-is-inside": { 567 | "version": "1.0.2", 568 | "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", 569 | "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", 570 | "dev": true 571 | }, 572 | "path-key": { 573 | "version": "2.0.1", 574 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 575 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", 576 | "dev": true 577 | }, 578 | "picomatch": { 579 | "version": "2.2.2", 580 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", 581 | "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", 582 | "dev": true 583 | }, 584 | "pify": { 585 | "version": "3.0.0", 586 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 587 | "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", 588 | "dev": true 589 | }, 590 | "prepend-http": { 591 | "version": "1.0.4", 592 | "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", 593 | "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", 594 | "dev": true 595 | }, 596 | "pseudomap": { 597 | "version": "1.0.2", 598 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", 599 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", 600 | "dev": true 601 | }, 602 | "pstree.remy": { 603 | "version": "1.1.7", 604 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.7.tgz", 605 | "integrity": "sha512-xsMgrUwRpuGskEzBFkH8NmTimbZ5PcPup0LA8JJkHIm2IMUbQcpo3yeLNWVrufEYjh8YwtSVh0xz6UeWc5Oh5A==", 606 | "dev": true 607 | }, 608 | "rc": { 609 | "version": "1.2.8", 610 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", 611 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", 612 | "dev": true, 613 | "requires": { 614 | "deep-extend": "^0.6.0", 615 | "ini": "~1.3.0", 616 | "minimist": "^1.2.0", 617 | "strip-json-comments": "~2.0.1" 618 | } 619 | }, 620 | "readdirp": { 621 | "version": "3.3.0", 622 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.3.0.tgz", 623 | "integrity": "sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ==", 624 | "dev": true, 625 | "requires": { 626 | "picomatch": "^2.0.7" 627 | } 628 | }, 629 | "registry-auth-token": { 630 | "version": "3.4.0", 631 | "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz", 632 | "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==", 633 | "dev": true, 634 | "requires": { 635 | "rc": "^1.1.6", 636 | "safe-buffer": "^5.0.1" 637 | } 638 | }, 639 | "registry-url": { 640 | "version": "3.1.0", 641 | "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", 642 | "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", 643 | "dev": true, 644 | "requires": { 645 | "rc": "^1.0.1" 646 | } 647 | }, 648 | "safe-buffer": { 649 | "version": "5.2.0", 650 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", 651 | "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==", 652 | "dev": true 653 | }, 654 | "semver": { 655 | "version": "5.7.1", 656 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 657 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", 658 | "dev": true 659 | }, 660 | "semver-diff": { 661 | "version": "2.1.0", 662 | "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", 663 | "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", 664 | "dev": true, 665 | "requires": { 666 | "semver": "^5.0.3" 667 | } 668 | }, 669 | "shebang-command": { 670 | "version": "1.2.0", 671 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 672 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", 673 | "dev": true, 674 | "requires": { 675 | "shebang-regex": "^1.0.0" 676 | } 677 | }, 678 | "shebang-regex": { 679 | "version": "1.0.0", 680 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 681 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", 682 | "dev": true 683 | }, 684 | "signal-exit": { 685 | "version": "3.0.3", 686 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", 687 | "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", 688 | "dev": true 689 | }, 690 | "string-width": { 691 | "version": "2.1.1", 692 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", 693 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", 694 | "dev": true, 695 | "requires": { 696 | "is-fullwidth-code-point": "^2.0.0", 697 | "strip-ansi": "^4.0.0" 698 | } 699 | }, 700 | "strip-ansi": { 701 | "version": "4.0.0", 702 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", 703 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", 704 | "dev": true, 705 | "requires": { 706 | "ansi-regex": "^3.0.0" 707 | } 708 | }, 709 | "strip-eof": { 710 | "version": "1.0.0", 711 | "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", 712 | "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", 713 | "dev": true 714 | }, 715 | "strip-json-comments": { 716 | "version": "2.0.1", 717 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 718 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", 719 | "dev": true 720 | }, 721 | "supports-color": { 722 | "version": "5.5.0", 723 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 724 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 725 | "dev": true, 726 | "requires": { 727 | "has-flag": "^3.0.0" 728 | } 729 | }, 730 | "term-size": { 731 | "version": "1.2.0", 732 | "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", 733 | "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", 734 | "dev": true, 735 | "requires": { 736 | "execa": "^0.7.0" 737 | } 738 | }, 739 | "timed-out": { 740 | "version": "4.0.1", 741 | "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", 742 | "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", 743 | "dev": true 744 | }, 745 | "to-regex-range": { 746 | "version": "5.0.1", 747 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 748 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 749 | "dev": true, 750 | "requires": { 751 | "is-number": "^7.0.0" 752 | } 753 | }, 754 | "touch": { 755 | "version": "3.1.0", 756 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", 757 | "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", 758 | "dev": true, 759 | "requires": { 760 | "nopt": "~1.0.10" 761 | } 762 | }, 763 | "undefsafe": { 764 | "version": "2.0.3", 765 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz", 766 | "integrity": "sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==", 767 | "dev": true, 768 | "requires": { 769 | "debug": "^2.2.0" 770 | }, 771 | "dependencies": { 772 | "debug": { 773 | "version": "2.6.9", 774 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 775 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 776 | "dev": true, 777 | "requires": { 778 | "ms": "2.0.0" 779 | } 780 | }, 781 | "ms": { 782 | "version": "2.0.0", 783 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 784 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", 785 | "dev": true 786 | } 787 | } 788 | }, 789 | "unique-string": { 790 | "version": "1.0.0", 791 | "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", 792 | "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", 793 | "dev": true, 794 | "requires": { 795 | "crypto-random-string": "^1.0.0" 796 | } 797 | }, 798 | "unzip-response": { 799 | "version": "2.0.1", 800 | "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", 801 | "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", 802 | "dev": true 803 | }, 804 | "update-notifier": { 805 | "version": "2.5.0", 806 | "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", 807 | "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", 808 | "dev": true, 809 | "requires": { 810 | "boxen": "^1.2.1", 811 | "chalk": "^2.0.1", 812 | "configstore": "^3.0.0", 813 | "import-lazy": "^2.1.0", 814 | "is-ci": "^1.0.10", 815 | "is-installed-globally": "^0.1.0", 816 | "is-npm": "^1.0.0", 817 | "latest-version": "^3.0.0", 818 | "semver-diff": "^2.0.0", 819 | "xdg-basedir": "^3.0.0" 820 | } 821 | }, 822 | "url-parse-lax": { 823 | "version": "1.0.0", 824 | "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", 825 | "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", 826 | "dev": true, 827 | "requires": { 828 | "prepend-http": "^1.0.1" 829 | } 830 | }, 831 | "which": { 832 | "version": "1.3.1", 833 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 834 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 835 | "dev": true, 836 | "requires": { 837 | "isexe": "^2.0.0" 838 | } 839 | }, 840 | "widest-line": { 841 | "version": "2.0.1", 842 | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", 843 | "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", 844 | "dev": true, 845 | "requires": { 846 | "string-width": "^2.1.1" 847 | } 848 | }, 849 | "write-file-atomic": { 850 | "version": "2.4.3", 851 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", 852 | "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", 853 | "dev": true, 854 | "requires": { 855 | "graceful-fs": "^4.1.11", 856 | "imurmurhash": "^0.1.4", 857 | "signal-exit": "^3.0.2" 858 | } 859 | }, 860 | "xdg-basedir": { 861 | "version": "3.0.0", 862 | "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", 863 | "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", 864 | "dev": true 865 | }, 866 | "yallist": { 867 | "version": "2.1.2", 868 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", 869 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", 870 | "dev": true 871 | } 872 | } 873 | } 874 | -------------------------------------------------------------------------------- /log.txt: -------------------------------------------------------------------------------- 1 | {"free":"16156 MB","total":"32768 MB","usage":"49%"} 2 | {"free":"16155 MB","total":"32768 MB","usage":"49%"} 3 | {"free":"16156 MB","total":"32768 MB","usage":"49%"} 4 | {"free":"16155 MB","total":"32768 MB","usage":"49%"} 5 | {"free":"16134 MB","total":"32768 MB","usage":"49%"} 6 | {"free":"16161 MB","total":"32768 MB","usage":"49%"} 7 | {"free":"16161 MB","total":"32768 MB","usage":"49%"} 8 | {"free":"16160 MB","total":"32768 MB","usage":"49%"} 9 | {"free":"16160 MB","total":"32768 MB","usage":"49%"} 10 | {"free":"16153 MB","total":"32768 MB","usage":"49%"} 11 | {"free":"16185 MB","total":"32768 MB","usage":"49%"} 12 | {"free":"16184 MB","total":"32768 MB","usage":"49%"} 13 | {"free":"16184 MB","total":"32768 MB","usage":"49%"} 14 | {"free":"16190 MB","total":"32768 MB","usage":"49%"} 15 | {"free":"16189 MB","total":"32768 MB","usage":"49%"} 16 | {"free":"16180 MB","total":"32768 MB","usage":"49%"} 17 | {"free":"16178 MB","total":"32768 MB","usage":"49%"} 18 | {"free":"16178 MB","total":"32768 MB","usage":"49%"} 19 | {"free":"16177 MB","total":"32768 MB","usage":"49%"} 20 | {"free":"16178 MB","total":"32768 MB","usage":"49%"} 21 | {"free":"16179 MB","total":"32768 MB","usage":"49%"} 22 | {"free":"16179 MB","total":"32768 MB","usage":"49%"} 23 | {"free":"16180 MB","total":"32768 MB","usage":"49%"} 24 | {"free":"16180 MB","total":"32768 MB","usage":"49%"} 25 | {"free":"16179 MB","total":"32768 MB","usage":"49%"} 26 | {"free":"16179 MB","total":"32768 MB","usage":"49%"} 27 | {"free":"16179 MB","total":"32768 MB","usage":"49%"} 28 | {"free":"16180 MB","total":"32768 MB","usage":"49%"} 29 | {"free":"16179 MB","total":"32768 MB","usage":"49%"} 30 | {"free":"16182 MB","total":"32768 MB","usage":"49%"} 31 | {"free":"16182 MB","total":"32768 MB","usage":"49%"} 32 | {"free":"16182 MB","total":"32768 MB","usage":"49%"} 33 | {"free":"16178 MB","total":"32768 MB","usage":"49%"} 34 | {"free":"16178 MB","total":"32768 MB","usage":"49%"} 35 | {"free":"16179 MB","total":"32768 MB","usage":"49%"} 36 | {"free":"16183 MB","total":"32768 MB","usage":"49%"} 37 | {"free":"16188 MB","total":"32768 MB","usage":"49%"} 38 | {"free":"16186 MB","total":"32768 MB","usage":"49%"} 39 | {"free":"16187 MB","total":"32768 MB","usage":"49%"} 40 | {"free":"16186 MB","total":"32768 MB","usage":"49%"} 41 | {"free":"16185 MB","total":"32768 MB","usage":"49%"} 42 | {"free":"16185 MB","total":"32768 MB","usage":"49%"} 43 | {"free":"16185 MB","total":"32768 MB","usage":"49%"} 44 | {"free":"16184 MB","total":"32768 MB","usage":"49%"} 45 | {"free":"16182 MB","total":"32768 MB","usage":"49%"} 46 | {"free":"16183 MB","total":"32768 MB","usage":"49%"} 47 | {"free":"16177 MB","total":"32768 MB","usage":"49%"} 48 | {"free":"16169 MB","total":"32768 MB","usage":"49%"} 49 | {"free":"16147 MB","total":"32768 MB","usage":"49%"} 50 | {"free":"16158 MB","total":"32768 MB","usage":"49%"} 51 | {"free":"16159 MB","total":"32768 MB","usage":"49%"} 52 | {"free":"16169 MB","total":"32768 MB","usage":"49%"} 53 | {"free":"16169 MB","total":"32768 MB","usage":"49%"} 54 | {"free":"16169 MB","total":"32768 MB","usage":"49%"} 55 | {"free":"16186 MB","total":"32768 MB","usage":"49%"} 56 | {"free":"16216 MB","total":"32768 MB","usage":"49%"} 57 | {"free":"16215 MB","total":"32768 MB","usage":"49%"} 58 | {"free":"16214 MB","total":"32768 MB","usage":"49%"} 59 | {"free":"16215 MB","total":"32768 MB","usage":"49%"} 60 | {"free":"16231 MB","total":"32768 MB","usage":"49%"} 61 | {"free":"16232 MB","total":"32768 MB","usage":"49%"} 62 | {"free":"16231 MB","total":"32768 MB","usage":"49%"} 63 | {"free":"16230 MB","total":"32768 MB","usage":"49%"} 64 | {"free":"16230 MB","total":"32768 MB","usage":"49%"} 65 | {"free":"16228 MB","total":"32768 MB","usage":"49%"} 66 | {"free":"16225 MB","total":"32768 MB","usage":"49%"} 67 | {"free":"16183 MB","total":"32768 MB","usage":"49%"} 68 | {"free":"16193 MB","total":"32768 MB","usage":"49%"} 69 | {"free":"16193 MB","total":"32768 MB","usage":"49%"} 70 | {"free":"16193 MB","total":"32768 MB","usage":"49%"} 71 | {"free":"16193 MB","total":"32768 MB","usage":"49%"} 72 | {"free":"16192 MB","total":"32768 MB","usage":"49%"} 73 | {"free":"16192 MB","total":"32768 MB","usage":"49%"} 74 | {"free":"16191 MB","total":"32768 MB","usage":"49%"} 75 | {"free":"16191 MB","total":"32768 MB","usage":"49%"} 76 | {"free":"16192 MB","total":"32768 MB","usage":"49%"} 77 | {"free":"16192 MB","total":"32768 MB","usage":"49%"} 78 | {"free":"16192 MB","total":"32768 MB","usage":"49%"} 79 | {"free":"16192 MB","total":"32768 MB","usage":"49%"} 80 | {"free":"16192 MB","total":"32768 MB","usage":"49%"} 81 | {"free":"16158 MB","total":"32768 MB","usage":"49%"} 82 | {"free":"16151 MB","total":"32768 MB","usage":"49%"} 83 | {"free":"16124 MB","total":"32768 MB","usage":"49%"} 84 | {"free":"16026 MB","total":"32768 MB","usage":"48%"} 85 | {"free":"16014 MB","total":"32768 MB","usage":"48%"} 86 | {"free":"15920 MB","total":"32768 MB","usage":"48%"} 87 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 88 | {"free":"15775 MB","total":"32768 MB","usage":"48%"} 89 | {"free":"15743 MB","total":"32768 MB","usage":"48%"} 90 | {"free":"15772 MB","total":"32768 MB","usage":"48%"} 91 | {"free":"15758 MB","total":"32768 MB","usage":"48%"} 92 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 93 | {"free":"15763 MB","total":"32768 MB","usage":"48%"} 94 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 95 | {"free":"15769 MB","total":"32768 MB","usage":"48%"} 96 | {"free":"15753 MB","total":"32768 MB","usage":"48%"} 97 | {"free":"15755 MB","total":"32768 MB","usage":"48%"} 98 | {"free":"15755 MB","total":"32768 MB","usage":"48%"} 99 | {"free":"15759 MB","total":"32768 MB","usage":"48%"} 100 | {"free":"15757 MB","total":"32768 MB","usage":"48%"} 101 | {"free":"15759 MB","total":"32768 MB","usage":"48%"} 102 | {"free":"15758 MB","total":"32768 MB","usage":"48%"} 103 | {"free":"15758 MB","total":"32768 MB","usage":"48%"} 104 | {"free":"15758 MB","total":"32768 MB","usage":"48%"} 105 | {"free":"15755 MB","total":"32768 MB","usage":"48%"} 106 | {"free":"15772 MB","total":"32768 MB","usage":"48%"} 107 | {"free":"15771 MB","total":"32768 MB","usage":"48%"} 108 | {"free":"15771 MB","total":"32768 MB","usage":"48%"} 109 | {"free":"15770 MB","total":"32768 MB","usage":"48%"} 110 | {"free":"15789 MB","total":"32768 MB","usage":"48%"} 111 | {"free":"15790 MB","total":"32768 MB","usage":"48%"} 112 | {"free":"15790 MB","total":"32768 MB","usage":"48%"} 113 | {"free":"15789 MB","total":"32768 MB","usage":"48%"} 114 | {"free":"15794 MB","total":"32768 MB","usage":"48%"} 115 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 116 | {"free":"15764 MB","total":"32768 MB","usage":"48%"} 117 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 118 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 119 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 120 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 121 | {"free":"15767 MB","total":"32768 MB","usage":"48%"} 122 | {"free":"15767 MB","total":"32768 MB","usage":"48%"} 123 | {"free":"15766 MB","total":"32768 MB","usage":"48%"} 124 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 125 | {"free":"15760 MB","total":"32768 MB","usage":"48%"} 126 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 127 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 128 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 129 | {"free":"15766 MB","total":"32768 MB","usage":"48%"} 130 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 131 | {"free":"15766 MB","total":"32768 MB","usage":"48%"} 132 | {"free":"15791 MB","total":"32768 MB","usage":"48%"} 133 | {"free":"15790 MB","total":"32768 MB","usage":"48%"} 134 | {"free":"15763 MB","total":"32768 MB","usage":"48%"} 135 | {"free":"15763 MB","total":"32768 MB","usage":"48%"} 136 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 137 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 138 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 139 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 140 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 141 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 142 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 143 | {"free":"15863 MB","total":"32768 MB","usage":"48%"} 144 | {"free":"15863 MB","total":"32768 MB","usage":"48%"} 145 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 146 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 147 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 148 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 149 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 150 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 151 | {"free":"15814 MB","total":"32768 MB","usage":"48%"} 152 | {"free":"15814 MB","total":"32768 MB","usage":"48%"} 153 | {"free":"15814 MB","total":"32768 MB","usage":"48%"} 154 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 155 | {"free":"15840 MB","total":"32768 MB","usage":"48%"} 156 | {"free":"15840 MB","total":"32768 MB","usage":"48%"} 157 | {"free":"15840 MB","total":"32768 MB","usage":"48%"} 158 | {"free":"15840 MB","total":"32768 MB","usage":"48%"} 159 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 160 | {"free":"15811 MB","total":"32768 MB","usage":"48%"} 161 | {"free":"15811 MB","total":"32768 MB","usage":"48%"} 162 | {"free":"15810 MB","total":"32768 MB","usage":"48%"} 163 | {"free":"15811 MB","total":"32768 MB","usage":"48%"} 164 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 165 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 166 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 167 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 168 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 169 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 170 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 171 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 172 | {"free":"15856 MB","total":"32768 MB","usage":"48%"} 173 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 174 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 175 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 176 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 177 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 178 | {"free":"15865 MB","total":"32768 MB","usage":"48%"} 179 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 180 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 181 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 182 | {"free":"15863 MB","total":"32768 MB","usage":"48%"} 183 | {"free":"15863 MB","total":"32768 MB","usage":"48%"} 184 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 185 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 186 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 187 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 188 | {"free":"15860 MB","total":"32768 MB","usage":"48%"} 189 | {"free":"15861 MB","total":"32768 MB","usage":"48%"} 190 | {"free":"15861 MB","total":"32768 MB","usage":"48%"} 191 | {"free":"15861 MB","total":"32768 MB","usage":"48%"} 192 | {"free":"15861 MB","total":"32768 MB","usage":"48%"} 193 | {"free":"15860 MB","total":"32768 MB","usage":"48%"} 194 | {"free":"15860 MB","total":"32768 MB","usage":"48%"} 195 | {"free":"15860 MB","total":"32768 MB","usage":"48%"} 196 | {"free":"15855 MB","total":"32768 MB","usage":"48%"} 197 | {"free":"15856 MB","total":"32768 MB","usage":"48%"} 198 | {"free":"15855 MB","total":"32768 MB","usage":"48%"} 199 | {"free":"15856 MB","total":"32768 MB","usage":"48%"} 200 | {"free":"15856 MB","total":"32768 MB","usage":"48%"} 201 | {"free":"15856 MB","total":"32768 MB","usage":"48%"} 202 | {"free":"15855 MB","total":"32768 MB","usage":"48%"} 203 | {"free":"15854 MB","total":"32768 MB","usage":"48%"} 204 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 205 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 206 | {"free":"15817 MB","total":"32768 MB","usage":"48%"} 207 | {"free":"15815 MB","total":"32768 MB","usage":"48%"} 208 | {"free":"15813 MB","total":"32768 MB","usage":"48%"} 209 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 210 | {"free":"15834 MB","total":"32768 MB","usage":"48%"} 211 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 212 | {"free":"15835 MB","total":"32768 MB","usage":"48%"} 213 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 214 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 215 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 216 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 217 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 218 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 219 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 220 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 221 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 222 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 223 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 224 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 225 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 226 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 227 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 228 | {"free":"15747 MB","total":"32768 MB","usage":"48%"} 229 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 230 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 231 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 232 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 233 | {"free":"15764 MB","total":"32768 MB","usage":"48%"} 234 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 235 | {"free":"15764 MB","total":"32768 MB","usage":"48%"} 236 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 237 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 238 | {"free":"15765 MB","total":"32768 MB","usage":"48%"} 239 | {"free":"15764 MB","total":"32768 MB","usage":"48%"} 240 | {"free":"15763 MB","total":"32768 MB","usage":"48%"} 241 | {"free":"15763 MB","total":"32768 MB","usage":"48%"} 242 | {"free":"15763 MB","total":"32768 MB","usage":"48%"} 243 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 244 | {"free":"15781 MB","total":"32768 MB","usage":"48%"} 245 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 246 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 247 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 248 | {"free":"15823 MB","total":"32768 MB","usage":"48%"} 249 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 250 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 251 | {"free":"16128 MB","total":"32768 MB","usage":"49%"} 252 | {"free":"16127 MB","total":"32768 MB","usage":"49%"} 253 | {"free":"16128 MB","total":"32768 MB","usage":"49%"} 254 | {"free":"16128 MB","total":"32768 MB","usage":"49%"} 255 | {"free":"16128 MB","total":"32768 MB","usage":"49%"} 256 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 257 | {"free":"16131 MB","total":"32768 MB","usage":"49%"} 258 | {"free":"16131 MB","total":"32768 MB","usage":"49%"} 259 | {"free":"16131 MB","total":"32768 MB","usage":"49%"} 260 | {"free":"16131 MB","total":"32768 MB","usage":"49%"} 261 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 262 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 263 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 264 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 265 | {"free":"16132 MB","total":"32768 MB","usage":"49%"} 266 | {"free":"16131 MB","total":"32768 MB","usage":"49%"} 267 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 268 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 269 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 270 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 271 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 272 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 273 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 274 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 275 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 276 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 277 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 278 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 279 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 280 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 281 | {"free":"16131 MB","total":"32768 MB","usage":"49%"} 282 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 283 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 284 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 285 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 286 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 287 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 288 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 289 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 290 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 291 | {"free":"16093 MB","total":"32768 MB","usage":"49%"} 292 | {"free":"16043 MB","total":"32768 MB","usage":"48%"} 293 | {"free":"16044 MB","total":"32768 MB","usage":"48%"} 294 | {"free":"16043 MB","total":"32768 MB","usage":"48%"} 295 | {"free":"16039 MB","total":"32768 MB","usage":"48%"} 296 | {"free":"16039 MB","total":"32768 MB","usage":"48%"} 297 | {"free":"16042 MB","total":"32768 MB","usage":"48%"} 298 | {"free":"16042 MB","total":"32768 MB","usage":"48%"} 299 | {"free":"16042 MB","total":"32768 MB","usage":"48%"} 300 | {"free":"16043 MB","total":"32768 MB","usage":"48%"} 301 | {"free":"16048 MB","total":"32768 MB","usage":"48%"} 302 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 303 | {"free":"16016 MB","total":"32768 MB","usage":"48%"} 304 | {"free":"15987 MB","total":"32768 MB","usage":"48%"} 305 | {"free":"15976 MB","total":"32768 MB","usage":"48%"} 306 | {"free":"15976 MB","total":"32768 MB","usage":"48%"} 307 | {"free":"16022 MB","total":"32768 MB","usage":"48%"} 308 | {"free":"16048 MB","total":"32768 MB","usage":"48%"} 309 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 310 | {"free":"16050 MB","total":"32768 MB","usage":"48%"} 311 | {"free":"16050 MB","total":"32768 MB","usage":"48%"} 312 | {"free":"16054 MB","total":"32768 MB","usage":"48%"} 313 | {"free":"16056 MB","total":"32768 MB","usage":"48%"} 314 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 315 | {"free":"16052 MB","total":"32768 MB","usage":"48%"} 316 | {"free":"16051 MB","total":"32768 MB","usage":"48%"} 317 | {"free":"16052 MB","total":"32768 MB","usage":"48%"} 318 | {"free":"16051 MB","total":"32768 MB","usage":"48%"} 319 | {"free":"16052 MB","total":"32768 MB","usage":"48%"} 320 | {"free":"16052 MB","total":"32768 MB","usage":"48%"} 321 | {"free":"16053 MB","total":"32768 MB","usage":"48%"} 322 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 323 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 324 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 325 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 326 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 327 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 328 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 329 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 330 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 331 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 332 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 333 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 334 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 335 | {"free":"16074 MB","total":"32768 MB","usage":"49%"} 336 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 337 | {"free":"16100 MB","total":"32768 MB","usage":"49%"} 338 | {"free":"16100 MB","total":"32768 MB","usage":"49%"} 339 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 340 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 341 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 342 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 343 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 344 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 345 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 346 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 347 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 348 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 349 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 350 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 351 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 352 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 353 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 354 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 355 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 356 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 357 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 358 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 359 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 360 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 361 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 362 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 363 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 364 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 365 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 366 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 367 | {"free":"16108 MB","total":"32768 MB","usage":"49%"} 368 | {"free":"16108 MB","total":"32768 MB","usage":"49%"} 369 | {"free":"16108 MB","total":"32768 MB","usage":"49%"} 370 | {"free":"16108 MB","total":"32768 MB","usage":"49%"} 371 | {"free":"16108 MB","total":"32768 MB","usage":"49%"} 372 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 373 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 374 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 375 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 376 | {"free":"16108 MB","total":"32768 MB","usage":"49%"} 377 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 378 | {"free":"16106 MB","total":"32768 MB","usage":"49%"} 379 | {"free":"16106 MB","total":"32768 MB","usage":"49%"} 380 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 381 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 382 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 383 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 384 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 385 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 386 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 387 | {"free":"16104 MB","total":"32768 MB","usage":"49%"} 388 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 389 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 390 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 391 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 392 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 393 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 394 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 395 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 396 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 397 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 398 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 399 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 400 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 401 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 402 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 403 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 404 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 405 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 406 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 407 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 408 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 409 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 410 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 411 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 412 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 413 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 414 | {"free":"16106 MB","total":"32768 MB","usage":"49%"} 415 | {"free":"16106 MB","total":"32768 MB","usage":"49%"} 416 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 417 | {"free":"16105 MB","total":"32768 MB","usage":"49%"} 418 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 419 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 420 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 421 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 422 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 423 | {"free":"16100 MB","total":"32768 MB","usage":"49%"} 424 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 425 | {"free":"16100 MB","total":"32768 MB","usage":"49%"} 426 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 427 | {"free":"16097 MB","total":"32768 MB","usage":"49%"} 428 | {"free":"16097 MB","total":"32768 MB","usage":"49%"} 429 | {"free":"16096 MB","total":"32768 MB","usage":"49%"} 430 | {"free":"16095 MB","total":"32768 MB","usage":"49%"} 431 | {"free":"16095 MB","total":"32768 MB","usage":"49%"} 432 | {"free":"16095 MB","total":"32768 MB","usage":"49%"} 433 | {"free":"16095 MB","total":"32768 MB","usage":"49%"} 434 | {"free":"16095 MB","total":"32768 MB","usage":"49%"} 435 | {"free":"16095 MB","total":"32768 MB","usage":"49%"} 436 | {"free":"16096 MB","total":"32768 MB","usage":"49%"} 437 | {"free":"16096 MB","total":"32768 MB","usage":"49%"} 438 | {"free":"16097 MB","total":"32768 MB","usage":"49%"} 439 | {"free":"16097 MB","total":"32768 MB","usage":"49%"} 440 | {"free":"16097 MB","total":"32768 MB","usage":"49%"} 441 | {"free":"16096 MB","total":"32768 MB","usage":"49%"} 442 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 443 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 444 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 445 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 446 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 447 | {"free":"16093 MB","total":"32768 MB","usage":"49%"} 448 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 449 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 450 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 451 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 452 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 453 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 454 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 455 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 456 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 457 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 458 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 459 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 460 | {"free":"16068 MB","total":"32768 MB","usage":"49%"} 461 | {"free":"16067 MB","total":"32768 MB","usage":"49%"} 462 | {"free":"16067 MB","total":"32768 MB","usage":"49%"} 463 | {"free":"16069 MB","total":"32768 MB","usage":"49%"} 464 | {"free":"16095 MB","total":"32768 MB","usage":"49%"} 465 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 466 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 467 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 468 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 469 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 470 | {"free":"16096 MB","total":"32768 MB","usage":"49%"} 471 | {"free":"16096 MB","total":"32768 MB","usage":"49%"} 472 | {"free":"16096 MB","total":"32768 MB","usage":"49%"} 473 | {"free":"16097 MB","total":"32768 MB","usage":"49%"} 474 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 475 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 476 | {"free":"16101 MB","total":"32768 MB","usage":"49%"} 477 | {"free":"16100 MB","total":"32768 MB","usage":"49%"} 478 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 479 | {"free":"16091 MB","total":"32768 MB","usage":"49%"} 480 | {"free":"16091 MB","total":"32768 MB","usage":"49%"} 481 | {"free":"16091 MB","total":"32768 MB","usage":"49%"} 482 | {"free":"16091 MB","total":"32768 MB","usage":"49%"} 483 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 484 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 485 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 486 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 487 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 488 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 489 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 490 | {"free":"16064 MB","total":"32768 MB","usage":"49%"} 491 | {"free":"16064 MB","total":"32768 MB","usage":"49%"} 492 | {"free":"16064 MB","total":"32768 MB","usage":"49%"} 493 | {"free":"16064 MB","total":"32768 MB","usage":"49%"} 494 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 495 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 496 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 497 | {"free":"16091 MB","total":"32768 MB","usage":"49%"} 498 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 499 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 500 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 501 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 502 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 503 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 504 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 505 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 506 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 507 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 508 | {"free":"16090 MB","total":"32768 MB","usage":"49%"} 509 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 510 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 511 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 512 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 513 | {"free":"16088 MB","total":"32768 MB","usage":"49%"} 514 | {"free":"16089 MB","total":"32768 MB","usage":"49%"} 515 | {"free":"16062 MB","total":"32768 MB","usage":"49%"} 516 | {"free":"16062 MB","total":"32768 MB","usage":"49%"} 517 | {"free":"16062 MB","total":"32768 MB","usage":"49%"} 518 | {"free":"16062 MB","total":"32768 MB","usage":"49%"} 519 | {"free":"16088 MB","total":"32768 MB","usage":"49%"} 520 | {"free":"16088 MB","total":"32768 MB","usage":"49%"} 521 | {"free":"16088 MB","total":"32768 MB","usage":"49%"} 522 | {"free":"16088 MB","total":"32768 MB","usage":"49%"} 523 | {"free":"16088 MB","total":"32768 MB","usage":"49%"} 524 | {"free":"16088 MB","total":"32768 MB","usage":"49%"} 525 | {"free":"16086 MB","total":"32768 MB","usage":"49%"} 526 | {"free":"16088 MB","total":"32768 MB","usage":"49%"} 527 | {"free":"16044 MB","total":"32768 MB","usage":"48%"} 528 | {"free":"16045 MB","total":"32768 MB","usage":"48%"} 529 | {"free":"16045 MB","total":"32768 MB","usage":"48%"} 530 | {"free":"16044 MB","total":"32768 MB","usage":"48%"} 531 | {"free":"16044 MB","total":"32768 MB","usage":"48%"} 532 | {"free":"16045 MB","total":"32768 MB","usage":"48%"} 533 | {"free":"16045 MB","total":"32768 MB","usage":"48%"} 534 | {"free":"16044 MB","total":"32768 MB","usage":"48%"} 535 | {"free":"16045 MB","total":"32768 MB","usage":"48%"} 536 | {"free":"16043 MB","total":"32768 MB","usage":"48%"} 537 | {"free":"16044 MB","total":"32768 MB","usage":"48%"} 538 | {"free":"16043 MB","total":"32768 MB","usage":"48%"} 539 | {"free":"16043 MB","total":"32768 MB","usage":"48%"} 540 | {"free":"16043 MB","total":"32768 MB","usage":"48%"} 541 | {"free":"16044 MB","total":"32768 MB","usage":"48%"} 542 | {"free":"16061 MB","total":"32768 MB","usage":"49%"} 543 | {"free":"16087 MB","total":"32768 MB","usage":"49%"} 544 | {"free":"16088 MB","total":"32768 MB","usage":"49%"} 545 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 546 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 547 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 548 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 549 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 550 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 551 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 552 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 553 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 554 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 555 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 556 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 557 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 558 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 559 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 560 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 561 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 562 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 563 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 564 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 565 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 566 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 567 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 568 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 569 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 570 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 571 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 572 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 573 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 574 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 575 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 576 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 577 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 578 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 579 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 580 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 581 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 582 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 583 | {"free":"16052 MB","total":"32768 MB","usage":"48%"} 584 | {"free":"16058 MB","total":"32768 MB","usage":"49%"} 585 | {"free":"16059 MB","total":"32768 MB","usage":"49%"} 586 | {"free":"16059 MB","total":"32768 MB","usage":"49%"} 587 | {"free":"16065 MB","total":"32768 MB","usage":"49%"} 588 | {"free":"16058 MB","total":"32768 MB","usage":"49%"} 589 | {"free":"16058 MB","total":"32768 MB","usage":"49%"} 590 | {"free":"16059 MB","total":"32768 MB","usage":"49%"} 591 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 592 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 593 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 594 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 595 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 596 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 597 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 598 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 599 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 600 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 601 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 602 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 603 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 604 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 605 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 606 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 607 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 608 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 609 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 610 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 611 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 612 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 613 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 614 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 615 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 616 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 617 | {"free":"16053 MB","total":"32768 MB","usage":"48%"} 618 | {"free":"16053 MB","total":"32768 MB","usage":"48%"} 619 | {"free":"16053 MB","total":"32768 MB","usage":"48%"} 620 | {"free":"16053 MB","total":"32768 MB","usage":"48%"} 621 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 622 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 623 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 624 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 625 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 626 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 627 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 628 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 629 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 630 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 631 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 632 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 633 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 634 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 635 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 636 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 637 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 638 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 639 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 640 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 641 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 642 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 643 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 644 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 645 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 646 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 647 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 648 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 649 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 650 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 651 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 652 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 653 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 654 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 655 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 656 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 657 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 658 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 659 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 660 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 661 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 662 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 663 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 664 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 665 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 666 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 667 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 668 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 669 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 670 | {"free":"16052 MB","total":"32768 MB","usage":"48%"} 671 | {"free":"16052 MB","total":"32768 MB","usage":"48%"} 672 | {"free":"16052 MB","total":"32768 MB","usage":"48%"} 673 | {"free":"16052 MB","total":"32768 MB","usage":"48%"} 674 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 675 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 676 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 677 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 678 | {"free":"16085 MB","total":"32768 MB","usage":"49%"} 679 | {"free":"16085 MB","total":"32768 MB","usage":"49%"} 680 | {"free":"16085 MB","total":"32768 MB","usage":"49%"} 681 | {"free":"16085 MB","total":"32768 MB","usage":"49%"} 682 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 683 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 684 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 685 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 686 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 687 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 688 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 689 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 690 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 691 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 692 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 693 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 694 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 695 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 696 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 697 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 698 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 699 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 700 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 701 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 702 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 703 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 704 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 705 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 706 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 707 | {"free":"16084 MB","total":"32768 MB","usage":"49%"} 708 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 709 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 710 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 711 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 712 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 713 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 714 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 715 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 716 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 717 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 718 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 719 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 720 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 721 | {"free":"16083 MB","total":"32768 MB","usage":"49%"} 722 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 723 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 724 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 725 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 726 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 727 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 728 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 729 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 730 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 731 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 732 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 733 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 734 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 735 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 736 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 737 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 738 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 739 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 740 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 741 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 742 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 743 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 744 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 745 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 746 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 747 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 748 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 749 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 750 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 751 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 752 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 753 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 754 | {"free":"16082 MB","total":"32768 MB","usage":"49%"} 755 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 756 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 757 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 758 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 759 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 760 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 761 | {"free":"16081 MB","total":"32768 MB","usage":"49%"} 762 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 763 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 764 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 765 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 766 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 767 | {"free":"16080 MB","total":"32768 MB","usage":"49%"} 768 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 769 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 770 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 771 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 772 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 773 | {"free":"16079 MB","total":"32768 MB","usage":"49%"} 774 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 775 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 776 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 777 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 778 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 779 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 780 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 781 | {"free":"16077 MB","total":"32768 MB","usage":"49%"} 782 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 783 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 784 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 785 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 786 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 787 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 788 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 789 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 790 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 791 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 792 | {"free":"16074 MB","total":"32768 MB","usage":"49%"} 793 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 794 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 795 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 796 | {"free":"16076 MB","total":"32768 MB","usage":"49%"} 797 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 798 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 799 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 800 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 801 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 802 | {"free":"16074 MB","total":"32768 MB","usage":"49%"} 803 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 804 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 805 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 806 | {"free":"16075 MB","total":"32768 MB","usage":"49%"} 807 | {"free":"16037 MB","total":"32768 MB","usage":"48%"} 808 | {"free":"16039 MB","total":"32768 MB","usage":"48%"} 809 | {"free":"16039 MB","total":"32768 MB","usage":"48%"} 810 | {"free":"15903 MB","total":"32768 MB","usage":"48%"} 811 | {"free":"15902 MB","total":"32768 MB","usage":"48%"} 812 | {"free":"15903 MB","total":"32768 MB","usage":"48%"} 813 | {"free":"15864 MB","total":"32768 MB","usage":"48%"} 814 | {"free":"15823 MB","total":"32768 MB","usage":"48%"} 815 | {"free":"15840 MB","total":"32768 MB","usage":"48%"} 816 | {"free":"15841 MB","total":"32768 MB","usage":"48%"} 817 | {"free":"15807 MB","total":"32768 MB","usage":"48%"} 818 | {"free":"15807 MB","total":"32768 MB","usage":"48%"} 819 | {"free":"15807 MB","total":"32768 MB","usage":"48%"} 820 | {"free":"15807 MB","total":"32768 MB","usage":"48%"} 821 | {"free":"15840 MB","total":"32768 MB","usage":"48%"} 822 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 823 | {"free":"15857 MB","total":"32768 MB","usage":"48%"} 824 | {"free":"15857 MB","total":"32768 MB","usage":"48%"} 825 | {"free":"15857 MB","total":"32768 MB","usage":"48%"} 826 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 827 | {"free":"15793 MB","total":"32768 MB","usage":"48%"} 828 | {"free":"15792 MB","total":"32768 MB","usage":"48%"} 829 | {"free":"15755 MB","total":"32768 MB","usage":"48%"} 830 | {"free":"15755 MB","total":"32768 MB","usage":"48%"} 831 | {"free":"15755 MB","total":"32768 MB","usage":"48%"} 832 | {"free":"15773 MB","total":"32768 MB","usage":"48%"} 833 | {"free":"15799 MB","total":"32768 MB","usage":"48%"} 834 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 835 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 836 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 837 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 838 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 839 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 840 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 841 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 842 | {"free":"15875 MB","total":"32768 MB","usage":"48%"} 843 | {"free":"15875 MB","total":"32768 MB","usage":"48%"} 844 | {"free":"15875 MB","total":"32768 MB","usage":"48%"} 845 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 846 | {"free":"15842 MB","total":"32768 MB","usage":"48%"} 847 | {"free":"15841 MB","total":"32768 MB","usage":"48%"} 848 | {"free":"15841 MB","total":"32768 MB","usage":"48%"} 849 | {"free":"15867 MB","total":"32768 MB","usage":"48%"} 850 | {"free":"15867 MB","total":"32768 MB","usage":"48%"} 851 | {"free":"15873 MB","total":"32768 MB","usage":"48%"} 852 | {"free":"15874 MB","total":"32768 MB","usage":"48%"} 853 | {"free":"15876 MB","total":"32768 MB","usage":"48%"} 854 | {"free":"15876 MB","total":"32768 MB","usage":"48%"} 855 | {"free":"15876 MB","total":"32768 MB","usage":"48%"} 856 | {"free":"15877 MB","total":"32768 MB","usage":"48%"} 857 | {"free":"15876 MB","total":"32768 MB","usage":"48%"} 858 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 859 | {"free":"15817 MB","total":"32768 MB","usage":"48%"} 860 | {"free":"15814 MB","total":"32768 MB","usage":"48%"} 861 | {"free":"15815 MB","total":"32768 MB","usage":"48%"} 862 | {"free":"15841 MB","total":"32768 MB","usage":"48%"} 863 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 864 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 865 | {"free":"15857 MB","total":"32768 MB","usage":"48%"} 866 | {"free":"15858 MB","total":"32768 MB","usage":"48%"} 867 | {"free":"15858 MB","total":"32768 MB","usage":"48%"} 868 | {"free":"15858 MB","total":"32768 MB","usage":"48%"} 869 | {"free":"15858 MB","total":"32768 MB","usage":"48%"} 870 | {"free":"15857 MB","total":"32768 MB","usage":"48%"} 871 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 872 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 873 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 874 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 875 | {"free":"15869 MB","total":"32768 MB","usage":"48%"} 876 | {"free":"15876 MB","total":"32768 MB","usage":"48%"} 877 | {"free":"15831 MB","total":"32768 MB","usage":"48%"} 878 | {"free":"15831 MB","total":"32768 MB","usage":"48%"} 879 | {"free":"15857 MB","total":"32768 MB","usage":"48%"} 880 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 881 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 882 | {"free":"15819 MB","total":"32768 MB","usage":"48%"} 883 | {"free":"15819 MB","total":"32768 MB","usage":"48%"} 884 | {"free":"15819 MB","total":"32768 MB","usage":"48%"} 885 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 886 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 887 | {"free":"15858 MB","total":"32768 MB","usage":"48%"} 888 | {"free":"15832 MB","total":"32768 MB","usage":"48%"} 889 | {"free":"15832 MB","total":"32768 MB","usage":"48%"} 890 | {"free":"15832 MB","total":"32768 MB","usage":"48%"} 891 | {"free":"15832 MB","total":"32768 MB","usage":"48%"} 892 | {"free":"15876 MB","total":"32768 MB","usage":"48%"} 893 | {"free":"15875 MB","total":"32768 MB","usage":"48%"} 894 | {"free":"15875 MB","total":"32768 MB","usage":"48%"} 895 | {"free":"15869 MB","total":"32768 MB","usage":"48%"} 896 | {"free":"15869 MB","total":"32768 MB","usage":"48%"} 897 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 898 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 899 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 900 | {"free":"15814 MB","total":"32768 MB","usage":"48%"} 901 | {"free":"15803 MB","total":"32768 MB","usage":"48%"} 902 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 903 | {"free":"15807 MB","total":"32768 MB","usage":"48%"} 904 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 905 | {"free":"15832 MB","total":"32768 MB","usage":"48%"} 906 | {"free":"15841 MB","total":"32768 MB","usage":"48%"} 907 | {"free":"15840 MB","total":"32768 MB","usage":"48%"} 908 | {"free":"15841 MB","total":"32768 MB","usage":"48%"} 909 | {"free":"15817 MB","total":"32768 MB","usage":"48%"} 910 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 911 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 912 | {"free":"15817 MB","total":"32768 MB","usage":"48%"} 913 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 914 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 915 | {"free":"15863 MB","total":"32768 MB","usage":"48%"} 916 | {"free":"15863 MB","total":"32768 MB","usage":"48%"} 917 | {"free":"15863 MB","total":"32768 MB","usage":"48%"} 918 | {"free":"15863 MB","total":"32768 MB","usage":"48%"} 919 | {"free":"15867 MB","total":"32768 MB","usage":"48%"} 920 | {"free":"15866 MB","total":"32768 MB","usage":"48%"} 921 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 922 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 923 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 924 | {"free":"15816 MB","total":"32768 MB","usage":"48%"} 925 | {"free":"15842 MB","total":"32768 MB","usage":"48%"} 926 | {"free":"15842 MB","total":"32768 MB","usage":"48%"} 927 | {"free":"15842 MB","total":"32768 MB","usage":"48%"} 928 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 929 | {"free":"15841 MB","total":"32768 MB","usage":"48%"} 930 | {"free":"15816 MB","total":"32768 MB","usage":"48%"} 931 | {"free":"15812 MB","total":"32768 MB","usage":"48%"} 932 | {"free":"15810 MB","total":"32768 MB","usage":"48%"} 933 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 934 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 935 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 936 | {"free":"15811 MB","total":"32768 MB","usage":"48%"} 937 | {"free":"15785 MB","total":"32768 MB","usage":"48%"} 938 | {"free":"15785 MB","total":"32768 MB","usage":"48%"} 939 | {"free":"15785 MB","total":"32768 MB","usage":"48%"} 940 | {"free":"15790 MB","total":"32768 MB","usage":"48%"} 941 | {"free":"15791 MB","total":"32768 MB","usage":"48%"} 942 | {"free":"15816 MB","total":"32768 MB","usage":"48%"} 943 | {"free":"15790 MB","total":"32768 MB","usage":"48%"} 944 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 945 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 946 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 947 | {"free":"15807 MB","total":"32768 MB","usage":"48%"} 948 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 949 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 950 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 951 | {"free":"15810 MB","total":"32768 MB","usage":"48%"} 952 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 953 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 954 | {"free":"15834 MB","total":"32768 MB","usage":"48%"} 955 | {"free":"15834 MB","total":"32768 MB","usage":"48%"} 956 | {"free":"15835 MB","total":"32768 MB","usage":"48%"} 957 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 958 | {"free":"15812 MB","total":"32768 MB","usage":"48%"} 959 | {"free":"15812 MB","total":"32768 MB","usage":"48%"} 960 | {"free":"15774 MB","total":"32768 MB","usage":"48%"} 961 | {"free":"15764 MB","total":"32768 MB","usage":"48%"} 962 | {"free":"15789 MB","total":"32768 MB","usage":"48%"} 963 | {"free":"15754 MB","total":"32768 MB","usage":"48%"} 964 | {"free":"15752 MB","total":"32768 MB","usage":"48%"} 965 | {"free":"15729 MB","total":"32768 MB","usage":"48%"} 966 | {"free":"15729 MB","total":"32768 MB","usage":"48%"} 967 | {"free":"15693 MB","total":"32768 MB","usage":"47%"} 968 | {"free":"15694 MB","total":"32768 MB","usage":"47%"} 969 | {"free":"15700 MB","total":"32768 MB","usage":"47%"} 970 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 971 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 972 | {"free":"15723 MB","total":"32768 MB","usage":"47%"} 973 | {"free":"15723 MB","total":"32768 MB","usage":"47%"} 974 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 975 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 976 | {"free":"15734 MB","total":"32768 MB","usage":"48%"} 977 | {"free":"15714 MB","total":"32768 MB","usage":"47%"} 978 | {"free":"15714 MB","total":"32768 MB","usage":"47%"} 979 | {"free":"15716 MB","total":"32768 MB","usage":"47%"} 980 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 981 | {"free":"15743 MB","total":"32768 MB","usage":"48%"} 982 | {"free":"15743 MB","total":"32768 MB","usage":"48%"} 983 | {"free":"15679 MB","total":"32768 MB","usage":"47%"} 984 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 985 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 986 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 987 | {"free":"15670 MB","total":"32768 MB","usage":"47%"} 988 | {"free":"15670 MB","total":"32768 MB","usage":"47%"} 989 | {"free":"15673 MB","total":"32768 MB","usage":"47%"} 990 | {"free":"15673 MB","total":"32768 MB","usage":"47%"} 991 | {"free":"15699 MB","total":"32768 MB","usage":"47%"} 992 | {"free":"15699 MB","total":"32768 MB","usage":"47%"} 993 | {"free":"15737 MB","total":"32768 MB","usage":"48%"} 994 | {"free":"15748 MB","total":"32768 MB","usage":"48%"} 995 | {"free":"15748 MB","total":"32768 MB","usage":"48%"} 996 | {"free":"15747 MB","total":"32768 MB","usage":"48%"} 997 | {"free":"15748 MB","total":"32768 MB","usage":"48%"} 998 | {"free":"15747 MB","total":"32768 MB","usage":"48%"} 999 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1000 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1001 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1002 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1003 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1004 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1005 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1006 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 1007 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 1008 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 1009 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 1010 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1011 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 1012 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 1013 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 1014 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 1015 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1016 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1017 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1018 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1019 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1020 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1021 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1022 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1023 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1024 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1025 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1026 | {"free":"15760 MB","total":"32768 MB","usage":"48%"} 1027 | {"free":"15759 MB","total":"32768 MB","usage":"48%"} 1028 | {"free":"15760 MB","total":"32768 MB","usage":"48%"} 1029 | {"free":"15755 MB","total":"32768 MB","usage":"48%"} 1030 | {"free":"15754 MB","total":"32768 MB","usage":"48%"} 1031 | {"free":"15754 MB","total":"32768 MB","usage":"48%"} 1032 | {"free":"15781 MB","total":"32768 MB","usage":"48%"} 1033 | {"free":"15781 MB","total":"32768 MB","usage":"48%"} 1034 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1035 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1036 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1037 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1038 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1039 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1040 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1041 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1042 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1043 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 1044 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 1045 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 1046 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 1047 | {"free":"15787 MB","total":"32768 MB","usage":"48%"} 1048 | {"free":"15761 MB","total":"32768 MB","usage":"48%"} 1049 | {"free":"15763 MB","total":"32768 MB","usage":"48%"} 1050 | {"free":"15762 MB","total":"32768 MB","usage":"48%"} 1051 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1052 | {"free":"15788 MB","total":"32768 MB","usage":"48%"} 1053 | {"free":"15789 MB","total":"32768 MB","usage":"48%"} 1054 | {"free":"15789 MB","total":"32768 MB","usage":"48%"} 1055 | {"free":"15796 MB","total":"32768 MB","usage":"48%"} 1056 | {"free":"15743 MB","total":"32768 MB","usage":"48%"} 1057 | {"free":"15731 MB","total":"32768 MB","usage":"48%"} 1058 | {"free":"15731 MB","total":"32768 MB","usage":"48%"} 1059 | {"free":"15731 MB","total":"32768 MB","usage":"48%"} 1060 | {"free":"15757 MB","total":"32768 MB","usage":"48%"} 1061 | {"free":"15760 MB","total":"32768 MB","usage":"48%"} 1062 | {"free":"15734 MB","total":"32768 MB","usage":"48%"} 1063 | {"free":"15734 MB","total":"32768 MB","usage":"48%"} 1064 | {"free":"15910 MB","total":"32768 MB","usage":"48%"} 1065 | {"free":"15910 MB","total":"32768 MB","usage":"48%"} 1066 | {"free":"15910 MB","total":"32768 MB","usage":"48%"} 1067 | {"free":"15910 MB","total":"32768 MB","usage":"48%"} 1068 | {"free":"15910 MB","total":"32768 MB","usage":"48%"} 1069 | {"free":"15910 MB","total":"32768 MB","usage":"48%"} 1070 | {"free":"15910 MB","total":"32768 MB","usage":"48%"} 1071 | {"free":"15910 MB","total":"32768 MB","usage":"48%"} 1072 | {"free":"15908 MB","total":"32768 MB","usage":"48%"} 1073 | {"free":"15908 MB","total":"32768 MB","usage":"48%"} 1074 | {"free":"15908 MB","total":"32768 MB","usage":"48%"} 1075 | {"free":"15908 MB","total":"32768 MB","usage":"48%"} 1076 | {"free":"15881 MB","total":"32768 MB","usage":"48%"} 1077 | {"free":"15831 MB","total":"32768 MB","usage":"48%"} 1078 | {"free":"15821 MB","total":"32768 MB","usage":"48%"} 1079 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1080 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1081 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1082 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1083 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1084 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1085 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1086 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1087 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1088 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1089 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1090 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1091 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1092 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1093 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1094 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1095 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1096 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1097 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1098 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1099 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1100 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1101 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1102 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1103 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1104 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1105 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1106 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1107 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1108 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1109 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1110 | {"free":"15854 MB","total":"32768 MB","usage":"48%"} 1111 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1112 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1113 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1114 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1115 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1116 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1117 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1118 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1119 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1120 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1121 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1122 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1123 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1124 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1125 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 1126 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 1127 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 1128 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 1129 | {"free":"15810 MB","total":"32768 MB","usage":"48%"} 1130 | {"free":"15810 MB","total":"32768 MB","usage":"48%"} 1131 | {"free":"15811 MB","total":"32768 MB","usage":"48%"} 1132 | {"free":"15810 MB","total":"32768 MB","usage":"48%"} 1133 | {"free":"15810 MB","total":"32768 MB","usage":"48%"} 1134 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 1135 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 1136 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 1137 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 1138 | {"free":"15809 MB","total":"32768 MB","usage":"48%"} 1139 | {"free":"15808 MB","total":"32768 MB","usage":"48%"} 1140 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 1141 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1142 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1143 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1144 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1145 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1146 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1147 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1148 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1149 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1150 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1151 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1152 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1153 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1154 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1155 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1156 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1157 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1158 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1159 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1160 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1161 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1162 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1163 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1164 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1165 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1166 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1167 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1168 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1169 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1170 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1171 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1172 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1173 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1174 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1175 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1176 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1177 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1178 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1179 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1180 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1181 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1182 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1183 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1184 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1185 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1186 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1187 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1188 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1189 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1190 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1191 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1192 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1193 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1194 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1195 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1196 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1197 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1198 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1199 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1200 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1201 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1202 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1203 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1204 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1205 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1206 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1207 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1208 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1209 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1210 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1211 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 1212 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 1213 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 1214 | {"free":"15823 MB","total":"32768 MB","usage":"48%"} 1215 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1216 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1217 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1218 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1219 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1220 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1221 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1222 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1223 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1224 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1225 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1226 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1227 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1228 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1229 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1230 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1231 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1232 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1233 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1234 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1235 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1236 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1237 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1238 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1239 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1240 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1241 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1242 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1243 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1244 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1245 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1246 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1247 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1248 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1249 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1250 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1251 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1252 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1253 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1254 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1255 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1256 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1257 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1258 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1259 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1260 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1261 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1262 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1263 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1264 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1265 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1266 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1267 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1268 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1269 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1270 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1271 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1272 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1273 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1274 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1275 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1276 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1277 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1278 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1279 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1280 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1281 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1282 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1283 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1284 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1285 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1286 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1287 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1288 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1289 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1290 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1291 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1292 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1293 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1294 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1295 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1296 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1297 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1298 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1299 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1300 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1301 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1302 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1303 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1304 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1305 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1306 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1307 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1308 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1309 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1310 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1311 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1312 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1313 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1314 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1315 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1316 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1317 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1318 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1319 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1320 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1321 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1322 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1323 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1324 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1325 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1326 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1327 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1328 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1329 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1330 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1331 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1332 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1333 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1334 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1335 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1336 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1337 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1338 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1339 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1340 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1341 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1342 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1343 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1344 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1345 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1346 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1347 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1348 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1349 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1350 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1351 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1352 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1353 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1354 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1355 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1356 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1357 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1358 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1359 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1360 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1361 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1362 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1363 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1364 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1365 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1366 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1367 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1368 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1369 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1370 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1371 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1372 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1373 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1374 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1375 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1376 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1377 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1378 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1379 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1380 | {"free":"15847 MB","total":"32768 MB","usage":"48%"} 1381 | {"free":"15847 MB","total":"32768 MB","usage":"48%"} 1382 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1383 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1384 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1385 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1386 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1387 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1388 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1389 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1390 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1391 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1392 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1393 | {"free":"15846 MB","total":"32768 MB","usage":"48%"} 1394 | {"free":"15820 MB","total":"32768 MB","usage":"48%"} 1395 | {"free":"15822 MB","total":"32768 MB","usage":"48%"} 1396 | {"free":"15822 MB","total":"32768 MB","usage":"48%"} 1397 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 1398 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1399 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1400 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1401 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1402 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1403 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1404 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1405 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1406 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1407 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1408 | {"free":"15854 MB","total":"32768 MB","usage":"48%"} 1409 | {"free":"15854 MB","total":"32768 MB","usage":"48%"} 1410 | {"free":"15855 MB","total":"32768 MB","usage":"48%"} 1411 | {"free":"15855 MB","total":"32768 MB","usage":"48%"} 1412 | {"free":"15854 MB","total":"32768 MB","usage":"48%"} 1413 | {"free":"15854 MB","total":"32768 MB","usage":"48%"} 1414 | {"free":"15855 MB","total":"32768 MB","usage":"48%"} 1415 | {"free":"15855 MB","total":"32768 MB","usage":"48%"} 1416 | {"free":"15854 MB","total":"32768 MB","usage":"48%"} 1417 | {"free":"15854 MB","total":"32768 MB","usage":"48%"} 1418 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1419 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1420 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1421 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1422 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1423 | {"free":"15853 MB","total":"32768 MB","usage":"48%"} 1424 | {"free":"15780 MB","total":"32768 MB","usage":"48%"} 1425 | {"free":"15771 MB","total":"32768 MB","usage":"48%"} 1426 | {"free":"15777 MB","total":"32768 MB","usage":"48%"} 1427 | {"free":"15751 MB","total":"32768 MB","usage":"48%"} 1428 | {"free":"15751 MB","total":"32768 MB","usage":"48%"} 1429 | {"free":"15751 MB","total":"32768 MB","usage":"48%"} 1430 | {"free":"15750 MB","total":"32768 MB","usage":"48%"} 1431 | {"free":"15775 MB","total":"32768 MB","usage":"48%"} 1432 | {"free":"15776 MB","total":"32768 MB","usage":"48%"} 1433 | {"free":"15776 MB","total":"32768 MB","usage":"48%"} 1434 | {"free":"15776 MB","total":"32768 MB","usage":"48%"} 1435 | {"free":"15776 MB","total":"32768 MB","usage":"48%"} 1436 | {"free":"15775 MB","total":"32768 MB","usage":"48%"} 1437 | {"free":"15776 MB","total":"32768 MB","usage":"48%"} 1438 | {"free":"15776 MB","total":"32768 MB","usage":"48%"} 1439 | {"free":"15776 MB","total":"32768 MB","usage":"48%"} 1440 | {"free":"15775 MB","total":"32768 MB","usage":"48%"} 1441 | {"free":"15793 MB","total":"32768 MB","usage":"48%"} 1442 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1443 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1444 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1445 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1446 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1447 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1448 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1449 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1450 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1451 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1452 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1453 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1454 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1455 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1456 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1457 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1458 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1459 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1460 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1461 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1462 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1463 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1464 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1465 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1466 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1467 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1468 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1469 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1470 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1471 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1472 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1473 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1474 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1475 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1476 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1477 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1478 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1479 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1480 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1481 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1482 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1483 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1484 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1485 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1486 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1487 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1488 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1489 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1490 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1491 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1492 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1493 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1494 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1495 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1496 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1497 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1498 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1499 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1500 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1501 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1502 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1503 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1504 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1505 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1506 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1507 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1508 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1509 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1510 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1511 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1512 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1513 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1514 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1515 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1516 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1517 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1518 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1519 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1520 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1521 | {"free":"15849 MB","total":"32768 MB","usage":"48%"} 1522 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1523 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1524 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1525 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1526 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1527 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1528 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1529 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1530 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1531 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1532 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1533 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1534 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1535 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1536 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1537 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1538 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1539 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1540 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1541 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1542 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1543 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1544 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1545 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1546 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1547 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1548 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1549 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1550 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1551 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1552 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1553 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1554 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1555 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1556 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1557 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1558 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1559 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1560 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1561 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1562 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1563 | {"free":"15845 MB","total":"32768 MB","usage":"48%"} 1564 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1565 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1566 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1567 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1568 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1569 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1570 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1571 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1572 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1573 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1574 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1575 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1576 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1577 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1578 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1579 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1580 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1581 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1582 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1583 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1584 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1585 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1586 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1587 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1588 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1589 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1590 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1591 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1592 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1593 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1594 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1595 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1596 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1597 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1598 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1599 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1600 | {"free":"15843 MB","total":"32768 MB","usage":"48%"} 1601 | {"free":"15815 MB","total":"32768 MB","usage":"48%"} 1602 | {"free":"15815 MB","total":"32768 MB","usage":"48%"} 1603 | {"free":"15815 MB","total":"32768 MB","usage":"48%"} 1604 | {"free":"15815 MB","total":"32768 MB","usage":"48%"} 1605 | {"free":"15841 MB","total":"32768 MB","usage":"48%"} 1606 | {"free":"15844 MB","total":"32768 MB","usage":"48%"} 1607 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1608 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1609 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1610 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1611 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1612 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1613 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1614 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1615 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1616 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1617 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1618 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1619 | {"free":"15852 MB","total":"32768 MB","usage":"48%"} 1620 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1621 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1622 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1623 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1624 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1625 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1626 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1627 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1628 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1629 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1630 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1631 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1632 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1633 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1634 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1635 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1636 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1637 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1638 | {"free":"15850 MB","total":"32768 MB","usage":"48%"} 1639 | {"free":"15851 MB","total":"32768 MB","usage":"48%"} 1640 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1641 | {"free":"15779 MB","total":"32768 MB","usage":"48%"} 1642 | {"free":"15779 MB","total":"32768 MB","usage":"48%"} 1643 | {"free":"15779 MB","total":"32768 MB","usage":"48%"} 1644 | {"free":"15778 MB","total":"32768 MB","usage":"48%"} 1645 | {"free":"15778 MB","total":"32768 MB","usage":"48%"} 1646 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 1647 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 1648 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 1649 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 1650 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 1651 | {"free":"15791 MB","total":"32768 MB","usage":"48%"} 1652 | {"free":"15794 MB","total":"32768 MB","usage":"48%"} 1653 | {"free":"15794 MB","total":"32768 MB","usage":"48%"} 1654 | {"free":"15794 MB","total":"32768 MB","usage":"48%"} 1655 | {"free":"15768 MB","total":"32768 MB","usage":"48%"} 1656 | {"free":"15768 MB","total":"32768 MB","usage":"48%"} 1657 | {"free":"15812 MB","total":"32768 MB","usage":"48%"} 1658 | {"free":"15812 MB","total":"32768 MB","usage":"48%"} 1659 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1660 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1661 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1662 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1663 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1664 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1665 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1666 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1667 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1668 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1669 | {"free":"15840 MB","total":"32768 MB","usage":"48%"} 1670 | {"free":"15840 MB","total":"32768 MB","usage":"48%"} 1671 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1672 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1673 | {"free":"15839 MB","total":"32768 MB","usage":"48%"} 1674 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1675 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1676 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1677 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1678 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1679 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1680 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1681 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1682 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1683 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1684 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1685 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1686 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1687 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1688 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1689 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1690 | {"free":"15835 MB","total":"32768 MB","usage":"48%"} 1691 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1692 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1693 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1694 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1695 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1696 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1697 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1698 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1699 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1700 | {"free":"15835 MB","total":"32768 MB","usage":"48%"} 1701 | {"free":"15835 MB","total":"32768 MB","usage":"48%"} 1702 | {"free":"15835 MB","total":"32768 MB","usage":"48%"} 1703 | {"free":"15835 MB","total":"32768 MB","usage":"48%"} 1704 | {"free":"15835 MB","total":"32768 MB","usage":"48%"} 1705 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1706 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1707 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1708 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1709 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1710 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1711 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1712 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1713 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1714 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1715 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1716 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1717 | {"free":"15837 MB","total":"32768 MB","usage":"48%"} 1718 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1719 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1720 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1721 | {"free":"15836 MB","total":"32768 MB","usage":"48%"} 1722 | {"free":"15793 MB","total":"32768 MB","usage":"48%"} 1723 | {"free":"15766 MB","total":"32768 MB","usage":"48%"} 1724 | {"free":"15745 MB","total":"32768 MB","usage":"48%"} 1725 | {"free":"15728 MB","total":"32768 MB","usage":"47%"} 1726 | {"free":"15718 MB","total":"32768 MB","usage":"47%"} 1727 | {"free":"15571 MB","total":"32768 MB","usage":"47%"} 1728 | {"free":"15546 MB","total":"32768 MB","usage":"47%"} 1729 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1730 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1731 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1732 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1733 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1734 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1735 | {"free":"15548 MB","total":"32768 MB","usage":"47%"} 1736 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1737 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1738 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1739 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1740 | {"free":"15547 MB","total":"32768 MB","usage":"47%"} 1741 | {"free":"15565 MB","total":"32768 MB","usage":"47%"} 1742 | {"free":"15565 MB","total":"32768 MB","usage":"47%"} 1743 | {"free":"15564 MB","total":"32768 MB","usage":"47%"} 1744 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1745 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1746 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1747 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1748 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1749 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1750 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1751 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1752 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1753 | {"free":"15569 MB","total":"32768 MB","usage":"47%"} 1754 | {"free":"15569 MB","total":"32768 MB","usage":"47%"} 1755 | {"free":"15569 MB","total":"32768 MB","usage":"47%"} 1756 | {"free":"15562 MB","total":"32768 MB","usage":"47%"} 1757 | {"free":"15563 MB","total":"32768 MB","usage":"47%"} 1758 | {"free":"15563 MB","total":"32768 MB","usage":"47%"} 1759 | {"free":"15562 MB","total":"32768 MB","usage":"47%"} 1760 | {"free":"15562 MB","total":"32768 MB","usage":"47%"} 1761 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1762 | {"free":"15569 MB","total":"32768 MB","usage":"47%"} 1763 | {"free":"15569 MB","total":"32768 MB","usage":"47%"} 1764 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1765 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1766 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1767 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1768 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1769 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1770 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1771 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1772 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1773 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1774 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1775 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1776 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1777 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1778 | {"free":"15567 MB","total":"32768 MB","usage":"47%"} 1779 | {"free":"15567 MB","total":"32768 MB","usage":"47%"} 1780 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1781 | {"free":"15568 MB","total":"32768 MB","usage":"47%"} 1782 | {"free":"15567 MB","total":"32768 MB","usage":"47%"} 1783 | {"free":"15567 MB","total":"32768 MB","usage":"47%"} 1784 | {"free":"15566 MB","total":"32768 MB","usage":"47%"} 1785 | {"free":"15567 MB","total":"32768 MB","usage":"47%"} 1786 | {"free":"15566 MB","total":"32768 MB","usage":"47%"} 1787 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1788 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 1789 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 1790 | {"free":"15802 MB","total":"32768 MB","usage":"48%"} 1791 | {"free":"15802 MB","total":"32768 MB","usage":"48%"} 1792 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1793 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1794 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1795 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1796 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1797 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1798 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1799 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1800 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1801 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1802 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1803 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1804 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1805 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1806 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1807 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1808 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1809 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1810 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1811 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1812 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1813 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1814 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1815 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1816 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1817 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1818 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1819 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1820 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1821 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1822 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1823 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1824 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1825 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1826 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1827 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1828 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1829 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1830 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1831 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1832 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1833 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1834 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1835 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1836 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1837 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1838 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1839 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1840 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1841 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1842 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1843 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1844 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1845 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1846 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1847 | {"free":"15830 MB","total":"32768 MB","usage":"48%"} 1848 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1849 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1850 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1851 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1852 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1853 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1854 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1855 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1856 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1857 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1858 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1859 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1860 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1861 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1862 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1863 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1864 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1865 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1866 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1867 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1868 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1869 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1870 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1871 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1872 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1873 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1874 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1875 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1876 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1877 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1878 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1879 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1880 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1881 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1882 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1883 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1884 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 1885 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1886 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1887 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 1888 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 1889 | {"free":"15824 MB","total":"32768 MB","usage":"48%"} 1890 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1891 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1892 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1893 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 1894 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1895 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1896 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1897 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1898 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1899 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1900 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1901 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1902 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1903 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1904 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1905 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1906 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1907 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1908 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1909 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1910 | {"free":"15802 MB","total":"32768 MB","usage":"48%"} 1911 | {"free":"15802 MB","total":"32768 MB","usage":"48%"} 1912 | {"free":"15802 MB","total":"32768 MB","usage":"48%"} 1913 | {"free":"15802 MB","total":"32768 MB","usage":"48%"} 1914 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1915 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1916 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1917 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1918 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1919 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1920 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1921 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1922 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1923 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1924 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1925 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1926 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1927 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1928 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1929 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1930 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1931 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1932 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1933 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1934 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1935 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1936 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1937 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1938 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1939 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1940 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1941 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1942 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1943 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1944 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1945 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 1946 | {"free":"15795 MB","total":"32768 MB","usage":"48%"} 1947 | {"free":"15794 MB","total":"32768 MB","usage":"48%"} 1948 | {"free":"15794 MB","total":"32768 MB","usage":"48%"} 1949 | {"free":"15794 MB","total":"32768 MB","usage":"48%"} 1950 | {"free":"15794 MB","total":"32768 MB","usage":"48%"} 1951 | {"free":"15791 MB","total":"32768 MB","usage":"48%"} 1952 | {"free":"15791 MB","total":"32768 MB","usage":"48%"} 1953 | {"free":"15791 MB","total":"32768 MB","usage":"48%"} 1954 | {"free":"15817 MB","total":"32768 MB","usage":"48%"} 1955 | {"free":"15818 MB","total":"32768 MB","usage":"48%"} 1956 | {"free":"15817 MB","total":"32768 MB","usage":"48%"} 1957 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1958 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1959 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1960 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1961 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1962 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1963 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1964 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1965 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1966 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1967 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1968 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1969 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1970 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1971 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1972 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1973 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1974 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1975 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1976 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1977 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1978 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1979 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1980 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1981 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1982 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1983 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1984 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1985 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1986 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1987 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1988 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1989 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1990 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1991 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1992 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1993 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1994 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1995 | {"free":"15826 MB","total":"32768 MB","usage":"48%"} 1996 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1997 | {"free":"15825 MB","total":"32768 MB","usage":"48%"} 1998 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 1999 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 2000 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2001 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 2002 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 2003 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 2004 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2005 | {"free":"15827 MB","total":"32768 MB","usage":"48%"} 2006 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2007 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2008 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2009 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2010 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2011 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2012 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2013 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2014 | {"free":"15828 MB","total":"32768 MB","usage":"48%"} 2015 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 2016 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 2017 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 2018 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 2019 | {"free":"15829 MB","total":"32768 MB","usage":"48%"} 2020 | {"free":"15785 MB","total":"32768 MB","usage":"48%"} 2021 | {"free":"15781 MB","total":"32768 MB","usage":"48%"} 2022 | {"free":"15781 MB","total":"32768 MB","usage":"48%"} 2023 | {"free":"15782 MB","total":"32768 MB","usage":"48%"} 2024 | {"free":"15759 MB","total":"32768 MB","usage":"48%"} 2025 | {"free":"15759 MB","total":"32768 MB","usage":"48%"} 2026 | {"free":"15750 MB","total":"32768 MB","usage":"48%"} 2027 | {"free":"15531 MB","total":"32768 MB","usage":"47%"} 2028 | {"free":"15505 MB","total":"32768 MB","usage":"47%"} 2029 | {"free":"15497 MB","total":"32768 MB","usage":"47%"} 2030 | {"free":"15500 MB","total":"32768 MB","usage":"47%"} 2031 | {"free":"15500 MB","total":"32768 MB","usage":"47%"} 2032 | {"free":"15500 MB","total":"32768 MB","usage":"47%"} 2033 | {"free":"15500 MB","total":"32768 MB","usage":"47%"} 2034 | {"free":"15526 MB","total":"32768 MB","usage":"47%"} 2035 | {"free":"15527 MB","total":"32768 MB","usage":"47%"} 2036 | {"free":"15526 MB","total":"32768 MB","usage":"47%"} 2037 | {"free":"15526 MB","total":"32768 MB","usage":"47%"} 2038 | {"free":"15526 MB","total":"32768 MB","usage":"47%"} 2039 | {"free":"15526 MB","total":"32768 MB","usage":"47%"} 2040 | {"free":"15526 MB","total":"32768 MB","usage":"47%"} 2041 | {"free":"15526 MB","total":"32768 MB","usage":"47%"} 2042 | {"free":"15526 MB","total":"32768 MB","usage":"47%"} 2043 | {"free":"15538 MB","total":"32768 MB","usage":"47%"} 2044 | {"free":"15537 MB","total":"32768 MB","usage":"47%"} 2045 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2046 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2047 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2048 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2049 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2050 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2051 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2052 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2053 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2054 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2055 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2056 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2057 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2058 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2059 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2060 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2061 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2062 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2063 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2064 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2065 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2066 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2067 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2068 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2069 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2070 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2071 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2072 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2073 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2074 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2075 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2076 | {"free":"15556 MB","total":"32768 MB","usage":"47%"} 2077 | {"free":"15558 MB","total":"32768 MB","usage":"47%"} 2078 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2079 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2080 | {"free":"15558 MB","total":"32768 MB","usage":"47%"} 2081 | {"free":"15558 MB","total":"32768 MB","usage":"47%"} 2082 | {"free":"15558 MB","total":"32768 MB","usage":"47%"} 2083 | {"free":"15558 MB","total":"32768 MB","usage":"47%"} 2084 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2085 | {"free":"15557 MB","total":"32768 MB","usage":"47%"} 2086 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2087 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2088 | {"free":"15802 MB","total":"32768 MB","usage":"48%"} 2089 | {"free":"15802 MB","total":"32768 MB","usage":"48%"} 2090 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2091 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2092 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2093 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2094 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2095 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2096 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2097 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2098 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2099 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2100 | {"free":"15800 MB","total":"32768 MB","usage":"48%"} 2101 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2102 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2103 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2104 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2105 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2106 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2107 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2108 | {"free":"15801 MB","total":"32768 MB","usage":"48%"} 2109 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2110 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2111 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2112 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2113 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2114 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2115 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2116 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2117 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 2118 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 2119 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2120 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2121 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2122 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2123 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2124 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 2125 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 2126 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 2127 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2128 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2129 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2130 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2131 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2132 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2133 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2134 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2135 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2136 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2137 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2138 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2139 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2140 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2141 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2142 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2143 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 2144 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2145 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2146 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2147 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2148 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2149 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2150 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2151 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2152 | {"free":"15804 MB","total":"32768 MB","usage":"48%"} 2153 | {"free":"15804 MB","total":"32768 MB","usage":"48%"} 2154 | {"free":"15804 MB","total":"32768 MB","usage":"48%"} 2155 | {"free":"15804 MB","total":"32768 MB","usage":"48%"} 2156 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2157 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2158 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2159 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2160 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2161 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2162 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2163 | {"free":"15805 MB","total":"32768 MB","usage":"48%"} 2164 | {"free":"15806 MB","total":"32768 MB","usage":"48%"} 2165 | {"free":"15763 MB","total":"32768 MB","usage":"48%"} 2166 | {"free":"15701 MB","total":"32768 MB","usage":"47%"} 2167 | {"free":"15700 MB","total":"32768 MB","usage":"47%"} 2168 | {"free":"15699 MB","total":"32768 MB","usage":"47%"} 2169 | {"free":"15702 MB","total":"32768 MB","usage":"47%"} 2170 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2171 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2172 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2173 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2174 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2175 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2176 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2177 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2178 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2179 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2180 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2181 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2182 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2183 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2184 | {"free":"15713 MB","total":"32768 MB","usage":"47%"} 2185 | {"free":"15713 MB","total":"32768 MB","usage":"47%"} 2186 | {"free":"15713 MB","total":"32768 MB","usage":"47%"} 2187 | {"free":"15712 MB","total":"32768 MB","usage":"47%"} 2188 | {"free":"15712 MB","total":"32768 MB","usage":"47%"} 2189 | {"free":"15712 MB","total":"32768 MB","usage":"47%"} 2190 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2191 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2192 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2193 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2194 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2195 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2196 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2197 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2198 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2199 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2200 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2201 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2202 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2203 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2204 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2205 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2206 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2207 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2208 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2209 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2210 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2211 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2212 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2213 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2214 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2215 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2216 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2217 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2218 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2219 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2220 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2221 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2222 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2223 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2224 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2225 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2226 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2227 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2228 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2229 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2230 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2231 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2232 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2233 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2234 | {"free":"15737 MB","total":"32768 MB","usage":"48%"} 2235 | {"free":"15737 MB","total":"32768 MB","usage":"48%"} 2236 | {"free":"15737 MB","total":"32768 MB","usage":"48%"} 2237 | {"free":"15737 MB","total":"32768 MB","usage":"48%"} 2238 | {"free":"15737 MB","total":"32768 MB","usage":"48%"} 2239 | {"free":"15737 MB","total":"32768 MB","usage":"48%"} 2240 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2241 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2242 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2243 | {"free":"15737 MB","total":"32768 MB","usage":"48%"} 2244 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2245 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2246 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2247 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2248 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2249 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2250 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2251 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2252 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2253 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2254 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2255 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2256 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2257 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2258 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2259 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2260 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2261 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2262 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2263 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2264 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2265 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2266 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2267 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2268 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2269 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2270 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2271 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2272 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2273 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2274 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2275 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2276 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2277 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2278 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2279 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2280 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2281 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2282 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2283 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2284 | {"free":"15742 MB","total":"32768 MB","usage":"48%"} 2285 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2286 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2287 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2288 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2289 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2290 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2291 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2292 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2293 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2294 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2295 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2296 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2297 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2298 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2299 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2300 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2301 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2302 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2303 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2304 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2305 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2306 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2307 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2308 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2309 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2310 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2311 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2312 | {"free":"15739 MB","total":"32768 MB","usage":"48%"} 2313 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2314 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2315 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2316 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2317 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2318 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2319 | {"free":"15699 MB","total":"32768 MB","usage":"47%"} 2320 | {"free":"15699 MB","total":"32768 MB","usage":"47%"} 2321 | {"free":"15699 MB","total":"32768 MB","usage":"47%"} 2322 | {"free":"15698 MB","total":"32768 MB","usage":"47%"} 2323 | {"free":"15698 MB","total":"32768 MB","usage":"47%"} 2324 | {"free":"15699 MB","total":"32768 MB","usage":"47%"} 2325 | {"free":"15699 MB","total":"32768 MB","usage":"47%"} 2326 | {"free":"15698 MB","total":"32768 MB","usage":"47%"} 2327 | {"free":"15698 MB","total":"32768 MB","usage":"47%"} 2328 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 2329 | {"free":"15698 MB","total":"32768 MB","usage":"47%"} 2330 | {"free":"15698 MB","total":"32768 MB","usage":"47%"} 2331 | {"free":"15698 MB","total":"32768 MB","usage":"47%"} 2332 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 2333 | {"free":"15697 MB","total":"32768 MB","usage":"47%"} 2334 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2335 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2336 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2337 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2338 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2339 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2340 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2341 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2342 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2343 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2344 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2345 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2346 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2347 | {"free":"15738 MB","total":"32768 MB","usage":"48%"} 2348 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2349 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2350 | {"free":"15714 MB","total":"32768 MB","usage":"47%"} 2351 | {"free":"15714 MB","total":"32768 MB","usage":"47%"} 2352 | {"free":"15715 MB","total":"32768 MB","usage":"47%"} 2353 | {"free":"15715 MB","total":"32768 MB","usage":"47%"} 2354 | {"free":"15715 MB","total":"32768 MB","usage":"47%"} 2355 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2356 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2357 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2358 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2359 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2360 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2361 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2362 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2363 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2364 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2365 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2366 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2367 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2368 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2369 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2370 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2371 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2372 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2373 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2374 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2375 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2376 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2377 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2378 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2379 | {"free":"15715 MB","total":"32768 MB","usage":"47%"} 2380 | {"free":"15715 MB","total":"32768 MB","usage":"47%"} 2381 | {"free":"15714 MB","total":"32768 MB","usage":"47%"} 2382 | {"free":"15714 MB","total":"32768 MB","usage":"47%"} 2383 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2384 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2385 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2386 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2387 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2388 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2389 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2390 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2391 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2392 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2393 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2394 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2395 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2396 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2397 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2398 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2399 | {"free":"15740 MB","total":"32768 MB","usage":"48%"} 2400 | {"free":"15741 MB","total":"32768 MB","usage":"48%"} 2401 | {"free":"15717 MB","total":"32768 MB","usage":"47%"} 2402 | {"free":"15676 MB","total":"32768 MB","usage":"47%"} 2403 | {"free":"15676 MB","total":"32768 MB","usage":"47%"} 2404 | {"free":"15676 MB","total":"32768 MB","usage":"47%"} 2405 | {"free":"15676 MB","total":"32768 MB","usage":"47%"} 2406 | {"free":"15675 MB","total":"32768 MB","usage":"47%"} 2407 | {"free":"15677 MB","total":"32768 MB","usage":"47%"} 2408 | {"free":"15679 MB","total":"32768 MB","usage":"47%"} 2409 | {"free":"15679 MB","total":"32768 MB","usage":"47%"} 2410 | {"free":"15679 MB","total":"32768 MB","usage":"47%"} 2411 | {"free":"15679 MB","total":"32768 MB","usage":"47%"} 2412 | {"free":"15687 MB","total":"32768 MB","usage":"47%"} 2413 | {"free":"15690 MB","total":"32768 MB","usage":"47%"} 2414 | {"free":"15690 MB","total":"32768 MB","usage":"47%"} 2415 | {"free":"15690 MB","total":"32768 MB","usage":"47%"} 2416 | {"free":"15690 MB","total":"32768 MB","usage":"47%"} 2417 | {"free":"15690 MB","total":"32768 MB","usage":"47%"} 2418 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2419 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2420 | {"free":"15735 MB","total":"32768 MB","usage":"48%"} 2421 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2422 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2423 | {"free":"15735 MB","total":"32768 MB","usage":"48%"} 2424 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2425 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2426 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2427 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2428 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2429 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2430 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2431 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2432 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2433 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2434 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2435 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2436 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2437 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2438 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2439 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2440 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2441 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2442 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2443 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2444 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2445 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2446 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2447 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2448 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2449 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2450 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2451 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2452 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2453 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2454 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2455 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2456 | {"free":"15737 MB","total":"32768 MB","usage":"48%"} 2457 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2458 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2459 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2460 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2461 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2462 | {"free":"15735 MB","total":"32768 MB","usage":"48%"} 2463 | {"free":"15735 MB","total":"32768 MB","usage":"48%"} 2464 | {"free":"15731 MB","total":"32768 MB","usage":"48%"} 2465 | {"free":"15731 MB","total":"32768 MB","usage":"48%"} 2466 | {"free":"15735 MB","total":"32768 MB","usage":"48%"} 2467 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2468 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2469 | {"free":"15735 MB","total":"32768 MB","usage":"48%"} 2470 | {"free":"15735 MB","total":"32768 MB","usage":"48%"} 2471 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2472 | {"free":"15755 MB","total":"32768 MB","usage":"48%"} 2473 | {"free":"15749 MB","total":"32768 MB","usage":"48%"} 2474 | {"free":"15748 MB","total":"32768 MB","usage":"48%"} 2475 | {"free":"15748 MB","total":"32768 MB","usage":"48%"} 2476 | {"free":"15774 MB","total":"32768 MB","usage":"48%"} 2477 | {"free":"15782 MB","total":"32768 MB","usage":"48%"} 2478 | {"free":"15782 MB","total":"32768 MB","usage":"48%"} 2479 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2480 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2481 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2482 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2483 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2484 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2485 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 2486 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 2487 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2488 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2489 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2490 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 2491 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 2492 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 2493 | {"free":"15784 MB","total":"32768 MB","usage":"48%"} 2494 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2495 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2496 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2497 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2498 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2499 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2500 | {"free":"15783 MB","total":"32768 MB","usage":"48%"} 2501 | {"free":"15746 MB","total":"32768 MB","usage":"48%"} 2502 | {"free":"15728 MB","total":"32768 MB","usage":"47%"} 2503 | {"free":"15728 MB","total":"32768 MB","usage":"47%"} 2504 | {"free":"15727 MB","total":"32768 MB","usage":"47%"} 2505 | {"free":"15727 MB","total":"32768 MB","usage":"47%"} 2506 | {"free":"15734 MB","total":"32768 MB","usage":"48%"} 2507 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2508 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2509 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2510 | {"free":"15736 MB","total":"32768 MB","usage":"48%"} 2511 | {"free":"15764 MB","total":"32768 MB","usage":"48%"} 2512 | {"free":"15770 MB","total":"32768 MB","usage":"48%"} 2513 | {"free":"15769 MB","total":"32768 MB","usage":"48%"} 2514 | {"free":"15744 MB","total":"32768 MB","usage":"48%"} 2515 | {"free":"15733 MB","total":"32768 MB","usage":"48%"} 2516 | {"free":"15733 MB","total":"32768 MB","usage":"48%"} 2517 | {"free":"15732 MB","total":"32768 MB","usage":"48%"} 2518 | {"free":"15725 MB","total":"32768 MB","usage":"47%"} 2519 | {"free":"15725 MB","total":"32768 MB","usage":"47%"} 2520 | {"free":"15725 MB","total":"32768 MB","usage":"47%"} 2521 | {"free":"15724 MB","total":"32768 MB","usage":"47%"} 2522 | {"free":"15729 MB","total":"32768 MB","usage":"48%"} 2523 | {"free":"15730 MB","total":"32768 MB","usage":"48%"} 2524 | {"free":"15717 MB","total":"32768 MB","usage":"47%"} 2525 | {"free":"15716 MB","total":"32768 MB","usage":"47%"} 2526 | {"free":"15715 MB","total":"32768 MB","usage":"47%"} 2527 | {"free":"15715 MB","total":"32768 MB","usage":"47%"} 2528 | {"free":"15714 MB","total":"32768 MB","usage":"47%"} 2529 | {"free":"15720 MB","total":"32768 MB","usage":"47%"} 2530 | {"free":"15719 MB","total":"32768 MB","usage":"47%"} 2531 | {"free":"15724 MB","total":"32768 MB","usage":"47%"} 2532 | {"free":"15750 MB","total":"32768 MB","usage":"48%"} 2533 | {"free":"15750 MB","total":"32768 MB","usage":"48%"} 2534 | {"free":"15751 MB","total":"32768 MB","usage":"48%"} 2535 | {"free":"15750 MB","total":"32768 MB","usage":"48%"} 2536 | {"free":"15744 MB","total":"32768 MB","usage":"48%"} 2537 | {"free":"16098 MB","total":"32768 MB","usage":"49%"} 2538 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2539 | {"free":"16115 MB","total":"32768 MB","usage":"49%"} 2540 | {"free":"16115 MB","total":"32768 MB","usage":"49%"} 2541 | {"free":"16118 MB","total":"32768 MB","usage":"49%"} 2542 | {"free":"16126 MB","total":"32768 MB","usage":"49%"} 2543 | {"free":"16126 MB","total":"32768 MB","usage":"49%"} 2544 | {"free":"16125 MB","total":"32768 MB","usage":"49%"} 2545 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 2546 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 2547 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 2548 | {"free":"16108 MB","total":"32768 MB","usage":"49%"} 2549 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 2550 | {"free":"16102 MB","total":"32768 MB","usage":"49%"} 2551 | {"free":"16103 MB","total":"32768 MB","usage":"49%"} 2552 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 2553 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 2554 | {"free":"16107 MB","total":"32768 MB","usage":"49%"} 2555 | {"free":"16113 MB","total":"32768 MB","usage":"49%"} 2556 | {"free":"16113 MB","total":"32768 MB","usage":"49%"} 2557 | {"free":"16113 MB","total":"32768 MB","usage":"49%"} 2558 | {"free":"16113 MB","total":"32768 MB","usage":"49%"} 2559 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2560 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2561 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2562 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2563 | {"free":"16113 MB","total":"32768 MB","usage":"49%"} 2564 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 2565 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 2566 | {"free":"16128 MB","total":"32768 MB","usage":"49%"} 2567 | {"free":"16128 MB","total":"32768 MB","usage":"49%"} 2568 | {"free":"16128 MB","total":"32768 MB","usage":"49%"} 2569 | {"free":"16128 MB","total":"32768 MB","usage":"49%"} 2570 | {"free":"16129 MB","total":"32768 MB","usage":"49%"} 2571 | {"free":"16130 MB","total":"32768 MB","usage":"49%"} 2572 | {"free":"16132 MB","total":"32768 MB","usage":"49%"} 2573 | {"free":"16132 MB","total":"32768 MB","usage":"49%"} 2574 | {"free":"16131 MB","total":"32768 MB","usage":"49%"} 2575 | {"free":"16131 MB","total":"32768 MB","usage":"49%"} 2576 | {"free":"16131 MB","total":"32768 MB","usage":"49%"} 2577 | {"free":"16132 MB","total":"32768 MB","usage":"49%"} 2578 | {"free":"16132 MB","total":"32768 MB","usage":"49%"} 2579 | {"free":"16132 MB","total":"32768 MB","usage":"49%"} 2580 | {"free":"16126 MB","total":"32768 MB","usage":"49%"} 2581 | {"free":"16126 MB","total":"32768 MB","usage":"49%"} 2582 | {"free":"16125 MB","total":"32768 MB","usage":"49%"} 2583 | {"free":"16125 MB","total":"32768 MB","usage":"49%"} 2584 | {"free":"16125 MB","total":"32768 MB","usage":"49%"} 2585 | {"free":"16125 MB","total":"32768 MB","usage":"49%"} 2586 | {"free":"16118 MB","total":"32768 MB","usage":"49%"} 2587 | {"free":"16118 MB","total":"32768 MB","usage":"49%"} 2588 | {"free":"16119 MB","total":"32768 MB","usage":"49%"} 2589 | {"free":"16117 MB","total":"32768 MB","usage":"49%"} 2590 | {"free":"16118 MB","total":"32768 MB","usage":"49%"} 2591 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2592 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2593 | {"free":"16115 MB","total":"32768 MB","usage":"49%"} 2594 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2595 | {"free":"16115 MB","total":"32768 MB","usage":"49%"} 2596 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2597 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2598 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2599 | {"free":"16114 MB","total":"32768 MB","usage":"49%"} 2600 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2601 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2602 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2603 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2604 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2605 | {"free":"16112 MB","total":"32768 MB","usage":"49%"} 2606 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2607 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2608 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2609 | {"free":"16117 MB","total":"32768 MB","usage":"49%"} 2610 | {"free":"16116 MB","total":"32768 MB","usage":"49%"} 2611 | {"free":"16086 MB","total":"32768 MB","usage":"49%"} 2612 | {"free":"16078 MB","total":"32768 MB","usage":"49%"} 2613 | {"free":"16110 MB","total":"32768 MB","usage":"49%"} 2614 | {"free":"16110 MB","total":"32768 MB","usage":"49%"} 2615 | {"free":"16110 MB","total":"32768 MB","usage":"49%"} 2616 | {"free":"16110 MB","total":"32768 MB","usage":"49%"} 2617 | {"free":"16038 MB","total":"32768 MB","usage":"48%"} 2618 | {"free":"16006 MB","total":"32768 MB","usage":"48%"} 2619 | {"free":"15995 MB","total":"32768 MB","usage":"48%"} 2620 | {"free":"16024 MB","total":"32768 MB","usage":"48%"} 2621 | {"free":"15995 MB","total":"32768 MB","usage":"48%"} 2622 | {"free":"16007 MB","total":"32768 MB","usage":"48%"} 2623 | {"free":"16016 MB","total":"32768 MB","usage":"48%"} 2624 | {"free":"16023 MB","total":"32768 MB","usage":"48%"} 2625 | {"free":"16022 MB","total":"32768 MB","usage":"48%"} 2626 | {"free":"16021 MB","total":"32768 MB","usage":"48%"} 2627 | {"free":"16021 MB","total":"32768 MB","usage":"48%"} 2628 | {"free":"16019 MB","total":"32768 MB","usage":"48%"} 2629 | {"free":"16020 MB","total":"32768 MB","usage":"48%"} 2630 | {"free":"16020 MB","total":"32768 MB","usage":"48%"} 2631 | {"free":"15993 MB","total":"32768 MB","usage":"48%"} 2632 | {"free":"15992 MB","total":"32768 MB","usage":"48%"} 2633 | {"free":"15991 MB","total":"32768 MB","usage":"48%"} 2634 | {"free":"16009 MB","total":"32768 MB","usage":"48%"} 2635 | {"free":"16054 MB","total":"32768 MB","usage":"48%"} 2636 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 2637 | {"free":"16061 MB","total":"32768 MB","usage":"49%"} 2638 | {"free":"16061 MB","total":"32768 MB","usage":"49%"} 2639 | {"free":"16060 MB","total":"32768 MB","usage":"49%"} 2640 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 2641 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 2642 | {"free":"16036 MB","total":"32768 MB","usage":"48%"} 2643 | {"free":"16036 MB","total":"32768 MB","usage":"48%"} 2644 | {"free":"16036 MB","total":"32768 MB","usage":"48%"} 2645 | {"free":"16025 MB","total":"32768 MB","usage":"48%"} 2646 | {"free":"16027 MB","total":"32768 MB","usage":"48%"} 2647 | {"free":"16033 MB","total":"32768 MB","usage":"48%"} 2648 | {"free":"16036 MB","total":"32768 MB","usage":"48%"} 2649 | {"free":"16036 MB","total":"32768 MB","usage":"48%"} 2650 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2651 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2652 | {"free":"16043 MB","total":"32768 MB","usage":"48%"} 2653 | {"free":"16042 MB","total":"32768 MB","usage":"48%"} 2654 | {"free":"16041 MB","total":"32768 MB","usage":"48%"} 2655 | {"free":"16039 MB","total":"32768 MB","usage":"48%"} 2656 | {"free":"16037 MB","total":"32768 MB","usage":"48%"} 2657 | {"free":"16037 MB","total":"32768 MB","usage":"48%"} 2658 | {"free":"16037 MB","total":"32768 MB","usage":"48%"} 2659 | {"free":"16037 MB","total":"32768 MB","usage":"48%"} 2660 | {"free":"16054 MB","total":"32768 MB","usage":"48%"} 2661 | {"free":"16056 MB","total":"32768 MB","usage":"48%"} 2662 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 2663 | {"free":"16056 MB","total":"32768 MB","usage":"48%"} 2664 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 2665 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 2666 | {"free":"16055 MB","total":"32768 MB","usage":"48%"} 2667 | {"free":"16056 MB","total":"32768 MB","usage":"48%"} 2668 | {"free":"16028 MB","total":"32768 MB","usage":"48%"} 2669 | {"free":"16028 MB","total":"32768 MB","usage":"48%"} 2670 | {"free":"16028 MB","total":"32768 MB","usage":"48%"} 2671 | {"free":"16028 MB","total":"32768 MB","usage":"48%"} 2672 | {"free":"16028 MB","total":"32768 MB","usage":"48%"} 2673 | {"free":"16039 MB","total":"32768 MB","usage":"48%"} 2674 | {"free":"16038 MB","total":"32768 MB","usage":"48%"} 2675 | {"free":"16038 MB","total":"32768 MB","usage":"48%"} 2676 | {"free":"16038 MB","total":"32768 MB","usage":"48%"} 2677 | {"free":"16037 MB","total":"32768 MB","usage":"48%"} 2678 | {"free":"16038 MB","total":"32768 MB","usage":"48%"} 2679 | {"free":"16030 MB","total":"32768 MB","usage":"48%"} 2680 | {"free":"16029 MB","total":"32768 MB","usage":"48%"} 2681 | {"free":"16030 MB","total":"32768 MB","usage":"48%"} 2682 | {"free":"16029 MB","total":"32768 MB","usage":"48%"} 2683 | {"free":"16029 MB","total":"32768 MB","usage":"48%"} 2684 | {"free":"16030 MB","total":"32768 MB","usage":"48%"} 2685 | {"free":"16023 MB","total":"32768 MB","usage":"48%"} 2686 | {"free":"16026 MB","total":"32768 MB","usage":"48%"} 2687 | {"free":"16025 MB","total":"32768 MB","usage":"48%"} 2688 | {"free":"16024 MB","total":"32768 MB","usage":"48%"} 2689 | {"free":"16025 MB","total":"32768 MB","usage":"48%"} 2690 | {"free":"16025 MB","total":"32768 MB","usage":"48%"} 2691 | {"free":"16041 MB","total":"32768 MB","usage":"48%"} 2692 | {"free":"16042 MB","total":"32768 MB","usage":"48%"} 2693 | {"free":"16041 MB","total":"32768 MB","usage":"48%"} 2694 | {"free":"16042 MB","total":"32768 MB","usage":"48%"} 2695 | {"free":"16040 MB","total":"32768 MB","usage":"48%"} 2696 | {"free":"16040 MB","total":"32768 MB","usage":"48%"} 2697 | {"free":"16040 MB","total":"32768 MB","usage":"48%"} 2698 | {"free":"16040 MB","total":"32768 MB","usage":"48%"} 2699 | {"free":"16022 MB","total":"32768 MB","usage":"48%"} 2700 | {"free":"16021 MB","total":"32768 MB","usage":"48%"} 2701 | {"free":"16021 MB","total":"32768 MB","usage":"48%"} 2702 | {"free":"16021 MB","total":"32768 MB","usage":"48%"} 2703 | {"free":"16022 MB","total":"32768 MB","usage":"48%"} 2704 | {"free":"16032 MB","total":"32768 MB","usage":"48%"} 2705 | {"free":"16032 MB","total":"32768 MB","usage":"48%"} 2706 | {"free":"16031 MB","total":"32768 MB","usage":"48%"} 2707 | {"free":"16032 MB","total":"32768 MB","usage":"48%"} 2708 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2709 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2710 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2711 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2712 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2713 | {"free":"16050 MB","total":"32768 MB","usage":"48%"} 2714 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2715 | {"free":"16050 MB","total":"32768 MB","usage":"48%"} 2716 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2717 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2718 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2719 | {"free":"16050 MB","total":"32768 MB","usage":"48%"} 2720 | {"free":"16050 MB","total":"32768 MB","usage":"48%"} 2721 | {"free":"16050 MB","total":"32768 MB","usage":"48%"} 2722 | {"free":"16050 MB","total":"32768 MB","usage":"48%"} 2723 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2724 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2725 | {"free":"16049 MB","total":"32768 MB","usage":"48%"} 2726 | {"free":"16036 MB","total":"32768 MB","usage":"48%"} 2727 | {"free":"16031 MB","total":"32768 MB","usage":"48%"} 2728 | {"free":"16031 MB","total":"32768 MB","usage":"48%"} 2729 | {"free":"16031 MB","total":"32768 MB","usage":"48%"} 2730 | {"free":"16030 MB","total":"32768 MB","usage":"48%"} 2731 | {"free":"16039 MB","total":"32768 MB","usage":"48%"} 2732 | {"free":"16040 MB","total":"32768 MB","usage":"48%"} 2733 | {"free":"16040 MB","total":"32768 MB","usage":"48%"} 2734 | {"free":"16041 MB","total":"32768 MB","usage":"48%"} 2735 | {"free":"16038 MB","total":"32768 MB","usage":"48%"} 2736 | {"free":"16027 MB","total":"32768 MB","usage":"48%"} 2737 | --------------------------------------------------------------------------------