docker-api 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -7
- data/lib/docker/exec.rb +8 -2
- data/lib/docker/util.rb +11 -1
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +6 -5
- data/spec/docker/exec_spec.rb +29 -61
- data/spec/docker/image_spec.rb +8 -4
- data/spec/docker_spec.rb +4 -3
- data/spec/fixtures/build_from_dir/Dockerfile +1 -1
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +10 -9
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +15 -9
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +15 -9
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +10 -9
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +45 -34
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +45 -42
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +66 -35
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +37 -35
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +45 -43
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +44 -42
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +24 -22
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +15 -14
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +24 -22
- data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +68 -39
- data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +183 -0
- data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +26 -25
- data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +68 -38
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +85 -92
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +24 -22
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +24 -22
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +48 -43
- data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +83 -69
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +73 -65
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +29 -27
- 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 +114 -102
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +42 -37
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +49 -44
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +54 -51
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +29 -27
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +29 -27
- data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +35 -33
- data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +207 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +180 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +67 -38
- data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +67 -38
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +67 -87
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +9 -9
- 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 +92 -107
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +9 -9
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +11 -9
- 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 +89 -38
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +89 -38
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +421 -51
- 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 +422 -140
- 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 +16 -16
- data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +9 -7
- data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +11 -9
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +11 -9
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +21 -18
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +164 -35
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +21 -23
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +15 -15
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +887 -840
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +76 -65
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +56 -48
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +63 -61
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +9 -9
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +69 -66
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +19 -17
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +99 -113
- data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +100 -391
- 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 +174 -708
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +115 -110
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +77 -93
- data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +19 -17
- data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +581 -229
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +52 -50
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +42 -40
- 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 +52 -50
- 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 +16 -15
- data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +42 -39
- data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +51 -63
- data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +51 -63
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +48 -209
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +22 -22
- metadata +8 -8
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +0 -153
- data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +0 -155
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +0 -151
@@ -2,19 +2,19 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/build
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- application/tar
|
14
14
|
Transfer-Encoding:
|
15
15
|
- chunked
|
16
16
|
X-Registry-Config:
|
17
|
-
-
|
17
|
+
- eyJjb25maWdzIjp7IiI6eyJ1c2VybmFtZSI6IiIsInBhc3N3b3JkIjoiIiwiZW1haWwiOiIifX19
|
18
18
|
response:
|
19
19
|
status:
|
20
20
|
code: 200
|
@@ -23,24 +23,24 @@ http_interactions:
|
|
23
23
|
Content-Type:
|
24
24
|
- application/json
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Thu, 12 Feb 2015 01:21:36 GMT
|
27
27
|
body:
|
28
|
-
encoding:
|
29
|
-
string: "{\"stream\":\"Step 0 : FROM debian:wheezy\\n\"}\r\n{\"stream\":\"
|
30
|
-
|
31
|
-
---\\u003e
|
32
|
-
|
28
|
+
encoding: US-ASCII
|
29
|
+
string: ! "{\"stream\":\"Step 0 : FROM debian:wheezy\\n\"}\r\n{\"stream\":\"
|
30
|
+
---\\u003e c90d655b99b2\\n\"}\r\n{\"stream\":\"Step 1 : ADD . /\\n\"}\r\n{\"stream\":\"
|
31
|
+
---\\u003e de29675a00de\\n\"}\r\n{\"stream\":\"Removing intermediate container
|
32
|
+
96e702939862\\n\"}\r\n{\"stream\":\"Successfully built de29675a00de\\n\"}\r\n"
|
33
33
|
http_version:
|
34
|
-
recorded_at:
|
34
|
+
recorded_at: Thu, 12 Feb 2015 01:21:39 GMT
|
35
35
|
- request:
|
36
36
|
method: post
|
37
|
-
uri:
|
37
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
38
38
|
body:
|
39
39
|
encoding: UTF-8
|
40
|
-
string: '{"Image":"
|
40
|
+
string: ! '{"Image":"de29675a00de","Cmd":["cat","/Dockerfile"]}'
|
41
41
|
headers:
|
42
42
|
User-Agent:
|
43
|
-
- Swipely/Docker-API 1.
|
43
|
+
- Swipely/Docker-API 1.18.0
|
44
44
|
Content-Type:
|
45
45
|
- application/json
|
46
46
|
response:
|
@@ -51,24 +51,74 @@ http_interactions:
|
|
51
51
|
Content-Type:
|
52
52
|
- application/json
|
53
53
|
Date:
|
54
|
-
-
|
54
|
+
- Thu, 12 Feb 2015 01:21:39 GMT
|
55
55
|
Content-Length:
|
56
56
|
- '90'
|
57
|
+
body:
|
58
|
+
encoding: US-ASCII
|
59
|
+
string: ! '{"Id":"0ef35ef7d0ce0d1c9503131af0a3675bcb50766645f321af28d7c2b8c473834a","Warnings":null}
|
60
|
+
|
61
|
+
'
|
62
|
+
http_version:
|
63
|
+
recorded_at: Thu, 12 Feb 2015 01:21:39 GMT
|
64
|
+
- request:
|
65
|
+
method: post
|
66
|
+
uri: <DOCKER_HOST>/v1.16/containers/0ef35ef7d0ce0d1c9503131af0a3675bcb50766645f321af28d7c2b8c473834a/start
|
57
67
|
body:
|
58
68
|
encoding: UTF-8
|
59
|
-
string:
|
60
|
-
|
69
|
+
string: ! '{}'
|
70
|
+
headers:
|
71
|
+
User-Agent:
|
72
|
+
- Swipely/Docker-API 1.18.0
|
73
|
+
Content-Type:
|
74
|
+
- application/json
|
75
|
+
response:
|
76
|
+
status:
|
77
|
+
code: 204
|
78
|
+
message:
|
79
|
+
headers:
|
80
|
+
Date:
|
81
|
+
- Thu, 12 Feb 2015 01:21:39 GMT
|
82
|
+
body:
|
83
|
+
encoding: US-ASCII
|
84
|
+
string: ''
|
85
|
+
http_version:
|
86
|
+
recorded_at: Thu, 12 Feb 2015 01:21:39 GMT
|
87
|
+
- request:
|
88
|
+
method: get
|
89
|
+
uri: <DOCKER_HOST>/v1.16/containers/0ef35ef7d0ce0d1c9503131af0a3675bcb50766645f321af28d7c2b8c473834a/logs?stdout=true
|
90
|
+
body:
|
91
|
+
encoding: US-ASCII
|
92
|
+
string: ''
|
93
|
+
headers:
|
94
|
+
User-Agent:
|
95
|
+
- Swipely/Docker-API 1.18.0
|
96
|
+
Content-Type:
|
97
|
+
- text/plain
|
98
|
+
response:
|
99
|
+
status:
|
100
|
+
code: 200
|
101
|
+
message:
|
102
|
+
headers:
|
103
|
+
Date:
|
104
|
+
- Thu, 12 Feb 2015 01:21:39 GMT
|
105
|
+
Content-Type:
|
106
|
+
- application/octet-stream
|
107
|
+
body:
|
108
|
+
encoding: US-ASCII
|
109
|
+
string: !binary |-
|
110
|
+
AQAAAAAAABNGUk9NIGRlYmlhbjp3aGVlenkKAQAAAAAAAAhBREQgLiAvCg==
|
61
111
|
http_version:
|
62
|
-
recorded_at:
|
112
|
+
recorded_at: Thu, 12 Feb 2015 01:21:39 GMT
|
63
113
|
- request:
|
64
114
|
method: post
|
65
|
-
uri:
|
115
|
+
uri: <DOCKER_HOST>/v1.16/containers/0ef35ef7d0ce0d1c9503131af0a3675bcb50766645f321af28d7c2b8c473834a/wait
|
66
116
|
body:
|
67
117
|
encoding: US-ASCII
|
68
118
|
string: ''
|
69
119
|
headers:
|
70
120
|
User-Agent:
|
71
|
-
- Swipely/Docker-API 1.
|
121
|
+
- Swipely/Docker-API 1.18.0
|
72
122
|
Content-Type:
|
73
123
|
- text/plain
|
74
124
|
response:
|
@@ -79,24 +129,25 @@ http_interactions:
|
|
79
129
|
Content-Type:
|
80
130
|
- application/json
|
81
131
|
Date:
|
82
|
-
-
|
132
|
+
- Thu, 12 Feb 2015 01:21:39 GMT
|
83
133
|
Content-Length:
|
84
134
|
- '17'
|
85
135
|
body:
|
86
|
-
encoding:
|
87
|
-
string:
|
88
|
-
|
136
|
+
encoding: US-ASCII
|
137
|
+
string: ! '{"StatusCode":0}
|
138
|
+
|
139
|
+
'
|
89
140
|
http_version:
|
90
|
-
recorded_at:
|
141
|
+
recorded_at: Thu, 12 Feb 2015 01:21:39 GMT
|
91
142
|
- request:
|
92
143
|
method: delete
|
93
|
-
uri:
|
144
|
+
uri: <DOCKER_HOST>/v1.16/containers/0ef35ef7d0ce0d1c9503131af0a3675bcb50766645f321af28d7c2b8c473834a
|
94
145
|
body:
|
95
146
|
encoding: US-ASCII
|
96
147
|
string: ''
|
97
148
|
headers:
|
98
149
|
User-Agent:
|
99
|
-
- Swipely/Docker-API 1.
|
150
|
+
- Swipely/Docker-API 1.18.0
|
100
151
|
Content-Type:
|
101
152
|
- text/plain
|
102
153
|
response:
|
@@ -105,21 +156,21 @@ http_interactions:
|
|
105
156
|
message:
|
106
157
|
headers:
|
107
158
|
Date:
|
108
|
-
-
|
159
|
+
- Thu, 12 Feb 2015 01:21:40 GMT
|
109
160
|
body:
|
110
|
-
encoding:
|
161
|
+
encoding: US-ASCII
|
111
162
|
string: ''
|
112
163
|
http_version:
|
113
|
-
recorded_at:
|
164
|
+
recorded_at: Thu, 12 Feb 2015 01:21:40 GMT
|
114
165
|
- request:
|
115
166
|
method: delete
|
116
|
-
uri:
|
167
|
+
uri: <DOCKER_HOST>/v1.16/images/de29675a00de?noprune=true
|
117
168
|
body:
|
118
169
|
encoding: US-ASCII
|
119
170
|
string: ''
|
120
171
|
headers:
|
121
172
|
User-Agent:
|
122
|
-
- Swipely/Docker-API 1.
|
173
|
+
- Swipely/Docker-API 1.18.0
|
123
174
|
Content-Type:
|
124
175
|
- text/plain
|
125
176
|
response:
|
@@ -130,14 +181,14 @@ http_interactions:
|
|
130
181
|
Content-Type:
|
131
182
|
- application/json
|
132
183
|
Date:
|
133
|
-
-
|
184
|
+
- Thu, 12 Feb 2015 01:21:41 GMT
|
134
185
|
Content-Length:
|
135
186
|
- '81'
|
136
187
|
body:
|
137
|
-
encoding:
|
138
|
-
string:
|
139
|
-
|
140
|
-
]
|
188
|
+
encoding: US-ASCII
|
189
|
+
string: ! '[{"Deleted":"de29675a00deec4b9a1ed27f6a2c459dd3006f684fa3476c0967031b9491ce90"}
|
190
|
+
|
191
|
+
]'
|
141
192
|
http_version:
|
142
|
-
recorded_at:
|
143
|
-
recorded_with: VCR 2.9.
|
193
|
+
recorded_at: Thu, 12 Feb 2015 01:21:41 GMT
|
194
|
+
recorded_with: VCR 2.9.2
|
@@ -2,19 +2,19 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/build
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- application/tar
|
14
14
|
Transfer-Encoding:
|
15
15
|
- chunked
|
16
16
|
X-Registry-Config:
|
17
|
-
-
|
17
|
+
- eyJjb25maWdzIjp7IiI6eyJ1c2VybmFtZSI6IiIsInBhc3N3b3JkIjoiIiwiZW1haWwiOiIifX19
|
18
18
|
response:
|
19
19
|
status:
|
20
20
|
code: 200
|
@@ -23,24 +23,363 @@ http_interactions:
|
|
23
23
|
Content-Type:
|
24
24
|
- application/json
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Thu, 12 Feb 2015 01:23:34 GMT
|
27
27
|
body:
|
28
|
-
encoding:
|
29
|
-
string: "{\"stream\":\"Step 0 : FROM debian:wheezy\\n\"}\r\n{\"
|
30
|
-
|
31
|
-
|
32
|
-
|
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\":1423704215},\"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\":1423704215},\"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\":1423704215},\"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\":1423704215},\"progress\":\"[\\u003e
|
37
|
+
\ ] 539.6 kB/90.08 MB 1m44s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1080300,\"total\":90081280,\"start\":1423704215},\"progress\":\"[\\u003e
|
38
|
+
\ ] 1.08 MB/90.08 MB 1m9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1616876,\"total\":90081280,\"start\":1423704215},\"progress\":\"[\\u003e
|
39
|
+
\ ] 1.617 MB/90.08 MB 53s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2145260,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=\\u003e
|
40
|
+
\ ] 2.145 MB/90.08 MB 44s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2685932,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=\\u003e
|
41
|
+
\ ] 2.686 MB/90.08 MB 38s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3222508,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=\\u003e
|
42
|
+
\ ] 3.223 MB/90.08 MB 34s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3763180,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==\\u003e
|
43
|
+
\ ] 3.763 MB/90.08 MB 31s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4291564,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==\\u003e
|
44
|
+
\ ] 4.292 MB/90.08 MB 29s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4824044,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==\\u003e
|
45
|
+
\ ] 4.824 MB/90.08 MB 26s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5352428,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==\\u003e
|
46
|
+
\ ] 5.352 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5884908,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===\\u003e
|
47
|
+
\ ] 5.885 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6421484,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===\\u003e
|
48
|
+
\ ] 6.421 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6962156,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===\\u003e
|
49
|
+
\ ] 6.962 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7502828,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====\\u003e
|
50
|
+
\ ] 7.503 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8043500,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====\\u003e
|
51
|
+
\ ] 8.043 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8571884,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====\\u003e
|
52
|
+
\ ] 8.572 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9100268,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====\\u003e
|
53
|
+
\ ] 9.1 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9632748,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====\\u003e
|
54
|
+
\ ] 9.633 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10173420,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====\\u003e
|
55
|
+
\ ] 10.17 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10709996,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====\\u003e
|
56
|
+
\ ] 10.71 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11238380,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======\\u003e
|
57
|
+
\ ] 11.24 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11770860,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======\\u003e
|
58
|
+
\ ] 11.77 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12299244,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======\\u003e
|
59
|
+
\ ] 12.3 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12827628,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======\\u003e
|
60
|
+
\ ] 12.83 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13368300,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======\\u003e
|
61
|
+
\ ] 13.37 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13896684,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======\\u003e
|
62
|
+
\ ] 13.9 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14425068,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========\\u003e
|
63
|
+
\ ] 14.43 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14961644,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========\\u003e
|
64
|
+
\ ] 14.96 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15490028,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========\\u003e
|
65
|
+
\ ] 15.49 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16022508,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========\\u003e
|
66
|
+
\ ] 16.02 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16550892,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========\\u003e
|
67
|
+
\ ] 16.55 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17083372,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========\\u003e
|
68
|
+
\ ] 17.08 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17619948,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========\\u003e
|
69
|
+
\ ] 17.62 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18152428,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========\\u003e
|
70
|
+
\ ] 18.15 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18693100,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========\\u003e
|
71
|
+
\ ] 18.69 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19233772,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========\\u003e
|
72
|
+
\ ] 19.23 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19766252,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========\\u003e
|
73
|
+
\ ] 19.77 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20302828,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========\\u003e
|
74
|
+
\ ] 20.3 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20835308,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========\\u003e
|
75
|
+
\ ] 20.84 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21375980,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========\\u003e
|
76
|
+
\ ] 21.38 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21908460,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============\\u003e
|
77
|
+
\ ] 21.91 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22440940,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============\\u003e
|
78
|
+
\ ] 22.44 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22977516,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============\\u003e
|
79
|
+
\ ] 22.98 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23514092,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============\\u003e
|
80
|
+
\ ] 23.51 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24050668,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============\\u003e
|
81
|
+
\ ] 24.05 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24583148,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============\\u003e
|
82
|
+
\ ] 24.58 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25115628,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============\\u003e
|
83
|
+
\ ] 25.12 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25644012,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============\\u003e
|
84
|
+
\ ] 25.64 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26180588,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============\\u003e
|
85
|
+
\ ] 26.18 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26713068,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============\\u003e
|
86
|
+
\ ] 26.71 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27245548,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============\\u003e
|
87
|
+
\ ] 27.25 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27782124,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============\\u003e
|
88
|
+
\ ] 27.78 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28310508,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============\\u003e
|
89
|
+
\ ] 28.31 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28851180,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================\\u003e
|
90
|
+
\ ] 28.85 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29391852,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================\\u003e
|
91
|
+
\ ] 29.39 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29920236,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================\\u003e
|
92
|
+
\ ] 29.92 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30448620,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================\\u003e
|
93
|
+
\ ] 30.45 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30981100,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================\\u003e
|
94
|
+
\ ] 30.98 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31517676,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================\\u003e
|
95
|
+
\ ] 31.52 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32046060,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================\\u003e
|
96
|
+
\ ] 32.05 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32574444,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================\\u003e
|
97
|
+
\ ] 32.57 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33106924,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================\\u003e
|
98
|
+
\ ] 33.11 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33639404,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================\\u003e
|
99
|
+
\ ] 33.64 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34167788,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================\\u003e
|
100
|
+
\ ] 34.17 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34700268,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================\\u003e
|
101
|
+
\ ] 34.7 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35240940,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================\\u003e
|
102
|
+
\ ] 35.24 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35773420,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================\\u003e
|
103
|
+
\ ] 35.77 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36305900,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================\\u003e
|
104
|
+
\ ] 36.31 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36846572,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================\\u003e
|
105
|
+
\ ] 36.85 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37379052,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================\\u003e
|
106
|
+
\ ] 37.38 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37911532,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================\\u003e
|
107
|
+
\ ] 37.91 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38448108,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================\\u003e
|
108
|
+
\ ] 38.45 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38984684,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================\\u003e
|
109
|
+
\ ] 38.98 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39513068,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================\\u003e
|
110
|
+
\ ] 39.51 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40041452,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================\\u003e
|
111
|
+
\ ] 40.04 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40569836,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================\\u003e
|
112
|
+
\ ] 40.57 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41106412,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================\\u003e
|
113
|
+
\ ] 41.11 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41634796,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================\\u003e
|
114
|
+
\ ] 41.63 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42167276,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================\\u003e
|
115
|
+
\ ] 42.17 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42699756,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================\\u003e
|
116
|
+
\ ] 42.7 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43232236,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================\\u003e
|
117
|
+
\ ] 43.23 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43764716,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================\\u003e
|
118
|
+
\ ] 43.76 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44293100,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================\\u003e
|
119
|
+
\ ] 44.29 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44825580,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================\\u003e
|
120
|
+
\ ] 44.83 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45366252,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================\\u003e
|
121
|
+
\ ] 45.37 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45902828,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================\\u003e
|
122
|
+
\ ] 45.9 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46439404,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================\\u003e
|
123
|
+
\ ] 46.44 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46971884,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================\\u003e
|
124
|
+
\ ] 46.97 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47508460,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================\\u003e
|
125
|
+
\ ] 47.51 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48045036,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================\\u003e
|
126
|
+
\ ] 48.05 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48581612,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================\\u003e
|
127
|
+
\ ] 48.58 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49118188,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================\\u003e
|
128
|
+
\ ] 49.12 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49658860,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================\\u003e
|
129
|
+
\ ] 49.66 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50191340,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================\\u003e
|
130
|
+
\ ] 50.19 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50723820,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================\\u003e
|
131
|
+
\ ] 50.72 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51264492,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================\\u003e
|
132
|
+
\ ] 51.26 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51805164,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================\\u003e
|
133
|
+
\ ] 51.81 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52345836,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================\\u003e
|
134
|
+
\ ] 52.35 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52886508,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================\\u003e
|
135
|
+
\ ] 52.89 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53423084,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================\\u003e
|
136
|
+
\ ] 53.42 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53951468,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================\\u003e
|
137
|
+
\ ] 53.95 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54492140,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================\\u003e
|
138
|
+
\ ] 54.49 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55028716,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================\\u003e
|
139
|
+
\ ] 55.03 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55561196,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================\\u003e
|
140
|
+
\ ] 55.56 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56089580,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================\\u003e
|
141
|
+
\ ] 56.09 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56622060,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================\\u003e
|
142
|
+
\ ] 56.62 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57150444,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================\\u003e
|
143
|
+
\ ] 57.15 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57687020,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================\\u003e
|
144
|
+
\ ] 57.69 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58227692,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================\\u003e
|
145
|
+
\ ] 58.23 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58768364,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================\\u003e
|
146
|
+
\ ] 58.77 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59304940,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================\\u003e
|
147
|
+
\ ] 59.3 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59833324,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================\\u003e
|
148
|
+
\ ] 59.83 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60361708,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================\\u003e
|
149
|
+
\ ] 60.36 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60898284,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================\\u003e
|
150
|
+
\ ] 60.9 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61426668,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================================\\u003e
|
151
|
+
\ ] 61.43 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61963244,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================================\\u003e
|
152
|
+
\ ] 61.96 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62495724,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================================\\u003e
|
153
|
+
\ ] 62.5 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63032300,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================================\\u003e
|
154
|
+
\ ] 63.03 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63560684,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================================\\u003e
|
155
|
+
\ ] 63.56 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64089068,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================================\\u003e
|
156
|
+
\ ] 64.09 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64617452,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================================\\u003e
|
157
|
+
\ ] 64.62 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65158124,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================================\\u003e
|
158
|
+
\ ] 65.16 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65690604,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================================\\u003e
|
159
|
+
\ ] 65.69 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66218988,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================================\\u003e
|
160
|
+
\ ] 66.22 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66747372,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================================\\u003e
|
161
|
+
\ ] 66.75 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67275756,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================================\\u003e
|
162
|
+
\ ] 67.28 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67808236,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================================\\u003e
|
163
|
+
\ ] 67.81 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68340716,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================================\\u003e
|
164
|
+
\ ] 68.34 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68869100,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================================\\u003e
|
165
|
+
\ ] 68.87 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69401580,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================================\\u003e
|
166
|
+
\ ] 69.4 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69942252,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================================\\u003e
|
167
|
+
\ ] 69.94 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70470636,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================================\\u003e
|
168
|
+
\ ] 70.47 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71007212,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================================\\u003e
|
169
|
+
\ ] 71.01 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71535596,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================================\\u003e
|
170
|
+
\ ] 71.54 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72076268,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================================\\u003e
|
171
|
+
\ ] 72.08 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72612844,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================================\\u003e
|
172
|
+
\ ] 72.61 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73141228,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================================\\u003e
|
173
|
+
\ ] 73.14 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73673708,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================================\\u003e
|
174
|
+
\ ] 73.67 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74202092,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================================\\u003e
|
175
|
+
\ ] 74.2 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74742764,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================================\\u003e
|
176
|
+
\ ] 74.74 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75275244,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================================\\u003e
|
177
|
+
\ ] 75.28 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75803628,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================================\\u003e
|
178
|
+
\ ] 75.8 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76332012,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================================\\u003e
|
179
|
+
\ ] 76.33 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76872684,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================================\\u003e
|
180
|
+
\ ] 76.87 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77413356,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================================\\u003e
|
181
|
+
\ ] 77.41 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77941740,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================================\\u003e
|
182
|
+
\ ] 77.94 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78470124,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================================\\u003e
|
183
|
+
\ ] 78.47 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79010796,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================================\\u003e
|
184
|
+
\ ] 79.01 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79543276,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================================\\u003e
|
185
|
+
\ ] 79.54 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80075756,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================================\\u003e
|
186
|
+
\ ] 80.08 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80616428,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================================\\u003e
|
187
|
+
\ ] 80.62 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81148908,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================================\\u003e
|
188
|
+
\ ] 81.15 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81689580,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================================\\u003e
|
189
|
+
\ ] 81.69 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82222060,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================================\\u003e
|
190
|
+
\ ] 82.22 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82758636,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================================\\u003e
|
191
|
+
\ ] 82.76 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83295212,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================================\\u003e
|
192
|
+
\ ] 83.3 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83835884,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================================\\u003e
|
193
|
+
\ ] 83.84 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84364268,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================================\\u003e
|
194
|
+
\ ] 84.36 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84896748,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================================\\u003e
|
195
|
+
\ ] 84.9 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85437420,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================================\\u003e
|
196
|
+
\ ] 85.44 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85965804,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================================\\u003e
|
197
|
+
\ ] 85.97 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86502380,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================================\\u003e
|
198
|
+
\ ] 86.5 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87030764,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================================\\u003e
|
199
|
+
\ ] 87.03 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87559148,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================================\\u003e
|
200
|
+
\ ] 87.56 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88095724,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================================\\u003e
|
201
|
+
\ ] 88.1 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88624108,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================================\\u003e
|
202
|
+
] 88.62 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89156588,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================================\\u003e
|
203
|
+
] 89.16 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89693164,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================================\\u003e
|
204
|
+
] 89.69 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90081280,\"total\":90081280,\"start\":1423704215},\"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\":1423704243},\"progress\":\"[\\u003e
|
206
|
+
\ ] 557.1 kB/90.08 MB 2m40s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":90081280,\"start\":1423704243},\"progress\":\"[\\u003e
|
207
|
+
\ ] 1.114 MB/90.08 MB 1m19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":90081280,\"start\":1423704243},\"progress\":\"[\\u003e
|
208
|
+
\ ] 1.671 MB/90.08 MB 53s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=\\u003e
|
209
|
+
\ ] 2.228 MB/90.08 MB 39s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2785280,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=\\u003e
|
210
|
+
\ ] 2.785 MB/90.08 MB 31s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=\\u003e
|
211
|
+
\ ] 3.342 MB/90.08 MB 26s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3899392,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==\\u003e
|
212
|
+
\ ] 3.899 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==\\u003e
|
213
|
+
\ ] 4.456 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5013504,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==\\u003e
|
214
|
+
\ ] 5.014 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===\\u003e
|
215
|
+
\ ] 5.571 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6127616,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===\\u003e
|
216
|
+
\ ] 6.128 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6684672,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===\\u003e
|
217
|
+
\ ] 6.685 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7241728,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====\\u003e
|
218
|
+
\ ] 7.242 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7798784,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====\\u003e
|
219
|
+
\ ] 7.799 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====\\u003e
|
220
|
+
\ ] 8.356 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====\\u003e
|
221
|
+
\ ] 8.913 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9469952,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====\\u003e
|
222
|
+
\ ] 9.47 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10027008,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====\\u003e
|
223
|
+
\ ] 10.03 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10584064,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====\\u003e
|
224
|
+
\ ] 10.58 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11141120,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======\\u003e
|
225
|
+
\ ] 11.14 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11698176,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======\\u003e
|
226
|
+
\ ] 11.7 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12255232,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======\\u003e
|
227
|
+
\ ] 12.26 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12812288,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======\\u003e
|
228
|
+
\ ] 12.81 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13369344,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======\\u003e
|
229
|
+
\ ] 13.37 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13926400,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======\\u003e
|
230
|
+
\ ] 13.93 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14483456,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========\\u003e
|
231
|
+
\ ] 14.48 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15040512,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========\\u003e
|
232
|
+
\ ] 15.04 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15597568,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========\\u003e
|
233
|
+
\ ] 15.6 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16154624,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========\\u003e
|
234
|
+
\ ] 16.15 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========\\u003e
|
235
|
+
\ ] 16.71 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17268736,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========\\u003e
|
236
|
+
\ ] 17.27 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17825792,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========\\u003e
|
237
|
+
\ ] 17.83 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18382848,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========\\u003e
|
238
|
+
\ ] 18.38 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18939904,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========\\u003e
|
239
|
+
\ ] 18.94 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19496960,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========\\u003e
|
240
|
+
\ ] 19.5 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20054016,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========\\u003e
|
241
|
+
\ ] 20.05 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20611072,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========\\u003e
|
242
|
+
\ ] 20.61 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21168128,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========\\u003e
|
243
|
+
\ ] 21.17 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21725184,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============\\u003e
|
244
|
+
\ ] 21.73 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============\\u003e
|
245
|
+
\ ] 22.28 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22839296,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============\\u003e
|
246
|
+
\ ] 22.84 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23396352,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============\\u003e
|
247
|
+
\ ] 23.4 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23953408,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============\\u003e
|
248
|
+
\ ] 23.95 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24510464,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============\\u003e
|
249
|
+
\ ] 24.51 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25067520,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============\\u003e
|
250
|
+
\ ] 25.07 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25624576,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============\\u003e
|
251
|
+
\ ] 25.62 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26181632,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============\\u003e
|
252
|
+
\ ] 26.18 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26738688,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============\\u003e
|
253
|
+
\ ] 26.74 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27295744,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============\\u003e
|
254
|
+
\ ] 27.3 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27852800,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============\\u003e
|
255
|
+
\ ] 27.85 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28409856,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============\\u003e
|
256
|
+
\ ] 28.41 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28966912,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================\\u003e
|
257
|
+
\ ] 28.97 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29523968,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================\\u003e
|
258
|
+
\ ] 29.52 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30081024,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================\\u003e
|
259
|
+
\ ] 30.08 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30638080,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================\\u003e
|
260
|
+
\ ] 30.64 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31195136,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================\\u003e
|
261
|
+
\ ] 31.2 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31752192,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================\\u003e
|
262
|
+
\ ] 31.75 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32309248,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================\\u003e
|
263
|
+
\ ] 32.31 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32866304,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================\\u003e
|
264
|
+
\ ] 32.87 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33423360,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================\\u003e
|
265
|
+
\ ] 33.42 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33980416,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================\\u003e
|
266
|
+
\ ] 33.98 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34537472,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================\\u003e
|
267
|
+
\ ] 34.54 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35094528,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================\\u003e
|
268
|
+
\ ] 35.09 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35651584,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================\\u003e
|
269
|
+
\ ] 35.65 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36208640,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================\\u003e
|
270
|
+
\ ] 36.21 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36765696,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================\\u003e
|
271
|
+
\ ] 36.77 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37322752,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================\\u003e
|
272
|
+
\ ] 37.32 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37879808,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================\\u003e
|
273
|
+
\ ] 37.88 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38436864,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================\\u003e
|
274
|
+
\ ] 38.44 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38993920,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================\\u003e
|
275
|
+
\ ] 38.99 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39550976,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================\\u003e
|
276
|
+
\ ] 39.55 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40108032,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================\\u003e
|
277
|
+
\ ] 40.11 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40665088,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================\\u003e
|
278
|
+
\ ] 40.67 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41222144,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================\\u003e
|
279
|
+
\ ] 41.22 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41779200,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================\\u003e
|
280
|
+
\ ] 41.78 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42336256,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================\\u003e
|
281
|
+
\ ] 42.34 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42893312,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================\\u003e
|
282
|
+
\ ] 42.89 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":43450368,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================\\u003e
|
283
|
+
\ ] 43.45 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44007424,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================\\u003e
|
284
|
+
\ ] 44.01 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44564480,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================\\u003e
|
285
|
+
\ ] 44.56 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45121536,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================\\u003e
|
286
|
+
\ ] 45.12 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45678592,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================\\u003e
|
287
|
+
\ ] 45.68 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46235648,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================\\u003e
|
288
|
+
\ ] 46.24 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46792704,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================\\u003e
|
289
|
+
\ ] 46.79 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47349760,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================\\u003e
|
290
|
+
\ ] 47.35 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47906816,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================\\u003e
|
291
|
+
\ ] 47.91 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":48463872,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================\\u003e
|
292
|
+
\ ] 48.46 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49020928,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================\\u003e
|
293
|
+
\ ] 49.02 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49577984,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================\\u003e
|
294
|
+
\ ] 49.58 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50135040,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================\\u003e
|
295
|
+
\ ] 50.14 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50692096,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================\\u003e
|
296
|
+
\ ] 50.69 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51249152,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================\\u003e
|
297
|
+
\ ] 51.25 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51806208,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================\\u003e
|
298
|
+
\ ] 51.81 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52363264,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================\\u003e
|
299
|
+
\ ] 52.36 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52920320,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================\\u003e
|
300
|
+
\ ] 52.92 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":53477376,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================\\u003e
|
301
|
+
\ ] 53.48 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54034432,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================\\u003e
|
302
|
+
\ ] 54.03 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54591488,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================\\u003e
|
303
|
+
\ ] 54.59 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55148544,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================\\u003e
|
304
|
+
\ ] 55.15 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55705600,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================\\u003e
|
305
|
+
\ ] 55.71 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56262656,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================\\u003e
|
306
|
+
\ ] 56.26 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56819712,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================\\u003e
|
307
|
+
\ ] 56.82 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57376768,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================\\u003e
|
308
|
+
\ ] 57.38 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57933824,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================\\u003e
|
309
|
+
\ ] 57.93 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":58490880,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================\\u003e
|
310
|
+
\ ] 58.49 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59047936,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================\\u003e
|
311
|
+
\ ] 59.05 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59604992,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================\\u003e
|
312
|
+
\ ] 59.6 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60162048,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================\\u003e
|
313
|
+
\ ] 60.16 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60719104,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================\\u003e
|
314
|
+
\ ] 60.72 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61276160,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================================\\u003e
|
315
|
+
\ ] 61.28 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61833216,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================================\\u003e
|
316
|
+
\ ] 61.83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62390272,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================================\\u003e
|
317
|
+
\ ] 62.39 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62947328,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================================\\u003e
|
318
|
+
\ ] 62.95 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":63504384,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================================\\u003e
|
319
|
+
\ ] 63.5 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64061440,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================================\\u003e
|
320
|
+
\ ] 64.06 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64618496,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================================\\u003e
|
321
|
+
\ ] 64.62 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65175552,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================================\\u003e
|
322
|
+
\ ] 65.18 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65732608,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================================\\u003e
|
323
|
+
\ ] 65.73 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66289664,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================================\\u003e
|
324
|
+
\ ] 66.29 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66846720,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================================\\u003e
|
325
|
+
\ ] 66.85 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67403776,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================================\\u003e
|
326
|
+
\ ] 67.4 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67960832,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================================\\u003e
|
327
|
+
\ ] 67.96 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":68517888,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================================\\u003e
|
328
|
+
\ ] 68.52 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69074944,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================================\\u003e
|
329
|
+
\ ] 69.07 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69632000,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================================\\u003e
|
330
|
+
\ ] 69.63 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70189056,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================================\\u003e
|
331
|
+
\ ] 70.19 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70746112,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================================\\u003e
|
332
|
+
\ ] 70.75 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71303168,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================================\\u003e
|
333
|
+
\ ] 71.3 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71860224,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================================\\u003e
|
334
|
+
\ ] 71.86 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72417280,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================================\\u003e
|
335
|
+
\ ] 72.42 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72974336,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================================\\u003e
|
336
|
+
\ ] 72.97 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":73531392,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================================\\u003e
|
337
|
+
\ ] 73.53 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74088448,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================================\\u003e
|
338
|
+
\ ] 74.09 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74645504,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================================\\u003e
|
339
|
+
\ ] 74.65 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75202560,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================================\\u003e
|
340
|
+
\ ] 75.2 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75759616,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================================\\u003e
|
341
|
+
\ ] 75.76 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76316672,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================================\\u003e
|
342
|
+
\ ] 76.32 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76873728,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================================\\u003e
|
343
|
+
\ ] 76.87 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77430784,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================================\\u003e
|
344
|
+
\ ] 77.43 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77987840,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================================\\u003e
|
345
|
+
\ ] 77.99 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":78544896,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================================\\u003e
|
346
|
+
\ ] 78.54 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79101952,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================================\\u003e
|
347
|
+
\ ] 79.1 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79659008,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================================\\u003e
|
348
|
+
\ ] 79.66 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80216064,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================================\\u003e
|
349
|
+
\ ] 80.22 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80773120,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================================\\u003e
|
350
|
+
\ ] 80.77 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81330176,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================================\\u003e
|
351
|
+
\ ] 81.33 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81887232,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================================\\u003e
|
352
|
+
\ ] 81.89 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":82444288,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================================\\u003e
|
353
|
+
\ ] 82.44 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83001344,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================================\\u003e
|
354
|
+
\ ] 83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83558400,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================================\\u003e
|
355
|
+
\ ] 83.56 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84115456,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================================\\u003e
|
356
|
+
\ ] 84.12 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84672512,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================================\\u003e
|
357
|
+
\ ] 84.67 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85229568,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================================\\u003e
|
358
|
+
\ ] 85.23 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85786624,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================================\\u003e
|
359
|
+
\ ] 85.79 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86343680,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================================\\u003e
|
360
|
+
\ ] 86.34 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86900736,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================================\\u003e
|
361
|
+
\ ] 86.9 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":87457792,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================================\\u003e
|
362
|
+
\ ] 87.46 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88014848,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================================\\u003e
|
363
|
+
\ ] 88.01 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88571904,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================================\\u003e
|
364
|
+
] 88.57 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89128960,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================================\\u003e
|
365
|
+
] 89.13 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89686016,\"total\":90081280,\"start\":1423704243},\"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\":1423704246},\"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 fcb68773563d\\n\"}\r\n{\"stream\":\"Removing
|
370
|
+
intermediate container faff932b11f8\\n\"}\r\n{\"stream\":\"Successfully built
|
371
|
+
fcb68773563d\\n\"}\r\n"
|
33
372
|
http_version:
|
34
|
-
recorded_at:
|
373
|
+
recorded_at: Thu, 12 Feb 2015 01:24:09 GMT
|
35
374
|
- request:
|
36
375
|
method: post
|
37
|
-
uri:
|
376
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
38
377
|
body:
|
39
378
|
encoding: UTF-8
|
40
|
-
string: '{"Image":"
|
379
|
+
string: ! '{"Image":"fcb68773563d","Cmd":["cat","/Dockerfile"]}'
|
41
380
|
headers:
|
42
381
|
User-Agent:
|
43
|
-
- Swipely/Docker-API 1.
|
382
|
+
- Swipely/Docker-API 1.18.0
|
44
383
|
Content-Type:
|
45
384
|
- application/json
|
46
385
|
response:
|
@@ -51,24 +390,25 @@ http_interactions:
|
|
51
390
|
Content-Type:
|
52
391
|
- application/json
|
53
392
|
Date:
|
54
|
-
-
|
393
|
+
- Thu, 12 Feb 2015 01:24:10 GMT
|
55
394
|
Content-Length:
|
56
395
|
- '90'
|
57
396
|
body:
|
58
|
-
encoding:
|
59
|
-
string:
|
60
|
-
|
397
|
+
encoding: US-ASCII
|
398
|
+
string: ! '{"Id":"67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5","Warnings":null}
|
399
|
+
|
400
|
+
'
|
61
401
|
http_version:
|
62
|
-
recorded_at:
|
402
|
+
recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
|
63
403
|
- request:
|
64
404
|
method: post
|
65
|
-
uri:
|
405
|
+
uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5/start
|
66
406
|
body:
|
67
407
|
encoding: UTF-8
|
68
|
-
string:
|
408
|
+
string: ! '{}'
|
69
409
|
headers:
|
70
410
|
User-Agent:
|
71
|
-
- Swipely/Docker-API 1.
|
411
|
+
- Swipely/Docker-API 1.18.0
|
72
412
|
Content-Type:
|
73
413
|
- application/json
|
74
414
|
response:
|
@@ -77,21 +417,21 @@ http_interactions:
|
|
77
417
|
message:
|
78
418
|
headers:
|
79
419
|
Date:
|
80
|
-
-
|
420
|
+
- Thu, 12 Feb 2015 01:24:10 GMT
|
81
421
|
body:
|
82
|
-
encoding:
|
422
|
+
encoding: US-ASCII
|
83
423
|
string: ''
|
84
424
|
http_version:
|
85
|
-
recorded_at:
|
425
|
+
recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
|
86
426
|
- request:
|
87
427
|
method: get
|
88
|
-
uri:
|
428
|
+
uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5/logs?stdout=true
|
89
429
|
body:
|
90
430
|
encoding: US-ASCII
|
91
431
|
string: ''
|
92
432
|
headers:
|
93
433
|
User-Agent:
|
94
|
-
- Swipely/Docker-API 1.
|
434
|
+
- Swipely/Docker-API 1.18.0
|
95
435
|
Content-Type:
|
96
436
|
- text/plain
|
97
437
|
response:
|
@@ -100,24 +440,24 @@ http_interactions:
|
|
100
440
|
message:
|
101
441
|
headers:
|
102
442
|
Date:
|
103
|
-
-
|
443
|
+
- Thu, 12 Feb 2015 01:24:10 GMT
|
104
444
|
Content-Type:
|
105
445
|
- application/octet-stream
|
106
446
|
body:
|
107
|
-
encoding:
|
447
|
+
encoding: US-ASCII
|
108
448
|
string: !binary |-
|
109
|
-
|
449
|
+
AQAAAAAAABNGUk9NIGRlYmlhbjp3aGVlenkKAQAAAAAAAAhBREQgLiAvCg==
|
110
450
|
http_version:
|
111
|
-
recorded_at:
|
451
|
+
recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
|
112
452
|
- request:
|
113
453
|
method: post
|
114
|
-
uri:
|
454
|
+
uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5/wait
|
115
455
|
body:
|
116
456
|
encoding: US-ASCII
|
117
457
|
string: ''
|
118
458
|
headers:
|
119
459
|
User-Agent:
|
120
|
-
- Swipely/Docker-API 1.
|
460
|
+
- Swipely/Docker-API 1.18.0
|
121
461
|
Content-Type:
|
122
462
|
- text/plain
|
123
463
|
response:
|
@@ -128,24 +468,54 @@ http_interactions:
|
|
128
468
|
Content-Type:
|
129
469
|
- application/json
|
130
470
|
Date:
|
131
|
-
-
|
471
|
+
- Thu, 12 Feb 2015 01:24:10 GMT
|
132
472
|
Content-Length:
|
133
473
|
- '17'
|
134
474
|
body:
|
135
|
-
encoding:
|
136
|
-
string:
|
137
|
-
|
475
|
+
encoding: US-ASCII
|
476
|
+
string: ! '{"StatusCode":0}
|
477
|
+
|
478
|
+
'
|
479
|
+
http_version:
|
480
|
+
recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
|
481
|
+
- request:
|
482
|
+
method: post
|
483
|
+
uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5/wait
|
484
|
+
body:
|
485
|
+
encoding: US-ASCII
|
486
|
+
string: ''
|
487
|
+
headers:
|
488
|
+
User-Agent:
|
489
|
+
- Swipely/Docker-API 1.18.0
|
490
|
+
Content-Type:
|
491
|
+
- text/plain
|
492
|
+
response:
|
493
|
+
status:
|
494
|
+
code: 200
|
495
|
+
message:
|
496
|
+
headers:
|
497
|
+
Content-Type:
|
498
|
+
- application/json
|
499
|
+
Date:
|
500
|
+
- Thu, 12 Feb 2015 01:24:10 GMT
|
501
|
+
Content-Length:
|
502
|
+
- '17'
|
503
|
+
body:
|
504
|
+
encoding: US-ASCII
|
505
|
+
string: ! '{"StatusCode":0}
|
506
|
+
|
507
|
+
'
|
138
508
|
http_version:
|
139
|
-
recorded_at:
|
509
|
+
recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
|
140
510
|
- request:
|
141
511
|
method: delete
|
142
|
-
uri:
|
512
|
+
uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5
|
143
513
|
body:
|
144
514
|
encoding: US-ASCII
|
145
515
|
string: ''
|
146
516
|
headers:
|
147
517
|
User-Agent:
|
148
|
-
- Swipely/Docker-API 1.
|
518
|
+
- Swipely/Docker-API 1.18.0
|
149
519
|
Content-Type:
|
150
520
|
- text/plain
|
151
521
|
response:
|
@@ -154,21 +524,21 @@ http_interactions:
|
|
154
524
|
message:
|
155
525
|
headers:
|
156
526
|
Date:
|
157
|
-
-
|
527
|
+
- Thu, 12 Feb 2015 01:24:11 GMT
|
158
528
|
body:
|
159
|
-
encoding:
|
529
|
+
encoding: US-ASCII
|
160
530
|
string: ''
|
161
531
|
http_version:
|
162
|
-
recorded_at:
|
532
|
+
recorded_at: Thu, 12 Feb 2015 01:24:11 GMT
|
163
533
|
- request:
|
164
534
|
method: delete
|
165
|
-
uri:
|
535
|
+
uri: <DOCKER_HOST>/v1.16/images/fcb68773563d?noprune=true
|
166
536
|
body:
|
167
537
|
encoding: US-ASCII
|
168
538
|
string: ''
|
169
539
|
headers:
|
170
540
|
User-Agent:
|
171
|
-
- Swipely/Docker-API 1.
|
541
|
+
- Swipely/Docker-API 1.18.0
|
172
542
|
Content-Type:
|
173
543
|
- text/plain
|
174
544
|
response:
|
@@ -179,14 +549,14 @@ http_interactions:
|
|
179
549
|
Content-Type:
|
180
550
|
- application/json
|
181
551
|
Date:
|
182
|
-
-
|
552
|
+
- Thu, 12 Feb 2015 01:24:11 GMT
|
183
553
|
Content-Length:
|
184
554
|
- '81'
|
185
555
|
body:
|
186
|
-
encoding:
|
187
|
-
string:
|
188
|
-
|
189
|
-
]
|
556
|
+
encoding: US-ASCII
|
557
|
+
string: ! '[{"Deleted":"fcb68773563d7157d562d3f8c20016db0827fe14d8646e10c71fe5bbdaa6fdec"}
|
558
|
+
|
559
|
+
]'
|
190
560
|
http_version:
|
191
|
-
recorded_at:
|
192
|
-
recorded_with: VCR 2.9.
|
561
|
+
recorded_at: Thu, 12 Feb 2015 01:24:11 GMT
|
562
|
+
recorded_with: VCR 2.9.2
|