docker-api 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +4 -4
  2. data/.cane +1 -1
  3. data/.rspec +1 -0
  4. data/.travis.yml +7 -6
  5. data/Dockerfile +2 -0
  6. data/README.md +5 -5
  7. data/Rakefile +26 -31
  8. data/TESTING.md +7 -19
  9. data/docker-api.gemspec +0 -1
  10. data/lib/docker/image.rb +6 -2
  11. data/lib/docker/version.rb +1 -1
  12. data/spec/docker/container_spec.rb +72 -92
  13. data/spec/docker/event_spec.rb +33 -23
  14. data/spec/docker/exec_spec.rb +9 -24
  15. data/spec/docker/image_spec.rb +75 -81
  16. data/spec/docker_spec.rb +21 -32
  17. metadata +4 -200
  18. data/spec/support/vcr.rb +0 -14
  19. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +0 -32
  20. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +0 -39
  21. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +0 -39
  22. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +0 -34
  23. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +0 -125
  24. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +0 -125
  25. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +0 -125
  26. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +0 -165
  27. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +0 -165
  28. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +0 -136
  29. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +0 -241
  30. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +0 -198
  31. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +0 -84
  32. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +0 -55
  33. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +0 -85
  34. data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +0 -180
  35. data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +0 -183
  36. data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +0 -183
  37. data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +0 -101
  38. data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +0 -182
  39. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +0 -333
  40. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +0 -84
  41. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +0 -84
  42. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +0 -164
  43. data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +0 -257
  44. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +0 -171
  45. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +0 -82
  46. data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +0 -176
  47. data/spec/vcr/Docker_Container/_rename/renames_the_container.yml +0 -149
  48. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +0 -243
  49. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +0 -107
  50. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml +0 -392
  51. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +0 -140
  52. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +0 -164
  53. data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +0 -217
  54. data/spec/vcr/Docker_Container/_streaming_logs/when_passing_a_block/returns_hello_.yml +0 -131
  55. data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +0 -131
  56. data/spec/vcr/Docker_Container/_streaming_logs/when_using_a_tty/returns_hello_.yml +0 -131
  57. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +0 -194
  58. data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +0 -176
  59. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +0 -107
  60. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +0 -107
  61. data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +0 -130
  62. data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +0 -207
  63. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +0 -182
  64. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +0 -182
  65. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +0 -180
  66. data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +0 -180
  67. data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +0 -180
  68. data/spec/vcr/Docker_Exec/_start_/when_wait_set_long_time_value/returns_empty_stdout_and_stderr_messages_with_exitcode.yml +0 -189
  69. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +0 -111
  70. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +0 -75
  71. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_an_image_and_tags_it.yml +0 -219
  72. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +0 -75
  73. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +0 -79
  74. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +0 -194
  75. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/uses_a_cached_version_the_second_time/calls_the_block_and_passes_build_output.yml +0 -96
  76. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +0 -194
  77. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +0 -562
  78. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml +0 -601
  79. data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml +0 -65
  80. data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +0 -38
  81. data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +0 -33
  82. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +0 -33
  83. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +0 -66
  84. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +0 -265
  85. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +0 -303
  86. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +0 -59
  87. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +0 -1469
  88. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +0 -244
  89. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +0 -224
  90. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +0 -289
  91. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +0 -32
  92. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +0 -366
  93. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +0 -62
  94. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +0 -246
  95. data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +0 -246
  96. data/spec/vcr/Docker_Image/_push/when_the_image_was_retrived_by_get/when_no_tag_is_specified/looks_up_the_first_repo_tag.yml +0 -382
  97. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +0 -264
  98. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +0 -141
  99. data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +0 -62
  100. data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +0 -652
  101. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +0 -162
  102. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +0 -162
  103. data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +0 -162
  104. data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +0 -63
  105. data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +0 -67
  106. data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +0 -176
  107. data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +0 -176
  108. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +0 -79
  109. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +0 -88
@@ -1,601 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: <DOCKER_HOST>/v1.16/build?t=<USERNAME>%2Fdebian%3Afrom_dir
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.18.0
12
- Content-Type:
13
- - application/tar
14
- Transfer-Encoding:
15
- - chunked
16
- X-Registry-Config:
17
- - eyJjb25maWdzIjp7IiI6eyJ1c2VybmFtZSI6IiIsInBhc3N3b3JkIjoiIiwiZW1haWwiOiIifX19
18
- response:
19
- status:
20
- code: 200
21
- message:
22
- headers:
23
- Content-Type:
24
- - application/json
25
- Date:
26
- - Thu, 12 Feb 2015 01:24:46 GMT
27
- body:
28
- encoding: US-ASCII
29
- string: ! "{\"stream\":\"Step 0 : FROM debian:wheezy\\n\"}\r\n{\"status\":\"The
30
- image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Pulling
31
- fs layer\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
32
- fs layer\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Pulling
33
- fs layer\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704287},\"progress\":\"[==================================================\\u003e]
34
- 1.024 kB/1.024 kB\",\"id\":\"c90d655b99b2\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704287},\"progress\":\"[==================================================\\u003e]
35
- 1.024 kB/1.024 kB\",\"id\":\"511136ea3c5a\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704287},\"progress\":\"[==================================================\\u003e]
36
- 1.024 kB/1.024 kB\",\"id\":\"511136ea3c5a\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":539628,\"total\":90081280,\"start\":1423704287},\"progress\":\"[\\u003e
37
- \ ] 539.6 kB/90.08 MB 1m32s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1080300,\"total\":90081280,\"start\":1423704287},\"progress\":\"[\\u003e
38
- \ ] 1.08 MB/90.08 MB 55s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1616876,\"total\":90081280,\"start\":1423704287},\"progress\":\"[\\u003e
39
- \ ] 1.617 MB/90.08 MB 42s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2157548,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=\\u003e
40
- \ ] 2.158 MB/90.08 MB 35s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2698220,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=\\u003e
41
- \ ] 2.698 MB/90.08 MB 31s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3226604,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=\\u003e
42
- \ ] 3.227 MB/90.08 MB 27s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3767276,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==\\u003e
43
- \ ] 3.767 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4307948,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==\\u003e
44
- \ ] 4.308 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4836332,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==\\u003e
45
- \ ] 4.836 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5364716,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==\\u003e
46
- \ ] 5.365 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5893100,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===\\u003e
47
- \ ] 5.893 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6433772,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===\\u003e
48
- \ ] 6.434 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6962156,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===\\u003e
49
- \ ] 6.962 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7490540,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====\\u003e
50
- \ ] 7.491 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8027116,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====\\u003e
51
- \ ] 8.027 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8567788,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====\\u003e
52
- \ ] 8.568 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9108460,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====\\u003e
53
- \ ] 9.108 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9649132,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====\\u003e
54
- \ ] 9.649 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10189804,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====\\u003e
55
- \ ] 10.19 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10730476,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====\\u003e
56
- \ ] 10.73 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11271148,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======\\u003e
57
- \ ] 11.27 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11811820,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======\\u003e
58
- \ ] 11.81 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12344300,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======\\u003e
59
- \ ] 12.34 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12884972,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======\\u003e
60
- \ ] 12.88 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13421548,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======\\u003e
61
- \ ] 13.42 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13958124,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======\\u003e
62
- \ ] 13.96 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14486508,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========\\u003e
63
- \ ] 14.49 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15023084,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========\\u003e
64
- \ ] 15.02 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15555564,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========\\u003e
65
- \ ] 15.56 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16083948,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========\\u003e
66
- \ ] 16.08 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16620524,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========\\u003e
67
- \ ] 16.62 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17153004,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========\\u003e
68
- \ ] 17.15 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17685484,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========\\u003e
69
- \ ] 17.69 MB/90.08 MB 26s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18217964,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========\\u003e
70
- \ ] 18.22 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18758636,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========\\u003e
71
- \ ] 18.76 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19299308,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========\\u003e
72
- \ ] 19.3 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19839980,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========\\u003e
73
- \ ] 19.84 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20380652,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========\\u003e
74
- \ ] 20.38 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20917228,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========\\u003e
75
- \ ] 20.92 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21445612,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========\\u003e
76
- \ ] 21.45 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21982188,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============\\u003e
77
- \ ] 21.98 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22514668,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============\\u003e
78
- \ ] 22.51 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23043052,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============\\u003e
79
- \ ] 23.04 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23571436,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============\\u003e
80
- \ ] 23.57 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24108012,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============\\u003e
81
- \ ] 24.11 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24636396,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============\\u003e
82
- \ ] 24.64 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25164780,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============\\u003e
83
- \ ] 25.16 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25701356,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============\\u003e
84
- \ ] 25.7 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26233836,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============\\u003e
85
- \ ] 26.23 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26762220,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============\\u003e
86
- \ ] 26.76 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27294700,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============\\u003e
87
- \ ] 27.29 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27835372,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============\\u003e
88
- \ ] 27.84 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28376044,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============\\u003e
89
- \ ] 28.38 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28916716,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================\\u003e
90
- \ ] 28.92 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29457388,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================\\u003e
91
- \ ] 29.46 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29985772,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================\\u003e
92
- \ ] 29.99 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30522348,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================\\u003e
93
- \ ] 30.52 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31050732,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================\\u003e
94
- \ ] 31.05 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31583212,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================\\u003e
95
- \ ] 31.58 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32111596,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================\\u003e
96
- \ ] 32.11 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32652268,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================\\u003e
97
- \ ] 32.65 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33188844,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================\\u003e
98
- \ ] 33.19 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33717228,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================\\u003e
99
- \ ] 33.72 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34249708,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================\\u003e
100
- \ ] 34.25 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34782188,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================\\u003e
101
- \ ] 34.78 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35322860,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================\\u003e
102
- \ ] 35.32 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35851244,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================\\u003e
103
- \ ] 35.85 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36387820,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================\\u003e
104
- \ ] 36.39 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36920300,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================\\u003e
105
- \ ] 36.92 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37452780,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================\\u003e
106
- \ ] 37.45 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37993452,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================\\u003e
107
- \ ] 37.99 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38521836,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================\\u003e
108
- \ ] 38.52 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39050220,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================\\u003e
109
- \ ] 39.05 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39586796,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================\\u003e
110
- \ ] 39.59 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40115180,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================\\u003e
111
- \ ] 40.12 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40655852,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================\\u003e
112
- \ ] 40.66 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41196524,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================\\u003e
113
- \ ] 41.2 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41737196,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================\\u003e
114
- \ ] 41.74 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42277868,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================\\u003e
115
- \ ] 42.28 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42814444,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================\\u003e
116
- \ ] 42.81 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43355116,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================\\u003e
117
- \ ] 43.36 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43887596,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================\\u003e
118
- \ ] 43.89 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44424172,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================\\u003e
119
- \ ] 44.42 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44952556,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================\\u003e
120
- \ ] 44.95 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45480940,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================\\u003e
121
- \ ] 45.48 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46017516,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================\\u003e
122
- \ ] 46.02 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46545900,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================\\u003e
123
- \ ] 46.55 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47074284,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================\\u003e
124
- \ ] 47.07 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47602668,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================\\u003e
125
- \ ] 47.6 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48135148,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================\\u003e
126
- \ ] 48.14 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48667628,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================\\u003e
127
- \ ] 48.67 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49200108,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================\\u003e
128
- \ ] 49.2 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49728492,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================\\u003e
129
- \ ] 49.73 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50269164,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================\\u003e
130
- \ ] 50.27 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50797548,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================\\u003e
131
- \ ] 50.8 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51330028,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================\\u003e
132
- \ ] 51.33 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51870700,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================\\u003e
133
- \ ] 51.87 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52411372,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================\\u003e
134
- \ ] 52.41 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52952044,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================\\u003e
135
- \ ] 52.95 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53480428,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================\\u003e
136
- \ ] 53.48 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54017004,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================\\u003e
137
- \ ] 54.02 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54557676,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================\\u003e
138
- \ ] 54.56 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55090156,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================\\u003e
139
- \ ] 55.09 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55622636,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================\\u003e
140
- \ ] 55.62 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56159212,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================\\u003e
141
- \ ] 56.16 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56687596,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================\\u003e
142
- \ ] 56.69 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57224172,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================\\u003e
143
- \ ] 57.22 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57752556,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================\\u003e
144
- \ ] 57.75 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58293228,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================\\u003e
145
- \ ] 58.29 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58833900,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================\\u003e
146
- \ ] 58.83 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59374572,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================\\u003e
147
- \ ] 59.37 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59915244,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================\\u003e
148
- \ ] 59.92 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60451820,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================\\u003e
149
- \ ] 60.45 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60980204,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================\\u003e
150
- \ ] 60.98 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61508588,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================================\\u003e
151
- \ ] 61.51 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62041068,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================================\\u003e
152
- \ ] 62.04 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62569452,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================================\\u003e
153
- \ ] 62.57 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63097836,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================================\\u003e
154
- \ ] 63.1 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63638508,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================================\\u003e
155
- \ ] 63.64 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64170988,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================================\\u003e
156
- \ ] 64.17 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64699372,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================================\\u003e
157
- \ ] 64.7 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65240044,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================================\\u003e
158
- \ ] 65.24 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65780716,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================================\\u003e
159
- \ ] 65.78 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66321388,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================================\\u003e
160
- \ ] 66.32 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66862060,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================================\\u003e
161
- \ ] 66.86 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67402732,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================================\\u003e
162
- \ ] 67.4 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67943404,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================================\\u003e
163
- \ ] 67.94 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68475884,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================================\\u003e
164
- \ ] 68.48 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69008364,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================================\\u003e
165
- \ ] 69.01 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69536748,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================================\\u003e
166
- \ ] 69.54 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70073324,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================================\\u003e
167
- \ ] 70.07 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70605804,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================================\\u003e
168
- \ ] 70.61 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71134188,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================================\\u003e
169
- \ ] 71.13 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71674860,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================================\\u003e
170
- \ ] 71.67 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72211436,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================================\\u003e
171
- \ ] 72.21 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72743916,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================================\\u003e
172
- \ ] 72.74 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73280492,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================================\\u003e
173
- \ ] 73.28 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73808876,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================================\\u003e
174
- \ ] 73.81 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74341356,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================================\\u003e
175
- \ ] 74.34 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74873836,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================================\\u003e
176
- \ ] 74.87 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75414508,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================================\\u003e
177
- \ ] 75.41 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75946988,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================================\\u003e
178
- \ ] 75.95 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76479468,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================================\\u003e
179
- \ ] 76.48 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77007852,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================================\\u003e
180
- \ ] 77.01 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77536236,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================================\\u003e
181
- \ ] 77.54 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78064620,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================================\\u003e
182
- \ ] 78.06 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78593004,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================================\\u003e
183
- \ ] 78.59 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79133676,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================================\\u003e
184
- \ ] 79.13 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79666156,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================================\\u003e
185
- \ ] 79.67 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80202732,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================================\\u003e
186
- \ ] 80.2 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80739308,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================================\\u003e
187
- \ ] 80.74 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81275884,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================================\\u003e
188
- \ ] 81.28 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81804268,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================================\\u003e
189
- \ ] 81.8 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82340844,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================================\\u003e
190
- \ ] 82.34 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82869228,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================================\\u003e
191
- \ ] 82.87 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83409900,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================================\\u003e
192
- \ ] 83.41 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83950572,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================================\\u003e
193
- \ ] 83.95 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84491244,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================================\\u003e
194
- \ ] 84.49 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85027820,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================================\\u003e
195
- \ ] 85.03 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85556204,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================================\\u003e
196
- \ ] 85.56 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86084588,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================================\\u003e
197
- \ ] 86.08 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86617068,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================================\\u003e
198
- \ ] 86.62 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87149548,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================================\\u003e
199
- \ ] 87.15 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87686124,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================================\\u003e
200
- \ ] 87.69 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88218604,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================================\\u003e
201
- \ ] 88.22 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88759276,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================================\\u003e
202
- ] 88.76 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89299948,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================================\\u003e
203
- ] 89.3 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89832428,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================================\\u003e
204
- ] 89.83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90081280,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================================================\\u003e]
205
- 90.08 MB/90.08 MB\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":90081280,\"start\":1423704336},\"progress\":\"[\\u003e
206
- \ ] 557.1 kB/90.08 MB 1m59s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":90081280,\"start\":1423704336},\"progress\":\"[\\u003e
207
- \ ] 1.114 MB/90.08 MB 59s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":90081280,\"start\":1423704336},\"progress\":\"[\\u003e
208
- \ ] 1.671 MB/90.08 MB 40s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=\\u003e
209
- \ ] 2.228 MB/90.08 MB 30s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2785280,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=\\u003e
210
- \ ] 2.785 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=\\u003e
211
- \ ] 3.342 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3899392,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==\\u003e
212
- \ ] 3.899 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==\\u003e
213
- \ ] 4.456 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5013504,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==\\u003e
214
- \ ] 5.014 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===\\u003e
215
- \ ] 5.571 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6127616,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===\\u003e
216
- \ ] 6.128 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6684672,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===\\u003e
217
- \ ] 6.685 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7241728,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====\\u003e
218
- \ ] 7.242 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7798784,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====\\u003e
219
- \ ] 7.799 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====\\u003e
220
- \ ] 8.356 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====\\u003e
221
- \ ] 8.913 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9469952,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====\\u003e
222
- \ ] 9.47 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10027008,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====\\u003e
223
- \ ] 10.03 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10584064,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====\\u003e
224
- \ ] 10.58 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11141120,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======\\u003e
225
- \ ] 11.14 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11698176,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======\\u003e
226
- \ ] 11.7 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12255232,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======\\u003e
227
- \ ] 12.26 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12812288,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======\\u003e
228
- \ ] 12.81 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13369344,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======\\u003e
229
- \ ] 13.37 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13926400,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======\\u003e
230
- \ ] 13.93 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14483456,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========\\u003e
231
- \ ] 14.48 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15040512,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========\\u003e
232
- \ ] 15.04 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15597568,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========\\u003e
233
- \ ] 15.6 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16154624,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========\\u003e
234
- \ ] 16.15 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========\\u003e
235
- \ ] 16.71 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17268736,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========\\u003e
236
- \ ] 17.27 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17825792,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========\\u003e
237
- \ ] 17.83 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18382848,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========\\u003e
238
- \ ] 18.38 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18939904,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========\\u003e
239
- \ ] 18.94 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19496960,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========\\u003e
240
- \ ] 19.5 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20054016,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========\\u003e
241
- \ ] 20.05 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20611072,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========\\u003e
242
- \ ] 20.61 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21168128,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========\\u003e
243
- \ ] 21.17 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21725184,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============\\u003e
244
- \ ] 21.73 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============\\u003e
245
- \ ] 22.28 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22839296,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============\\u003e
246
- \ ] 22.84 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23396352,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============\\u003e
247
- \ ] 23.4 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23953408,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============\\u003e
248
- \ ] 23.95 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24510464,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============\\u003e
249
- \ ] 24.51 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25067520,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============\\u003e
250
- \ ] 25.07 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25624576,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============\\u003e
251
- \ ] 25.62 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26181632,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============\\u003e
252
- \ ] 26.18 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26738688,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============\\u003e
253
- \ ] 26.74 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27295744,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============\\u003e
254
- \ ] 27.3 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27852800,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============\\u003e
255
- \ ] 27.85 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28409856,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============\\u003e
256
- \ ] 28.41 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28966912,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================\\u003e
257
- \ ] 28.97 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29523968,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================\\u003e
258
- \ ] 29.52 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30081024,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================\\u003e
259
- \ ] 30.08 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30638080,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================\\u003e
260
- \ ] 30.64 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31195136,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================\\u003e
261
- \ ] 31.2 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31752192,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================\\u003e
262
- \ ] 31.75 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32309248,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================\\u003e
263
- \ ] 32.31 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32866304,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================\\u003e
264
- \ ] 32.87 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33423360,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================\\u003e
265
- \ ] 33.42 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33980416,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================\\u003e
266
- \ ] 33.98 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34537472,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================\\u003e
267
- \ ] 34.54 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35094528,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================\\u003e
268
- \ ] 35.09 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35651584,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================\\u003e
269
- \ ] 35.65 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36208640,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================\\u003e
270
- \ ] 36.21 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36765696,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================\\u003e
271
- \ ] 36.77 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37322752,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================\\u003e
272
- \ ] 37.32 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37879808,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================\\u003e
273
- \ ] 37.88 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38436864,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================\\u003e
274
- \ ] 38.44 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38993920,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================\\u003e
275
- \ ] 38.99 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39550976,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================\\u003e
276
- \ ] 39.55 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40108032,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================\\u003e
277
- \ ] 40.11 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40665088,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================\\u003e
278
- \ ] 40.67 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41222144,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================\\u003e
279
- \ ] 41.22 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41779200,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================\\u003e
280
- \ ] 41.78 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42336256,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================\\u003e
281
- \ ] 42.34 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42893312,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================\\u003e
282
- \ ] 42.89 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":43450368,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================\\u003e
283
- \ ] 43.45 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44007424,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================\\u003e
284
- \ ] 44.01 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44564480,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================\\u003e
285
- \ ] 44.56 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45121536,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================\\u003e
286
- \ ] 45.12 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45678592,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================\\u003e
287
- \ ] 45.68 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46235648,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================\\u003e
288
- \ ] 46.24 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46792704,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================\\u003e
289
- \ ] 46.79 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47349760,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================\\u003e
290
- \ ] 47.35 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47906816,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================\\u003e
291
- \ ] 47.91 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":48463872,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================\\u003e
292
- \ ] 48.46 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49020928,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================\\u003e
293
- \ ] 49.02 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49577984,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================\\u003e
294
- \ ] 49.58 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50135040,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================\\u003e
295
- \ ] 50.14 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50692096,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================\\u003e
296
- \ ] 50.69 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51249152,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================\\u003e
297
- \ ] 51.25 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51806208,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================\\u003e
298
- \ ] 51.81 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52363264,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================\\u003e
299
- \ ] 52.36 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52920320,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================\\u003e
300
- \ ] 52.92 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":53477376,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================\\u003e
301
- \ ] 53.48 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54034432,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================\\u003e
302
- \ ] 54.03 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54591488,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================\\u003e
303
- \ ] 54.59 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55148544,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================\\u003e
304
- \ ] 55.15 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55705600,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================\\u003e
305
- \ ] 55.71 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56262656,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================\\u003e
306
- \ ] 56.26 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56819712,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================\\u003e
307
- \ ] 56.82 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57376768,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================\\u003e
308
- \ ] 57.38 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57933824,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================\\u003e
309
- \ ] 57.93 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":58490880,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================\\u003e
310
- \ ] 58.49 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59047936,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================\\u003e
311
- \ ] 59.05 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59604992,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================\\u003e
312
- \ ] 59.6 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60162048,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================\\u003e
313
- \ ] 60.16 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60719104,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================\\u003e
314
- \ ] 60.72 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61276160,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================================\\u003e
315
- \ ] 61.28 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61833216,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================================\\u003e
316
- \ ] 61.83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62390272,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================================\\u003e
317
- \ ] 62.39 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62947328,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================================\\u003e
318
- \ ] 62.95 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":63504384,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================================\\u003e
319
- \ ] 63.5 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64061440,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================================\\u003e
320
- \ ] 64.06 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64618496,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================================\\u003e
321
- \ ] 64.62 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65175552,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================================\\u003e
322
- \ ] 65.18 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65732608,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================================\\u003e
323
- \ ] 65.73 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66289664,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================================\\u003e
324
- \ ] 66.29 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66846720,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================================\\u003e
325
- \ ] 66.85 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67403776,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================================\\u003e
326
- \ ] 67.4 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67960832,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================================\\u003e
327
- \ ] 67.96 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":68517888,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================================\\u003e
328
- \ ] 68.52 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69074944,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================================\\u003e
329
- \ ] 69.07 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69632000,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================================\\u003e
330
- \ ] 69.63 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70189056,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================================\\u003e
331
- \ ] 70.19 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70746112,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================================\\u003e
332
- \ ] 70.75 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71303168,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================================\\u003e
333
- \ ] 71.3 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71860224,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================================\\u003e
334
- \ ] 71.86 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72417280,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================================\\u003e
335
- \ ] 72.42 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72974336,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================================\\u003e
336
- \ ] 72.97 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":73531392,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================================\\u003e
337
- \ ] 73.53 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74088448,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================================\\u003e
338
- \ ] 74.09 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74645504,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================================\\u003e
339
- \ ] 74.65 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75202560,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================================\\u003e
340
- \ ] 75.2 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75759616,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================================\\u003e
341
- \ ] 75.76 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76316672,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================================\\u003e
342
- \ ] 76.32 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76873728,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================================\\u003e
343
- \ ] 76.87 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77430784,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================================\\u003e
344
- \ ] 77.43 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77987840,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================================\\u003e
345
- \ ] 77.99 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":78544896,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================================\\u003e
346
- \ ] 78.54 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79101952,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================================\\u003e
347
- \ ] 79.1 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79659008,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================================\\u003e
348
- \ ] 79.66 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80216064,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================================\\u003e
349
- \ ] 80.22 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80773120,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================================\\u003e
350
- \ ] 80.77 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81330176,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================================\\u003e
351
- \ ] 81.33 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81887232,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================================\\u003e
352
- \ ] 81.89 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":82444288,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================================\\u003e
353
- \ ] 82.44 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83001344,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================================\\u003e
354
- \ ] 83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83558400,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================================\\u003e
355
- \ ] 83.56 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84115456,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================================\\u003e
356
- \ ] 84.12 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84672512,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================================\\u003e
357
- \ ] 84.67 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85229568,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================================\\u003e
358
- \ ] 85.23 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85786624,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================================\\u003e
359
- \ ] 85.79 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86343680,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================================\\u003e
360
- \ ] 86.34 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86900736,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================================\\u003e
361
- \ ] 86.9 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":87457792,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================================\\u003e
362
- \ ] 87.46 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88014848,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================================\\u003e
363
- \ ] 88.01 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88571904,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================================\\u003e
364
- ] 88.57 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89128960,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================================\\u003e
365
- ] 89.13 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89686016,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================================\\u003e
366
- ] 89.69 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704340},\"progress\":\"[==================================================\\u003e]
367
- 1.024 kB/1.024 kB\",\"id\":\"c90d655b99b2\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
368
- Downloaded newer image for debian:wheezy\"}\r\n{\"stream\":\" ---\\u003e c90d655b99b2\\n\"}\r\n{\"stream\":\"Step
369
- 1 : ADD . /\\n\"}\r\n{\"stream\":\" ---\\u003e 6f2142780c43\\n\"}\r\n{\"stream\":\"Removing
370
- intermediate container 687769b6f79d\\n\"}\r\n{\"stream\":\"Successfully built
371
- 6f2142780c43\\n\"}\r\n"
372
- http_version:
373
- recorded_at: Thu, 12 Feb 2015 01:25:43 GMT
374
- - request:
375
- method: post
376
- uri: <DOCKER_HOST>/v1.16/containers/create
377
- body:
378
- encoding: UTF-8
379
- string: ! '{"Image":"6f2142780c43","Cmd":["cat","/Dockerfile"]}'
380
- headers:
381
- User-Agent:
382
- - Swipely/Docker-API 1.18.0
383
- Content-Type:
384
- - application/json
385
- response:
386
- status:
387
- code: 201
388
- message:
389
- headers:
390
- Content-Type:
391
- - application/json
392
- Date:
393
- - Thu, 12 Feb 2015 01:25:44 GMT
394
- Content-Length:
395
- - '90'
396
- body:
397
- encoding: US-ASCII
398
- string: ! '{"Id":"4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b","Warnings":null}
399
-
400
- '
401
- http_version:
402
- recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
403
- - request:
404
- method: post
405
- uri: <DOCKER_HOST>/v1.16/containers/4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b/start
406
- body:
407
- encoding: UTF-8
408
- string: ! '{}'
409
- headers:
410
- User-Agent:
411
- - Swipely/Docker-API 1.18.0
412
- Content-Type:
413
- - application/json
414
- response:
415
- status:
416
- code: 204
417
- message:
418
- headers:
419
- Date:
420
- - Thu, 12 Feb 2015 01:25:44 GMT
421
- body:
422
- encoding: US-ASCII
423
- string: ''
424
- http_version:
425
- recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
426
- - request:
427
- method: get
428
- uri: <DOCKER_HOST>/v1.16/containers/4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b/logs?stdout=true
429
- body:
430
- encoding: US-ASCII
431
- string: ''
432
- headers:
433
- User-Agent:
434
- - Swipely/Docker-API 1.18.0
435
- Content-Type:
436
- - text/plain
437
- response:
438
- status:
439
- code: 200
440
- message:
441
- headers:
442
- Date:
443
- - Thu, 12 Feb 2015 01:25:44 GMT
444
- Content-Type:
445
- - application/octet-stream
446
- body:
447
- encoding: US-ASCII
448
- string: !binary |-
449
- AQAAAAAAABNGUk9NIGRlYmlhbjp3aGVlenkKAQAAAAAAAAhBREQgLiAvCg==
450
- http_version:
451
- recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
452
- - request:
453
- method: get
454
- uri: <DOCKER_HOST>/v1.16/images/json?all=true
455
- body:
456
- encoding: US-ASCII
457
- string: ''
458
- headers:
459
- User-Agent:
460
- - Swipely/Docker-API 1.18.0
461
- Content-Type:
462
- - text/plain
463
- response:
464
- status:
465
- code: 200
466
- message:
467
- headers:
468
- Content-Type:
469
- - application/json
470
- Date:
471
- - Thu, 12 Feb 2015 01:25:44 GMT
472
- Content-Length:
473
- - '928'
474
- body:
475
- encoding: US-ASCII
476
- string: ! '[{"Created":1423704342,"Id":"6f2142780c43bf7b5df2c309d2c0a293736d813ae9472da5eeffdee10bd25858","ParentId":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","RepoTags":["<USERNAME>/debian:from_dir"],"Size":27,"VirtualSize":85120800}
477
-
478
- ,{"Created":1422379591,"Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","ParentId":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85120773}
479
-
480
- ,{"Created":1422379584,"Id":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":85120773,"VirtualSize":85120773}
481
-
482
- ,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
483
-
484
- ]'
485
- http_version:
486
- recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
487
- - request:
488
- method: get
489
- uri: <DOCKER_HOST>/v1.16/images/6f2142780c43/json
490
- body:
491
- encoding: US-ASCII
492
- string: ''
493
- headers:
494
- User-Agent:
495
- - Swipely/Docker-API 1.18.0
496
- Content-Type:
497
- - text/plain
498
- response:
499
- status:
500
- code: 200
501
- message:
502
- headers:
503
- Content-Type:
504
- - application/json
505
- Date:
506
- - Thu, 12 Feb 2015 01:25:44 GMT
507
- Content-Length:
508
- - '1655'
509
- body:
510
- encoding: US-ASCII
511
- string: ! '{"Architecture":"amd64","Author":"","Checksum":"tarsum.dev+sha256:8b0dedde858684b002e77085ed16f9da8c3150af3322e12066e1567889925003","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/bash"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"dc534047acbb","Image":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"687769b6f79d528deccb8e32f67ea83eb32df4f1382960553d1c46f5057dc7ea","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop)
512
- ADD dir:8a2fc36550254133492fa2224d204c55392f0c48c71b0f0dba20d71f741d89a3 in
513
- /"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"dc534047acbb","Image":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-02-12T01:25:42.263197717Z","DockerVersion":"1.4.1","Id":"6f2142780c43bf7b5df2c309d2c0a293736d813ae9472da5eeffdee10bd25858","Os":"linux","Parent":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","Size":27,"VirtualSize":85120800}
514
-
515
- '
516
- http_version:
517
- recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
518
- - request:
519
- method: post
520
- uri: <DOCKER_HOST>/v1.16/containers/4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b/wait
521
- body:
522
- encoding: US-ASCII
523
- string: ''
524
- headers:
525
- User-Agent:
526
- - Swipely/Docker-API 1.18.0
527
- Content-Type:
528
- - text/plain
529
- response:
530
- status:
531
- code: 200
532
- message:
533
- headers:
534
- Content-Type:
535
- - application/json
536
- Date:
537
- - Thu, 12 Feb 2015 01:25:44 GMT
538
- Content-Length:
539
- - '17'
540
- body:
541
- encoding: US-ASCII
542
- string: ! '{"StatusCode":0}
543
-
544
- '
545
- http_version:
546
- recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
547
- - request:
548
- method: delete
549
- uri: <DOCKER_HOST>/v1.16/containers/4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b
550
- body:
551
- encoding: US-ASCII
552
- string: ''
553
- headers:
554
- User-Agent:
555
- - Swipely/Docker-API 1.18.0
556
- Content-Type:
557
- - text/plain
558
- response:
559
- status:
560
- code: 204
561
- message:
562
- headers:
563
- Date:
564
- - Thu, 12 Feb 2015 01:25:45 GMT
565
- body:
566
- encoding: US-ASCII
567
- string: ''
568
- http_version:
569
- recorded_at: Thu, 12 Feb 2015 01:25:45 GMT
570
- - request:
571
- method: delete
572
- uri: <DOCKER_HOST>/v1.16/images/6f2142780c43?noprune=true
573
- body:
574
- encoding: US-ASCII
575
- string: ''
576
- headers:
577
- User-Agent:
578
- - Swipely/Docker-API 1.18.0
579
- Content-Type:
580
- - text/plain
581
- response:
582
- status:
583
- code: 200
584
- message:
585
- headers:
586
- Content-Type:
587
- - application/json
588
- Date:
589
- - Thu, 12 Feb 2015 01:25:45 GMT
590
- Content-Length:
591
- - '121'
592
- body:
593
- encoding: US-ASCII
594
- string: ! '[{"Untagged":"<USERNAME>/debian:from_dir"}
595
-
596
- ,{"Deleted":"6f2142780c43bf7b5df2c309d2c0a293736d813ae9472da5eeffdee10bd25858"}
597
-
598
- ]'
599
- http_version:
600
- recorded_at: Thu, 12 Feb 2015 01:25:45 GMT
601
- recorded_with: VCR 2.9.2